File size: 50,730 Bytes
1ee64fa |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 |
travis_fold:start:worker_info Worker information hostname: travis-worker-gce-org-prod2-4:f441d998-5cb7-4ded-ad9c-280401574c16 version: v2.3.0 https://github.com/travis-ci/worker/tree/9c1321414ebd21739efdff448627af90c34e6610 instance: testing-gce-b785ef4d-a388-416b-8229-439fcc588392:travis-ci-ruby-precise-1450195856 startup: 21.108366867s travis_fold:end:worker_info travis_fold:start:system_info Build system information Build language: ruby Build group: stable Build dist: precise Build image provisioning date and time Tue Dec 15 16:36:18 UTC 2015 Operating System Details Distributor ID: Ubuntu Description: Ubuntu 12.04.5 LTS Release: 12.04 Codename: precise Linux Version 3.13.0-63-generic Cookbooks Version fad6c97 https://github.com/travis-ci/travis-cookbooks/tree/fad6c97 Git version git version 1.8.5.6 bash version GNU bash, version 4.2.25(1)-release (x86_64-pc-linux-gnu) Copyright (C) 2011 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html> This is free software; you are free to change and redistribute it. There is NO WARRANTY, to the extent permitted by law. GCC version gcc (Ubuntu/Linaro 4.6.3-1ubuntu5) 4.6.3 Copyright (C) 2011 Free Software Foundation, Inc. This is free software; see the source for copying conditions. There is NO warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. LLVM version clang version 3.4 (tags/RELEASE_34/final) Target: x86_64-unknown-linux-gnu Thread model: posix Pre-installed Ruby versions ree-1.8.7-2012.02 ruby-1.8.7-p374 ruby-1.9.2-p330 ruby-1.9.3-p551 ruby-2.0.0-p647-clang ruby-2.1.2 ruby-2.1.3 ruby-2.1.4 ruby-2.1.5 ruby-2.2.0 Pre-installed Node.js versions v0.10.36 Pre-installed Go versions 1.4.2 mysql --version mysql Ver 14.14 Distrib 5.5.46, for debian-linux-gnu (x86_64) using readline 6.2 Pre-installed PostgreSQL versions 9.1.19 9.2.14 9.3.10 9.4.5 Redis version redis-server 3.0.5 riak version 2.1.3 MongoDB version MongoDB 2.4.14 CouchDB version couchdb 1.6.1 Neo4j version 1.9.4 Cassandra version 2.0.9 ElasticSearch version 1.4.0 Installed Sphinx versions 2.0.10 2.1.9 2.2.6 Default Sphinx version 2.2.6 Installed Firefox version firefox 38.4.0esr PhantomJS version 1.9.8 ant -version Apache Ant(TM) version 1.8.2 compiled on December 3 2011 mvn -version Apache Maven 3.2.5 (12a6b3acb947671f09b81f49094c53f426d8cea1; 2014-12-14T17:29:23+00:00) Maven home: /usr/local/maven Java version: 1.7.0_80, vendor: Oracle Corporation Java home: /usr/lib/jvm/java-7-oracle/jre Default locale: en, platform encoding: UTF-8 OS name: "linux", version: "3.13.0-63-generic", arch: "amd64", family: "unix" travis_fold:end:system_info travis_fold:start:fix.CVE-2015-7547 $ export DEBIAN_FRONTEND=noninteractive Reading package lists... Building dependency tree... Reading state information... The following extra packages will be installed: libc-bin libc-dev-bin libc6-dev Suggested packages: glibc-doc The following packages will be upgraded: libc-bin libc-dev-bin libc6 libc6-dev 4 upgraded, 0 newly installed, 0 to remove and 136 not upgraded. Need to get 8,844 kB of archives. After this operation, 1,024 B of additional disk space will be used. Get:1 http://us.archive.ubuntu.com/ubuntu/ precise-updates/main libc6-dev amd64 2.15-0ubuntu10.13 [2,943 kB] Get:2 http://us.archive.ubuntu.com/ubuntu/ precise-updates/main libc-dev-bin amd64 2.15-0ubuntu10.13 [84.7 kB] Get:3 http://us.archive.ubuntu.com/ubuntu/ precise-updates/main libc-bin amd64 2.15-0ubuntu10.13 [1,179 kB] Get:4 http://us.archive.ubuntu.com/ubuntu/ precise-updates/main libc6 amd64 2.15-0ubuntu10.13 [4,637 kB] Fetched 8,844 kB in 0s (14.7 MB/s) Preconfiguring packages ... (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 124639 files and directories currently installed.) Preparing to replace libc6-dev 2.15-0ubuntu10.12 (using .../libc6-dev_2.15-0ubuntu10.13_amd64.deb) ... Unpacking replacement libc6-dev ... Preparing to replace libc-dev-bin 2.15-0ubuntu10.12 (using .../libc-dev-bin_2.15-0ubuntu10.13_amd64.deb) ... Unpacking replacement libc-dev-bin ... Preparing to replace libc-bin 2.15-0ubuntu10.12 (using .../libc-bin_2.15-0ubuntu10.13_amd64.deb) ... Unpacking replacement libc-bin ... Processing triggers for man-db ... Setting up libc-bin (2.15-0ubuntu10.13) ... (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 124639 files and directories currently installed.) Preparing to replace libc6 2.15-0ubuntu10.12 (using .../libc6_2.15-0ubuntu10.13_amd64.deb) ... Unpacking replacement libc6 ... Setting up libc6 (2.15-0ubuntu10.13) ... Setting up libc-dev-bin (2.15-0ubuntu10.13) ... Setting up libc6-dev (2.15-0ubuntu10.13) ... Processing triggers for libc-bin ... ldconfig deferred processing now taking place travis_fold:end:fix.CVE-2015-7547 travis_fold:start:git.checkout travis_time:start:0927f0ab $ git clone --depth=50 https://github.com/vinta/awesome-python.git vinta/awesome-python Cloning into 'vinta/awesome-python'... remote: Counting objects: 1268, done. remote: Compressing objects: 0% (1/756) remote: Compressing objects: 1% (8/756) remote: Compressing objects: 2% (16/756) remote: Compressing objects: 3% (23/756) remote: Compressing objects: 4% (31/756) remote: Compressing objects: 5% (38/756) remote: Compressing objects: 6% (46/756) remote: Compressing objects: 7% (53/756) remote: Compressing objects: 8% (61/756) remote: Compressing objects: 9% (69/756) remote: Compressing objects: 10% (76/756) remote: Compressing objects: 11% (84/756) remote: Compressing objects: 12% (91/756) remote: Compressing objects: 13% (99/756) remote: Compressing objects: 14% (106/756) remote: Compressing objects: 15% (114/756) remote: Compressing objects: 16% (121/756) remote: Compressing objects: 17% (129/756) remote: Compressing objects: 18% (137/756) remote: Compressing objects: 19% (144/756) remote: Compressing objects: 20% (152/756) remote: Compressing objects: 21% (159/756) remote: Compressing objects: 22% (167/756) remote: Compressing objects: 23% (174/756) remote: Compressing objects: 24% (182/756) remote: Compressing objects: 25% (189/756) remote: Compressing objects: 26% (197/756) remote: Compressing objects: 27% (205/756) remote: Compressing objects: 28% (212/756) remote: Compressing objects: 29% (220/756) remote: Compressing objects: 30% (227/756) remote: Compressing objects: 31% (235/756) remote: Compressing objects: 32% (242/756) remote: Compressing objects: 33% (250/756) remote: Compressing objects: 34% (258/756) remote: Compressing objects: 35% (265/756) remote: Compressing objects: 36% (273/756) remote: Compressing objects: 37% (280/756) remote: Compressing objects: 38% (288/756) remote: Compressing objects: 39% (295/756) remote: Compressing objects: 40% (303/756) remote: Compressing objects: 41% (310/756) remote: Compressing objects: 42% (318/756) remote: Compressing objects: 43% (326/756) remote: Compressing objects: 44% (333/756) remote: Compressing objects: 45% (341/756) remote: Compressing objects: 46% (348/756) remote: Compressing objects: 47% (356/756) remote: Compressing objects: 48% (363/756) remote: Compressing objects: 49% (371/756) remote: Compressing objects: 50% (378/756) remote: Compressing objects: 51% (386/756) remote: Compressing objects: 52% (394/756) remote: Compressing objects: 53% (401/756) remote: Compressing objects: 54% (409/756) remote: Compressing objects: 55% (416/756) remote: Compressing objects: 56% (424/756) remote: Compressing objects: 57% (431/756) remote: Compressing objects: 58% (439/756) remote: Compressing objects: 59% (447/756) remote: Compressing objects: 60% (454/756) remote: Compressing objects: 61% (462/756) remote: Compressing objects: 62% (469/756) remote: Compressing objects: 63% (477/756) remote: Compressing objects: 64% (484/756) remote: Compressing objects: 65% (492/756) remote: Compressing objects: 66% (499/756) remote: Compressing objects: 67% (507/756) remote: Compressing objects: 68% (515/756) remote: Compressing objects: 69% (522/756) remote: Compressing objects: 70% (530/756) remote: Compressing objects: 71% (537/756) remote: Compressing objects: 72% (545/756) remote: Compressing objects: 73% (552/756) remote: Compressing objects: 74% (560/756) remote: Compressing objects: 75% (567/756) remote: Compressing objects: 76% (575/756) remote: Compressing objects: 77% (583/756) remote: Compressing objects: 78% (590/756) remote: Compressing objects: 79% (598/756) remote: Compressing objects: 80% (605/756) remote: Compressing objects: 81% (613/756) remote: Compressing objects: 82% (620/756) remote: Compressing objects: 83% (628/756) remote: Compressing objects: 84% (636/756) remote: Compressing objects: 85% (643/756) remote: Compressing objects: 86% (651/756) remote: Compressing objects: 87% (658/756) remote: Compressing objects: 88% (666/756) remote: Compressing objects: 89% (673/756) remote: Compressing objects: 90% (681/756) remote: Compressing objects: 91% (688/756) remote: Compressing objects: 92% (696/756) remote: Compressing objects: 93% (704/756) remote: Compressing objects: 94% (711/756) remote: Compressing objects: 95% (719/756) remote: Compressing objects: 96% (726/756) remote: Compressing objects: 97% (734/756) remote: Compressing objects: 98% (741/756) remote: Compressing objects: 99% (749/756) remote: Compressing objects: 100% (756/756) remote: Compressing objects: 100% (756/756), done. Receiving objects: 0% (1/1268) Receiving objects: 1% (13/1268) Receiving objects: 2% (26/1268) Receiving objects: 3% (39/1268) Receiving objects: 4% (51/1268) Receiving objects: 5% (64/1268) Receiving objects: 6% (77/1268) Receiving objects: 7% (89/1268) Receiving objects: 8% (102/1268) Receiving objects: 9% (115/1268) Receiving objects: 10% (127/1268) Receiving objects: 11% (140/1268) Receiving objects: 12% (153/1268) Receiving objects: 13% (165/1268) Receiving objects: 14% (178/1268) Receiving objects: 15% (191/1268) Receiving objects: 16% (203/1268) Receiving objects: 17% (216/1268) Receiving objects: 18% (229/1268) Receiving objects: 19% (241/1268) Receiving objects: 20% (254/1268) Receiving objects: 21% (267/1268) Receiving objects: 22% (279/1268) Receiving objects: 23% (292/1268) Receiving objects: 24% (305/1268) Receiving objects: 25% (317/1268) Receiving objects: 26% (330/1268) Receiving objects: 27% (343/1268) Receiving objects: 28% (356/1268) Receiving objects: 29% (368/1268) Receiving objects: 30% (381/1268) Receiving objects: 31% (394/1268) Receiving objects: 32% (406/1268) Receiving objects: 33% (419/1268) Receiving objects: 34% (432/1268) Receiving objects: 35% (444/1268) Receiving objects: 36% (457/1268) Receiving objects: 37% (470/1268) Receiving objects: 38% (482/1268) Receiving objects: 39% (495/1268) Receiving objects: 40% (508/1268) Receiving objects: 41% (520/1268) Receiving objects: 42% (533/1268) Receiving objects: 43% (546/1268) Receiving objects: 44% (558/1268) Receiving objects: 45% (571/1268) Receiving objects: 46% (584/1268) Receiving objects: 47% (596/1268) Receiving objects: 48% (609/1268) Receiving objects: 49% (622/1268) Receiving objects: 50% (634/1268) Receiving objects: 51% (647/1268) Receiving objects: 52% (660/1268) Receiving objects: 53% (673/1268) Receiving objects: 54% (685/1268) Receiving objects: 55% (698/1268) Receiving objects: 56% (711/1268) Receiving objects: 57% (723/1268) Receiving objects: 58% (736/1268) Receiving objects: 59% (749/1268) Receiving objects: 60% (761/1268) Receiving objects: 61% (774/1268) Receiving objects: 62% (787/1268) Receiving objects: 63% (799/1268) Receiving objects: 64% (812/1268) Receiving objects: 65% (825/1268) Receiving objects: 66% (837/1268) Receiving objects: 67% (850/1268) Receiving objects: 68% (863/1268) Receiving objects: 69% (875/1268) Receiving objects: 70% (888/1268) Receiving objects: 71% (901/1268) Receiving objects: 72% (913/1268) Receiving objects: 73% (926/1268) Receiving objects: 74% (939/1268) Receiving objects: 75% (951/1268) Receiving objects: 76% (964/1268) Receiving objects: 77% (977/1268) Receiving objects: 78% (990/1268) Receiving objects: 79% (1002/1268) Receiving objects: 80% (1015/1268) Receiving objects: 81% (1028/1268) Receiving objects: 82% (1040/1268) Receiving objects: 83% (1053/1268) Receiving objects: 84% (1066/1268) Receiving objects: 85% (1078/1268) Receiving objects: 86% (1091/1268) Receiving objects: 87% (1104/1268) Receiving objects: 88% (1116/1268) Receiving objects: 89% (1129/1268) Receiving objects: 90% (1142/1268) Receiving objects: 91% (1154/1268) Receiving objects: 92% (1167/1268) remote: Total 1268 (delta 643), reused 1128 (delta 507), pack-reused 0 Receiving objects: 93% (1180/1268) Receiving objects: 94% (1192/1268) Receiving objects: 95% (1205/1268) Receiving objects: 96% (1218/1268) Receiving objects: 97% (1230/1268) Receiving objects: 98% (1243/1268) Receiving objects: 99% (1256/1268) Receiving objects: 100% (1268/1268) Receiving objects: 100% (1268/1268), 350.35 KiB | 0 bytes/s, done. Resolving deltas: 0% (0/643) Resolving deltas: 15% (101/643) Resolving deltas: 27% (177/643) Resolving deltas: 28% (183/643) Resolving deltas: 29% (191/643) Resolving deltas: 30% (193/643) Resolving deltas: 41% (266/643) Resolving deltas: 100% (643/643) Resolving deltas: 100% (643/643), done. Checking connectivity... done. travis_time:end:0927f0ab:start=1461480060050852605,finish=1461480061722476444,duration=1671623839 $ cd vinta/awesome-python travis_time:start:1f4c498a $ git fetch origin +refs/pull/624/merge: remote: Counting objects: 4, done. remote: Compressing objects: 50% (1/2) remote: Compressing objects: 100% (2/2) remote: Compressing objects: 100% (2/2), done. remote: Total 4 (delta 3), reused 2 (delta 2), pack-reused 0 Unpacking objects: 25% (1/4) Unpacking objects: 50% (2/4) Unpacking objects: 75% (3/4) Unpacking objects: 100% (4/4) Unpacking objects: 100% (4/4), done. From https://github.com/vinta/awesome-python * branch refs/pull/624/merge -> FETCH_HEAD travis_time:end:1f4c498a:start=1461480061727048839,finish=1461480062749972864,duration=1022924025 $ git checkout -qf FETCH_HEAD travis_fold:end:git.checkout travis_fold:start:rvm travis_time:start:0aebe0ba $ rvm use 2.2 --install --binary --fuzzy Using /home/travis/.rvm/gems/ruby-2.2.0 travis_time:end:0aebe0ba:start=1461480062763871063,finish=1461480063383885367,duration=620014304 travis_fold:end:rvm $ ruby --version ruby 2.2.0p0 (2014-12-25 revision 49005) [x86_64-linux] $ rvm --version rvm 1.26.10 (1.26.10) by Wayne E. Seguin <[email protected]>, Michal Papis <[email protected]> [https://rvm.io/] $ bundle --version Bundler version 1.8.4 $ gem --version 2.5.1 travis_fold:start:before_script travis_time:start:0b6f0dab $ gem install awesome_bot Fetching: parallel-1.6.2.gem Fetching: parallel-1.6.2.gem (100%) Fetching: parallel-1.6.2.gem (100%) Successfully installed parallel-1.6.2 Fetching: multipart-post-2.0.0.gem Fetching: multipart-post-2.0.0.gem (100%) Fetching: multipart-post-2.0.0.gem (100%) Successfully installed multipart-post-2.0.0 Fetching: faraday-0.9.2.gem Fetching: faraday-0.9.2.gem ( 44%) Fetching: faraday-0.9.2.gem ( 90%) Fetching: faraday-0.9.2.gem (100%) Fetching: faraday-0.9.2.gem (100%) Successfully installed faraday-0.9.2 Fetching: awesome_bot-1.7.1.gem Fetching: awesome_bot-1.7.1.gem ( 93%) Fetching: awesome_bot-1.7.1.gem (100%) Fetching: awesome_bot-1.7.1.gem (100%) Successfully installed awesome_bot-1.7.1 4 gems installed travis_time:end:0b6f0dab:start=1461480063819763971,finish=1461480066282243930,duration=2462479959 travis_fold:end:before_script travis_time:start:26893f02 $ awesome_bot README.md --allow-dupe --white-list pyparsing,graphviz.org > Checking links in README.md > Will allow duplicate links > White list links matching: pyparsing, graphviz.org Links to check: 701, 2 white listed, 696 unique 1. https://cdn.rawgit.com/sindresorhus/awesome/d7305f38d29fed78fa85652e3a63e154dd8e8829/media/badge.svg 2. https://github.com/sindresorhus/awesome 3. https://github.com/ziadoz/awesome-php 4. https://github.com/qw3rtman/p 5. https://github.com/yyuu/pyenv 6. https://docs.python.org/3/library/venv.html 7. https://pypi.python.org/pypi/virtualenv 8. https://pypi.python.org/pypi/virtualenvwrapper 9. https://pip.pypa.io/en/stable/ 10. https://pypi.python.org/pypi 11. https://github.com/nvie/pip-tools 12. https://github.com/conda/conda/ 13. http://clarete.li/curdling/ 14. http://pythonwheels.com/ 15. https://github.com/pypa/warehouse 16. https://warehouse.python.org/ 17. https://bitbucket.org/pypa/bandersnatch 18. http://doc.devpi.net/latest/ 19. https://github.com/mvantellingen/localshop 20. https://github.com/pyinstaller/pyinstaller 21. http://dh-virtualenv.readthedocs.org/en/latest/ 22. http://nuitka.net/ 23. http://pythonhosted.org/py2app/ 24. http://www.py2exe.org/ 25. http://pynsist.readthedocs.org/en/latest/ 26. http://www.buildout.org/en/latest/ 27. http://www.yoctoproject.org/docs/1.6/bitbake-user-manual/bitbake-user-manual.html 28. https://github.com/platformio/platformio 29. https://github.com/pybuilder/pybuilder 30. http://www.scons.org/ 31. https://jupyter.org 32. https://github.com/bpython/bpython 33. https://github.com/jonathanslenders/ptpython 34. https://github.com/jonathanslenders/python-prompt-toolkit 35. https://docs.python.org/2/library/imghdr.html 36. https://docs.python.org/2/library/mimetypes.html 37. https://github.com/jaraco/path.py 38. https://docs.python.org/2/library/os.path.html 39. https://pathlib.readthedocs.org/en/pep428/ 40. https://github.com/ahupp/python-magic 41. https://github.com/mikeorr/Unipath 42. https://github.com/gorakhargosh/watchdog 43. https://github.com/crsmithdev/arrow 44. https://github.com/KoffeinFlummi/Chronyk 45. https://github.com/dateutil/dateutil 46. https://docs.python.org/2/library/datetime.html 47. https://github.com/myusuf3/delorean/ 48. https://github.com/zachwill/moment 49. http://momentjs.com/ 50. https://github.com/shinux/PyTime 51. https://launchpad.net/pytz 52. https://en.wikipedia.org/wiki/Tz_database 53. https://github.com/dirn/When.py 54. https://github.com/chardet/chardet 55. https://docs.python.org/2/library/difflib.html 56. https://github.com/LuminosoInsight/python-ftfy 57. https://github.com/seatgeek/fuzzywuzzy 58. https://github.com/ztane/python-Levenshtein/ 59. https://github.com/vinta/pangu.py 60. https://github.com/pwaller/pyfiglet 61. https://github.com/stochastic-technologies/shortuuid 62. https://pypi.python.org/pypi/Unidecode 63. https://github.com/moskytw/uniout 64. https://github.com/lxneng/xpinyin 65. https://github.com/dimka665/awesome-slugify 66. https://github.com/un33k/python-slugify 67. https://github.com/mozilla/unicode-slugify 68. https://github.com/daviddrysdale/python-phonenumbers 69. http://www.dabeaz.com/ply/ 70. http://pygments.org/ 71. https://github.com/derek73/python-nameparser 72. https://github.com/selwin/python-user-agents 73. https://sqlparse.readthedocs.org/en/latest/ 74. https://github.com/kennethreitz/tablib 75. https://github.com/brianray/mm 76. https://openpyxl.readthedocs.org/en/latest/ 77. http://pyexcel.readthedocs.org/en/latest/ 78. https://github.com/python-openxml/python-docx 79. http://relatorio.tryton.org/ 80. https://github.com/dagwieers/unoconv 81. https://xlsxwriter.readthedocs.org/en/latest/ 82. http://xlwings.org/ 83. https://github.com/python-excel/xlwt 84. https://github.com/python-excel/xlrd 85. https://github.com/euske/pdfminer 86. https://github.com/mstamy2/PyPDF2 87. http://www.reportlab.com/opensource/ 88. https://github.com/lepture/mistune 89. https://github.com/waylan/Python-Markdown 90. http://pyyaml.org/ 91. https://github.com/wireservice/csvkit 92. https://github.com/mitsuhiko/unp 93. http://www.nltk.org/ 94. http://www.clips.ua.ac.be/pattern 95. https://github.com/fxsjy/jieba 96. https://github.com/isnowfy/snownlp 97. https://spacy.io/ 98. http://textblob.readthedocs.org/en/latest/ 99. https://github.com/2shou/TextGrocery 100. https://github.com/saffsd/langid.py 101. http://www.sphinx-doc.org/en/latest/ 102. https://github.com/yoloseem/awesome-sphinxdoc 103. http://www.mkdocs.org/ 104. https://github.com/BurntSushi/pdoc 105. https://github.com/pycco-docs/pycco 106. https://www.red-dove.com/config-doc/ 107. https://docs.python.org/2/library/logging.html 108. http://www.voidspace.org.uk/python/configobj.html 109. https://docs.python.org/2/library/configparser.html 110. http://profig.readthedocs.org/en/default/ 111. https://github.com/henriquebastos/python-decouple 112. https://github.com/peterbrittain/asciimatics 113. http://builtoncement.com/ 114. http://click.pocoo.org/dev/ 115. http://docs.openstack.org/developer/cliff/ 116. https://github.com/kennethreitz/clint 117. https://pypi.python.org/pypi/colorama 118. http://docopt.org/ 119. https://github.com/chriskiehl/Gooey 120. https://github.com/aws/aws-cli 121. https://github.com/glamp/bashplotlib 122. https://github.com/brettcannon/caniusepython3 123. https://github.com/audreyr/cookiecutter 124. https://github.com/sloria/doitlive 125. https://github.com/gleitz/howdoi 126. https://github.com/jkbrzt/httpie 127. https://github.com/facebook/PathPicker 128. https://github.com/mooz/percol 129. https://github.com/donnemartin/saws 130. https://github.com/nvbn/thefuck 131. https://github.com/timofurrer/try 132. https://github.com/dbcli/mycli 133. https://github.com/dbcli/pgcli 134. https://github.com/s3tools/s3cmd 135. https://github.com/bloomreach/s4cmd 136. https://www.soimort.org/you-get/ 137. http://rg3.github.io/youtube-dl/ 138. http://pillow.readthedocs.org/en/latest/ 139. http://www.pythonware.com/products/pil/ 140. https://github.com/rossgoodwin/hmap 141. https://sourceforge.net/projects/imgseek/ 142. https://github.com/hhatto/nude.py 143. https://pythonhosted.org/pyBarcode/ 144. https://github.com/ajkumar25/pygram 145. https://github.com/lincolnloop/python-qrcode 146. https://github.com/fogleman/Quads 147. http://scikit-image.org/ 148. https://github.com/thumbor/thumbor 149. https://github.com/dahlia/wand 150. http://www.imagemagick.org/script/magick-wand.php 151. https://github.com/jflesch/pyocr 152. https://github.com/madmaze/pytesseract 153. https://github.com/tesseract-ocr 154. https://github.com/danilobellini/audiolazy 155. https://github.com/beetbox/audioread 156. http://beets.io/ 157. https://musicbrainz.org/ 158. https://github.com/worldveil/dejavu 159. https://github.com/StreetVoice/django-elastic-transcoder 160. http://aws.amazon.com/elastictranscoder/ 161. http://eyed3.nicfit.net/ 162. http://nedbatchelder.com/code/modules/id3reader.py 163. https://github.com/globocom/m3u8 164. https://bitbucket.org/lazka/mutagen 165. https://github.com/jiaaro/pydub 166. https://github.com/echonest/pyechonest 167. http://developer.echonest.com/ 168. http://scikits.appspot.com/talkbox 169. https://github.com/Parisson/TimeSide 170. https://github.com/devsnd/tinytag 171. http://bspaans.github.io/python-mingus/ 172. http://zulko.github.io/moviepy/ 173. https://github.com/aizvorski/scikit-video 174. https://docs.djangoproject.com/en/dev/ref/contrib/gis/ 175. https://github.com/maxmind/geoip-api-python 176. https://github.com/frewsxcv/python-geojson 177. https://github.com/geopy/geopy 178. https://github.com/appliedsec/pygeoip 179. https://github.com/SmileyChris/django-countries 180. http://docs.python-requests.org/en/latest/ 181. https://github.com/kennethreitz/grequests 182. https://github.com/jcgregorio/httplib2 183. https://github.com/twisted/treq 184. https://github.com/shazow/urllib3 185. https://pythonhosted.org/pickleDB/ 186. https://www.pipelinedb.com/ 187. https://github.com/msiemens/tinydb 188. http://www.zodb.org/en/latest/ 189. http://shlomi-noach.github.io/awesome-mysql/ 190. https://sourceforge.net/projects/mysql-python/ 191. https://github.com/PyMySQL/mysqlclient-python 192. https://pythonhosted.org/oursql/ 193. https://github.com/PyMySQL/PyMySQL 194. http://initd.org/psycopg/ 195. https://github.com/gmr/queries 196. http://txpostgres.readthedocs.org/en/latest/ 197. http://rogerbinns.github.io/apsw/ 198. https://github.com/pudo/dataset 199. http://www.pymssql.org/en/latest/ 200. https://github.com/datastax/python-driver 201. http://happybase.readthedocs.org/en/latest/ 202. https://plyvel.readthedocs.org/en/latest/ 203. http://py2neo.org/2.0/ 204. https://github.com/pycassa/pycassa 205. https://docs.mongodb.org/ecosystem/drivers/python/ 206. https://github.com/andymccurdy/redis-py 207. https://github.com/driftx/Telephus 208. https://github.com/deldotdr/txRedis 209. https://docs.djangoproject.com/en/dev/topics/db/models/ 210. http://www.sqlalchemy.org/ 211. https://github.com/dahlia/awesome-sqlalchemy 212. https://github.com/coleifer/peewee 213. https://ponyorm.com/ 214. https://pypi.python.org/pypi/python-sql 215. https://github.com/django-nonrel/mongodb-engine 216. https://github.com/jlafon/PynamoDB 217. https://aws.amazon.com/dynamodb/ 218. https://github.com/mathcamp/flywheel 219. http://mongoengine.org/ 220. https://github.com/stephenmcd/hot-redis 221. https://github.com/kiddouk/redisco 222. https://github.com/Widdershin/butterdb 223. https://www.djangoproject.com/ 224. https://github.com/rosarior/awesome-django 225. http://flask.pocoo.org/ 226. https://github.com/humiaozuzu/awesome-flask 227. http://www.pylonsproject.org/ 228. https://github.com/uralbash/awesome-pyramid 229. http://bottlepy.org/docs/dev/index.html 230. http://www.cherrypy.org/ 231. http://www.turbogears.org/ 232. http://webpy.org/ 233. http://www.web2py.com 234. http://www.tornadoweb.org/en/latest/ 235. https://github.com/neuman/python-carteblanche/ 236. https://github.com/django-guardian/django-guardian 237. https://github.com/dfunckt/django-rules 238. http://www.django-cms.org/en/ 239. http://djedi-cms.org/ 240. http://www.feincms.org/ 241. http://kotti.pylonsproject.org/ 242. http://mezzanine.jupo.org/ 243. http://opps.github.io/opps/ 244. https://plone.org/ 245. http://quokkaproject.org/ 246. https://wagtail.io/ 247. https://wid.gy/ 248. http://oscarcommerce.com/ 249. https://github.com/awesto/django-shop 250. https://github.com/stephenmcd/cartridge 251. https://www.shoop.io/en/ 252. https://github.com/lxneng/alipay 253. https://github.com/agiliq/merchant 254. https://github.com/carlospalol/money 255. https://github.com/Alir3z4/python-currencies 256. http://www.django-rest-framework.org/ 257. http://tastypieapi.org/ 258. https://github.com/5monkeys/django-formapi 259. http://www.flaskapi.org/ 260. http://flask-restful.readthedocs.org/en/latest/ 261. https://flask-restless.readthedocs.org/en/latest/ 262. https://github.com/marselester/flask-api-utils 263. https://github.com/nicolaiarocci/eve 264. https://cornice.readthedocs.org/en/latest/ 265. http://falconframework.org/ 266. https://github.com/timothycrosley/hug 267. https://github.com/jeffknupp/sandman 268. http://restless.readthedocs.org/en/latest/ 269. https://github.com/vertical-knowledge/ripozo 270. http://marshmallow.readthedocs.org/en/latest/ 271. http://peterhudec.github.io/authomatic/ 272. https://github.com/pennersr/django-allauth 273. https://github.com/evonove/django-oauth-toolkit 274. https://github.com/caffeinehit/django-oauth2-provider 275. https://github.com/lepture/flask-oauthlib 276. https://github.com/idan/oauthlib 277. https://github.com/joestump/python-oauth2 278. https://github.com/omab/python-social-auth 279. https://github.com/litl/rauth 280. https://github.com/demianbrecht/sanction 281. https://github.com/demonware/jose 282. https://github.com/jpadilla/pyjwt 283. https://github.com/brianloveswords/python-jws 284. https://github.com/davedoesdev/python-jwt 285. https://github.com/pallets/jinja 286. https://chameleon.readthedocs.org/en/latest/ 287. https://genshi.edgewall.org/ 288. http://www.makotemplates.org/ 289. http://www.celeryproject.org/ 290. https://github.com/coleifer/huey 291. https://github.com/pricingassistant/mrq 292. http://python-rq.org/ 293. https://github.com/rdegges/simpleq 294. https://github.com/django-haystack/django-haystack 295. https://www.elastic.co/guide/en/elasticsearch/client/python-api/current/index.html 296. https://www.elastic.co/products/elasticsearch 297. https://github.com/elastic/elasticsearch-dsl-py 298. https://github.com/catholabs/esengine 299. https://github.com/edsu/solrpy 300. http://lucene.apache.org/solr/ 301. http://whoosh.readthedocs.org/en/latest/ 302. https://github.com/justquick/django-activity-stream 303. https://github.com/tschellenbach/Stream-Framework 304. https://github.com/django-compressor/django-compressor 305. http://django-storages.readthedocs.org/en/latest/ 306. http://www.fanstatic.org/en/latest/ 307. http://fileconveyor.org/ 308. http://flask-assets.readthedocs.org/en/latest/ 309. https://github.com/jaysonsantos/jinja-assets-compressor 310. http://webassets.readthedocs.org/en/latest/ 311. http://beaker.readthedocs.org/en/latest/ 312. https://github.com/django-cache-machine/django-cache-machine 313. https://github.com/Suor/django-cacheops 314. https://github.com/5monkeys/django-viewlet 315. http://dogpilecache.readthedocs.org/en/latest/ 316. https://pypi.python.org/pypi/HermesCache 317. https://github.com/jmoiron/johnny-cache 318. https://github.com/lericson/pylibmc 319. http://libmemcached.org/libMemcached.html 320. http://www.grantjenks.com/docs/diskcache/ 321. https://github.com/StreetVoice/django-celery-ses 322. http://tomekwojcik.github.io/envelopes/ 323. https://github.com/mailgun/flanker 324. https://github.com/martinrusev/imbox 325. https://github.com/kennethreitz/inbox.py 326. https://github.com/nylas/sync-engine 327. https://github.com/zedshaw/lamson 328. https://github.com/WoLpH/mailjet 329. https://github.com/marrow/mailer 330. https://github.com/tonioo/modoboa 331. http://www.magiksys.net/pyzmail/ 332. https://github.com/mailgun/talon 333. http://babel.pocoo.org/en/latest/ 334. https://korean.readthedocs.org/en/latest/ 335. https://en.wikipedia.org/wiki/Korean_language 336. https://github.com/gruns/furl 337. https://github.com/codeinthehole/purl 338. https://github.com/ellisonleao/pyshorteners 339. https://github.com/Alir3z4/python-short_url 340. https://github.com/sloria/webargs 341. https://www.crummy.com/software/BeautifulSoup/bs4/doc/ 342. http://bleach.readthedocs.org/en/latest/ 343. https://pypi.python.org/pypi/cssutils/ 344. https://github.com/html5lib/html5lib-python 345. http://lxml.de/ 346. https://github.com/pallets/markupsafe 347. https://github.com/gawel/pyquery 348. https://github.com/stchris/untangle 349. https://github.com/xhtml2pdf/xhtml2pdf 350. https://github.com/martinblech/xmltodict 351. http://scrapy.org/ 352. https://github.com/chineking/cola 353. https://github.com/matiasb/demiurge 354. http://pythonhosted.org/feedparser/ 355. http://grablib.org/ 356. https://github.com/hickford/MechanicalSoup 357. https://github.com/scrapinghub/portia 358. https://github.com/binux/pyspider 359. https://github.com/jmcarp/robobrowser 360. https://github.com/vinta/Haul 361. https://github.com/Alir3z4/html2text 362. https://github.com/michaelhelmick/lassie 363. https://github.com/coleifer/micawber 364. https://github.com/codelucas/newspaper 365. https://github.com/erikriver/opengraph 366. https://github.com/grangier/python-goose 367. https://github.com/buriy/python-readability 368. https://github.com/Alir3z4/python-sanitize 369. https://github.com/miso-belica/sumy 370. https://github.com/deanmalmgren/textract 371. http://deform.readthedocs.org/en/latest/ 372. https://github.com/dyve/django-bootstrap3 373. http://django-crispy-forms.readthedocs.org/en/latest/ 374. https://github.com/WiserTogether/django-remote-forms 375. http://wtforms.readthedocs.org/en/latest/ 376. http://wtforms-json.readthedocs.org/en/latest/ 377. https://github.com/schematics/schematics 378. https://github.com/keleshev/schema 379. https://github.com/Julian/jsonschema 380. http://json-schema.org/ 381. https://github.com/nicolaiarocci/cerberus/ 382. http://docs.pylonsproject.org/projects/colander/en/latest/ 383. https://github.com/alecthomas/voluptuous 384. https://github.com/podio/valideer 385. https://github.com/mbi/django-simple-captcha 386. https://github.com/moqada/django-simple-spam-blocker 387. https://github.com/alex/django-taggit 388. https://github.com/Eugeny/ajenti 389. http://djangosuit.com/ 390. https://github.com/sshwsfc/xadmin 391. https://github.com/flask-admin/flask-admin 392. https://github.com/mher/flower 393. http://grappelliproject.com 394. https://github.com/wooey/wooey 395. http://blog.getpelican.com/ 396. https://github.com/koenbok/Cactus/ 397. http://hyde.github.io/ 398. https://www.getnikola.com/ 399. http://tinkerer.me/ 400. https://www.getlektor.com/ 401. https://github.com/kennethreitz/envoy 402. https://docs.python.org/2/library/subprocess.html 403. http://sarge.readthedocs.org/en/latest/ 404. https://github.com/amoffat/sh 405. https://docs.python.org/2/library/multiprocessing.html 406. https://docs.python.org/2/library/threading.html 407. http://eventlet.net/ 408. http://www.gevent.org/ 409. https://github.com/python-greenlet/greenlet 410. https://github.com/madisonmay/Tomorrow 411. https://docs.python.org/3/library/asyncio.html 412. https://twistedmatrix.com/trac/ 413. https://github.com/quantmind/pulsar 414. https://github.com/dieseldev/diesel 415. http://zeromq.github.io/pyzmq/ 416. https://github.com/smira/txZMQ 417. https://github.com/crossbario/autobahn-python 418. https://github.com/crossbario/crossbar/ 419. https://github.com/stephenmcd/django-socketio 420. https://github.com/Lawouach/WebSocket-for-Python 421. https://pypi.python.org/pypi/gunicorn 422. https://uwsgi-docs.readthedocs.org/en/latest/ 423. https://pypi.python.org/pypi/bjoern 424. http://www.fapws.org/ 425. https://pypi.python.org/pypi/meinheld 426. https://github.com/hivesolutions/netius 427. http://pythonpaste.org/ 428. https://pypi.python.org/pypi/rocket 429. https://waitress.readthedocs.org/en/latest/ 430. http://werkzeug.pocoo.org/ 431. https://github.com/joshmarshall/jsonrpclib/ 432. https://docs.python.org/2/library/simplexmlrpcserver.html 433. https://github.com/0rpc/zerorpc-python 434. http://zeromq.org/ 435. http://msgpack.org/ 436. https://cryptography.io/en/latest/ 437. https://github.com/davidaurelio/hashids-python 438. http://hashids.org 439. http://www.paramiko.org/ 440. https://pythonhosted.org/passlib/ 441. https://www.dlitz.net/software/pycrypto/ 442. https://github.com/pyca/pynacl 443. https://docs.python.org/2/library/curses.html#module-curses 444. http://www.gnu.org/software/ncurses/ 445. https://github.com/nucleic/enaml 446. https://kivy.org/ 447. https://bitbucket.org/pyglet/pyglet/wiki/Home 448. https://riverbankcomputing.com/software/pyqt/intro 449. http://www.qt.io/ 450. https://wiki.qt.io/PySide 451. https://wiki.python.org/moin/TkInter 452. https://github.com/pybee/toga 453. http://urwid.org/ 454. http://wxpython.org/ 455. https://wiki.gnome.org/Projects/PyGObject 456. https://github.com/zoofIO/flexx 457. http://cocos2d.org/ 458. https://www.panda3d.org/ 459. http://www.pygame.org/news.html 460. http://www.ogre3d.org/tikiwiki/PyOgre 461. http://pyopengl.sourceforge.net/ 462. http://pysdl2.readthedocs.org/en/latest/ 463. https://www.renpy.org/ 464. http://pythonhosted.org/Logbook/ 465. https://eliot.readthedocs.org/en/latest/ 466. http://raven.readthedocs.org/en/latest/ 467. https://pypi.python.org/pypi/sentry 468. https://docs.python.org/2/library/unittest.html 469. https://nose.readthedocs.org/en/latest/ 470. http://pytest.org/latest/ 471. https://github.com/HypothesisWorks/hypothesis-python 472. http://nestorsalceda.github.io/mamba/ 473. https://github.com/robotframework/robotframework 474. https://tox.readthedocs.org/en/latest/ 475. https://github.com/CleanCut/green 476. https://pypi.python.org/pypi/selenium 477. http://www.seleniumhq.org/ 478. https://github.com/locustio/locust 479. https://github.com/seatgeek/sixpack 480. https://splinter.readthedocs.org/en/latest/ 481. https://github.com/asweigart/pyautogui 482. https://docs.python.org/3/library/unittest.mock.html 483. https://pypi.python.org/pypi/doublex 484. https://github.com/spulec/freezegun 485. https://github.com/patrys/httmock 486. http://falcao.it/HTTPretty/ 487. https://github.com/getsentry/responses 488. https://github.com/kevin1024/vcrpy 489. https://github.com/rbarrois/factory_boy 490. https://github.com/klen/mixer 491. https://github.com/vandersonmota/model_mommy 492. https://pypi.python.org/pypi/coverage 493. http://www.joke2k.net/faker/ 494. https://github.com/emirozer/fake2db 495. https://pypi.python.org/pypi/radar 496. https://github.com/ajalt/fuckitpy 497. https://github.com/scottrogowski/code2flow 498. https://github.com/gak/pycallgraph 499. https://github.com/yinwang0/pysonar2 500. http://coala-analyzer.org/ 501. https://pypi.python.org/pypi/flake8 502. https://www.pylint.org/ 503. https://pylama.readthedocs.org/en/latest/ 504. https://pypi.python.org/pypi/ipdb 505. https://docs.python.org/2/library/pdb.html 506. https://pypi.python.org/pypi/pudb 507. https://github.com/google/pyringe 508. https://github.com/Kozea/wdb 509. http://winpdb.org/ 510. https://github.com/django-debug-toolbar/django-debug-toolbar 511. https://github.com/dcramer/django-devserver 512. https://github.com/mgood/flask-debugtoolbar 513. https://github.com/rkern/line_profiler 514. https://github.com/fabianp/memory_profiler 515. https://github.com/what-studio/profiling 516. https://github.com/eliben/pyelftools 517. https://github.com/WoLpH/python-statsd 518. https://github.com/etsy/statsd/ 519. http://www.astropy.org/ 520. https://github.com/chapmanb/bcbio-nextgen 521. https://github.com/chapmanb/bcbb 522. http://biopython.org/wiki/Main_Page 523. http://blaze.readthedocs.org/en/latest/index.html 524. http://cclib.github.io/ 525. https://networkx.github.io/ 526. http://neupy.com/pages/home.html 527. http://nipy.org 528. http://numba.pydata.org/ 529. http://www.numpy.org/ 530. http://openbabel.org/wiki/Main_Page 531. https://github.com/mining/mining 532. http://orange.biolab.si/ 533. http://pandas.pydata.org/ 534. http://www.pydy.org/ 535. https://github.com/pymc-devs/pymc3 536. http://www.rdkit.org/ 537. http://www.scipy.org/ 538. https://github.com/statsmodels/statsmodels 539. https://github.com/sympy/sympy 540. https://github.com/quantopian/zipline 541. http://www.coolprop.org/ 542. https://github.com/sorrycc/awesome-javascript#data-visualization 543. http://matplotlib.org/ 544. https://github.com/bokeh/bokeh 545. https://github.com/yhat/ggplot 546. https://plot.ly/python/ 547. http://www.pygal.org/en/latest/ 548. https://pypi.python.org/pypi/pygraphviz 549. http://www.pyqtgraph.org/ 550. http://jiffyclub.github.io/snakeviz/ 551. https://github.com/wrobstory/vincent 552. http://vispy.org/ 553. http://opencv.org/ 554. http://simplecv.org/ 555. https://github.com/josephmisiti/awesome-machine-learning#python 556. https://github.com/muricoca/crab 557. https://github.com/piskvorky/gensim 558. https://github.com/hannes-brt/hebel 559. https://github.com/numenta/nupic 560. https://github.com/clips/pattern 561. https://github.com/pybrain/pybrain 562. https://github.com/lisa-lab/pylearn2 563. https://github.com/Theano/Theano 564. https://github.com/ocelma/python-recsys 565. http://scikit-learn.org/ 566. https://github.com/andersbll/deeppy 567. https://github.com/josephreisinger/vowpal_porpoise 568. https://github.com/JohnLangford/vowpal_wabbit/ 569. https://github.com/tensorflow/skflow 570. https://github.com/tensorflow/tensorflow 571. https://github.com/douban/dpark 572. https://github.com/klbostee/dumbo 573. https://github.com/spotify/luigi 574. https://github.com/Yelp/mrjob 575. http://spark.apache.org/docs/latest/programming-guide.html 576. https://github.com/Parsely/streamparse 577. http://storm.apache.org/ 578. https://github.com/pytoolz/cytoolz/ 579. https://github.com/kachayev/fn.py 580. https://github.com/Suor/funcy 581. https://github.com/pytoolz/toolz 582. https://github.com/realpython/list-of-python-api-wrappers 583. https://libcloud.apache.org/ 584. https://github.com/boto/boto 585. https://github.com/sunlightlabs/django-wordpress/ 586. https://github.com/mobolic/facebook-sdk 587. https://github.com/jgorset/facepy 588. https://github.com/charlierguo/gmail 589. https://github.com/google/google-api-python-client 590. https://github.com/burnash/gspread 591. https://github.com/ryanmcgrath/twython 592. https://github.com/ansible/ansible 593. https://github.com/saltstack/salt 594. http://www.openstack.org/ 595. https://docs.docker.com/compose/ 596. https://www.docker.com/ 597. http://cloudinit.readthedocs.org/en/latest/ 598. https://github.com/sebastien/cuisine 599. http://www.fabfile.org/ 600. https://github.com/ronnix/fabtools 601. https://github.com/nickstenning/honcho 602. https://github.com/ddollar/foreman 603. https://github.com/pexpect/pexpect 604. https://github.com/giampaolo/psutil 605. https://github.com/Supervisor/supervisor 606. http://apscheduler.readthedocs.org/en/latest/ 607. https://github.com/thauber/django-schedule 608. http://pydoit.org/ 609. https://github.com/gunnery/gunnery 610. http://pythonhosted.org/joblib/index.html 611. https://github.com/fengsp/plan 612. https://github.com/dbader/schedule 613. https://github.com/knipknap/SpiffWorkflow 614. http://docs.openstack.org/developer/taskflow/ 615. https://pypi.python.org/pypi/cffi 616. https://docs.python.org/2/library/ctypes.html 617. https://mathema.tician.de/software/pycuda/ 618. http://www.swig.org/Doc1.3/Python.html 619. http://cython.org/ 620. https://github.com/Maratyszcza/PeachPy 621. http://pypy.org/ 622. https://github.com/dropbox/pyston 623. https://bitbucket.org/stackless-dev/stackless/overview 624. http://python-xy.github.io/ 625. http://www.lfd.uci.edu/~gohlke/pythonlibs/ 626. https://github.com/pythonnet/pythonnet 627. https://sourceforge.net/projects/pywin32/ 628. https://winpython.github.io/ 629. http://mininet.org/ 630. https://github.com/noxrepo/pox 631. http://frenetic-lang.org/pyretic/ 632. https://github.com/sdn-ixp/internet2award 633. http://inotool.org/ 634. https://www.arduino.cc/ 635. http://pyrorobotics.com/ 636. https://github.com/SavinaRoja/PyUserInput 637. https://github.com/secdev/scapy 638. https://wifi.readthedocs.org/en/latest/ 639. http://www.pingo.io/ 640. http://python-future.org/index.html 641. https://github.com/mitsuhiko/python-modernize 642. https://pypi.python.org/pypi/six 643. https://github.com/jek/blinker 644. https://github.com/pallets/itsdangerous 645. https://github.com/mitsuhiko/pluginbase 646. https://github.com/PacketPerception/pychievements 647. http://www.tryton.org/ 648. https://github.com/nryoung/algorithms 649. https://github.com/faif/python-patterns 650. http://www.grantjenks.com/docs/sortedcontainers/ 651. https://github.com/jorgenschaefer/elpy 652. https://github.com/srusskih/SublimeJEDI 653. https://github.com/DamnWidget/anaconda 654. https://github.com/Valloric/YouCompleteMe 655. https://github.com/davidhalter/jedi 656. https://github.com/davidhalter/jedi-vim 657. https://github.com/klen/python-mode 658. https://github.com/Microsoft/PTVS 659. https://www.jetbrains.com/pycharm/ 660. http://www.liclipse.com/ 661. https://github.com/spyder-ide/spyder 662. https://github.com/ciandcd/awesome-ciandcd#online-build-system 663. https://travis-ci.org 664. https://travis-ci.com 665. https://circleci.com/ 666. https://vexor.io 667. http://wercker.com/ 668. https://www.codacy.com/ 669. https://www.quantifiedcode.com/ 670. https://www.reddit.com/r/python 671. https://www.coolgithubprojects.com/ 672. https://www.djangopackages.com/ 673. https://www.fullstackpython.com/ 674. http://python3wos.appspot.com/ 675. http://pythonhackers.com/open-source/ 676. https://python.zeef.com/alan.richmond 677. https://github.com/trending?l=python 678. http://pypi-ranking.info/alltime 679. http://importpython.com/newsletter/ 680. http://pycoders.com/ 681. http://www.pythonweekly.com/ 682. https://twitter.com/codetengu 683. https://twitter.com/getpy 684. https://twitter.com/importpython 685. https://twitter.com/planetpython 686. https://twitter.com/pycoders 687. https://twitter.com/pypi 688. https://twitter.com/pythontrending 689. https://twitter.com/PythonWeekly 690. https://github.com/kirang89/pycrumbs/blob/master/pycrumbs.md 691. https://github.com/checkcheckzz/python-github-projects 692. https://github.com/rasbt/python_reference 693. https://github.com/svaksha/pythonidae 694. https://github.com/jnv/lists 695. https://github.com/vinta/awesome-python/blob/master/CONTRIBUTING.md 696. https://github.com/vinta/awesome-python/pulls Checking URLs: ✓✓✓✓✓✓✓✓✓✓✓✓✓✓→✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓→✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓✓? Checking white listed URLs: →? > White listed: 1. 302 http://pyparsing.wikispaces.com/ → https://session.wikispaces.com/1/auth/auth?authToken=05cac738fa082d0a230cce4e3bb839fc3 2. http://www.graphviz.org/ Connection timed out - connect(2) for "www.graphviz.org" port 80 Issues :-( > Links 1. 301 https://warehouse.python.org/ → https://pypi.io/ 2. 301 http://www.joke2k.net/faker/ → http://joke2k.net/faker/ 3. http://www.clips.ua.ac.be/pattern Net::ReadTimeout travis_time:end:26893f02:start=1461480066286951159,finish=1461480320242157966,duration=253955206807 The command "awesome_bot README.md --allow-dupe --white-list pyparsing,graphviz.org" exited with 1. Done. Your build exited with 1. |