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 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 2583 2584 2585 2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607 2608 2609 2610 2611 2612 2613 2614 2615 2616 2617 2618 2619 2620 2621 2622 2623 2624 2625 2626 2627 2628 2629 2630 2631 2632 2633 2634 2635 2636 2637 2638 2639 2640 2641 2642 2643 2644 2645 2646 2647 2648 2649 2650 2651 2652 2653 2654 2655 2656 2657 2658 2659 2660 2661 2662 2663 2664 2665 2666 2667 2668 2669 2670 2671 2672 2673 2674 2675 2676 2677 2678 2679 2680 2681 2682 2683 2684 2685 2686 2687 2688 2689 2690 2691 2692 2693 2694 2695 2696 2697 2698 2699 2700 2701 2702 2703 2704 2705 2706 2707 2708 2709 2710 2711 2712 2713 2714 2715 2716 2717 2718 2719 2720 2721 2722 2723 2724 2725 2726 2727 2728 2729 2730 2731 2732 2733 2734 2735 2736 2737 2738 2739 2740 2741 2742 2743 2744 2745 2746 2747 2748 2749 2750 2751 2752 2753 2754 2755 2756 2757 2758 2759 2760 2761 2762 2763 2764 2765 2766 2767 2768 2769 2770 2771 2772 2773 2774 2775
|
python python
setuptools python-pkg-resources
wsgiref python (>= 2.5) | python-wsgiref
argparse python (>= 2.7) | python-argparse
pil python-pil
Pillow python-pil
APScheduler python-apscheduler
APacheDEX apachedex
AddOns python-peak.util
Arriero arriero
AuthKit python-authkit
Automat python-automat
Axiom python-axiom
BBQSQL bbqsql
BTrees python-btrees
Babel python-babel
Beaker python-beaker
BitTornado bittornado
BitTorrent python-bittorrent
Bitten trac-bitten-slave
Blogofile blogofile
Bottleneck python-bottleneck
Box2D python-box2d
Brlapi python-brlapi
Brotli python-brotli
Buffy python-buffy
BytecodeAssembler python-peak.util
BzrTools bzrtools
CDApplet cairo-dock-dbus-plug-in-interface-python
CDBashApplet cairo-dock-dbus-plug-in-interface-python
CDDB python-cddb
CMOR python-cmor
CacheControl python-cachecontrol
CairoSVG python-cairosvg
CalendarServer calendarserver
Cartopy python-cartopy
Catwalk python-catwalk
CedarBackup2 cedar-backup2
Cerealizer python-cerealizer
Chameleon python-chameleon
Cheetah3 python-cheetah
CherryPy python-cherrypy
CherryTree cherrytree
Click python-click
ClusterShell python-clustershell
Codeville codeville
CommonMark_bkrs python-commonmark-bkrs
ConfigArgParse python-configargparse
Connectome_Viewer connectomeviewer
ConsensusCore python-pbconsensuscore
ConsensusCore2 python-consensuscore2
CouchDB python-couchdb
Creoleparser python-creoleparser
Cython cython
DITrack ditrack
DSV python-dsv
DecoratorTools python-peak.util.decorators
DendroPy python-dendropy
DiaVisViewPlugin trac-diavisview
DisplayCAL displaycal
Django python-django
Doconce doconce
DoubleRatchet python-doubleratchet
EasyProcess python-easyprocess
EbookLib python-ebooklib
EditObj python-editobj
EditorConfig python-editorconfig
Editra editra
Elements python-elements
Elixir python-elixir
EnthoughtBase python-enthoughtbase
Epsilon python-epsilon
ExifRead python-exif
Extractor python-extractor
Extremes python-peak.util
Fabric fabric
Faker python-fake-factory
FibraNet python-fibranet
Fiona python-fiona
Flask python-flask
Flask_API python-flask-api
Flask_AutoIndex python-flask-autoindex
Flask_Babel python-flask-babel
Flask_Bcrypt python-flask-bcrypt
Flask_Compress python-flask-compress
Flask_FlatPages python-flask-flatpages
Flask_Gravatar python-flask-gravatar
Flask_HTMLmin python-flask-htmlmin
Flask_HTTPAuth python-flask-httpauth
Flask_Limiter python-flask-limiter
Flask_Migrate python-flask-migrate
Flask_OldSessions python-flask-oldsessions
Flask_OpenID python-flask-openid
Flask_Principal python-flask-principal
Flask_RESTful python-flask-restful
Flask_SQLAlchemy python-flask-sqlalchemy
Flask_Script python-flask-script
Flask_Silk python-flask-silk
Flask_Sockets python-flask-sockets
Flask_Testing python-flask-testing
Flask_WTF python-flaskext.wtf
FormEncode python-formencode
Frozen_Flask python-frozen-flask
GDAL python-gdal
Genetic python-genetic
GenomeTools python-genometools
GenomicConsensus python-pbgenomicconsensus
Genshi python-genshi
GeoIP python-geoip
Ghost.py python-ghost
GitPython python-git
GooCalendar python-goocalendar
GvGen python-gvgen
Gyoto python-gyoto
HTSeq python-htseq
ID3 python-id3
IPy python-ipy
ISO8583_Module python-iso8583
Isenkram isenkram-cli
JACK_Client python-jack-client
JCC jcc
JPype1 python-jpype
Jinja2 python-jinja2
Kajiki python-kajiki
Kivy python-kivy
LEPL python-lepl
Lasagne python-lasagne
Logbook python-logbook
Loom bzr-loom
Louie python-louie
M2Crypto python-m2crypto
MACS2 macs
MDP python-mdp
MIDIUtil python-midiutil
MLPY python-mlpy
MMLlib python-mmllib
Magics python-magics++
Mako python-mako
MapProxy python-mapproxy
Markdown python-markdown
MarkupSafe python-markupsafe
MechanicalSoup python-mechanicalsoup
MicrobeGPS microbegps
MiniMock python-minimock
Mirage mirage
Model_Builder model-builder
ModestMaps python-modestmaps
Mopidy mopidy
Mopidy_ALSAMixer mopidy-alsamixer
Mopidy_Beets mopidy-beets
Mopidy_Dirble mopidy-dirble
Mopidy_InternetArchive mopidy-internetarchive
Mopidy_Local_SQLite mopidy-local-sqlite
Mopidy_MPRIS mopidy-mpris
Mopidy_Podcast mopidy-podcast
Mopidy_Podcast_iTunes mopidy-podcast-itunes
Mopidy_Scrobbler mopidy-scrobbler
Mopidy_SomaFM mopidy-somafm
Mopidy_SoundCloud mopidy-soundcloud
Mopidy_TuneIn mopidy-tunein
Mopidy_dLeyna mopidy-dleyna
Myghty python-myghty
MyghtyUtils python-myghtyutils
NavAdd trac-navadd
Nevow python-nevow
Nik4 nik4
Nuitka nuitka
OBITools obitools
OMEMO python-omemo
OWSLib python-owslib
OdooRPC python-odoorpc
OdtExportPlugin trac-odtexport
PAM python-pam
PDAL python-pdal
PEAK_Rules python-peak.rules
PLWM python-plwm
PTable python-ptable
Parsley python-parsley
Paste python-paste
PasteDeploy python-pastedeploy
PasteScript python-pastescript
PasteWebKit python-pastewebkit
Pattern python-pattern
Paver python-paver
Photon photon
Pillow python-pil
Pint python-pint
Pivy python-pivy
Pmw python-pmw
Printrun printrun
PrivateWikis trac-privatewiki
ProxyTypes python-peak.util
PsychoPy psychopy
PuLP python-pulp
Pwman3 pwman3
PyAudio python-pyaudio
PyBluez python-bluez
PyCAPTCHA python-captcha
PyChart python-pychart
PyChef python-chef
PyChromecast python-pychromecast
PyDispatcher python-pydispatch
PyFFTW3 python-fftw
PyFeed python-feed
PyFlot python-pyflot
PyGObject python-gi
PyGithub python-github
PyGreSQL python-pygresql
PyHamcrest python-hamcrest
PyHoca_GUI pyhoca-gui
PyICU python-pyicu
PyJWT python-jwt
PyKMIP python-pykmip
PyLD python-pyld
PyMTP python-pymtp
PyMca5 python-pymca5
PyMetrics pymetrics
PyMySQL python-pymysql
PyNLPl python-pynlpl
PyNN python-pynn
PyNaCl python-nacl
PyODE python-pyode
PyOpenGL python-opengl
PyPDF2 python-pypdf2
PyPrind python-pyprind
PyProtocols python-protocols
PyPump python-pypump
PyQRCode python-pyqrcode
PyRRD python-pyrrd
PyRSS2Gen python-pyrss2gen
PySAL python-pysal
PySDL2 python-sdl2
PySPH python-pysph
PySide python-pyside
PySimpleSOAP python-pysimplesoap
PySocks python-socks
PyStaticConfiguration python-staticconf
PyStemmer python-stemmer
PyTrie python-trie
PyVCF python-pyvcf
PyVISA python-pyvisa
PyVISA_py python-pyvisa-py
PyVTK python-pyvtk
PyVirtualDisplay python-pyvirtualdisplay
PyWavelets python-pywt
PyWebDAV3 python-webdav
PyX python-pyx
PyXB python-pyxb
PyYAML python-yaml
Pyevolve python-pyevolve
Pygments python-pygments
Pykka python-pykka
Pylons python-pylons
Pymacs pymacs
Pyphen python-pyphen
Pyrex python-pyrex
Pyro pyro
Pyro4 python2-pyro4
Pyste libboost-python1.62-dev
PythonDaap python-daap
PythonQwt python-qwt
Python_fontconfig python-fontconfig
QtAwesome python-qtawesome
QtPy python-qtpy
Quixote python-quixote
Rabbyt python-rabbyt
Radicale python-radicale
Recoll python-recoll
Ren_Py python-renpy
Rivet python-rivet
Roadmap_Plugin trac-roadmap
Routes python-routes
Rtree python-rtree
RunSnakeRun runsnakerun
SOAPpy python-soappy
SPARQLWrapper python-sparqlwrapper
SQLAlchemy python-sqlalchemy
SQLAlchemy_Utils python-sqlalchemy-utils
SQLObject python-sqlobject
Scrapy python-scrapy
SecretStorage python-secretstorage
Send2Trash python-send2trash
SetupDocs python-setupdocs
Shapely python-shapely
SimPy python-simpy
SimpleTAL python-simpletal
SocksipyChain python-socksipychain
SoftLayer python-softlayer
SoundFile python-soundfile
Sphinx python-sphinx
Sponge python-sponge
SquareMap python-squaremap
Stetl python-stetl
Strongwind python-strongwind
SymbolType python-peak.util
TRML2PDF python-trml2pdf
TaskCoach taskcoach
Tempita python-tempita
Theano python-theano
TileCache tilecache
TileStache tilestache
TkinterTreectrl python-tktreectrl
Tofu python-tofu
ToscaWidgets python-toscawidgets
Trac trac
TracAccountManager trac-accountmanager
TracAnnouncer trac-announcer
TracAuthOpenId trac-authopenid
TracCodeComments trac-codecomments
TracCustomFieldAdmin trac-customfieldadmin
TracDateField trac-datefield
TracHTTPAuth trac-httpauth
TracIncludeMacro trac-includemacro
TracMasterTickets trac-mastertickets
TracMercurial trac-mercurial
TracSpamFilter trac-spamfilter
TracSubTicketsPlugin trac-subtickets
TracSubcomponents trac-subcomponents
TracTags trac-tags
TracVirtualTicketPermissions trac-virtualticketpermissions
TracWikiPrintPlugin trac-wikiprint
TracWysiwyg trac-wysiwyg
TracXMLRPC trac-xmlrpc
Trac_jsGantt trac-jsgantt
TranslatedPages trac-translatedpages
TurboGears2 python-turbogears2
TurboJson python-turbojson
TurboKid python-turbokid
Twisted python-twisted-core
URLObject python-urlobject
Unidecode python-unidecode
Unipath python-unipath
VMDKstream vmdk-stream-converter
VirtualMailManager vmm
WSME python-wsme
WTForms python-wtforms
Wand python-wand
WebError python-weberror
WebFlash python-webflash
WebHelpers python-webhelpers
WebOb python-webob
WebTest python-webtest
Werkzeug python-werkzeug
Whoosh python-whoosh
WikiTableMacro trac-wikitablemacro
Willow python-willow
X3DH python-x3dh
XEdDSA python-xeddsa
XlsxWriter python-xlsxwriter
Yapps2 python-yapps
Yapsy python-yapsy
ZConfig python-zconfig
ZODB3 python-zodb
ZSI python-zsi
ZooKeeper python-zookeeper
aafigure python-aafigure
acme python-acme
acora python-acora
actdiag python-actdiag
activipy python-activipy
activity_log_manager activity-log-manager
adal python-adal
adios python-adios
adios_mpi python-adios
admesh python-admesh
adns_python python-adns
adodb python-adodb
affine python-affine
aggdraw python-aggdraw
agtl agtl
aiodns python-aiodns
alabaster python-alabaster
alembic python-alembic
altgraph python-altgraph
amqp python-amqp
amqplib python-amqplib
aniso8601 python-aniso8601
ansible_tower_cli python-tower-cli
antlr python-antlr
antlr_python_runtime python-antlr3
anyjson python-anyjson
aodhclient python-aodhclient
apache_libcloud python-libcloud
apipkg python-apipkg
apns_client python-apns-client
appdirs python-appdirs
apptools python-apptools
apsw python-apsw
apt_xapian_index apt-xapian-index
aptfs aptfs
arandr arandr
archipel_agent_action_scheduler archipel-agent-action-scheduler
archipel_agent_hypervisor_geolocalization archipel-agent-hypervisor-geolocalization
archipel_agent_hypervisor_health archipel-agent-hypervisor-health
archipel_agent_hypervisor_network archipel-agent-hypervisor-network
archipel_agent_hypervisor_platformrequest archipel-agent-hypervisor-platformrequest
archipel_agent_iphone_notification archipel-agent-iphone-notification
archipel_agent_virtualmachine_oomkiller archipel-agent-virtualmachine-oomkiller
archipel_agent_virtualmachine_snapshoting archipel-agent-virtualmachine-snapshoting
archipel_agent_virtualmachine_vnc archipel-agent-virtualmachine-vnc
archipel_agent_vmcasting archipel-agent-vmcasting
archipel_agent_vmparking archipel-agent-vmparking
archipel_agent_xmppserver archipel-agent-xmppserver
archipel_core archipel-core
archivemail archivemail
archmage archmage
argcomplete python-argcomplete
argh python-argh
argon2_cffi python-argon2
args python-args
argvalidate python-argvalidate
arpy python-arpy
arrayfire python-arrayfire
arrow python-arrow
artifacts python-artifacts
ase python-ase
asn1crypto python-asn1crypto
asteval python-asteval
astor python-astor
astral python-astral
astroid python-astroid
atheist atheist
atomicwrites python-atomicwrites
attrs python-attr
aubio python-aubio
audioread python-audioread
authres python-authres
autobahn python-autobahn
autokey autokey-common
automaton python-automaton
automx automx
autopep8 python-autopep8
avc python-avc
avro python-avro
aws_requests_auth python-aws-requests-auth
aws_xray_sdk python-aws-xray-sdk
azure python-azure
azure_applicationinsights python-azure
azure_batch python-azure
azure_cognitiveservices_language_luis python-azure
azure_cognitiveservices_language_nspkg python-azure
azure_cognitiveservices_language_spellcheck python-azure
azure_cognitiveservices_language_textanalytics python-azure
azure_cognitiveservices_nspkg python-azure
azure_cognitiveservices_search_autosuggest python-azure
azure_cognitiveservices_search_customsearch python-azure
azure_cognitiveservices_search_entitysearch python-azure
azure_cognitiveservices_search_imagesearch python-azure
azure_cognitiveservices_search_newssearch python-azure
azure_cognitiveservices_search_nspkg python-azure
azure_cognitiveservices_search_videosearch python-azure
azure_cognitiveservices_search_visualsearch python-azure
azure_cognitiveservices_search_websearch python-azure
azure_cognitiveservices_vision_computervision python-azure
azure_cognitiveservices_vision_contentmoderator python-azure
azure_cognitiveservices_vision_customvision python-azure
azure_cognitiveservices_vision_face python-azure
azure_cognitiveservices_vision_nspkg python-azure
azure_common python-azure
azure_devtools python-azure-devtools
azure_eventgrid python-azure
azure_graphrbac python-azure
azure_keyvault python-azure
azure_loganalytics python-azure
azure_mgmt python-azure
azure_mgmt_advisor python-azure
azure_mgmt_alertsmanagement python-azure
azure_mgmt_applicationinsights python-azure
azure_mgmt_authorization python-azure
azure_mgmt_batch python-azure
azure_mgmt_batchai python-azure
azure_mgmt_billing python-azure
azure_mgmt_botservice python-azure
azure_mgmt_cdn python-azure
azure_mgmt_cognitiveservices python-azure
azure_mgmt_commerce python-azure
azure_mgmt_compute python-azure
azure_mgmt_consumption python-azure
azure_mgmt_containerinstance python-azure
azure_mgmt_containerregistry python-azure
azure_mgmt_containerservice python-azure
azure_mgmt_cosmosdb python-azure
azure_mgmt_datafactory python-azure
azure_mgmt_datalake_analytics python-azure
azure_mgmt_datalake_nspkg python-azure
azure_mgmt_datalake_store python-azure
azure_mgmt_datamigration python-azure
azure_mgmt_devspaces python-azure
azure_mgmt_devtestlabs python-azure
azure_mgmt_dns python-azure
azure_mgmt_documentdb python-azure
azure_mgmt_eventgrid python-azure
azure_mgmt_eventhub python-azure
azure_mgmt_hanaonazure python-azure
azure_mgmt_hdinsight python-azure
azure_mgmt_iotcentral python-azure
azure_mgmt_iothub python-azure
azure_mgmt_iothubprovisioningservices python-azure
azure_mgmt_keyvault python-azure
azure_mgmt_kusto python-azure
azure_mgmt_loganalytics python-azure
azure_mgmt_logic python-azure
azure_mgmt_machinelearningcompute python-azure
azure_mgmt_managementgroups python-azure
azure_mgmt_managementpartner python-azure
azure_mgmt_maps python-azure
azure_mgmt_marketplaceordering python-azure
azure_mgmt_media python-azure
azure_mgmt_monitor python-azure
azure_mgmt_msi python-azure
azure_mgmt_network python-azure
azure_mgmt_notificationhubs python-azure
azure_mgmt_nspkg python-azure
azure_mgmt_policyinsights python-azure
azure_mgmt_powerbiembedded python-azure
azure_mgmt_rdbms python-azure
azure_mgmt_recoveryservices python-azure
azure_mgmt_recoveryservicesbackup python-azure
azure_mgmt_redis python-azure
azure_mgmt_relay python-azure
azure_mgmt_reservations python-azure
azure_mgmt_resource python-azure
azure_mgmt_resourcegraph python-azure
azure_mgmt_scheduler python-azure
azure_mgmt_search python-azure
azure_mgmt_security python-azure
azure_mgmt_servermanager python-azure
azure_mgmt_servicebus python-azure
azure_mgmt_servicefabric python-azure
azure_mgmt_signalr python-azure
azure_mgmt_sql python-azure
azure_mgmt_storage python-azure
azure_mgmt_subscription python-azure
azure_mgmt_trafficmanager python-azure
azure_mgmt_web python-azure
azure_nspkg python-azure
azure_servicebus python-azure
azure_servicefabric python-azure
azure_servicemanagement_legacy python-azure
azure_storage_blob python-azure-storage
azure_storage_common python-azure-storage
azure_storage_file python-azure-storage
azure_storage_nspkg python-azure-storage
azure_storage_queue python-azure-storage
babelfish python-babelfish
backports.csv python-backports.csv
backports.functools_lru_cache python-backports.functools-lru-cache
backports.os python-backports.os
backports.shutil_get_terminal_size python-backports-shutil-get-terminal-size
backports.ssl_match_hostname python-backports.ssl-match-hostname
backports.tempfile python-backports.tempfile
backports.weakref python-backports.weakref
backports_abc python-backports-abc
backup2swift python-backup2swift
bandit python-bandit
barman barman
barman_cli barman-cli
basemap python-mpltoolkits.basemap
bashate python-bashate
bcc python-bpfcc
bcdoc python-bcdoc
bcolz python-bcolz
bcrypt python-bcrypt
bdist_nsi python-bdist-nsi
beanbag python-beanbag
beanstalkc python-beanstalkc
beautifulsoup4 python-bs4
behave python-behave
bernhard python-bernhard
betamax python-betamax
bibtexparser python-bibtexparser
bicyclerepair bicyclerepair
billiard python-billiard
binaryornot python-binaryornot
binplist python-binplist
bioblend python-bioblend
biom_format python-biom-format
biopython python-biopython
biotools python-biotools
biplist python-biplist
bitarray python-bitarray
bitcoin python-bitcoin
bitstring python-bitstring
bitstruct python-bitstruct
bjsonrpc python-bjsonrpc
bleach python-bleach
blessed python-blessed
blessings python-blessings
bley bley
blinker python-blinker
blist python-blist
blockdiag python-blockdiag
bloom python-bloom
blosc python-blosc
bobo python-bobo
boltons python-boltons
bookletimposer bookletimposer
boto python-boto
boto3 python-boto3
botocore python-botocore
bottle python-bottle
bottle_beaker python-bottle-beaker
bottle_cork python-bottle-cork
bottle_sqlite python-bottle-sqlite
bpython bpython
braintree python-braintree
breadability python-breadability
breathe python-breathe
breezy python-breezy
brial python-brial
brian python-brian
bsddb3 python-bsddb3
btchip_python python-btchip
btest btest
bugs_everywhere bugs-everywhere
bumps python-bumps
bunch python-bunch
burrito python-burrito
buzhug python-buzhug
bx_python python-bx
bz2file python-bz2file
bzr python-bzrlib
bzr_builddeb bzr-builddeb
bzr_email bzr-email
bzr_etckeeper etckeeper
bzr_fastimport bzr-fastimport
bzr_git bzr-git
bzr_search bzr-search
bzr_stats bzr-stats
bzr_upload bzr-upload
bzr_xmloutput bzr-xmloutput
cached_property python-cached-property
cachetools python-cachetools
cairocffi python-cairocffi
cajarename caja-rename
calabash python-calabash
caldav python-caldav
calypso calypso
canmatrix python-canmatrix
canonicaljson python-canonicaljson
capstone python-capstone
carrot python-carrot
case python-case
cassandra_driver python-cassandra
castellan python-castellan
catkin_lint python-catkin-lint
catkin_pkg python-catkin-pkg
cbor python-cbor
cclib python-cclib
cdiff python-cdiff
ceilometermiddleware python-ceilometermiddleware
celery python-celery
celery_haystack python-django-celery-haystack
cement python-cement
ceph_detect_init ceph-base
ceph_disk ceph-osd
ceph_volume ceph-osd
cephfs python-cephfs
certifi python-certifi
cf_python python-cf
cffi python-cffi
cfflib python-cfflib
cftime python-cftime
chaco python-chaco
changelog python-changelog
characteristic python-characteristic
chardet python-chardet
chargebee python-chargebee
chartkick python-chartkick
chaussette chaussette
chemfp python-chemfp
chirp chirp
chm2pdf chm2pdf
cigi python-cigi
cinfony python-cinfony
circuits python-circuits
circus circus
citeproc_py python-citeproc
ck python-ck
ckanclient python-ckanclient
cliapp python-cliapp
click_log python-click-log
click_plugins python-click-plugins
click_threading python-click-threading
cliff python-cliff
cligj python-cligj
clint python-clint
closure_linter closure-linter
cloud_sptheme python-cloud-sptheme
cloudpickle python-cloudpickle
cluster python-cluster
cmd2 python-cmd2
cmdtest cmdtest
cmislib python-cmislib
coards python-coards
cobe python-cobe
codegen python-codegen
codicefiscale python-codicefiscale
cogent python-cogent
colorama python-colorama
coloredlogs python-coloredlogs
colorlog python-colorlog
colormap python-colormap
colorspacious python-colorspacious
colour python-colour
commando python-commando
confget python-confget
configglue python-configglue
configobj python-configobj
configparser python-configparser
configshell_fb python-configshell-fb
confluent_kafka python-confluent-kafka
constantly python-constantly
construct python-construct
construct_legacy python-construct.legacy
contextlib2 python-contextlib2
contract python-contract
convoy python-convoy
cookiecutter python-cookiecutter
cookies python-cookies
coreapi python-coreapi
coreschema python-coreschema
cotyledon python-cotyledon
couleur python-couleur
cov_core python-cov-core
coverage python-coverage
coverage_test_runner python-coverage-test-runner
cpopen python-cpopen
cpuset cpuset
cpyrit_opencl pyrit-opencl
cracklib python-cracklib
cram python-cram
crank python-crank
crcelk python-crcelk
crcmod python-crcmod
crit criu
croniter python-croniter
cryptography python-cryptography
cryptography_vectors python-cryptography-vectors
cs python-cs
csa python-csa
csb python-csb
css_parser python-css-parser
csscompressor python-csscompressor
cssmin python-cssmin
cssselect python-cssselect
cssutils python-cssutils
cursive python-cursive
curtsies python-curtsies
custodia python-custodia
cutadapt python-cutadapt
cvs2svn cvs2svn
cvxopt python-cvxopt
cwiid python-cwiid
cwm python-swap
cycler python-cycler
cyclone python-cyclone
cymruwhois python-cymruwhois
cypari2 python-cypari2
cyvcf2 python-cyvcf2
d2to1 python-d2to1
d_rats d-rats
daemonize python-daemonize
dap python-dap
darts.util.lru python-darts.lib.utils.lru
datalad python-datalad
datrie python-datrie
dbf python-dbf
dblatex dblatex
dcmstack python-dcmstack
dcos python-dcos
dctrl2xml dctrl2xml
ddt python-ddt
deap python-deap
debiancontributors python-debiancontributors
debpartial_mirror debpartial-mirror
debtcollector python-debtcollector
decorator python-decorator
defer python-defer
defusedxml python-defusedxml
deluge deluge-common
demjson python-demjson
deprecation python-deprecation
derpconf python-derpconf
descartes python-descartes
dexml python-dexml
dfdatetime python-dfdatetime
dfvfs python-dfvfs
dfwinreg python-dfwinreg
dh_virtualenv dh-virtualenv
dhcpig dhcpig
dhcpy6d dhcpy6d
dhm python-dhm
diamond python-diamond
diaspy_api python-diaspy
dib_utils python-dib-utils
dicoclient python-dicoclient
dictclient python-dictclient
dictdlib python-dictdlib
dictobj python-dictobj
dicttoxml python-dicttoxml
diff_match_patch python-diff-match-patch
dill python-dill
dingus python-dingus
dipy python-dipy
dirspec python-dirspec
diskimage_builder python-diskimage-builder
distlib python-distlib
distorm3 python-distorm3
distro python-distro
distro_info python-distro-info
djagios djagios
django_admin_sortable python-django-adminsortable
django_adminaudit python-django-adminaudit
django_ajax_selects python-ajax-select
django_allauth python-django-allauth
django_anymail python-django-anymail
django_app_plugins python-django-app-plugins
django_appconf python-django-appconf
django_assets python-django-assets
django_auth_ldap python-django-auth-ldap
django_babel python-django-babel
django_bitfield python-django-bitfield
django_bootstrap_form python-bootstrapform
django_braces python-django-braces
django_cas_client python-django-casclient
django_classy_tags python-django-classy-tags
django_compat python-django-compat
django_compressor python-django-compressor
django_contact_form python-django-contact-form
django_cors_headers python-django-cors-headers
django_countries python-django-countries
django_crispy_forms python-django-crispy-forms
django_debug_toolbar python-django-debug-toolbar
django_dirtyfields python-django-dirtyfields
django_downloadview python-django-downloadview
django_environ python-django-environ
django_etcd_settings python-django-etcd-settings
django_extensions python-django-extensions
django_extra_views python-django-extra-views
django_filter python-django-filters
django_formtools python-django-formtools
django_fsm python-django-fsm
django_fsm_admin python-django-fsm-admin
django_gravatar2 python-django-gravatar2
django_guardian python-django-guardian
django_haystack python-django-haystack
django_hijack python-django-hijack
django_housekeeping python-django-housekeeping
django_impersonate python-django-impersonate
django_jinja python-django-jinja
django_jsonfield python-django-jsonfield
django_macaddress python-django-macaddress
django_maintenancemode python-django-maintenancemode
django_markupfield python-django-markupfield
django_memoize python-django-memoize
django_model_utils python-django-model-utils
django_modeltranslation python-django-modeltranslation
django_mptt python-django-mptt
django_navtag python-django-navtag
django_nose python-django-nose
django_notification python-django-notification
django_oauth_toolkit python-django-oauth-toolkit
django_openstack_auth python-django-openstack-auth
django_ordered_model python-django-ordered-model
django_organizations python-django-organizations
django_overextends python-django-overextends
django_pagination python-django-pagination
django_paintstore python-django-paintstore
django_picklefield python-django-picklefield
django_pipeline python-django-pipeline
django_piston python-django-piston
django_polymorphic python-django-polymorphic
django_prometheus python-django-prometheus
django_pyscss python-django-pyscss
django_python3_ldap python-django-python3-ldap
django_q python-django-q
django_ranged_response python-django-ranged-response
django_ratelimit python-django-ratelimit
django_recurrence python-django-recurrence
django_redis python-django-redis
django_redis_sessions python-django-redis-sessions
django_registration python-django-registration
django_restricted_resource python-django-restricted-resource
django_reversion python-django-reversion
django_rosetta python-django-rosetta
django_sekizai python-django-sekizai
django_session_security python-django-session-security
django_setuptest python-django-setuptest
django_shorturls python-django-shorturls
django_shortuuidfield python-django-shortuuidfield
django_simple_captcha python-django-captcha
django_simple_redis_admin python-django-redis-admin
django_sitetree python-django-sitetree
django_sortedm2m python-sortedm2m
django_stronghold python-django-stronghold
django_tables2 python-django-tables2
django_tagging python-django-tagging
django_taggit python-django-taggit
django_tastypie python-django-tastypie
django_testproject django-testproject
django_testscenarios django-testscenarios
django_threaded_multihost python-django-threaded-multihost
django_treebeard python-django-treebeard
django_uwsgi python-django-uwsgi
django_webpack_loader python-django-webpack-loader
django_websocket_redis python-django-websocket-redis
django_wkhtmltopdf python-django-wkhtmltopdf
django_xmlrpc python-django-xmlrpc
djangocms_admin_style python-djangocms-admin-style
djangorestframework python-djangorestframework
djangorestframework_gis python-djangorestframework-gis
djextdirect python-django-extdirect
djoser python-djoser
dkimpy python-dkim
dkimpy_milter dkimpy-milter
dlt python-dlt
dltlyse python-dltlyse
dnslib python-dnslib
dnspython python-dnspython
dnsq python-dnsq
dnsviz dnsviz
doc8 python-doc8
docker python-docker
docker_pycreds python-dockerpycreds
dockerpty python-dockerpty
docopt python-docopt
docutils python-docutils
dogpile.cache python-dogpile.cache
dogtail python-dogtail
dominate python-dominate
dosage dosage
dot2tex dot2tex
doublex python-doublex
dpkt python-dpkt
drf_generators python-djangorestframework-generators
drf_haystack python-djangorestframework-haystack
driconf driconf
drmaa python-drmaa
drms python-drms
drslib python-drslib
dtcwt python-dtcwt
dtfabric python-dtfabric
dtrx dtrx
duckduckgo2 python-duckduckgo2
duecredit python-duecredit
dulwich python-dulwich
dumbnet python-dumbnet
duplicity duplicity
dvbobjects opencaster
dvcs_autosync dvcs-autosync
easydev python-easydev
easygui python-easygui
easywebdav python-easywebdav
easyzone python-easyzone
ecdsa python-ecdsa
eficas eficas
efilter python-efilter
elastalert elastalert
elasticsearch python-elasticsearch
elasticsearch_curator python-elasticsearch-curator
elementtidy python-elementtidy
elib.intl python-elib.intl
emcee python-emcee
empy python-empy
enable python-enable
enet python-enet
ensymble ensymble
entrypoints python-entrypoints
enum34 python-enum34
envisage python-envisage
envparse python-envparse
enzyme python-enzyme
epc python-epc
ephem python-ephem
epigrass epigrass
epydoc python-epydoc
esmre python-esmre
et_xmlfile python-et-xmlfile
etcd3gw python-etcd3gw
ethtool python-ethtool
euca2ools euca2ools
evdev python-evdev
eventlet python-eventlet
ewmh python-ewmh
exabgp python-exabgp
exam python-exam
execnet python-execnet
exotel python-exotel
expeyes python-expeyes
expiringdict python-expiringdict
explorer bzr-explorer
expyriment python-expyriment
extras python-extras
eyeD3 python-eyed3
fabio python-fabio
factory_boy python-factory-boy
fakeredis python-fakeredis
fakesleep python-fakesleep
falcon python-falcon
fann2 python-fann2
fast5 python-fast5
fastcluster python-fastcluster
fasteners python-fasteners
fastimport python-fastimport
fastkml python-fastkml
faulthandler python-faulthandler
fbless fbless
fdb python-fdb
fdsend python-fdsend
feather_format python-feather-format
feature_check python-feature-check
feedgenerator python-feedgenerator
feedparser python-feedparser
file_encryptor python-file-encryptor
filelock python-filelock
first python-first
fisx python-fisx
fitbit python-fitbit
fitsio python-fitsio
fiu python-fiu
fixtures python-fixtures
fko libfko-python
flake8 python-flake8
flaky python-flaky
flashbake flashbake
flashproxy_common flashproxy-common
flask_mongoengine python-flask-mongoengine
flask_multistatic python-flaskext.multistatic
flask_peewee python-flask-peewee
flask_rdf python-flask-rdf
flexmock python-flexmock
flickrapi python-flickrapi
flower python-flower
flufl.bounce python-flufl.bounce
flufl.enum python-flufl.enum
flufl.password python-flufl.password
fluids python-fluids
flup python-flup
fmcs python-fmcs
fonttools python-fonttools
fontypython fontypython
foolscap python-foolscap
forgetHTML python-forgethtml
forgetSQL python-forgetsql
fparser python-fparser
fpconst python-fpconst
fpylll python-fpylll
freezegun python-freezegun
freshen python-freshen
frozendict python-frozendict
fs python-fs
fswrap python-fswrap
fte python-fte
fteproxy fteproxy
ftp_cloudfs python-ftp-cloudfs
fts fts
fts_clacks fts-clacks
fts_fai fts-fai-ldap
fts_ltsp fts-ltsp-ldap
fts_opsi fts-opsi
fudge python-fudge
funcparserlib python-funcparserlib
funcsigs python-funcsigs
functools32 python-functools32
fuse_python python-fuse
fusepy python-fusepy
fusil fusil
future python-future
futures python-concurrent.futures
futurist python-futurist
fuzzywuzzy python-fuzzywuzzy
fysom python-fysom
gTTS python-gtts
gTTS_token python-gtts-token
gWakeOnLan gwakeonlan
gabbi python-gabbi
gameclock gameclock
gamera python-gamera
ganeshactl python-nfs-ganesha
gasp python-gasp
gastables python-gastables
gastablesgui gastables
gccjit python-gccjit
gcircle python-ferret
gcm_client python-gcm-client
gdata python-gdata
gdmodule python-gd
gdspy python-gdspy
gear python-gear
geneagrapher geneagrapher
genty python-genty
geographiclib python-geographiclib
geoip2 python-geoip2
geojson python-geojson
geolinks python-geolinks
geopandas python-geopandas
geopy python-geopy
germinate python-germinate
gerritlib python-gerritlib
gertty gertty
getdns python-getdns
getmail getmail
gevent python-gevent
gevent_socketio python-socketio
gevent_websocket python-gevent-websocket
geximon geximon
ghp_import ghp-import
git_big_picture git-big-picture
git_os_job python-git-os-job
gitdb2 python-gitdb
gitinspector gitinspector
gjots2 gjots2
gkcore gnukhata-core
glad python-glad
glance_store python-glance-store
glob2 python-glob2
globs globs
gmplot python-gmplot
gmpy python-gmpy
gmpy2 python-gmpy2
gnatpython python-gnatpython
gnocchiclient python-gnocchiclient
gnukhataserver gnukhata-core-engine
gnuplot_py python-gnuplot
gnuplotlib python-gnuplotlib
go2 go2
google_api_python_client python-googleapi
google_apputils python-google-apputils
google_auth python-google-auth
googlecloudapis python-googlecloudapis
gourmet gourmet
gozerbot gozerbot
gpg python-gpg
gphoto2_cffi python-gphoto2cffi
gpiozero python-gpiozero
gps python-gps
gpxpy python-gpxpy
gpyfft python-gpyfft
grabserial grabserial
grapefruit python-grapefruit
graphviz trac-graphviz
graypy python-graypy
greenlet python-greenlet
grokmirror grokmirror
grpcio python-grpcio
grr_response_core grr-server
grr_response_server grr-server
grr_response_test grr-server
gssapi python-gssapi
gtextfsm python-gtextfsm
guacamole python-guacamole
guessit python-guessit
guidata python-guidata
guiqwt python-guiqwt
gumbo python-gumbo
gunicorn python-gunicorn
gwebsockets python-gwebsockets
gyp gyp
h2 python-h2
h5py python-h5py
hachoir_core python-hachoir-core
hachoir_metadata python-hachoir-metadata
hachoir_parser python-hachoir-parser
hachoir_regex python-hachoir-regex
hachoir_subfile python-hachoir-subfile
hachoir_urwid python-hachoir-urwid
hachoir_wx python-hachoir-wx
hacking python-hacking
halberd python-halberd
haproxy_log_analysis python-haproxy-log-analysis
hashids python-hashids
hdf5storage python-hdf5storage
hdf_compass python-hdf-compass
heudiconv heudiconv
hgsubversion hgsubversion
hgview hgview-common
hidapi python-hid
hidapi_cffi python-hidapi
hiredis python-hiredis
hiro python-hiro
hkdf python-hkdf
hl7 python-hl7
hp3parclient python-hp3parclient
hpack python-hpack
hplefthandclient python-hplefthandclient
html2text python-html2text
html5_parser python-html5-parser
html5lib python-html5lib
htmlmin python-htmlmin
htmltmpl python-htmltmpl
httmock python-httmock
http_parser python-http-parser
httpbin python-httpbin
httplib2 python-httplib2
httpretty python-httpretty
humanfriendly python-humanfriendly
humanize python-humanize
hunspell python-hunspell
hupper python-hupper
hurry.filesize python-hurry.filesize
hy python-hy
hydroffice.bag python-hydroffice.bag
hyperframe python-hyperframe
hyperlink python-hyperlink
hypothesis python-hypothesis
iapws python-iapws
ibm_db_sa python-ibm-db-sa
ibus_tegaki ibus-tegaki
icalendar python-icalendar
icalview trac-icalview
identicurse identicurse
idna python-idna
ijson python-ijson
imageio python-imageio
imagesize python-imagesize
imaplib2 python-imaplib2
impacket python-impacket
imposm python-imposm
imposm.parser python-imposm-parser
incremental python-incremental
indexed_gzip python-indexed-gzip
inflect python-inflect
inflection python-inflection
influxdb python-influxdb
iniparse python-iniparse
inotifyx python-inotifyx
intbitset python-intbitset
intervaltree python-intervaltree
intervaltree_bio python-intervaltree-bio
invocations python-invocations
invoke python-invoke
ioprocess python-ioprocess
iowait python-iowait
ipaclient python-ipaclient
ipaddr python-ipaddr
ipaddress python-ipaddress
ipalib python-ipalib
ipaplatform python-ipalib
ipapython python-ipalib
ipaserver python-ipaserver
ipatests python-ipatests
ipcalc python-ipcalc
ipdb python-ipdb
ipykernel python-ipykernel
ipython python-ipython
ipython_genutils python-ipython-genutils
ipywidgets python-ipywidgets
irc python-irc
ironic_lib python-ironic-lib
isbnlib python-isbnlib
isc_dhcp_leases python-isc-dhcp-leases
iso3166 python-iso3166
iso8601 python-iso8601
isodate python-isodate
isort python-isort
isoweek python-isoweek
itango python-itango
itsdangerous python-itsdangerous
itypes python-itypes
jabber.py python-jabber
jabberbot python-jabberbot
jack jack
jaraco.itertools python-jaraco.itertools
jaxml python-jaxml
jdcal python-jdcal
jedi python-jedi
jeepyb jeepyb
jellyfish python-jellyfish
jenkinsapi python-jenkinsapi
jinja2_time python-jinja2-time
jira python-jira
jmespath python-jmespath
joblib python-joblib
josepy python-josepy
jpy python-jpy
jpylyzer python-jpylyzer
jsbeautifier python-jsbeautifier
jsmin python-jsmin
json_schema_validator python-json-schema-validator
json_tricks python-json-tricks
jsondiff python-jsondiff
jsonext python-jsonext
jsonhyperschema_codec python-jsonhyperschema-codec
jsonpatch python-jsonpatch
jsonpath_rw python-jsonpath-rw
jsonpath_rw_ext python-jsonpath-rw-ext
jsonpickle python-jsonpickle
jsonpipe python-jsonpipe
jsonpointer python-json-pointer
jsonrpc2 python-jsonrpc2
jsonrpclib python-jsonrpclib
jsonschema python-jsonschema
junit_xml python-junit.xml
junitxml python-junitxml
junos_eznc python-junos-eznc
jupyter_client python-jupyter-client
jupyter_console python-jupyter-console
jupyter_core python-jupyter-core
jupyter_sphinx_theme python-jupyter-sphinx-theme
kafka_python python-kafka
kaitaistruct python-kaitaistruct
kamcli kamcli
kapidox kapidox
kaptan python-kaptan
kazoo python-kazoo
kdtree python-kdtree
keepalive python-keepalive
keepkey python-keepkey
keepnote keepnote
key_mon key-mon
keymapper keymapper
keyring python-keyring
keyrings.alt python-keyrings.alt
keystoneauth1 python-keystoneauth1
keystonemiddleware python-keystonemiddleware
keysync keysync
keyutils python-keyutils
kid python-kid
kiki kiki
kineticsTools python-kineticstools
kitchen python-kitchen
kiwi python-kiwi
kiwisolver python-kiwisolver
kjbuckets python-kjbuckets
klaus python-klaus
kmodpy python-kmodpy
knockpy knockpy
kombu python-kombu
kubernetes python-kubernetes
l20n python-l20n
laditools python-laditools
lamson python-lamson
landslide python-landslide
langdetect python-langdetect
latexcodec python-latexcodec
launchpadlib python-launchpadlib
lava_coordinator lava-coordinator
lava_tool lava-tool
lavapdu lavapdu-daemon
lazr.config python-lazr.config
lazr.delegates python-lazr.delegates
lazr.restfulclient python-lazr.restfulclient
lazr.smtptest python-lazr.smtptest
lazr.uri python-lazr.uri
lazy_object_proxy python-lazy-object-proxy
lazyarray python-lazyarray
ldap3 python-ldap3
ldif3 python-ldif3
ledger_autosync ledger-autosync
legit legit
lesscpy python-lesscpy
leveldb python-leveldb
lhapdf python-lhapdf
libLAS python-liblas
libarchive_c python-libarchive-c
libconcord python-libconcord
libhfst_swig python-libhfst
libiio python-libiio
liblarch python-liblarch
libnacl python-libnacl
libsass python-libsass
libthumbor python-libthumbor
libtiff python-libtiff
libtmux python-libtmux
libturpial python-libturpial
libusb1 python-libusb1
libvirt_python python-libvirt
lightblue python-lightblue
limits python-limits
linecache2 python-linecache2
linop python-linop
live_wrapper live-wrapper
livereload python-livereload
llfuse python-llfuse
llvmlite python-llvmlite
lmdb python-lmdb
lmfit python-lmfit
lockfile python-lockfile
loggerhead loggerhead
logging_tree python-logging-tree
logilab_common python-logilab-common
logilab_constraint python-logilab-constraint
logutils python-logutils
londonlaw londonlaw
loofah python-loofah
louis python-louis
lptools lptools
lqa lqa
lucene python-lucene
ludev_t ludevit
lunch python-lunch
lupa python-lupa
lxc_python2 python-lxc
lxml python-lxml
lz4 python-lz4
m2ext python-m2ext
m3u8 python-m3u8
macaron python-macaron
macholib python-macholib
macsyfinder macsyfinder
mailer python-mailer
mailman_api mailman-api
mailnag mailnag
mandrill python-mandrill
manuel python-manuel
mapbox_vector_tile python-mapbox-vector-tile
mapdamage mapdamage
mapnik python-mapnik
mapper python-libmapper
marathon python-marathon
marisa python-marisa
mate_menu mate-menu
matplotlib python-matplotlib
matplotlib_venn python-matplotlib-venn
maxminddb python-maxminddb
mayavi mayavi2
mccabe python-mccabe
mcomix mcomix
measurement python-measurement
mecab_python python-mecab
mechanize python-mechanize
medusa python-medusa
meld3 python-meld3
meliae python-meliae
memory_profiler python-memory-profiler
memprof python-memprof
mercurial mercurial-common
mercurial_extension_utils mercurial-extension-utils
mercurial_keyring mercurial-keyring
metaconfig python-metaconfig
metastudent metastudent
microversion_parse python-microversion-parse
mididings python-mididings
mido python-mido
mimerender python-mimerender
mimms mimms
mini_buildd python-mini-buildd
mini_dinstall mini-dinstall
minieigen python-minieigen
mininet mininet
mipp python-mipp
misaka python-misaka
mistral_lib python-mistral-lib
mistune python-mistune
mne python-mne
mnemonic python-mnemonic
mock python-mock
mocker python-mocker
mockldap python-mockldap
mockupdb python-mockupdb
mod_python libapache2-mod-python
mod_pywebsocket python-mod-pywebsocket
model_mommy python-model-mommy
moin python-moinmoin
moksha.common python-moksha.common
moksha.hub python-moksha.hub
monasca_statsd python-monasca-statsd
mongoengine python-mongoengine
monkeysign monkeysign
monotonic python-monotonic
moosic moosic
more_itertools python-more-itertools
morris python-morris
motor python-motor
mox python-mox
mox3 python-mox3
mozilla_devscripts mozilla-devscripts
mpegdash python-mpegdash
mpi4py python-mpi4py
mplexporter python-mplexporter
mpmath python-mpmath
mpop python-mpop
mrjob python-mrjob
mrtparse python-mrtparse
msgpack python-msgpack
msrest python-msrest
msrestazure python-msrestazure
multi_key_dict python-multi-key-dict
multicorn python-multicorn
multipletau python-multipletau
munch python-munch
munkres python-munkres
murano_pkg_check python-murano-pkg-check
musicbrainzngs python-musicbrainzngs
mutagen python-mutagen
mwparserfromhell python-mwparserfromhell
mygpoclient python-mygpoclient
myhdl python-myhdl
mysql_connector_python python-mysql.connector
mysql_utilities mysql-utilities
mysqlclient python-mysqldb
nagiosplugin python-nagiosplugin
nameparser python-nameparser
napalm_base python-napalm-base
napalm_eos python-napalm-eos
napalm_fortios python-napalm-fortios
napalm_ios python-napalm-ios
napalm_iosxr python-napalm-iosxr
napalm_junos python-napalm-junos
natsort python-natsort
naturalsort python-naturalsort
nb2plots python-nb2plots
nbconvert python-nbconvert
nbformat python-nbformat
nbsphinx python-nbsphinx
nbxmpp python-nbxmpp
ncap python-ncap
ncclient python-ncclient
ndg_httpsclient python-ndg-httpsclient
nemu python-nemu
neo python-neo
neovim python-neovim
netCDF4 python-netcdf4
netaddr python-netaddr
netfilter python-netfilter
netifaces python-netifaces
netmiko python-netmiko
netsnmp_python python-netsnmp
netsyslog python-netsyslog
networkx python-networkx
neuroshare python-neuroshare
neutron_lib python-neutron-lib
nglister nglister
ngs python-ngs
nibabel python-nibabel
nine python-nine
nipy python-nipy
nipype python-nipype
nitime python-nitime
nixstatsagent nixstatsagent
nltk python-nltk
nordugrid_arc_gangliarc nordugrid-arc-gangliarc
nordugrid_arc_nagios_plugins nordugrid-arc-nagios-plugins
nose python-nose
nose2 python-nose2
nose2_cov python-nose2-cov
nose_exclude python-nose-exclude
nose_parameterized python-nose-parameterized
nose_random python-nose-random
nose_testconfig python-nose-testconfig
nose_timer python-nose-timer
nosehtmloutput python-nosehtmloutput
nosexcover python-nosexcover
notebook python-notebook
notify2 python-notify2
notmuch python-notmuch
nototools python-nototools
nsscache nsscache
ntplib python-ntplib
numexpr python-numexpr
numpy python-numpy
numpydoc python-numpydoc
numpysane python-numpysane
nwdiag python-nwdiag
nwsclient python-nwsclient
nwsserver python-nwsserver
nxt_python python-nxt
oauth python-oauth
oauth2client python-oauth2client
oauthlib python-oauthlib
obMenu obmenu
obfsproxy obfsproxy
objgraph python-objgraph
oboinus oboinus
obsub python-obsub
odfpy python-odf
offtrac python-offtrac
ofxclient python-ofxclient
ofxhome python-ofxhome
ofxparse python-ofxparse
olefile python-olefile
omemo_backend_signal python-omemo-backend-signal
ooolib_python python-ooolib
opcua python-opcua
openopt python-openopt
openpyxl python-openpyxl
opensesame opensesame
openslide_python python-openslide
openstack.nose_plugin python-openstack.nose-plugin
openstackdocstheme python-openstackdocstheme
openstacksdk python-openstacksdk
opster python-opster
optcomplete python-optcomplete
optlang python-optlang
os_api_ref python-os-api-ref
os_apply_config python-os-apply-config
os_brick python-os-brick
os_client_config python-os-client-config
os_cloud_config python-os-cloud-config
os_collect_config python-os-collect-config
os_faults python-os-faults
os_net_config python-os-net-config
os_refresh_config python-os-refresh-config
os_service_types python-os-service-types
os_testr python-os-testr
os_traits python-os-traits
os_vif python-os-vif
os_win python-os-win
os_xenapi python-os-xenapi
osc osc
osc_lib python-osc-lib
oslo.cache python-oslo.cache
oslo.concurrency python-oslo.concurrency
oslo.config python-oslo.config
oslo.context python-oslo.context
oslo.db python-oslo.db
oslo.i18n python-oslo.i18n
oslo.log python-oslo.log
oslo.messaging python-oslo.messaging
oslo.middleware python-oslo.middleware
oslo.policy python-oslo.policy
oslo.privsep python-oslo.privsep
oslo.reports python-oslo.reports
oslo.rootwrap python-oslo.rootwrap
oslo.serialization python-oslo.serialization
oslo.service python-oslo.service
oslo.utils python-oslo.utils
oslo.versionedobjects python-oslo.versionedobjects
oslo.vmware python-oslo.vmware
oslosphinx python-oslosphinx
oslotest python-oslotest
osmapi python-osmapi
osmium python-pyosmium
osprofiler python-osprofiler
overpass python-overpass
overpy python-overpy
ovs python-openvswitch
ovsdbapp python-ovsdbapp
ow python-ow
ownet python-ownet
oz oz
packaging python-packaging
pacparser python-pacparser
padme python-padme
pagekite pagekite
pager python-pager
paho_mqtt python-paho-mqtt
paisley python-paisley
paleomix paleomix
pandas python-pandas
pandocfilters python-pandocfilters
pankoclient python-pankoclient
parallax python-parallax
parameterized python-parameterized
paramiko python-paramiko
park python-park
parse python-parse
parse_type python-parse-type
parsedatetime python-parsedatetime
parsel python-parsel
parso python-parso
passlib python-passlib
path.py python-path
path_and_address python-path-and-address
pathlib python-pathlib
pathlib2 python-pathlib2
pathtools python-pathtools
patool patool
patsy python-patsy
paypal python-paypal
pbalign python-pbalign
pbbarcode pbbarcode
pbcommand python-pbcommand
pbcore python-pbcore
pbh5tools python-pbh5tools
pbkdf2 python-pbkdf2
pbr python-pbr
pcapdump python-libbtbb-pcapdump
pcapy python-pcapy
pcp python-pcp
pcs python-pcs
pdf_redact_tools pdf-redact-tools
pdfkit python-pdfkit
pdfminer.six python-pdfminer
pdfrw python-pdfrw
pdftools python-pdftools
pebl python-pebl
pecan python-pecan
peewee python-peewee
pefile python-pefile
peframe peframe
pep8 python-pep8
pep8_naming python-pep8-naming
periodictable python-periodictable
persistent python-persistent
petsc4py python-petsc4py
pex python-pex
pexpect python-pexpect
pg8000 python-pg8000
pg_activity pg-activity
pglistener pglistener
pgmagick python-pgmagick
pgpdump python-pgpdump
pgspecial python-pgspecial
pgxnclient pgxnclient
phonenumbers python-phonenumbers
photo_uploader photo-uploader
phply python-phply
phpserialize python-phpserialize
picklable_itertools python-picklable-itertools
pickleshare python-pickleshare
piexif python-piexif
piggyphoto python-piggyphoto
pigpio python-pigpio
pika python-pika
pika_pool python-pika-pool
pilkit python-pilkit
pip python-pip
pipdeptree python-pipdeptree
pipedviewer python-ferret
pius pius
pjsua python-pjproject
pkgconfig python-pkgconfig
pkginfo python-pkginfo
pkpgcounter pkpgcounter
plasTeX python-plastex
plaso plaso
plaster python-plaster
plaster_pastedeploy python-plaster-pastedeploy
plip plip
plotly python-plotly
pluggy python-pluggy
pluginbase python-pluginbase
plumbum python-plumbum
ply python-ply
pmock python-pmock
podcastparser python-podcastparser
polib python-polib
pondus pondus
poretools poretools
portalocker python-portalocker
portpicker python-portpicker
positional python-positional
posix_ipc python-posix-ipc
poster python-poster
postnews postnews
power python-power
powerline_status python-powerline
powerline_taskwarrior python-powerline-taskwarrior
pp python-pp
pprofile python-pprofile
preggy python-preggy
prelude python-prelude
prelude_notify prelude-notify
preludedb python-preludedb
preprocess preprocess
presage_dbus_service presage-dbus
presentty presentty
pretend python-pretend
prettytable python-prettytable
prioritized_methods python-peak.rules
priority python-priority
proboscis python-proboscis
profitbricks python-profitbricks
progress python-progress
progressbar python-progressbar
prometheus_client python-prometheus-client
prompt_toolkit python-prompt-toolkit
protobix python-protobix
protobuf python-protobuf
protorpc_standalone python-protorpc-standalone
prov python-prov
prowlpy python-prowlpy
proxmoxer python-proxmoxer
pssh pssh
psutil python-psutil
psycogreen python-psycogreen
psycopg2 python-psycopg2
ptex2tex ptex2tex
pthreading python-pthreading
ptk python-ptk
publicsuffix python-publicsuffix
pudb python-pudb
puddletag puddletag
pulseaudio_dlna pulseaudio-dlna
puppet_vswitch puppet-module-vswitch
purity_ng purity-ng
purl python-purl
pushy python-pushy
pwquality python-pwquality
py python-py
pyBigWig python-pybigwig
pyCardDAV python-pycarddav
pyClamd python-pyclamd
pyDoubles python-pydoubles
pyEOS python-pyeos
pyExcelerator python-excelerator
pyFAI python-pyfai
pyFFTW python-pyfftw
pyFlow python-pyflow
pyIOSXR python-pyiosxr
pyLibravatar python-libravatar
pyMapperGUI pymappergui
pyNFFT python-pynfft
pyOpenSSL python-openssl
pyPortMidi python-pypm
pyRFC3339 python-rfc3339
pySFML python-sfml
pyScss python-pyscss
pyVows python-pyvows
py_Asterisk python-asterisk
py_cpuinfo python-cpuinfo
py_libmpdclient python-mpdclient
py_moneyed python-moneyed
py_radix python-radix
py_ubjson python-ubjson
pyacoustid python-acoustid
pyaes python-pyaes
pyaff4 python-aff4
pyalsa python-pyalsa
pyalsaaudio python-alsaaudio
pyaml python-pretty-yaml
pyasn1 python-pyasn1
pyasn1_modules python-pyasn1-modules
pyassimp python-pyassimp
pybind11 python-pybind11
pybloom python-bloomfilter
pybloomfiltermmap python-pybloomfiltermmap
pyblosxom pyblosxom
pybridge pybridge
pybtex python-pybtex
pycadf python-pycadf
pycairo python-cairo
pycalendar python-pycalendar
pycares python-pycares
pycassa python-pycassa
pycha python-pycha
pychecker pychecker
pychess pychess
pychm python-chm
pyclamav python-pyclamav
pyclips python-clips
pycoast python-pycoast
pycodcif python-pycodcif
pycodestyle python-pycodestyle
pycollada python-collada
pycountry python-pycountry
pycparser python-pycparser
pycrypto python-crypto
pycryptodomex python-pycryptodome
pycryptopp python-pycryptopp
pycups python-cups
pycurl python-pycurl
pydbus python-pydbus
pydenticon python-pydenticon
pydhcplib python-pydhcplib
pydicom python-pydicom
pydns python-dns
pydoctor python-pydoctor
pydot python-pydot
pydot_ng python-pydot-ng
pydotplus python-pydotplus
pyds9 python-pyds9
pydub python-pydub
pyeapi python-pyeapi
pyeclib python-pyeclib
pyee python-pyee
pyelftools python-pyelftools
pyenchant python-enchant
pyentropy python-pyentropy
pyepl python-pyepl
pyepr python-epr
pyepsg python-pyepsg
pyethash python-pyethash
pyface python-pyface
pyfaidx python-pyfaidx
pyferret python-ferret
pyfg python-pyfg
pyfiglet python-pyfiglet
pyflakes python-pyflakes
pyforge python-forge
pyfribidi python-pyfribidi
pyftpdlib python-pyftpdlib
pygal python-pygal
pygame python-pygame
pygame_sdl2 python-pygame-sdl2
pygccxml python-pygccxml
pygdchart python-gdchart2
pygeoif python-pygeoif
pygeoip python-pygeoip
pygerrit2 python-pygerrit2
pyghmi python-pyghmi
pygit2 python-pygit2
pyglet python-pyglet
pygmi wmii
pygopherd pygopherd
pygpiv python-gpiv
pygpu python-pygpu
pygrace python-pygrace
pygraphviz python-pygraphviz
pygrib python-grib
pygtail python-pygtail
pygtkspellcheck python-gtkspellcheck
pygts python-gts
pyhsm python-pyhsm
pyinotify python-pyinotify
pyip python-pyip
pyjavaproperties python-pyjavaproperties
pyjokes python-pyjokes
pykaraoke python-pykaraoke
pykdtree python-pykdtree
pykerberos python-kerberos
pykickstart python-pykickstart
pyknon python-pyknon
pylama python-pylama
pylast python-pylast
pylibacl python-pylibacl
pyliblo python-liblo
pyliblzma python-lzma
pylibmc python-pylibmc
pylibpcap python-libpcap
pylibssh2 python-libssh2
pylint pylint
pylint_celery python-pylint-celery
pylint_common python-pylint-common
pylint_flask python-pylint-flask
pylint_plugin_utils python-pylint-plugin-utils
pylirc python-pylirc
pylogsparser python-logsparser
pylxd python-pylxd
pymacaroons python-pymacaroons
pymad python-pymad
pymc python-pymc
pymecavideo python-mecavideo
pymediainfo python-pymediainfo
pymemcache python-pymemcache
pymetar python-pymetar
pymia python-mia
pymilter python-milter
pymodbus python-pymodbus
pymol python-pymol
pymongo python-pymongo
pymssql python-pymssql
pymtbl python-mtbl
pymvpa2 python-mvpa2
pymzml python-pymzml
pynag python-pynag
pynast pynast
pyngus python-pyngus
pynids python-nids
pynifti python-nifti
pynmea2 python-nmea2
pynwb python-pynwb
pyo python-pyo
pyocr python-pyocr
pyodbc python-pyodbc
pyogg python-ogg
pyopencl python-pyopencl
pyoptical python-pyoptical
pyorbital python-pyorbital
pyorick python-pyorick
pyosd python-pyosd
pyotp python-pyotp
pypandoc python-pypandoc
pyparallel python-parallel
pyparsing python-pyparsing
pyparted python-parted
pypcap python-pypcap
pyperclip python-pyperclip
pypng python-png
pypowervm python-pypowervm
pyproj python-pyproj
pyprompter pyprompter
pyptlib python-pyptlib
pypuppetdb python-pypuppetdb
pypureomapi python-pypureomapi
pyqi pyqi
pyqtgraph python-pyqtgraph
pyquery python-pyquery
pyrad python-pyrad
pyramid python-pyramid
pyramid_beaker python-pyramid-beaker
pyramid_chameleon python-pyramid-chameleon
pyramid_jinja2 python-pyramid-jinja2
pyramid_multiauth python-pyramid-multiauth
pyramid_tm python-pyramid-tm
pyramid_zcml python-pyramid-zcml
pyrax python-pyrax
pyregfi python-pyregfi
pyremctl python-remctl
pyres python-pyres
pyresample python-pyresample
pyrit pyrit
pyroma python-pyroma
pyroute2 python-pyroute2
pysam python-pysam
pysaml2 python-pysaml2
pyscard python-pyscard
pysendfile python-sendfile
pyserial python-serial
pysha3 python-sha3
pyshp python-pyshp
pysmbc python-smbc
pysmi python-pysmi
pysnmp python-pysnmp4
pysnmp_apps python-pysnmp4-apps
pysnmp_mibs python-pysnmp4-mibs
pysodium python-pysodium
pysolr python-pysolr
pysparse python-sparse
pyspatialite python-pyspatialite
pyspf python-spf
pysqlite python-sqlite
pysrs python-srs
pysrt python-pysrt
pyssim python-pyssim
pyst python-pyst
pystache python-pystache
pysubnettree python-subnettree
pysurfer python-surfer
pytagsfs pytagsfs
pytango python-tango
pytc python-pytc
pytcpwrap python-tcpwrap
pyte python-pyte
pytest python-pytest
pytest_bdd python-pytest-bdd
pytest_benchmark python-pytest-benchmark
pytest_cookies python-pytest-cookies
pytest_cov python-pytest-cov
pytest_cython python-pytest-cython
pytest_django python-pytest-django
pytest_expect python-pytest-expect
pytest_forked python-pytest-forked
pytest_httpbin python-pytest-httpbin
pytest_instafail python-pytest-instafail
pytest_localserver python-pytest-localserver
pytest_mock python-pytest-mock
pytest_mpl python-pytest-mpl
pytest_multihost python-pytest-multihost
pytest_pep8 python-pytest-pep8
pytest_pylint python-pytest-pylint
pytest_runner python-pytest-runner
pytest_sourceorder python-pytest-sourceorder
pytest_timeout python-pytest-timeout
pytest_tornado python-pytest-tornado
pytest_xdist python-pytest-xdist
pyth python-pyth
python2_biggles python-pybiggles
python2_pythondialog python-dialog
python_Levenshtein python-levenshtein
python_aalib python-aalib
python_afl python-afl
python_application python-application
python_apt python-apt
python_aptly python-aptly
python_augeas python-augeas
python_axolotl python-axolotl
python_axolotl_curve25519 python-axolotl-curve25519
python_barbicanclient python-barbicanclient
python_bibtex python-bibtex
python_bitbucket python-bitbucket
python_bugzilla python-bugzilla
python_can python-can
python_catcher python-catcher
python_cdd python-cdd
python_ceilometerclient python-ceilometerclient
python_cinderclient python-cinderclient
python_cjson python-cjson
python_cloudfiles python-cloudfiles
python_cloudkittyclient python-cloudkittyclient
python_congressclient python-congressclient
python_corepywrap python-corepywrap
python_crontab python-crontab
python_daemon python-daemon
python_dateutil python-dateutil
python_dbusmock python-dbusmock
python_debian python-debian
python_debianbts python-debianbts
python_designateclient python-designateclient
python_digitalocean python-digitalocean
python_distutils_extra python-distutils-extra
python_djvulibre python-djvu
python_dracclient python-dracclient
python_editor python-editor
python_espeak python-espeak
python_etcd python-etcd
python_evtx python-evtx
python_exconsole python-exconsole
python_fcgi python-fcgi
python_fedora python-fedora
python_freecontact python-freecontact
python_gammu python-gammu
python_geohash python-geohash
python_gflags python-gflags
python_gitlab python-gitlab
python_glanceclient python-glanceclient
python_glareclient python-glareclient
python_gnupg python-gnupg
python_gnutls python-gnutls
python_heatclient python-heatclient
python_hglib python-hglib
python_hpilo python-hpilo
python_igraph python-igraph
python_ilorest_library python-ilorest
python_instagram python-instagram
python_iptables python-iptables
python_ironic_inspector_client python-ironic-inspector-client
python_ironicclient python-ironicclient
python_k8sclient python-k8sclient
python_karborclient python-karborclient
python_keyczar python-keyczar
python_keystoneclient python-keystoneclient
python_ldap python-ldap
python_libdiscid python-libdiscid
python_libguess python-libguess
python_libnmap python-libnmap
python_libpisock python-pisock
python_librtmp python-librtmp
python_libtorrent python-libtorrent
python_linux_procfs python-linux-procfs
python_logging_extra python-loggingx
python_ly python-ly
python_lzo python-lzo
python_magic python-magic
python_magnumclient python-magnumclient
python_manilaclient python-manilaclient
python_memcached python-memcache
python_mhash python-mhash
python_mimeparse python-mimeparse
python_mistralclient python-mistralclient
python_mk_livestatus python-mk-livestatus
python_monascaclient python-monascaclient
python_mpd2 python-mpd
python_muranoclient python-muranoclient
python_networkmanager python-networkmanager
python_neutronclient python-neutronclient
python_nmap python-nmap
python_novaclient python-novaclient
python_novnc python-novnc
python_ntlm python-ntlm
python_octaviaclient python-octaviaclient
python_openid python-openid
python_openid_cla python-openid-cla
python_openid_teams python-openid-teams
python_openstackclient python-openstackclient
python_pam python-pampy
python_passfd python-passfd
python_popcon python-popcon
python_potr python-potr
python_prctl python-prctl
python_presage python-presage
python_pskc python-pskc
python_ptrace python-ptrace
python_redmine python-redminelib
python_saharaclient python-saharaclient
python_sane python-sane
python_scciclient python-scciclient
python_seamicroclient python-seamicroclient
python_searchlightclient python-searchlightclient
python_senlinclient python-senlinclient
python_slugify python-slugify
python_snappy python-snappy
python_sql python-sql
python_stdnum python-stdnum
python_subunit python-subunit
python_svipc python-svipc
python_swiftclient python-swiftclient
python_tackerclient python-tackerclient
python_tds python-tds
python_termstyle python-termstyle
python_troveclient python-troveclient
python_tuskarclient python-tuskarclient
python_twitter python-twitter
python_u2flib_server python-u2flib-server
python_uinput python-uinput
python_unshare python-unshare
python_vagrant python-vagrant
python_watcherclient python-watcherclient
python_xapp python-xapp
python_xlib python-xlib
python_xmltv python-xmltv
python_yubico python-yubico
python_zaqarclient python-zaqarclient
python_zunclient python-zunclient
pythontracer pythontracer
pytidylib python-tidylib
pytimechart pytimechart
pytimeparse python-pytimeparse
pytoml python-pytoml
pytools python-pytools
pytrainer pytrainer
pytsk3 python-tsk
pytyrant python-pytyrant
pytz python-tz
pyuca python-pyuca
pyudev python-pyudev
pyusb python-usb
pyviennacl python-pyviennacl
pyvmomi python-pyvmomi
pyvorbis python-pyvorbis
pywbem python-pywbem
pywps python-pywps
pyxattr python-pyxattr
pyxdg python-xdg
pyxenstore python-pyxenstore
pyxid python-pyxid
pyxmpp python-pyxmpp
pyxnat python-pyxnat
pyxp wmii
pyzmq python-zmq
q python-q
qbzr qbzr
qcli python-qcli
qct qct
qmtest qmtest
qpid_python python-qpid
qpid_qmf python-qpid-extras-qmf
qrcode python-qrcode
qrencode python-qrencode
qrtools python-qrtools
qt4reactor python-qt4reactor
qtconsole python-qtconsole
quantities python-quantities
quark_sphinx_theme python-quark-sphinx-theme
queuelib python-queuelib
quisk quisk
rabbitvcs rabbitvcs-core
radiotray radiotray
rados python-rados
rainbow python-rainbow
rally python-rally
random2 python-random2
randomize python-randomize
rarfile python-rarfile
rasterio python-rasterio
raven python-raven
rawdog rawdog
rawkit python-rawkit
rbd python-rbd
rcssmin python-rcssmin
rdflib python-rdflib
rdflib_jsonld python-rdflib-jsonld
rdiff_backup rdiff-backup
rebuildd rebuildd
recaptcha_client python-recaptcha
reclass python-reclass
recommonmark python-recommonmark
reconfigure python-reconfigure
redis python-redis
redis_py_cluster python-rediscluster
rednose python-rednose
regex python-regex
rekall_core python-rekall-core
relatorio python-relatorio
releases python-releases
remotecv python-remotecv
rencode python-rencode
reno python-reno
reportlab python-reportlab
repoze.lru python-repoze.lru
repoze.sphinx.autointerface python-repoze.sphinx.autointerface
repoze.tm2 python-repoze.tm2
repoze.who python-repoze.who
requestbuilder python-requestbuilder
requests python-requests
requests_aws python-awsauth
requests_cache python-requests-cache
requests_file python-requests-file
requests_futures python-requests-futures
requests_kerberos python-requests-kerberos
requests_mock python-requests-mock
requests_oauthlib python-requests-oauthlib
requests_toolbelt python-requests-toolbelt
requests_unixsocket python-requests-unixsocket
requestsexceptions python-requestsexceptions
requirements_detector python-requirements-detector
responses python-responses
restless python-restless
restructuredtext_lint python-restructuredtext-lint
retrying python-retrying
rfc3986 python-rfc3986
rfoo python-rfoo
rgain python-rgain
rgw python-rgw
rhn python-rhn
ricky python-ricky
ripe.atlas.cousteau python-ripe-atlas-cousteau
ripe.atlas.sagan python-ripe-atlas-sagan
rjsmin python-rjsmin
rlp python-rlp
robot_detection python-robot-detection
roman python-roman
rope python-rope
ropemacs python-ropemacs
ropemode python-ropemode
rosdep python-rosdep2
rosdistro python-rosdistro
rosinstall python-rosinstall
rosinstall_generator python-rosinstall-generator
rospkg python-rospkg
rows python-rows
rply python-rply
rpm python-rpm
rpy2 python-rpy2
rrdtool python-rrdtool
rsa python-rsa
rst2pdf rst2pdf
rstr python-rstr
rtslib_fb python-rtslib-fb
ruamel.ordereddict python-ruamel.ordereddict
ruamel.yaml python-ruamel.yaml
rudolf python-rudolf
ruffus python-ruffus
ryu python-ryu
s3transfer python-s3transfer
sabyenc python-sabyenc
sage sagemath-common
sagenb python-sagenb
sagenb_export python-sagenb-export
sanlock_python python-sanlock
sardana python-sardana
sasmodels python-sasmodels
sasview python-sasview
scales python-scales
scandir python-scandir
scapy python-scapy
scgi python-scgi
schedule python-schedule
schedutils python-schedutils
schema python-schema
schroot python-schroot
scikit_image python-skimage
scikit_learn python-sklearn
scipy python-scipy
sciscipy python-sciscipy
sclapp python-sclapp
scoary scoary
scoop python-scoop
scour python-scour
scp python-scp
scrapy_djangoitem python-scrapy-djangoitem
screenkey screenkey
scripttest python-scripttest
scruffington python-scruffy
scrypt python-scrypt
sdaps sdaps
sdnotify python-sdnotify
seaborn python-seaborn
securepass python-securepass
selectors34 python2-selectors34
selenium python-selenium
semantic_version python-semantic-version
semver python-semver
sensitivetickets trac-sensitivetickets
sentinels python-sentinels
seqdiag python-seqdiag
serpent python2-serpent
servefile servefile
service_identity python-service-identity
setoptconf python-setoptconf
setproctitle python-setproctitle
setuptools_git python-setuptools-git
setuptools_scm python-setuptools-scm
sexpdata python-sexpdata
sfepy python-sfepy
sftp_cloudfs sftpcloudfs
sgp4 python-sgp4
sh python-sh
shade python-shade
shadowsocks shadowsocks
shedskin shedskin
shellescape python-shellescape
shelltoolbox python-shelltoolbox
shodan python-shodan
shortuuid python-shortuuid
sievelib python-sievelib
signedjson python-signedjson
silx python-silx
simple_ccsm simple-ccsm
simpleeval python-simpleeval
simplegeneric python-simplegeneric
simplejson python-simplejson
simpy python-simpy3
singledispatch python-singledispatch
sireader python-sireader
six python-six
sklearn_pandas python-sklearn-pandas
slapos.core slapos-client
sleekxmpp python-sleekxmpp
slepc4py python-slepc4py
slides python-slides
slimit python-slimit
slimmer python-slimmer
slowaes python-slowaes
smalr smalr
smart python-smartpm
smartypants python-smartypants
smbpasswd python-smbpasswd
smmap2 python-smmap
smoke_zephyr python-smoke-zephyr
smstrade python-smstrade
snimpy python-snimpy
snowballstemmer python-snowballstemmer
snuggs python-snuggs
socketIO_client python-socketio-client
socketpool python-socketpool
sockjs_tornado python-sockjs-tornado
sorl_thumbnail python-sorl-thumbnail
sortedcontainers python-sortedcontainers
soundgrain soundgrain
soupsieve python-soupsieve
sourcecodegen python-sourcecodegen
spake2 python-spake2
spambayes spambayes
sparkpost python-sparkpost
specan ubertooth
spectacle spectacle
sphere python-sphere
sphinx_argparse python-sphinx-argparse
sphinx_bootstrap_theme python-sphinx-bootstrap-theme
sphinx_gallery python-sphinx-gallery
sphinx_paramlinks python-sphinx-paramlinks
sphinx_patchqueue python-sphinx-patchqueue
sphinx_rtd_theme python-sphinx-rtd-theme
sphinx_testing python-sphinx-testing
sphinxcontrib_actdiag python-sphinxcontrib.actdiag
sphinxcontrib_autoprogram sphinxcontrib-autoprogram
sphinxcontrib_blockdiag python-sphinxcontrib.blockdiag
sphinxcontrib_docbookrestapi python-sphinxcontrib.docbookrestapi
sphinxcontrib_httpdomain python-sphinxcontrib.httpdomain
sphinxcontrib_issuetracker python-sphinxcontrib.issuetracker
sphinxcontrib_nwdiag python-sphinxcontrib.nwdiag
sphinxcontrib_pecanwsme python-sphinxcontrib-pecanwsme
sphinxcontrib_plantuml python-sphinxcontrib.plantuml
sphinxcontrib_programoutput python-sphinxcontrib.programoutput
sphinxcontrib_restbuilder python-sphinxcontrib.restbuilder
sphinxcontrib_rubydomain python-sphinxcontrib.rubydomain
sphinxcontrib_seqdiag python-sphinxcontrib.seqdiag
sphinxcontrib_spelling python-sphinxcontrib.spelling
sphinxcontrib_websupport python-sphinxcontrib.websupport
sphinxcontrib_youtube python-sphinxcontrib.youtube
sphinxtesters python-sphinxtesters
spoon python-spoon
sprox python-sprox
sptest python-sptest
spur python-spur
spyder python-spyder
spyder_kernels python-spyder-kernels
spykeutils python-spykeutils
spykeviewer spykeviewer
spyne python-spyne
sqlalchemy_migrate python-migrate
sqlkit python-sqlkit
sqlparse python-sqlparse
sqlsoup python-sqlsoup
srp python-srp
ssdeep python-ssdeep
sshpubkeys python-sshpubkeys
starpy python-starpy
statistics python-statistics
statsd python-statsd
statsmodels python-statsmodels
stdeb python-stdeb
stem python-stem
stestr python-stestr
stevedore python-stevedore
stgit stgit
stomp.py python-stomp
stomper python-stomper
stompy python-stompy
stopit python-stopit
storm python-storm
straight.plugin python-straight.plugin
stressant stressant
stringtemplate3 python-stringtemplate3
structlog python-structlog
stsci.distutils python-stsci.distutils
subliminal python-subliminal
subprocess32 python-subprocess32
subunit2sql python-subunit2sql
subvertpy python-subvertpy
suds_jurko python-suds
sunlight python-sunlight
supervisor supervisor
supybot supybot
sure python-sure
suricata suricata
sushy python-sushy
svg.path python-svg.path
svgwrite python-svgwrite
svnmailer svnmailer
swauth swauth
swift python-swift
swift_bench swift-bench
swiftsc python-swiftsc
swiglpk python-swiglpk
sympy python-sympy
syncthing_gtk syncthing-gtk
syslogng syslog-ng-mod-python
systemd_python python-systemd
systemfixtures python-systemfixtures
sysv_ipc python-sysv-ipc
tables python-tables
tablib python-tablib
tabulate python-tabulate
tagpy python-tagpy
tahoe_lafs tahoe-lafs
tails_installer tails-installer
tap.py python-tap
taskflow python-taskflow
taskw python-taskw
taurus python-taurus
tblib python-tblib
tcpwatch tcpwatch-httpproxy
tegaki_pygtk python-tegaki-gtk
tegaki_python python-tegaki
tegaki_tools python-tegakitools
tegaki_train tegaki-train
tempest python-tempest
templayer python-templayer
tenacity python-tenacity
termcolor python-termcolor
terminado python-terminado
test_server python-test-server
testfixtures python-testfixtures
testing.common.database python-testing.common.database
testing.mysqld python-testing.mysqld
testing.postgresql python-testing.postgresql
testpath python-testpath
testrepository python-testrepository
testresources python-testresources
testscenarios python-testscenarios
testtools python-testtools
texext python-texext
textile python-textile
texttable python-texttable
tftpy python-tftpy
tgext.admin python-tgext.admin
tgext.crud python-tgext.admin
thrift python-thrift
thumbor thumbor
tinycss python-tinycss
tinyeartrainer tinyeartrainer
tinyrpc python-tinyrpc
tkSnack python-tksnack
tlsh python-tlsh
tlslite_ng python-tlslite-ng
tmdbsimple python-tmdbsimple
tmuxp python-tmuxp
tnetstring python-tnetstring
tnseq_transit tnseq-transit
tomahawk python-tomahawk
toml python-toml
tooz python-tooz
toposort python-toposort
tornado python-tornado
tornadorpc python-tornadorpc
toro python-toro
tortoisehg tortoisehg
tosca_parser python-tosca-parser
totalopenstation totalopenstation
tqdm python-tqdm
traceback2 python-traceback2
tracer python-tracer
traitlets python-traitlets
traits python-traits
traitsui python-traitsui
transaction python-transaction
transitions python-transitions
translate_toolkit python-translate
translationstring python-translationstring
translitcodec python-translitcodec
transmissionrpc python-transmissionrpc
trash_cli trash-cli
treq python-treq
trezor python-trezor
trimage trimage
tripleo_image_elements python-tripleo-image-elements
tritium tritium
trollius python-trollius
trollius_redis python-trollius-redis
ttystatus python-ttystatus
tuna tuna
tunigo python-tunigo
turnin_ng turnin-ng
tw.forms python-toscawidgets
tweepy python-tweepy
twextpy python-twext
twilio python-twilio
twill python-twill
twodict python-twodict
twython python-twython
txLibravatar python-txlibravatar
txWS python-txws
txZMQ python-txzmq
txaio python-txaio
txfixtures python-txfixtures
txosc python-txosc
txsocksx python-txsocksx
txwinrm python-txwinrm
txzookeeper python-txzookeeper
typing python-typing
typogrify python-typogrify
tzlocal python-tzlocal
u1db python-u1db
uTidylib python-utidylib
u_msgpack_python python-u-msgpack
ubuntu_dev_tools python-ubuntutools
ucltip python-ucltip
udatetime python-udatetime
ufo2otf ufo2otf
ufw python-ufw
ujson python-ujson
ulmo python-ulmo
uncertainties python-uncertainties
unicodecsv python-unicodecsv
uniconvertor python-uniconvertor
unidiff python-unidiff
unittest2 python-unittest2
unittest_xml_reporting python-xmlrunner
unpaddedbase64 python-unpaddedbase64
uritemplate python-uritemplate
uritools python-uritools
urlgrabber python-urlgrabber
urllib3 python-urllib3
urwid python-urwid
urwid_satext python-urwid-satext
urwidtrees python-urwidtrees
usagestats python-usagestats
usbtc08 python-usbtc08
validictory python-validictory
vamos undertaker
van.pydeb python-van.pydeb
vatnumber python-vatnumber
vcrpy python-vcr
vcstools python-vcstools
vcversioner python-vcversioner
venusian python-venusian
versiontools python-versiontools
versuchung python-versuchung
vine python-vine
vinetto vinetto
virtaal virtaal
virtualbricks virtualbricks
virtualenv python-virtualenv
virtualenv_clone python-virtualenv-clone
virtualenvwrapper virtualenvwrapper
vispy python-vispy
vizigrep vizigrep
vland vland
vmdebootstrap vmdebootstrap
vobject python-vobject
volatility volatility
voluptuous python-voluptuous
vsgui python-vsgui
vulndb python-vulndb
w3lib python-w3lib
wadllib python-wadllib
waiting python-waiting
waitress python-waitress
wammu wammu
warlock python-warlock
watchdog python-watchdog
watson_developer_cloud python-watson-developer-cloud
wchartype python-wchartype
wcwidth python-wcwidth
weakrefmethod python-weakrefmethod
web.py python-webpy
webassets python-webassets
webcolors python-webcolors
webencodings python-webencodings
websocket_client python-websocket
websockify python-websockify
webunit python-webunit
wget python-wget
whatthepatch python-whatthepatch
wheel python-wheel
wheezy.template python-wheezy.template
whichcraft python-whichcraft
whisper python-whisper
whitenoise python-whitenoise
whois python-whois
whyteboard whyteboard
wicd python-wicd
widgetsnbextension python-widgetsnbextension
wifite wifite
winpdb winpdb
wit python-wit
wokkel python-wokkel
woo python-woo
wrapt python-wrapt
ws4py python-ws4py
wsaccel python-wsaccel
wsgi_intercept python-wsgi-intercept
wsgicors python-wsgicors
wsgilog python-wsgilog
wstool python-wstool
wstools python-wstools
wtf_peewee python-wtf-peewee
wxPython_common python-wxgtk3.0
wxmpl python-wxmpl
x2go python-x2go
xapian_haystack python-xapian-haystack
xappy python-xappy
xarray python-xarray
xattr python-xattr
xcffib python-xcffib
xdo python-xdo
xe python-xe
xgflib xgridfit
xhtml2pdf python-xhtml2pdf
xia xia
xkcd python-xkcd
xlrd python-xlrd
xlwt python-xlwt
xmds2 xmds2
xml_marshaller python-xmlmarshaller
xmlbuilder python-xmlbuilder
xmldiff xmldiff
xmltodict python-xmltodict
xopen python-xopen
xpra xpra
xtermcolor python-xtermcolor
xvfbwrapper python-xvfbwrapper
xxdiff_scripts xxdiff-scripts
yagtd yagtd
yanc python-nose-yanc
yapf python-yapf
yaql python-yaql
yara_python python-yara
yattag python-yattag
yenc python-yenc
yowsup2 python-yowsup
yt python-yt
yubikey_piv_manager yubikey-piv-manager
yubioath_desktop yubioath-desktop
yum_metadata_parser python-sqlitecachec
zabbix_cli zabbix-cli
zake python-zake
zc.buildout python-zc.buildout
zc.customdoctests python-zc.customdoctests
zc.lockfile python-zc.lockfile
zdaemon python-zdaemon
zeep python-zeep
zeitgeist_explorer zeitgeist-explorer
zenmap zenmap
zenoss python-zenoss
zeroconf python-zeroconf
zfec python-zfec
zhpy python-zhpy
zim zim
zinnia_python python-zinnia
zipstream python-zipstream
zodbpickle python-zodbpickle
zope.authentication python-zope.authentication
zope.browser python-zope.browser
zope.cachedescriptors python-zope.cachedescriptors
zope.component python-zope.component
zope.configuration python-zope.configuration
zope.contenttype python-zope.contenttype
zope.copy python-zope.copy
zope.deprecation python-zope.deprecation
zope.dottedname python-zope.dottedname
zope.event python-zope.event
zope.exceptions python-zope.exceptions
zope.hookable python-zope.hookable
zope.i18n python-zope.i18n
zope.i18nmessageid python-zope.i18nmessageid
zope.interface python-zope.interface
zope.location python-zope.location
zope.proxy python-zope.proxy
zope.publisher python-zope.publisher
zope.schema python-zope.schema
zope.security python-zope.security
zope.sendmail python-zope.sendmail
zope.sqlalchemy python-zope.sqlalchemy
zope.testbrowser python-zope.testbrowser
zope.testing python-zope.testing
zope.testrunner python-zope.testrunner
zope.traversing python-zope.traversing
zxcvbn python-zxcvbn
zyne zyne
zzzeeksphinx python-zzzeeksphinx
|