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 2776 2777 2778 2779 2780 2781 2782 2783 2784 2785 2786 2787 2788 2789 2790 2791 2792 2793 2794 2795 2796 2797 2798 2799 2800 2801 2802 2803 2804 2805 2806 2807 2808 2809 2810 2811 2812 2813 2814 2815 2816 2817 2818 2819 2820 2821 2822 2823 2824 2825 2826 2827 2828 2829 2830 2831 2832 2833 2834 2835 2836 2837 2838 2839 2840 2841 2842 2843 2844 2845 2846 2847 2848 2849 2850 2851 2852 2853 2854 2855 2856 2857 2858 2859 2860 2861 2862 2863 2864 2865 2866 2867 2868 2869 2870 2871 2872 2873 2874 2875 2876 2877 2878 2879 2880 2881 2882 2883 2884 2885 2886 2887 2888 2889 2890 2891 2892 2893 2894 2895 2896 2897 2898 2899 2900 2901 2902 2903 2904 2905 2906 2907 2908 2909 2910 2911 2912 2913 2914 2915 2916 2917 2918 2919 2920 2921 2922 2923 2924 2925 2926 2927 2928 2929 2930 2931 2932 2933 2934 2935 2936 2937 2938 2939 2940 2941 2942 2943 2944 2945 2946 2947 2948 2949 2950 2951 2952 2953 2954 2955 2956 2957 2958 2959 2960 2961 2962 2963 2964 2965 2966 2967 2968 2969 2970 2971 2972 2973 2974 2975 2976 2977 2978 2979 2980 2981 2982 2983 2984 2985 2986 2987 2988 2989 2990 2991 2992 2993 2994 2995 2996 2997 2998 2999 3000 3001 3002 3003 3004 3005
|
pil python3-pil
Pillow python3-pil
setuptools python3-pkg-resources
argparse python3 (>= 3.2)
2ping 2ping
APLpy python3-aplpy
APScheduler python3-apscheduler
Automat python3-automat
BTrees python3-btrees
Babel python3-babel
Beaker python3-beaker
Bottleneck python3-bottleneck
Brlapi python3-brlapi
Brotli python3-brotli
BuildStream python3-buildstream
BuildStream_external python3-bst-external
CCColUtils python3-cccolutils
CDApplet cairo-dock-dbus-plug-in-interface-python
CDBashApplet cairo-dock-dbus-plug-in-interface-python
CMOR python3-cmor
CNVkit cnvkit
CTDopts python3-ctdopts
CacheControl python3-cachecontrol
CairoSVG python3-cairosvg
Cartopy python3-cartopy
CedarBackup3 cedar-backup3
Cerberus python3-cerberus
Cerealizer python3-cerealizer
Chameleon python3-chameleon
CheMPS2 python3-chemps2
Cheetah3 python3-cheetah
CherryPy python3-cherrypy3
Click python3-click
ClusterShell python3-clustershell
CommonMark_bkrs python3-commonmark-bkrs
ConfigArgParse python3-configargparse
ConsensusCore python3-pbconsensuscore
Cython cython3
DSV python3-dsv
Decopy decopy
DendroPy python3-dendropy
Django python3-django
DoubleRatchet python3-doubleratchet
EasyProcess python3-easyprocess
EbookLib python3-ebooklib
EditorConfig python3-editorconfig
Electrum python3-electrum
ExifRead python3-exif
Faker python3-fake-factory
Fiona python3-fiona
Flask python3-flask
Flask_API python3-flask-api
Flask_Assets python3-flask-assets
Flask_AutoIndex python3-flask-autoindex
Flask_Babel python3-flask-babel
Flask_BabelEx python3-flask-babelex
Flask_Bcrypt python3-flask-bcrypt
Flask_Cache python3-flask-cache
Flask_Compress python3-flask-compress
Flask_Cors python3-flask-cors
Flask_FlatPages python3-flask-flatpages
Flask_Gravatar python3-flask-gravatar
Flask_HTMLmin python3-flask-htmlmin
Flask_HTTPAuth python3-flask-httpauth
Flask_LDAPConn python3-flask-ldapconn
Flask_Limiter python3-flask-limiter
Flask_Login python3-flask-login
Flask_Mail python3-flask-mail
Flask_Migrate python3-flask-migrate
Flask_OAuthlib python3-flask-oauthlib
Flask_OpenID python3-flask-openid
Flask_Paranoid python3-flask-paranoid
Flask_Principal python3-flask-principal
Flask_RESTful python3-flask-restful
Flask_SQLAlchemy python3-flask-sqlalchemy
Flask_Script python3-flask-script
Flask_Security python3-flask-security
Flask_Silk python3-flask-silk
Flask_SocketIO python3-flask-socketio
Flask_Testing python3-flask-testing
Flask_WTF python3-flaskext.wtf
Flor python3-flor
FormEncode python3-formencode
Frozen_Flask python3-frozen-flask
GDAL python3-gdal
GPlayCli gplaycli
GaussSum gausssum
Genshi python3-genshi
GeoAlchemy2 python3-geoalchemy2
GeoIP python3-geoip
Geophar geophar
Ghost.py python3-ghost
GitPython python3-git
GladTeX python3-gleetex
Glances glances
Glymur python3-glymur
GooCalendar python3-goocalendar
Guake guake
Gyoto python3-gyoto
HTSeq python3-htseq
HeapDict python3-heapdict
HyperKitty python3-django-hyperkitty
IMDbPY python3-imdbpy
IPy python3-ipy
IsoSpecPy python3-isospec
JACK_Client python3-jack-client
JPype1 python3-jpype
JUBE jube
Jinja2 python3-jinja2
Kajiki python3-kajiki
Keras python3-keras
Keras_Applications python3-keras-applications
Keras_Preprocessing python3-keras-preprocessing
Kivy python3-kivy
Kyoto_Cabinet python3-kyotocabinet
LEPL python3-lepl
Lasagne python3-lasagne
Lektor lektor
LibAppArmor python3-libapparmor
Logbook python3-logbook
MAPI python3-mapi
MDP python3-mdp
MIDIUtil python3-midiutil
MMLlib python3-mmllib
MPD_sima mpd-sima
Magics python3-magics++
Mako python3-mako
MapProxy python3-mapproxy
Markdown python3-markdown
MarkupSafe python3-markupsafe
Markups python3-markups
Mastodon.py python3-mastodon
MechanicalSoup python3-mechanicalsoup
Mnemosyne mnemosyne
MontagePy python3-montagepy
MutatorMath python3-mutatormath
NEURON python3-neuron
Nautilus_scripts_manager nautilus-scripts-manager
Nuitka nuitka
OMEMO python3-omemo
OSMAlchemy python3-osmalchemy
OWSLib python3-owslib
OdooRPC python3-odoorpc
OnionBalance onionbalance
PGPy python3-pgpy
PTable python3-ptable
Pallets_Sphinx_Themes python3-pallets-sphinx-themes
Paste python3-paste
PasteDeploy python3-pastedeploy
PasteScript python3-pastescript
Pillow python3-pil
Pint python3-pint
Pivy python3-pivy
Plinth freedombox
PuLP python3-pulp
Pweave python3-pweave
PyAVM python3-pyavm
PyAudio python3-pyaudio
PyBEL python3-pybel
PyBluez python3-bluez
PyChromecast python3-pychromecast
PyDispatcher python3-pydispatch
PyGObject python3-gi
PyGithub python3-github
PyGnuplot python3-pygnuplot
PyGreSQL python3-pygresql
PyHamcrest python3-hamcrest
PyHoca_CLI pyhoca-cli
PyICU python3-icu
PyJWT python3-jwt
PyKCS11 python3-pykcs11
PyKMIP python3-pykmip
PyLD python3-pyld
PyMca5 python3-pymca5
PyMeasure python3-pymeasure
PyMemoize python3-memoize
PyMySQL python3-pymysql
PyNLPl python3-pynlpl
PyNaCl python3-nacl
PyOpenGL python3-opengl
PyPDF2 python3-pypdf2
PyPrind python3-pyprind
PyPump python3-pypump
PyQRCode python3-pyqrcode
PyQSO pyqso
PyRSS2Gen python3-pyrss2gen
PySAL python3-pysal
PySDL2 python3-sdl2
PySimpleSOAP python3-pysimplesoap
PySocks python3-socks
PyStaticConfiguration python3-staticconf
PyStemmer python3-stemmer
PyTrie python3-trie
PyVCF python3-pyvcf
PyVISA python3-pyvisa
PyVISA_py python3-pyvisa-py
PyVirtualDisplay python3-pyvirtualdisplay
PyWavelets python3-pywt
PyWebDAV3 python3-webdav
PyX python3-pyx
PyXB python3-pyxb
PyYAML python3-yaml
Pydap python3-pydap
Pygments python3-pygments
Pykka python3-pykka
Pyphen python3-pyphen
Pyro4 python3-pyro4
PythonQwt python3-qwt
Python_fontconfig python3-fontconfig
QtAwesome python3-qtawesome
QtPy python3-qtpy
Quamash python3-quamash
QuantLib_Python quantlib-python
Radicale python3-radicale
ReParser python3-reparser
Recoll python3-recoll
RestrictedPython python3-restrictedpython
Routes python3-routes
Rtree python3-rtree
SPARQLWrapper python3-sparqlwrapper
SQLAlchemy python3-sqlalchemy
SQLAlchemy_Utils python3-sqlalchemy-utils
SQLAlchemy_i18n python3-sqlalchemy-i18n
SQLObject python3-sqlobject
Scrapy python3-scrapy
SecretStorage python3-secretstorage
Send2Trash python3-send2trash
Shapely python3-shapely
Shredder rmlint-gui
SimPy python3-simpy
SimpleITK python3-simpleitk
SimpleTAL python3-simpletal
SoftLayer python3-softlayer
Sonata sonata
SoundFile python3-soundfile
Sphinx python3-sphinx
Tempita python3-tempita
Theano python3-theano
TkinterTreectrl python3-tktreectrl
Twisted python3-twisted
URLObject python3-urlobject
Unidecode python3-unidecode
UnknownHorizons unknown-horizons
WALinuxAgent waagent
WSGIProxy2 python3-wsgiproxy
WSME python3-wsme
WTForms python3-wtforms
Wand python3-wand
WebOb python3-webob
WebTest python3-webtest
Werkzeug python3-werkzeug
Whoosh python3-whoosh
Willow python3-willow
X3DH python3-x3dh
XEdDSA python3-xeddsa
XStatic python3-xstatic
XStatic_Angular python3-xstatic-angular
XStatic_Angular_Bootstrap python3-xstatic-angular-bootstrap
XStatic_Angular_Cookies python3-xstatic-angular-cookies
XStatic_Angular_FileUpload python3-xstatic-angular-fileupload
XStatic_Angular_Gettext python3-xstatic-angular-gettext
XStatic_Angular_Mock python3-xstatic-angular-mock
XStatic_Angular_Schema_Form python3-xstatic-angular-schema-form
XStatic_Angular_UUID python3-xstatic-angular-uuid
XStatic_Angular_Vis python3-xstatic-angular-vis
XStatic_Angular_lrdragndrop python3-xstatic-angular-lrdragndrop
XStatic_Bootstrap_Datepicker python3-xstatic-bootstrap-datepicker
XStatic_Bootstrap_SCSS python3-xstatic-bootstrap-scss
XStatic_D3 python3-xstatic-d3
XStatic_FileSaver python3-xstatic-filesaver
XStatic_Font_Awesome python3-xstatic-font-awesome
XStatic_Hogan python3-xstatic-hogan
XStatic_JQuery.Bootstrap.Wizard python3-xstatic-jquery.bootstrap.wizard
XStatic_JQuery.TableSorter python3-xstatic-jquery.tablesorter
XStatic_JQuery.quicksearch python3-xstatic-jquery.quicksearch
XStatic_JQuery_Migrate python3-xstatic-jquery-migrate
XStatic_JSEncrypt python3-xstatic-jsencrypt
XStatic_JS_Yaml python3-xstatic-js-yaml
XStatic_Jasmine python3-xstatic-jasmine
XStatic_Json2yaml python3-xstatic-json2yaml
XStatic_Magic_Search python3-xstatic-magic-search
XStatic_QUnit python3-xstatic-qunit
XStatic_Rickshaw python3-xstatic-rickshaw
XStatic_Spin python3-xstatic-spin
XStatic_bootswatch python3-xstatic-bootswatch
XStatic_jQuery python3-xstatic-jquery
XStatic_jquery_ui python3-xstatic-jquery-ui
XStatic_mdi python3-xstatic-mdi
XStatic_objectpath python3-xstatic-objectpath
XStatic_roboto_fontface python3-xstatic-roboto-fontface
XStatic_smart_table python3-xstatic-smart-table
XStatic_term.js python3-xstatic-term.js
XStatic_tv4 python3-xstatic-tv4
XlsxWriter python3-xlsxwriter
Yapps2 python3-yapps
Yapsy python3-yapsy
ZConfig python3-zconfig
acme python3-acme
acme_tiny acme-tiny
acora python3-acora
actdiag python3-actdiag
activipy python3-activipy
adal python3-adal
adios python3-adios
adios_mpi python3-adios
admesh python3-admesh
aeidon python3-aeidon
afew afew
affine python3-affine
agate python3-agate
agate_dbf python3-agatedbf
agate_excel python3-agateexcel
agate_sql python3-agatesql
aggdraw python3-aggdraw
aioamqp python3-aioamqp
aiocoap python3-aiocoap
aiodns python3-aiodns
aiofiles python3-aiofiles
aiohttp python3-aiohttp
aiohttp_cors python3-aiohttp-cors
aiohttp_jinja2 python3-aiohttp-jinja2
aiohttp_mako python3-aiohttp-mako
aiomeasures python3-aiomeasures
aioopenssl python3-aioopenssl
aiopg python3-aiopg
aioprocessing python3-aioprocessing
aioredis python3-aioredis
aiosasl python3-aiosasl
aiosmtpd python3-aiosmtpd
aiowsgi python3-aiowsgi
aioxmlrpc python3-aioxmlrpc
aioxmpp python3-aioxmpp
aiozmq python3-aiozmq
airr python3-airr
ajpy python3-ajpy
alabaster python3-alabaster
alembic python3-alembic
altgraph python3-altgraph
amp_atomistics python3-amp
amqp python3-amqp
amqplib python3-amqplib
androguard androguard
aniso8601 python3-aniso8601
anosql python3-anosql
ansi python3-ansi
ansible ansible
ansible_lint ansible-lint
ansible_tower_cli python3-tower-cli
antlr python3-antlr
antlr_python3_runtime python3-antlr3
anyjson python3-anyjson
aodh python3-aodh
aodhclient python3-aodhclient
apache_libcloud python3-libcloud
apertium_apy apertium-apy
apertium_streamparser python3-streamparser
api_hour python3-api-hour
apipkg python3-apipkg
apparmor python3-apparmor
appdirs python3-appdirs
apptools python3-apptools
apsw python3-apsw
apt_clone apt-clone
apt_venv apt-venv
argcomplete python3-argcomplete
argh python3-argh
argon2_cffi python3-argon2
argparse_manpage python3-argparse-manpage
args python3-args
ariba ariba
arpy python3-arpy
arrayfire python3-arrayfire
arrow python3-arrow
artifacts python3-artifacts
asciinema asciinema
asdf python3-asdf
ase python3-ase
asgiref python3-asgiref
asn1crypto python3-asn1crypto
astLib python3-astlib
asteval python3-asteval
astor python3-astor
astral python3-astral
astroML python3-astroml
astroML_addons python3-astroml-addons
astrodendro python3-astrodendro
astroid python3-astroid
astroplan python3-astroplan
astropy python3-astropy
astropy_healpix python3-astropy-healpix
astropy_helpers python3-astropy-helpers
astropy_sphinx_theme python3-astropy-sphinx-theme
astroquery python3-astroquery
astroscrappy python3-astroscrappy
asttokens python3-asttokens
async_generator python3-async-generator
async_timeout python3-async-timeout
asyncpg python3-asyncpg
asyncssh python3-asyncssh
atomicwrites python3-atomicwrites
atpublic python3-public
attrs python3-attr
aubio python3-aubio
audioread python3-audioread
audiotools audiotools
authres python3-authres
autobahn python3-autobahn
automaton python3-automaton
autopep8 python3-autopep8
autoradio autoradio
autosuspend autosuspend
avro_python3 python3-avro
aws_requests_auth python3-aws-requests-auth
aws_shell aws-shell
aws_xray_sdk python3-aws-xray-sdk
awscli awscli
azure python3-azure
azure_applicationinsights python3-azure
azure_batch python3-azure
azure_cognitiveservices_language_luis python3-azure
azure_cognitiveservices_language_spellcheck python3-azure
azure_cognitiveservices_language_textanalytics python3-azure
azure_cognitiveservices_search_autosuggest python3-azure
azure_cognitiveservices_search_customsearch python3-azure
azure_cognitiveservices_search_entitysearch python3-azure
azure_cognitiveservices_search_imagesearch python3-azure
azure_cognitiveservices_search_newssearch python3-azure
azure_cognitiveservices_search_videosearch python3-azure
azure_cognitiveservices_search_visualsearch python3-azure
azure_cognitiveservices_search_websearch python3-azure
azure_cognitiveservices_vision_computervision python3-azure
azure_cognitiveservices_vision_contentmoderator python3-azure
azure_cognitiveservices_vision_customvision python3-azure
azure_cognitiveservices_vision_face python3-azure
azure_common python3-azure
azure_devtools python3-azure-devtools
azure_eventgrid python3-azure
azure_graphrbac python3-azure
azure_keyvault python3-azure
azure_loganalytics python3-azure
azure_mgmt python3-azure
azure_mgmt_advisor python3-azure
azure_mgmt_alertsmanagement python3-azure
azure_mgmt_applicationinsights python3-azure
azure_mgmt_authorization python3-azure
azure_mgmt_batch python3-azure
azure_mgmt_batchai python3-azure
azure_mgmt_billing python3-azure
azure_mgmt_botservice python3-azure
azure_mgmt_cdn python3-azure
azure_mgmt_cognitiveservices python3-azure
azure_mgmt_commerce python3-azure
azure_mgmt_compute python3-azure
azure_mgmt_consumption python3-azure
azure_mgmt_containerinstance python3-azure
azure_mgmt_containerregistry python3-azure
azure_mgmt_containerservice python3-azure
azure_mgmt_cosmosdb python3-azure
azure_mgmt_datafactory python3-azure
azure_mgmt_datalake_analytics python3-azure
azure_mgmt_datalake_store python3-azure
azure_mgmt_datamigration python3-azure
azure_mgmt_devspaces python3-azure
azure_mgmt_devtestlabs python3-azure
azure_mgmt_dns python3-azure
azure_mgmt_documentdb python3-azure
azure_mgmt_eventgrid python3-azure
azure_mgmt_eventhub python3-azure
azure_mgmt_hanaonazure python3-azure
azure_mgmt_hdinsight python3-azure
azure_mgmt_iotcentral python3-azure
azure_mgmt_iothub python3-azure
azure_mgmt_iothubprovisioningservices python3-azure
azure_mgmt_keyvault python3-azure
azure_mgmt_kusto python3-azure
azure_mgmt_loganalytics python3-azure
azure_mgmt_logic python3-azure
azure_mgmt_machinelearningcompute python3-azure
azure_mgmt_managementgroups python3-azure
azure_mgmt_managementpartner python3-azure
azure_mgmt_maps python3-azure
azure_mgmt_marketplaceordering python3-azure
azure_mgmt_media python3-azure
azure_mgmt_monitor python3-azure
azure_mgmt_msi python3-azure
azure_mgmt_network python3-azure
azure_mgmt_notificationhubs python3-azure
azure_mgmt_policyinsights python3-azure
azure_mgmt_powerbiembedded python3-azure
azure_mgmt_rdbms python3-azure
azure_mgmt_recoveryservices python3-azure
azure_mgmt_recoveryservicesbackup python3-azure
azure_mgmt_redis python3-azure
azure_mgmt_relay python3-azure
azure_mgmt_reservations python3-azure
azure_mgmt_resource python3-azure
azure_mgmt_resourcegraph python3-azure
azure_mgmt_scheduler python3-azure
azure_mgmt_search python3-azure
azure_mgmt_security python3-azure
azure_mgmt_servermanager python3-azure
azure_mgmt_servicebus python3-azure
azure_mgmt_servicefabric python3-azure
azure_mgmt_signalr python3-azure
azure_mgmt_sql python3-azure
azure_mgmt_storage python3-azure
azure_mgmt_subscription python3-azure
azure_mgmt_trafficmanager python3-azure
azure_mgmt_web python3-azure
azure_servicebus python3-azure
azure_servicefabric python3-azure
azure_servicemanagement_legacy python3-azure
azure_storage_blob python3-azure-storage
azure_storage_common python3-azure-storage
azure_storage_file python3-azure-storage
azure_storage_queue python3-azure-storage
b2 backblaze-b2
babelfish python3-babelfish
backdoor_factory backdoor-factory
backports.tempfile python3-backports.tempfile
backports.weakref python3-backports.weakref
backup2swift python3-backup2swift
backupchecker backupchecker
bandit python3-bandit
banking.statements.nordea ofxstatement-plugins
banking.statements.osuuspankki ofxstatement-plugins
barbican python3-barbican
barectf python3-barectf
base58 python3-base58
basemap python3-mpltoolkits.basemap
bashate python3-bashate
bayespy python3-bayespy
bcbio_nextgen python3-bcbio
bcc python3-bpfcc
bcdoc python3-bcdoc
bcolz python3-bcolz
bcrypt python3-bcrypt
bdfproxy bdfproxy
bdist_nsi python3-bdist-nsi
beanbag python3-beanbag
beancount python3-beancount
beautifulsoup4 python3-bs4
behave python3-behave
bernhard python3-bernhard
betamax python3-betamax
bibtexparser python3-bibtexparser
billiard python3-billiard
binaryornot python3-binaryornot
binoculars python3-binoculars
binwalk python3-binwalk
bioblend python3-bioblend
biom_format python3-biom-format
biomaj python3-biomaj3
biomaj_cli python3-biomaj3-cli
biomaj_core python3-biomaj3-core
biomaj_daemon python3-biomaj3-daemon
biomaj_download python3-biomaj3-download
biomaj_process python3-biomaj3-process
biomaj_user python3-biomaj3-user
biomaj_zipkin python3-biomaj3-zipkin
biopython python3-biopython
biotools python3-biotools
bip32utils python3-bip32utils
biplist python3-biplist
bitarray python3-bitarray
bitbucket_api python3-bitbucket-api
bitcoin python3-bitcoin
bitstring python3-bitstring
bitstruct python3-bitstruct
black black
bleach python3-bleach
blessed python3-blessed
blessings python3-blessings
blinker python3-blinker
blist python3-blist
blockdiag python3-blockdiag
bloom python3-bloom
blosc python3-blosc
bloscpack bloscpack
bmap_tools bmap-tools
boltons python3-boltons
booleanOperations python3-booleanoperations
borgbackup borgbackup
borgmatic borgmatic
boto python3-boto
boto3 python3-boto3
botocore python3-botocore
bottle python3-bottle
bottle_beaker python3-bottle-beaker
bottle_cork python3-bottle-cork
bottle_sqlite python3-bottle-sqlite
bpython bpython3
braceexpand python3-braceexpand
braintree python3-braintree
breathe python3-breathe
brebis brebis
breezy python3-breezy
brial python3-brial
bro_pkg bro-pkg
brz_debian brz-debian
bsddb3 python3-bsddb3
btchip_python python3-btchip
btrfs python3-btrfs
btrfsutil python3-btrfsutil
bugwarrior bugwarrior
buildbot buildbot
buildbot_worker buildbot-worker
buku buku
bump2version bumpversion
bumps python3-bumps
bundlewrap bundlewrap
burrito python3-burrito
bx_python python3-bx
bz2file python3-bz2file
cached_property python3-cached-property
cachetools python3-cachetools
caffeine caffeine
cairocffi python3-cairocffi
caldav python3-caldav
canmatrix python3-canmatrix
canonicaljson python3-canonicaljson
cappuccino cappuccino
capstone python3-capstone
carbon graphite-carbon
case python3-case
cassandra_driver python3-cassandra
castellan python3-castellan
catfish catfish
catkin_lint python3-catkin-lint
catkin_pkg python3-catkin-pkg
cbor python3-cbor
ccdproc python3-ccdproc
cclib python3-cclib
cdiff python3-cdiff
cdist cdist
cdo python3-cdo
cecilia cecilia
ceilometer python3-ceilometer
ceilometermiddleware python3-ceilometermiddleware
celery python3-celery
celery_haystack python3-django-celery-haystack
cement python3-cement
cephfs python3-cephfs
certbot python3-certbot
certbot_apache python3-certbot-apache
certbot_dns_cloudflare python3-certbot-dns-cloudflare
certbot_dns_digitalocean python3-certbot-dns-digitalocean
certbot_dns_dnsimple python3-certbot-dns-dnsimple
certbot_dns_gehirn python3-certbot-dns-gehirn
certbot_dns_google python3-certbot-dns-google
certbot_dns_linode python3-certbot-dns-linode
certbot_dns_ovh python3-certbot-dns-ovh
certbot_dns_rfc2136 python3-certbot-dns-rfc2136
certbot_dns_route53 python3-certbot-dns-route53
certbot_dns_sakuracloud python3-certbot-dns-sakuracloud
certbot_nginx python3-certbot-nginx
certifi python3-certifi
cffi python3-cffi
cfgrib python3-cfgrib
cftime python3-cftime
changelog python3-changelog
changeo changeo
channels python3-django-channels
channels_redis python3-channels-redis
characteristic python3-characteristic
chardet python3-chardet
chargebee python3-chargebee
chartkick python3-chartkick
check_manifest check-manifest
checkbox_ng python3-checkbox-ng
checkbox_support python3-checkbox-support
cheroot python3-cheroot
chrome_gnome_shell chrome-gnome-shell
cigi python3-cigi
cinder python3-cinder
circlator circlator
circuits python3-circuits
citeproc_py python3-citeproc
ck python3-ck
cliapp python3-cliapp
click_log python3-click-log
click_plugins python3-click-plugins
click_threading python3-click-threading
cliff python3-cliff
cligh cligh
cligj python3-cligj
clint python3-clint
cloud_init cloud-init
cloud_sptheme python3-cloud-sptheme
cloudflare python3-cloudflare
cloudkitty python3-cloudkitty
cloudkitty_dashboard python3-cloudkitty-dashboard
cloudpickle python3-cloudpickle
cmarkgfm python3-cmarkgfm
cmd2 python3-cmd2
coards python3-coards
cobra python3-cobra
codespell codespell
codicefiscale python3-codicefiscale
colorama python3-colorama
colorclass python3-colorclass
coloredlogs python3-coloredlogs
colorlog python3-colorlog
colormap python3-colormap
colormath python3-colormath
colorspacious python3-colorspacious
colour python3-colour
commando python3-commando
compreffor python3-compreffor
confget python3-confget
configobj python3-configobj
configshell_fb python3-configshell-fb
confluent_kafka python3-confluent-kafka
congress python3-congress
congruity congruity
constantly python3-constantly
construct python3-construct
construct_legacy python3-construct.legacy
contextlib2 python3-contextlib2
cookiecutter python3-cookiecutter
cookies python3-cookies
coreapi python3-coreapi
coreschema python3-coreschema
cotyledon python3-cotyledon
cov_core python3-cov-core
coverage python3-coverage
coverage_test_runner python3-coverage-test-runner
cppman cppman
cracklib python3-cracklib
cram python3-cram
crank python3-crank
crcelk python3-crcelk
crcmod python3-crcmod
crmsh crmsh
croniter python3-croniter
cryptography python3-cryptography
cryptography_vectors python3-cryptography-vectors
cs python3-cs
csb python3-csb
cson python3-cson
css_parser python3-css-parser
csscompressor python3-csscompressor
cssmin python3-cssmin
cssselect python3-cssselect
cssselect2 python3-cssselect2
cssutils python3-cssutils
csvkit python3-csvkit
ctdconverter ctdconverter
ctop ctop
cu2qu python3-cu2qu
cupshelpers python3-cupshelpers
cursive python3-cursive
curtsies python3-curtsies
custodia python3-custodia
cutadapt python3-cutadapt
cvxopt python3-cvxopt
cwltool cwltool
cycler python3-cycler
cymem python3-cymem
cymruwhois python3-cymruwhois
cypari2 python3-cypari2
cytoolz python3-cytoolz
cyvcf2 python3-cyvcf2
d2to1 python3-d2to1
daemonize python3-daemonize
daiquiri python3-daiquiri
daphne python3-daphne
darkslide darkslide
darts.util.lru python3-darts.lib.utils.lru
dask python3-dask
dask_sphinx_theme python3-dask-sphinx-theme
datalad python3-datalad
datalad_container datalad-container
dateparser python3-dateparser
datrie python3-datrie
db2twitter db2twitter
dbf python3-dbf
dbfread python3-dbfread
dcmstack python3-dcmstack
dcos python3-dcos
ddgr ddgr
ddt python3-ddt
ddupdate ddupdate
deap python3-deap
debdate debdate
debdry debdry
debiancontributors python3-debiancontributors
debmake debmake
debocker debocker
debspawn debspawn
debtags debtags
debtcollector python3-debtcollector
decorator python3-decorator
deepdiff python3-deepdiff
defcon python3-defcon
defer python3-defer
defusedxml python3-defusedxml
demjson python3-demjson
depinfo python3-depinfo
deprecation python3-deprecation
descartes python3-descartes
designate python3-designate
designate_dashboard python3-designate-dashboard
devpi_common python3-devpi-common
devscripts devscripts
dexml python3-dexml
dfdatetime python3-dfdatetime
dfvfs python3-dfvfs
dfwinreg python3-dfwinreg
dhcpcanon dhcpcanon
diaspy_api python3-diaspy
dib_utils python3-dib-utils
diceware diceware
dicoclient python3-dicoclient
dicteval python3-dicteval
dictobj python3-dictobj
dicttoxml python3-dicttoxml
diff_match_patch python3-diff-match-patch
diffoscope diffoscope
dill python3-dill
dirspec python3-dirspec
dirtbike dirtbike
diskimage_builder python3-diskimage-builder
distlib python3-distlib
distorm3 python3-distorm3
distributed python3-distributed
distro python3-distro
distro_info python3-distro-info
dj_database_url python3-dj-database-url
dj_static python3-dj-static
django_admin_sortable python3-django-adminsortable
django_ajax_selects python3-ajax-select
django_allauth python3-django-allauth
django_anymail python3-django-anymail
django_appconf python3-django-appconf
django_assets python3-django-assets
django_auth_ldap python3-django-auth-ldap
django_auto_one_to_one python3-django-auto-one-to-one
django_axes python3-django-axes
django_babel python3-django-babel
django_background_tasks python3-django-background-tasks
django_bitfield python3-django-bitfield
django_bootstrap_form python3-bootstrapform
django_braces python3-django-braces
django_cas_client python3-django-casclient
django_cas_server python3-django-cas-server
django_celery_beat python3-django-celery-beat
django_celery_results python3-django-celery-results
django_classy_tags python3-django-classy-tags
django_compat python3-django-compat
django_compressor python3-django-compressor
django_contact_form python3-django-contact-form
django_cors_headers python3-django-cors-headers
django_countries python3-django-countries
django_crispy_forms python3-django-crispy-forms
django_csp python3-django-csp
django_dbconn_retry python3-django-dbconn-retry
django_debug_toolbar python3-django-debug-toolbar
django_dirtyfields python3-django-dirtyfields
django_downloadview python3-django-downloadview
django_environ python3-django-environ
django_etcd_settings python3-django-etcd-settings
django_extensions python3-django-extensions
django_extra_views python3-django-extra-views
django_filter python3-django-filters
django_formtools python3-django-formtools
django_fsm python3-django-fsm
django_fsm_admin python3-django-fsm-admin
django_gravatar2 python3-django-gravatar2
django_guardian python3-django-guardian
django_haystack python3-django-haystack
django_hijack python3-django-hijack
django_housekeeping python3-django-housekeeping
django_hvad python3-django-hvad
django_imagekit python3-django-imagekit
django_impersonate python3-django-impersonate
django_ipware python3-django-ipware
django_jinja python3-django-jinja
django_js_reverse python3-django-js-reverse
django_jsonfield python3-django-jsonfield
django_ldapdb python3-django-ldapdb
django_macaddress python3-django-macaddress
django_mailman3 python3-django-mailman3
django_maintenancemode python3-django-maintenancemode
django_markupfield python3-django-markupfield
django_memoize python3-django-memoize
django_model_utils python3-django-model-utils
django_modeltranslation python3-django-modeltranslation
django_mptt python3-django-mptt
django_navtag python3-django-navtag
django_netfields python3-django-netfields
django_nose python3-django-nose
django_notification python3-django-notification
django_oauth_toolkit python3-django-oauth-toolkit
django_openstack_auth python3-django-openstack-auth
django_ordered_model python3-django-ordered-model
django_organizations python3-django-organizations
django_otp python3-django-otp
django_overextends python3-django-overextends
django_paintstore python3-django-paintstore
django_picklefield python3-django-picklefield
django_pipeline python3-django-pipeline
django_polymorphic python3-django-polymorphic
django_prometheus python3-django-prometheus
django_push_notifications python3-django-push-notifications
django_pyscss python3-django-pyscss
django_python3_ldap python3-django-python3-ldap
django_q python3-django-q
django_ranged_response python3-django-ranged-response
django_ratelimit python3-django-ratelimit
django_recurrence python3-django-recurrence
django_redis python3-django-redis
django_redis_sessions python3-django-redis-sessions
django_registration python3-django-registration
django_rest_hooks python3-django-rest-hooks
django_restricted_resource python3-django-restricted-resource
django_reversion python3-django-reversion
django_sass_processor python3-django-sass-processor
django_sekizai python3-django-sekizai
django_session_security python3-django-session-security
django_setuptest python3-django-setuptest
django_shortuuidfield python3-django-shortuuidfield
django_simple_captcha python3-django-captcha
django_simple_history python3-django-simple-history
django_simple_redis_admin python3-django-redis-admin
django_sitetree python3-django-sitetree
django_sortedm2m python3-sortedm2m
django_stronghold python3-django-stronghold
django_tables2 python3-django-tables2
django_tagging python3-django-tagging
django_taggit python3-django-taggit
django_tastypie python3-django-tastypie
django_test_without_migrations python3-django-test-without-migrations
django_testproject python3-django-testproject
django_testscenarios python3-django-testscenarios
django_timezone_field python3-django-timezone-field
django_treebeard python3-django-treebeard
django_uwsgi python3-django-uwsgi
django_webpack_loader python3-django-webpack-loader
django_websocket_redis python3-django-websocket-redis
django_wkhtmltopdf python3-django-wkhtmltopdf
django_x509 python3-django-x509
django_xmlrpc python3-django-xmlrpc
djangocms_admin_style python3-djangocms-admin-style
djangorestframework python3-djangorestframework
djangorestframework_filters python3-djangorestframework-filters
djangorestframework_gis python3-djangorestframework-gis
djangosaml2 python3-django-saml2
djoser python3-djoser
djvubind djvubind
dkimpy python3-dkim
dns_lexicon python3-lexicon
dnsdiag dnsdiag
dnslib python3-dnslib
dnspython python3-dnspython
dnsq python3-dnsq
doc8 python3-doc8
docker python3-docker
docker_compose docker-compose
docker_pycreds python3-dockerpycreds
dockerpty python3-dockerpty
docopt python3-docopt
docutils python3-docutils
dodgy dodgy
dogpile.cache python3-dogpile.cache
doit python3-doit
dominate python3-dominate
doublex python3-doublex
doxyqml doxyqml
dpkt python3-dpkt
dput python3-dput
drf_extensions python3-djangorestframework-extensions
drf_generators python3-djangorestframework-generators
drf_haystack python3-djangorestframework-haystack
drizzle python3-drizzle
drms python3-drms
dropbox python3-dropbox
drslib python3-drslib
dtcwt python3-dtcwt
dtfabric python3-dtfabric
duecredit python3-duecredit
dugong python3-dugong
dulwich python3-dulwich
dxf2gcode dxf2gcode
easydev python3-easydev
easygui python3-easygui
easywebdav python3-easywebdav
eccodes python3-eccodes
ecdsa python3-ecdsa
edlib python3-edlib
efilter python3-efilter
elasticsearch python3-elasticsearch
elasticsearch_curator python3-elasticsearch-curator
elpy elpa-elpy
emcee python3-emcee
empy python3-empy
enet python3-enet
enjarify enjarify
entrypoints python3-entrypoints
envparse python3-envparse
envs python3-envs
enzyme python3-enzyme
epc python3-epc
ephem python3-ephem
epoptes epoptes
esmre python3-esmre
et_xmlfile python3-et-xmlfile
etcd3gw python3-etcd3gw
ethtool python3-ethtool
evdev python3-evdev
eventlet python3-eventlet
ewmh python3-ewmh
exabgp python3-exabgp
exam python3-exam
execnet python3-execnet
exotel python3-exotel
expeyes python3-expeyes
expiringdict python3-expiringdict
extras python3-extras
eyeD3 python3-eyed3
fabio python3-fabio
fabulous python3-fabulous
factory_boy python3-factory-boy
fades fades
fail2ban fail2ban
fakeredis python3-fakeredis
fakesleep python3-fakesleep
falcon python3-falcon
fann2 python3-fann2
fast5 python3-fast5
fast_histogram python3-fast-histogram
fastcluster python3-fastcluster
fasteners python3-fasteners
fastimport python3-fastimport
fastkml python3-fastkml
fava python3-fava
fdb python3-fdb
fdroidserver fdroidserver
feather_format python3-feather-format
feature_check python3-feature-check
feed2exec feed2exec
feedgenerator python3-feedgenerator
feedparser python3-feedparser
fenics_dijitso python3-dijitso
fenics_dolfin python3-dolfin
fenics_ffc python3-ffc
fenics_fiat python3-fiat
fenics_ufl python3-ufl
fenrir_screenreader fenrir
fido2 python3-fido2
file_encryptor python3-file-encryptor
filelock python3-filelock
first python3-first
fisx python3-fisx
fitbit python3-fitbit
fitsio python3-fitsio
fiu python3-fiu
fixtures python3-fixtures
flake8 python3-flake8
flake8_docstrings python3-flake8-docstrings
flake8_polyfill python3-flake8-polyfill
flaky python3-flaky
flask_mongoengine python3-flask-mongoengine
flask_multistatic python3-flaskext.multistatic
flask_peewee python3-flask-peewee
flask_rdf python3-flask-rdf
flatlatex python3-flatlatex
flexmock python3-flexmock
flickrapi python3-flickrapi
flufl.bounce python3-flufl.bounce
flufl.enum python3-flufl.enum
flufl.i18n python3-flufl.i18n
flufl.lock python3-flufl.lock
flufl.testing python3-flufl.testing
fluids python3-fluids
fontMath python3-fontmath
fontPens python3-fontpens
fontmake python3-fontmake
fonttools python3-fonttools
formiko formiko
fparser python3-fparser
fpylll python3-fpylll
freedom_maker freedom-maker
freezegun python3-freezegun
frozendict python3-frozendict
fs python3-fs
fswrap python3-fswrap
fudge python3-fudge
funcparserlib python3-funcparserlib
funcsigs python3-funcsigs
furl python3-furl
fuse_python python3-fuse
fusepy python3-fusepy
future python3-future
futurist python3-futurist
fuzzywuzzy python3-fuzzywuzzy
fysom python3-fysom
gTTS python3-gtts
gTTS_token python3-gtts-token
gTranscribe gtranscribe
gabbi python3-gabbi
gajim gajim
galileo galileo
galpy python3-galpy
galternatives galternatives
gammapy python3-gammapy
gau2grid python3-gau2grid
gbp git-buildpackage
gbulb python3-gbulb
gcalcli gcalcli
gccjit python3-gccjit
gcircle python3-ferret
gcovr gcovr
gdspy python3-gdspy
gear python3-gear
genty python3-genty
geographiclib python3-geographiclib
geoip2 python3-geoip2
geojson python3-geojson
geolinks python3-geolinks
geomet python3-geomet
geopandas python3-geopandas
geopy python3-geopy
germinate python3-germinate
gerritlib python3-gerritlib
getdns python3-getdns
gevent python3-gevent
gfapy python3-gfapy
gffutils python3-gffutils
ghdiff python3-ghdiff
gimmik python3-gimmik
ginga python3-ginga
git_build_recipe git-build-recipe
git_crecord git-crecord
git_os_job python3-git-os-job
git_review git-review
gitdb2 python3-gitdb
gitless gitless
gitlint gitlint
gitsome gitsome
glad python3-glad
glance python3-glance
glance_store python3-glance-store
glare python3-glare
glob2 python3-glob2
glue glue-sprite
glue_core python3-glue
glyphsLib python3-glyphslib
gmplot python3-gmplot
gmpy2 python3-gmpy2
gnocchi python3-gnocchi
gnocchiclient python3-gnocchiclient
gnome_gmail gnome-gmail
gnome_keysign gnome-keysign
gnuplotlib python3-gnuplotlib
google_api_python_client python3-googleapi
google_apputils python3-google-apputils
google_auth python3-google-auth
google_compute_engine python3-google-compute-engine
google_i18n_address python3-google-i18n-address
googlecloudapis python3-googlecloudapis
gpapi python3-gpapi
gpaw gpaw
gpg python3-gpg
gphoto2 python3-gphoto2
gphoto2_cffi python3-gphoto2cffi
gpiozero python3-gpiozero
gpodder gpodder
gpxpy python3-gpxpy
gpyfft python3-gpyfft
gramps gramps
grapefruit python3-grapefruit
graphite2 python3-graphite2
graphite_api graphite-api
graphite_web graphite-web
graphviz python3-graphviz
graypy python3-graypy
greenlet python3-greenlet
grokevt grokevt
grpcio python3-grpcio
grpcio_tools python3-grpc-tools
gssapi python3-gssapi
gsw python3-gsw
gtimelog gtimelog
guacamole python3-guacamole
guess_language_spirit python3-guess-language
guessit python3-guessit
guidata python3-guidata
guiqwt python3-guiqwt
guizero python3-guizero
gumbo python3-gumbo
gunicorn python3-gunicorn
guzzle_sphinx_theme python3-guzzle-sphinx-theme
gvb gvb
gwcs python3-gwcs
h11 python3-h11
h2 python3-h2
h5netcdf python3-h5netcdf
h5py python3-h5py
hacking python3-hacking
haproxy_log_analysis python3-haproxy-log-analysis
harmony_discord python3-harmony
hashID hashid
hashids python3-hashids
hbmqtt python3-hbmqtt
hdf5storage python3-hdf5storage
hdmedians python3-hdmedians
healpy python3-healpy
heat python3-heat
heat_dashboard python3-heat-dashboard
helpman helpman
hgapi python3-hgapi
hidapi python3-hid
hidapi_cffi python3-hidapi
hinawa_utils python3-hinawa-utils
hips python3-hips
hiredis python3-hiredis
hiro python3-hiro
hkdf python3-hkdf
hl7 python3-hl7
holidays python3-holidays
horizon python3-django-horizon
howdoi howdoi
hpack python3-hpack
hplefthandclient python3-hplefthandclient
html2text python3-html2text
html5_parser python3-html5-parser
html5lib python3-html5lib
htmlmin python3-htmlmin
httmock python3-httmock
http_parser python3-http-parser
httpbin python3-httpbin
httpcode httpcode
httpie httpie
httplib2 python3-httplib2
httpretty python3-httpretty
httpsig python3-httpsig
httptools python3-httptools
hug python3-hug
humanfriendly python3-humanfriendly
humanize python3-humanize
hunspell python3-hunspell
hupper python3-hupper
hurry.filesize python3-hurry.filesize
hy python3-hy
hydroffice.bag python3-hydroffice.bag
hyperframe python3-hyperframe
hyperlink python3-hyperlink
hypothesis python3-hypothesis
i3pystatus i3pystatus
i8c i8c
iapws python3-iapws
icalendar python3-icalendar
icdiff icdiff
icecream python3-icecream
idna python3-idna
ifaddr python3-ifaddr
ijson python3-ijson
imageio python3-imageio
imagesize python3-imagesize
imaplib2 python3-imaplib2
imbalanced_learn python3-imblearn
imediff imediff
imexam python3-imexam
img2pdf python3-img2pdf
impass impass
importmagic python3-importmagic
incremental python3-incremental
indexed_gzip python3-indexed-gzip
inflect python3-inflect
inflection python3-inflection
influxdb python3-influxdb
inifile python3-inifile
iniparse python3-iniparse
installation_birthday installation-birthday
intbitset python3-intbitset
intelhex python3-intelhex
internetarchive python3-internetarchive
intervaltree python3-intervaltree
intervaltree_bio python3-intervaltree-bio
invocations python3-invocations
invoke python3-invoke
ionit ionit
iotop iotop
iowait python3-iowait
ipdb python3-ipdb
ipfix python3-ipfix
ipp python3-libtrace
ipykernel python3-ipykernel
ipython python3-ipython
ipython_genutils python3-ipython-genutils
ipywidgets python3-ipywidgets
irc python3-irc
irclog2html irclog2html
ironic python3-ironic
ironic_inspector python3-ironic-inspector
ironic_lib python3-ironic-lib
ironic_ui python3-ironic-ui
isbnlib python3-isbnlib
isc bind9utils
isc_dhcp_leases python3-isc-dhcp-leases
iso3166 python3-iso3166
iso8601 python3-iso8601
isodate python3-isodate
isort python3-isort
isoweek python3-isoweek
isso isso
itango python3-itango
itsdangerous python3-itsdangerous
itypes python3-itypes
iva iva
ivulncheck_api ivulncheck-api
ivulncheck_client ivulncheck-client
ivulncheck_web ivulncheck-web
jaraco.itertools python3-jaraco.itertools
jdcal python3-jdcal
jedi python3-jedi
jellyfish python3-jellyfish
jenkins_job_builder python3-jenkins-job-builder
jieba python3-jieba
jinja2_time python3-jinja2-time
jira python3-jira
jmespath python3-jmespath
joblib python3-joblib
josepy python3-josepy
jpy python3-jpy
jsbeautifier python3-jsbeautifier
jsmin python3-jsmin
json_rpc python3-jsonrpc
json_tricks python3-json-tricks
jsondiff python3-jsondiff
jsonext python3-jsonext
jsonhyperschema_codec python3-jsonhyperschema-codec
jsonpatch python3-jsonpatch
jsonpath_rw python3-jsonpath-rw
jsonpath_rw_ext python3-jsonpath-rw-ext
jsonpickle python3-jsonpickle
jsonpointer python3-json-pointer
jsonrpclib_pelix python3-jsonrpclib-pelix
jsonschema python3-jsonschema
junit_xml python3-junit.xml
junitxml python3-junitxml
junos_eznc python3-junos-eznc
jupyter_client python3-jupyter-client
jupyter_console python3-jupyter-console
jupyter_core python3-jupyter-core
jupyter_sphinx_theme python3-jupyter-sphinx-theme
kafka_python python3-kafka
kaitaistruct python3-kaitaistruct
kanboard python3-kanboard
kanboard_cli kanboard-cli
kaptan python3-kaptan
kazam kazam
kazoo python3-kazoo
kdtree python3-kdtree
keepalive python3-keepalive
keyman_config python3-keyman-config
keyring python3-keyring
keyrings.alt python3-keyrings.alt
keystone python3-keystone
keystoneauth1 python3-keystoneauth1
keystonemiddleware python3-keystonemiddleware
keyutils python3-keyutils
khal khal
khard khard
khmer khmer
kitchen python3-kitchen
kiwisolver python3-kiwisolver
klaus python3-klaus
kombu python3-kombu
kopano python3-kopano
kopano_backup kopano-backup
kopano_cli kopano-utils
kopano_migration_pst kopano-utils
kopano_presence kopano-presence
kopano_search kopano-search
kopano_spamd kopano-spamd
kopano_utils kopano-utils
kthresher kthresher
kubernetes python3-kubernetes
kylin_display_switch kylin-display-switch
kytos_sphinx_theme python3-kytos-sphinx-theme
kytos_utils kytos-utils
l20n python3-l20n
langdetect python3-langdetect
latexcodec python3-latexcodec
launchpadlib python3-launchpadlib
lavacli lavacli
lazr.config python3-lazr.config
lazr.delegates python3-lazr.delegates
lazr.restfulclient python3-lazr.restfulclient
lazr.smtptest python3-lazr.smtptest
lazr.uri python3-lazr.uri
lazy_object_proxy python3-lazy-object-proxy
lazygal lazygal
ldap3 python3-ldap3
ldappool python3-ldappool
ldif3 python3-ldif3
leather python3-leather
lecm lecm
lensfun python3-lensfun
lesscpy python3-lesscpy
leveldb python3-leveldb
lfm lfm
lib389 python3-lib389
libarchive_c python3-libarchive-c
libconcord python3-libconcord
libevdev python3-libevdev
libhfst_swig python3-libhfst
libi8x python3-libi8x
libiio python3-libiio
libnacl python3-libnacl
libnatpmp python3-libnatpmp
librecaptcha python3-librecaptcha
librouteros python3-librouteros
libsass python3-libsass
libtiff python3-libtiff
libtmux python3-libtmux
libusb1 python3-libusb1
libvirt_python python3-libvirt
lift lift
lightdm_gtk_greeter_settings lightdm-gtk-greeter-settings
limits python3-limits
limnoria limnoria
line_profiler python3-line-profiler
linecache2 python3-linecache2
linop python3-linop
lintian_brush lintian-brush
linux_show_player linux-show-player
lios lios
livereload python3-livereload
llfuse python3-llfuse
llvmlite python3-llvmlite
lmdb python3-lmdb
lmfit python3-lmfit
locket python3-locket
lockfile python3-lockfile
logfury python3-logfury
loggerhead loggerhead-breezy
logging_tree python3-logging-tree
logilab_common python3-logilab-common
logilab_constraint python3-logilab-constraint
logutils python3-logutils
logzero python3-logzero
londiste python3-londiste
louis python3-louis
lqa lqa
ltfatpy python3-ltfatpy
lti python3-lti
lttnganalyses python3-lttnganalyses
lttngust python3-lttngust
lupa python3-lupa
lxml python3-lxml
lz4 python3-lz4
lz4tools python3-lz4tools
lzstring python3-lzstring
m3u8 python3-m3u8
macaroonbakery python3-macaroonbakery
macholib python3-macholib
magcode_core python3-magcode-core
magic_wormhole magic-wormhole
magic_wormhole_mailbox_server python3-magic-wormhole-mailbox-server
magic_wormhole_transit_relay magic-wormhole-transit-relay
magnum python3-magnum
magnum_ui python3-magnum-ui
mailer python3-mailer
mailman mailman3
mailman_hyperkitty python3-mailman-hyperkitty
mailmanclient python3-mailmanclient
mando python3-mando
manila python3-manila
manila_ui python3-manila-ui
manuel python3-manuel
mapbox_vector_tile python3-mapbox-vector-tile
mapnik python3-mapnik
marathon python3-marathon
marisa python3-marisa
markdown2 python3-markdown2
marshmallow python3-marshmallow
mate_tweak mate-tweak
matplotlib python3-matplotlib
matplotlib_venn python3-matplotlib-venn
matrix_synapse matrix-synapse
matrix_synapse_ldap3 matrix-synapse-ldap3
maxminddb python3-maxminddb
mbed_host_tests python3-mbed-host-tests
mbed_ls python3-mbed-ls
mccabe python3-mccabe
measurement python3-measurement
meld meld
meld3 python3-meld3
memory_profiler python3-memory-profiler
memprof python3-memprof
menulibre menulibre
meshio python3-meshio
meson meson
metaconfig python3-metaconfig
meteo_qt meteo-qt
microversion_parse python3-microversion-parse
mido python3-mido
milksnake python3-milksnake
mimerender python3-mimerender
minidb python3-minidb
minieigen python3-minieigen
miniupnpc python3-miniupnpc
misaka python3-misaka
mistral python3-mistral
mistral_dashboard python3-mistral-dashboard
mistral_lib python3-mistral-lib
mistune python3-mistune
mitmproxy mitmproxy
mkdocs mkdocs
mkosi mkosi
mlbstreamer mlbstreamer
mnemonic python3-mnemonic
mock python3-mock
mockldap python3-mockldap
mockupdb python3-mockupdb
model_mommy python3-model-mommy
modem_cmd modem-cmd
moksha.common python3-moksha.common
molotov python3-molotov
monajat python3-monajat
monasca_statsd python3-monasca-statsd
mongoengine python3-mongoengine
monotonic python3-monotonic
montage_wrapper python3-montage-wrapper
more_itertools python3-more-itertools
morph python3-morph
morris python3-morris
motor python3-motor
mousetrap gnome-mousetrap
mox3 python3-mox3
mpegdash python3-mpegdash
mpi4py python3-mpi4py
mpl_scatter_density python3-mpl-scatter-density
mplexporter python3-mplexporter
mpmath python3-mpmath
mps_youtube mps-youtube
mrtparse python3-mrtparse
msgpack python3-msgpack
msgpack_numpy python3-msgpack-numpy
mshr python3-mshr
msrest python3-msrest
msrestazure python3-msrestazure
mugshot mugshot
multi_key_dict python3-multi-key-dict
multicorn python3-multicorn
multidict python3-multidict
multipletau python3-multipletau
munch python3-munch
munkres python3-munkres
murano python3-murano
murano_agent murano-agent
murano_dashboard python3-murano-dashboard
murano_pkg_check python3-murano-pkg-check
murmurhash python3-murmurhash
musicbrainzngs python3-musicbrainzngs
mutagen python3-mutagen
mwclient python3-mwclient
mwparserfromhell python3-mwparserfromhell
mygpoclient python3-mygpoclient
myhdl python3-myhdl
mypy python3-mypy
mypy_extensions python3-mypy-extensions
mysql_connector_python python3-mysql.connector
mysqlclient python3-mysqldb
nagiosplugin python3-nagiosplugin
nagstamon nagstamon
nameparser python3-nameparser
natkit python3-libtrace
natsort python3-natsort
nb2plots python3-nb2plots
nbconvert python3-nbconvert
nbformat python3-nbformat
nbsphinx python3-nbsphinx
nbxmpp python3-nbxmpp
ncclient python3-ncclient
ndcube python3-ndcube
ndg_httpsclient python3-ndg-httpsclient
neovim python3-neovim
netCDF4 python3-netcdf4
netaddr python3-netaddr
netdisco python3-netdisco
netfilter python3-netfilter
netifaces python3-netifaces
netmiko python3-netmiko
networking_arista python3-networking-arista
networking_bagpipe python3-networking-bagpipe
networking_baremetal python3-ironic-neutron-agent
networking_bgpvpn python3-networking-bgpvpn
networking_l2gw python3-networking-l2gw
networking_mlnx python3-networking-mlnx
networking_ovn python3-networking-ovn
networking_sfc python3-networking-sfc
networkx python3-networkx
neutron python3-neutron
neutron_dynamic_routing python3-neutron-dynamic-routing
neutron_fwaas python3-neutron-fwaas
neutron_fwaas_dashboard python3-neutron-fwaas-dashboard
neutron_lbaas python3-neutron-lbaas
neutron_lib python3-neutron-lib
neutron_tempest_plugin python3-neutron-tempest-plugin
neutron_vpnaas python3-neutron-vpnaas
neutron_vpnaas_dashboard python3-neutron-vpnaas-dashboard
ngs python3-ngs
nibabel python3-nibabel
nine python3-nine
nltk python3-nltk
nml nml
nodeenv nodeenv
nose python3-nose
nose2 python3-nose2
nose2_cov python3-nose2-cov
nose_exclude python3-nose-exclude
nose_parameterized python3-nose-parameterized
nose_random python3-nose-random
nose_timer python3-nose-timer
nosehtmloutput python3-nosehtmloutput
nosexcover python3-nosexcover
notebook python3-notebook
notify2 python3-notify2
notmuch python3-notmuch
nova python3-nova
npm2deb npm2deb
nrpe_ng nrpe-ng
ntlm_auth python3-ntlm-auth
ntp python3-ntp
ntplib python3-ntplib
nudatus python3-nudatus
num2words python3-num2words
numba python3-numba
numexpr python3-numexpr
numpy python3-numpy
numpy_stl python3-stl
numpydoc python3-numpydoc
numpysane python3-numpysane
nvchecker nvchecker
nwdiag python3-nwdiag
nyx nyx
oauth python3-oauth
oauth2client python3-oauth2client
oauthlib python3-oauthlib
objgraph python3-objgraph
obsub python3-obsub
ocrmypdf ocrmypdf
octavia python3-octavia
octavia_dashboard python3-octavia-dashboard
odfpy python3-odf
odoo oca-core
offtrac python3-offtrac
ofxhome python3-ofxhome
ofxparse python3-ofxparse
ofxstatement ofxstatement
ofxstatement_airbankcz ofxstatement-plugins
ofxstatement_al_bank ofxstatement-plugins
ofxstatement_austrian ofxstatement-plugins
ofxstatement_be_ing ofxstatement-plugins
ofxstatement_be_kbc ofxstatement-plugins
ofxstatement_be_keytrade ofxstatement-plugins
ofxstatement_be_triodos ofxstatement-plugins
ofxstatement_betterment ofxstatement-plugins
ofxstatement_bubbas ofxstatement-plugins
ofxstatement_czech ofxstatement-plugins
ofxstatement_dab ofxstatement-plugins
ofxstatement_fineco ofxstatement-plugins
ofxstatement_germany_1822direkt ofxstatement-plugins
ofxstatement_is_arionbanki ofxstatement-plugins
ofxstatement_iso20022 ofxstatement-plugins
ofxstatement_lansforsakringar ofxstatement-plugins
ofxstatement_latvian ofxstatement-plugins
ofxstatement_lfs ofxstatement-plugins
ofxstatement_lithuanian ofxstatement-plugins
ofxstatement_mbank.sk ofxstatement-plugins
ofxstatement_otp ofxstatement-plugins
ofxstatement_paypal ofxstatement-plugins
ofxstatement_polish ofxstatement-plugins
ofxstatement_postfinance ofxstatement-plugins
ofxstatement_raiffeisencz ofxstatement-plugins
ofxstatement_russian ofxstatement-plugins
ofxstatement_seb ofxstatement-plugins
ofxstatement_simple ofxstatement-plugins
ofxstatement_unicreditcz ofxstatement-plugins
olefile python3-olefile
omemo_backend_signal python3-omemo-backend-signal
onboard onboard
onioncircuits onioncircuits
onionshare onionshare
ontospy python3-ontospy
opcua python3-opcua
openalpr python3-openalpr
openidc_client python3-python-openidc-client
openpyxl python3-openpyxl
openscap_daemon openscap-daemon
openshot_qt openshot-qt
openslide_python python3-openslide
openstack.nose_plugin python3-openstack.nose-plugin
openstackdocstheme python3-openstackdocstheme
openstacksdk python3-openstacksdk
opgpcard opgpcard
optlang python3-optlang
orderedattrdict python3-orderedattrdict
orderedmultidict python3-orderedmultidict
os_api_ref python3-os-api-ref
os_brick python3-os-brick
os_client_config python3-os-client-config
os_faults python3-os-faults
os_service_types python3-os-service-types
os_testr python3-os-testr
os_traits python3-os-traits
os_vif python3-os-vif
os_win python3-os-win
os_xenapi python3-os-xenapi
osc_lib python3-osc-lib
osc_placement python3-osc-placement
oslo.cache python3-oslo.cache
oslo.concurrency python3-oslo.concurrency
oslo.config python3-oslo.config
oslo.context python3-oslo.context
oslo.db python3-oslo.db
oslo.i18n python3-oslo.i18n
oslo.log python3-oslo.log
oslo.messaging python3-oslo.messaging
oslo.middleware python3-oslo.middleware
oslo.policy python3-oslo.policy
oslo.privsep python3-oslo.privsep
oslo.reports python3-oslo.reports
oslo.rootwrap python3-oslo.rootwrap
oslo.serialization python3-oslo.serialization
oslo.service python3-oslo.service
oslo.utils python3-oslo.utils
oslo.versionedobjects python3-oslo.versionedobjects
oslo.vmware python3-oslo.vmware
oslosphinx python3-oslosphinx
oslotest python3-oslotest
osmapi python3-osmapi
osmium python3-pyosmium
osprofiler python3-osprofiler
outcome python3-outcome
overpass python3-overpass
overpy python3-overpy
ovs python3-openvswitch
ovsdbapp python3-ovsdbapp
ow python3-ow
ownet python3-ownet
packaging python3-packaging
pacparser python3-pacparser
padme python3-padme
pafy python3-pafy
pager python3-pager
paho_mqtt python3-paho-mqtt
pandas python3-pandas
pandocfilters python3-pandocfilters
panko python3-panko
pankoclient python3-pankoclient
panoramisk python3-panoramisk
panwid python3-panwid
parallax python3-parallax
parameterized python3-parameterized
paramiko python3-paramiko
parse python3-parse
parse_type python3-parse-type
parsedatetime python3-parsedatetime
parsel python3-parsel
parso python3-parso
partd python3-partd
pass_git_helper pass-git-helper
passlib python3-passlib
patator patator
path.py python3-path
path_and_address python3-path-and-address
pathspec python3-pathspec
pathspider pathspider
pathtools python3-pathtools
patool patool
patroni patroni
patsy python3-patsy
paypal python3-paypal
pbkdf2 python3-pbkdf2
pbr python3-pbr
pcp python3-pcp
pcs pcs
pdd pdd
pdfarranger pdfarranger
pdfkit python3-pdfkit
pdfminer.six python3-pdfminer
pdfrw python3-pdfrw
pdudaemon pdudaemon
pecan python3-pecan
peewee python3-peewee
pefile python3-pefile
pelican pelican
pep8 python3-pep8
pep8_naming python3-pep8-naming
percol percol
periodictable python3-periodictable
persepolis persepolis
persist_queue python3-persist-queue
persistent python3-persistent
petsc4py_complex python3-petsc4py-complex
petsc4py_real python3-petsc4py-real
pex python3-pex
pexpect python3-pexpect
pg8000 python3-pg8000
pg_cloudconfig pg-cloudconfig
pgmagick python3-pgmagick
pgpdump python3-pgpdump
pgq python3-pgq
pgspecial python3-pgspecial
pgzero python3-pgzero
phonenumbers python3-phonenumbers
photocollage photocollage
photofilmstrip photofilmstrip
photutils python3-photutils
phply python3-phply
phpserialize python3-phpserialize
phylo_treetime python3-treetime
picklable_itertools python3-picklable-itertools
pickleshare python3-pickleshare
piexif python3-piexif
pigpio python3-pigpio
pika python3-pika
pika_pool python3-pika-pool
pikepdf python3-pikepdf
pilkit python3-pilkit
pip python3-pip
pipdeptree python3-pipdeptree
pipedviewer python3-ferret
pipenv pipenv
pipsi pipsi
pipx pipx
pkgconfig python3-pkgconfig
pkginfo python3-pkginfo
plac python3-plac
plainbox python3-plainbox
planetfilter planetfilter
plaster python3-plaster
plaster_pastedeploy python3-plaster-pastedeploy
playitslowly playitslowly
pldns python3-libtrace
plotly python3-plotly
plt python3-libtrace
pluggy python3-pluggy
pluginbase python3-pluginbase
plumbum python3-plumbum
ply python3-ply
podcastparser python3-podcastparser
poezio poezio
poliastro python3-poliastro
polib python3-polib
policyd_rate_limit policyd-rate-limit
porechop porechop
port_for python3-port-for
portalocker python3-portalocker
portio python3-portio
portpicker python3-portpicker
positional python3-positional
posix_ipc python3-posix-ipc
postorius python3-django-postorius
power python3-power
powerline_gitstatus python3-powerline-gitstatus
powerline_status python3-powerline
powerline_taskwarrior python3-powerline-taskwarrior
pprofile python3-pprofile
praw python3-praw
prawcore python3-prawcore
precis_i18n python3-precis-i18n
prelude python3-prelude
prelude_correlator prelude-correlator
preludedb python3-preludedb
preshed python3-preshed
presto python3-presto
pretend python3-pretend
prettytable python3-prettytable
prewikka prewikka
priority python3-priority
proboscis python3-proboscis
profitbricks python3-profitbricks
progress python3-progress
progressbar python3-progressbar
project_generator python3-project-generator
project_generator_definitions python3-project-generator-definitions
proliantutils python3-proliantutils
prometheus_client python3-prometheus-client
prometheus_pgbouncer_exporter prometheus-pgbouncer-exporter
prometheus_xmpp_alerts prometheus-xmpp-alerts
prompt_toolkit python3-prompt-toolkit
proselint python3-proselint
proteus tryton-proteus
protobix python3-protobix
protobuf python3-protobuf
protorpc_standalone python3-protorpc-standalone
prov python3-prov
proxmoxer python3-proxmoxer
psautohint python3-psautohint
psutil python3-psutil
psycopg2 python3-psycopg2
ptk python3-ptk
publicsuffix python3-publicsuffix
pudb python3-pudb
pulsemixer pulsemixer
purl python3-purl
pxpx px
py python3-py
py3dns python3-dns
py3status py3status
pyBigWig python3-pybigwig
pyClamd python3-pyclamd
pyFAI python3-pyfai
pyFFTW python3-pyfftw
pyIOSXR python3-pyiosxr
pyLibravatar python3-libravatar
pyNFFT python3-pynfft
pyOpenSSL python3-openssl
pyPEG2 python3-pypeg2
pyRFC3339 python3-rfc3339
pySFML python3-sfml
pyScss python3-pyscss
py_cpuinfo python3-cpuinfo
py_enigma python3-enigma
py_moneyed python3-moneyed
py_postgresql python3-postgresql
py_radix python3-radix
py_ubjson python3-ubjson
py_zipkin python3-py-zipkin
pyacoustid python3-acoustid
pyaes python3-pyaes
pyagentx python3-pyagentx
pyalsa python3-pyalsa
pyalsaaudio python3-alsaaudio
pyaml python3-pretty-yaml
pyasn1 python3-pyasn1
pyasn1_modules python3-pyasn1-modules
pyassimp python3-pyassimp
pyaxmlparser python3-pyaxmlparser
pybedtools python3-pybedtools
pybind11 python3-pybind11
pybtex python3-pybtex
pybtex_docutils python3-pybtex-docutils
pybugz bugz
pycadf python3-pycadf
pycairo python3-cairo
pycares python3-pycares
pychm python3-chm
pyclipper python3-pyclipper
pycoast python3-pycoast
pycodcif python3-pycodcif
pycodestyle python3-pycodestyle
pycountry python3-pycountry
pycparser python3-pycparser
pycrypto python3-crypto
pycryptodomex python3-pycryptodome
pycryptosat python3-cryptominisat
pycups python3-cups
pycurl python3-pycurl
pydbus python3-pydbus
pydecorate python3-pydecorate
pydenticon python3-pydenticon
pydicom python3-pydicom
pydl python3-pydl
pydocstyle python3-pydocstyle
pydot python3-pydot
pydotplus python3-pydotplus
pyds9 python3-pyds9
pydub python3-pydub
pyeapi python3-pyeapi
pyeclib python3-pyeclib
pyee python3-pyee
pyelftools python3-pyelftools
pyenchant python3-enchant
pyepr python3-epr
pyepsg python3-pyepsg
pyethash python3-pyethash
pyfaidx python3-pyfaidx
pyfastaq fastaq
pyferret python3-ferret
pyfg python3-pyfg
pyfiglet python3-pyfiglet
pyflakes python3-pyflakes
pyforge python3-forge
pyftpdlib python3-pyftpdlib
pygac python3-pygac
pygal python3-pygal
pygalmesh python3-pygalmesh
pygame python3-pygame
pygccxml python3-pygccxml
pygeoif python3-pygeoif
pygeoip python3-pygeoip
pygerrit2 python3-pygerrit2
pyghmi python3-pyghmi
pygit2 python3-pygit2
pyglet python3-pyglet
pygpu python3-pygpu
pygrace python3-pygrace
pygraphviz python3-pygraphviz
pygrib python3-grib
pygtail python3-pygtail
pygtkspellcheck python3-gtkspellcheck
pygtrie python3-pygtrie
pyicloud python3-pyicloud
pyinotify python3-pyinotify
pyinsane2 python3-pyinsane
pyjavaproperties python3-pyjavaproperties
pyjokes python3-pyjokes
pykafka python3-pykafka
pykdtree python3-pykdtree
pykerberos python3-kerberos
pykwalify python3-pykwalify
pylama python3-pylama
pylast python3-pylast
pylibacl python3-pylibacl
pyliblo python3-liblo
pylibmc python3-pylibmc
pylint pylint3
pylint_celery python3-pylint-celery
pylint_common python3-pylint-common
pylint_django python3-pylint-django
pylint_flask python3-pylint-flask
pylint_plugin_utils python3-pylint-plugin-utils
pylxd python3-pylxd
pymacaroons python3-pymacaroons
pymad python3-pymad
pymecavideo python3-mecavideo
pymediainfo python3-pymediainfo
pymemcache python3-pymemcache
pymia python3-mia
pymilter python3-milter
pymoc python3-pymoc
pymodbus python3-pymodbus
pymol python3-pymol
pymongo python3-pymongo
pymssql python3-pymssql
pymummer python3-pymummer
pymzml python3-pymzml
pyngus python3-pyngus
pyninjotiff python3-pyninjotiff
pynmea2 python3-nmea2
pynwb python3-pynwb
pynzb python3-pynzb
pyo python3-pyo
pyocd python3-pyocd
pyocr python3-pyocr
pyodbc python3-pyodbc
pyopencl python3-pyopencl
pyorbital python3-pyorbital
pyorick python3-pyorick
pyotp python3-pyotp
pyp pyp
pypandoc python3-pypandoc
pyparallel python3-parallel
pyparsing python3-pyparsing
pyparted python3-parted
pypass python3-pypass
pypcap python3-pypcap
pyperclip python3-pyperclip
pypillowfight python3-pypillowfight
pypng python3-png
pypowervm python3-pypowervm
pyppd pyppd
pyproj python3-pyproj
pypuppetdb python3-pypuppetdb
pypureomapi python3-pypureomapi
pyqtgraph python3-pyqtgraph
pyquery python3-pyquery
pyrad python3-pyrad
pyraf python3-pyraf
pyramid python3-pyramid
pyramid_chameleon python3-pyramid-chameleon
pyramid_jinja2 python3-pyramid-jinja2
pyramid_multiauth python3-pyramid-multiauth
pyregfi python3-pyregfi
pyregion python3-pyregion
pyresample python3-pyresample
pyroma python3-pyroma
pyroute2 python3-pyroute2
pysam python3-pysam
pysaml2 python3-pysaml2
pyscard python3-pyscard
pysendfile python3-sendfile
pyserial python3-serial
pyserial_asyncio python3-serial-asyncio
pysha3 python3-sha3
pyshp python3-pyshp
pysmbc python3-smbc
pysmi python3-pysmi
pysnmp python3-pysnmp4
pysodium python3-pysodium
pysolar python3-pysolar
pysolr python3-pysolr
pyspectral python3-pyspectral
pyspf python3-spf
pysrt python3-pysrt
pyssim python3-pyssim
pystache python3-pystache
pysubnettree python3-subnettree
pysurfer python3-surfer
pysynphot python3-pysynphot
pytaglib python3-taglib
pytango python3-tango
pyte python3-pyte
pytest python3-pytest
pytest_arraydiff python3-pytest-arraydiff
pytest_astropy python3-pytest-astropy
pytest_asyncio python3-pytest-asyncio
pytest_bdd python3-pytest-bdd
pytest_benchmark python3-pytest-benchmark
pytest_cookies python3-pytest-cookies
pytest_cov python3-pytest-cov
pytest_cython python3-pytest-cython
pytest_django python3-pytest-django
pytest_doctestplus python3-pytest-doctestplus
pytest_expect python3-pytest-expect
pytest_flask python3-pytest-flask
pytest_forked python3-pytest-forked
pytest_helpers_namespace python3-pytest-helpers-namespace
pytest_httpbin python3-pytest-httpbin
pytest_instafail python3-pytest-instafail
pytest_lazy_fixture python3-pytest-lazy-fixture
pytest_localserver python3-pytest-localserver
pytest_mock python3-pytest-mock
pytest_mpl python3-pytest-mpl
pytest_multihost python3-pytest-multihost
pytest_openfiles python3-pytest-openfiles
pytest_pep8 python3-pytest-pep8
pytest_pylint python3-pytest-pylint
pytest_qt python3-pytestqt
pytest_random_order python3-pytest-random-order
pytest_remotedata python3-pytest-remotedata
pytest_runner python3-pytest-runner
pytest_salt python3-pytestsalt
pytest_sourceorder python3-pytest-sourceorder
pytest_sugar python3-pytest-sugar
pytest_tempdir python3-pytest-tempdir
pytest_timeout python3-pytest-timeout
pytest_tornado python3-pytest-tornado
pytest_xdist python3-pytest-xdist
pytest_xvfb python3-pytest-xvfb
python3_lxc python3-lxc
python3_openid python3-openid
python_Levenshtein python3-levenshtein
python_aalib python3-aalib
python_afl python3-afl
python_apt python3-apt
python_aptly python3-aptly
python_augeas python3-augeas
python_axolotl python3-axolotl
python_axolotl_curve25519 python3-axolotl-curve25519
python_barbicanclient python3-barbicanclient
python_bitcoinlib python3-bitcoinlib
python_blazarclient python3-blazarclient
python_bugzilla python3-bugzilla
python_can python3-can
python_casacore python3-casacore
python_ceilometerclient python3-ceilometerclient
python_cinderclient python3-cinderclient
python_cloudkittyclient python3-cloudkittyclient
python_congressclient python3-congressclient
python_consul python3-consul
python_cpl python3-cpl
python_crontab python3-crontab
python_daemon python3-daemon
python_dateutil python3-dateutil
python_dbusmock python3-dbusmock
python_debian python3-debian
python_debianbts python3-debianbts
python_decouple python3-decouple
python_designateclient python3-designateclient
python_digitalocean python3-digitalocean
python_distutils_extra python3-distutils-extra
python_djvulibre python3-djvu
python_docs_theme python3-docs-theme
python_dotenv python3-dotenv
python_dracclient python3-dracclient
python_editor python3-editor
python_engineio python3-engineio
python_espeak python3-espeak
python_etcd python3-etcd
python_evtx python3-evtx
python_fedora python3-fedora
python_freecontact python3-freecontact
python_gammu python3-gammu
python_geotiepoints python3-geotiepoints
python_gflags python3-gflags
python_gitlab python3-gitlab
python_glanceclient python3-glanceclient
python_glareclient python3-glareclient
python_gnupg python3-gnupg
python_hdf4 python3-hdf4
python_heatclient python3-heatclient
python_hglib python3-hglib
python_hpilo python3-hpilo
python_igraph python3-igraph
python_ilorest_library python3-ilorest
python_instagram python3-instagram
python_iptables python3-iptables
python_ironic_inspector_client python3-ironic-inspector-client
python_ironicclient python3-ironicclient
python_jenkins python3-jenkins
python_k8sclient python3-k8sclient
python_karborclient python3-karborclient
python_keystoneclient python3-keystoneclient
python_ldap python3-ldap
python_libdiscid python3-libdiscid
python_libguess python3-libguess
python_libnmap python3-libnmap
python_librtmp python3-librtmp
python_libtorrent python3-libtorrent
python_linux_procfs python3-linux-procfs
python_louvain python3-louvain
python_ly python3-ly
python_lzo python3-lzo
python_magic python3-magic
python_magnumclient python3-magnumclient
python_manilaclient python3-manilaclient
python_markdown_math python3-mdx-math
python_memcached python3-memcache
python_mimeparse python3-mimeparse
python_mistralclient python3-mistralclient
python_monascaclient python3-monascaclient
python_mpd2 python3-mpd
python_muranoclient python3-muranoclient
python_musicpd python3-musicpd
python_networkmanager python3-networkmanager
python_neutronclient python3-neutronclient
python_nmap python3-nmap
python_novaclient python3-novaclient
python_novnc python3-novnc
python_octaviaclient python3-octaviaclient
python_openflow python3-openflow
python_openid_cla python3-openid-cla
python_openid_teams python3-openid-teams
python_openstackclient python3-openstackclient
python_pam python3-pampy
python_pcl python3-pcl
python_popcon python3-popcon
python_poppler_qt5 python3-poppler-qt5
python_potr python3-potr
python_prctl python3-prctl
python_pskc python3-pskc
python_ptrace python3-ptrace
python_qinlingclient python3-qinlingclient
python_qpid_proton python3-qpid-proton
python_redmine python3-redminelib
python_rtmidi python3-rtmidi
python_saharaclient python3-saharaclient
python_sane python3-sane
python_scciclient python3-scciclient
python_searchlightclient python3-searchlightclient
python_senlinclient python3-senlinclient
python_slugify python3-slugify
python_snappy python3-snappy
python_sql python3-sql
python_stdnum python3-stdnum
python_subunit python3-subunit
python_svipc python3-svipc
python_swiftclient python3-swiftclient
python_tackerclient python3-tackerclient
python_tds python3-tds
python_termstyle python3-termstyle
python_troveclient python3-troveclient
python_twitter python3-twitter
python_u2flib_server python3-u2flib-server
python_uinput python3-uinput
python_utils python3-python-utils
python_vagrant python3-vagrant
python_vitrageclient python3-vitrageclient
python_vlc python3-vlc
python_watcher python3-watcher
python_watcherclient python3-watcherclient
python_xapp python3-xapp
python_xlib python3-xlib
python_zaqarclient python3-zaqarclient
python_zunclient python3-zunclient
pythondialog python3-dialog
pytidylib python3-tidylib
pytimeparse python3-pytimeparse
pytoml python3-pytoml
pytools python3-pytools
pytroll_schedule python3-trollsched
pytsk3 python3-tsk
pytz python3-tz
pyuca python3-pyuca
pyudev python3-pyudev
pyusb python3-usb
pyviennacl python3-pyviennacl
pyvmomi python3-pyvmomi
pyvo python3-pyvo
pywebview python3-webview
pywinrm python3-winrm
pywws python3-pywws
pyxattr python3-pyxattr
pyxdg python3-xdg
pyzabbix python3-pyzabbix
pyzmq python3-zmq
pyzor pyzor
q python3-q
qiime2 qiime
qpack python3-qpack
qrcode python3-qrcode
qrcodegen python3-qrcodegen
qrencode python3-qrencode
qtconsole python3-qtconsole
qtile python3-qtile
quark_sphinx_theme python3-quark-sphinx-theme
queuelib python3-queuelib
quickcal quickcal
quodlibet exfalso
qutebrowser qutebrowser
qweborf qweborf
raccoon python3-raccoon
radio_beam python3-radio-beam
radon radon
rados python3-rados
rally python3-rally
random2 python3-random2
randomize python3-randomize
ranger_fm ranger
rapid_photo_downloader rapid-photo-downloader
rarfile python3-rarfile
rasterio python3-rasterio
ratelimiter python3-ratelimiter
raven python3-raven
rawkit python3-rawkit
razercfg razercfg
rbd python3-rbd
rcssmin python3-rcssmin
rdflib python3-rdflib
rdflib_jsonld python3-rdflib-jsonld
readlike python3-readlike
readme_renderer python3-readme-renderer
rebound_cli rebound
rebulk python3-rebulk
recommonmark python3-recommonmark
reconfigure python3-reconfigure
redis python3-redis
redis_py_cluster python3-rediscluster
rednose python3-rednose
regex python3-regex
regions python3-regions
relational python3-relational
relational_gui relational
relational_readline relational-cli
relatorio python3-relatorio
releases python3-releases
remote_logon_config_agent remote-logon-config-agent
rencode python3-rencode
reno python3-reno
reportbug python3-reportbug
reportlab python3-reportlab
repoze.lru python3-repoze.lru
repoze.sphinx.autointerface python3-repoze.sphinx.autointerface
repoze.tm2 python3-repoze.tm2
repoze.who python3-repoze.who
reproject python3-reproject
reprotest reprotest
reprounzip python3-reprounzip
reprozip python3-reprozip
requestbuilder python3-requestbuilder
requests python3-requests
requests_aws python3-awsauth
requests_cache python3-requests-cache
requests_file python3-requests-file
requests_futures python3-requests-futures
requests_kerberos python3-requests-kerberos
requests_mock python3-requests-mock
requests_ntlm python3-requests-ntlm
requests_oauthlib python3-requests-oauthlib
requests_toolbelt python3-requests-toolbelt
requests_unixsocket python3-requests-unixsocket
requestsexceptions python3-requestsexceptions
requirements_detector python3-requirements-detector
responses python3-responses
restless python3-restless
restructuredtext_lint python3-restructuredtext-lint
retrying python3-retrying
retweet retweet
rfc3161ng python3-rfc3161ng
rfc3986 python3-rfc3986
rgw python3-rgw
rhythmbox_ampache rhythmbox-ampache
ripe.atlas.cousteau python3-ripe-atlas-cousteau
ripe.atlas.sagan python3-ripe-atlas-sagan
ripe.atlas.tools ripe-atlas-tools
rjsmin python3-rjsmin
rlp python3-rlp
robot_detection python3-robot-detection
roman python3-roman
rope python3-rope
rosdep python3-rosdep2
rosdistro python3-rosdistro
rosinstall python3-rosinstall
rosinstall_generator python3-rosinstall-generator
rospkg python3-rospkg
rpaths python3-rpaths
rpl rpl
rply python3-rply
rpm python3-rpm
rpy2 python3-rpy2
rpyc python3-rpyc
rrdtool python3-rrdtool
rsa python3-rsa
rss2email rss2email
rstr python3-rstr
rtslib_fb python3-rtslib-fb
rtv rtv
ruamel.yaml python3-ruamel.yaml
rubber rubber
ruffus python3-ruffus
rules python3-django-rules
ryu python3-ryu
s3cmd s3cmd
s3transfer python3-s3transfer
s_tui s-tui
sadisplay python3-sadisplay
safeeyes safeeyes
sagenb_export python3-sagenb-export
sahara python3-sahara
sahara_dashboard python3-sahara-dashboard
salmid salmid
salt salt-common
salt_pepper salt-pepper
sasmodels python3-sasmodels
satpy python3-satpy
sbws sbws
scales python3-scales
scapy python3-scapy
schedule python3-schedule
schedutils python3-schedutils
schema python3-schema
schema_salad python3-schema-salad
schroot python3-schroot
scikit_bio python3-skbio
scikit_image python3-skimage
scikit_learn python3-sklearn
scipy python3-scipy
scoop python3-scoop
scour python3-scour
scp python3-scp
scrapy_djangoitem python3-scrapy-djangoitem
screed python3-screed
scripttest python3-scripttest
scruffington python3-scruffy
scrypt python3-scrypt
sdnotify python3-sdnotify
seaborn python3-seaborn
searx python3-searx
segyio python3-segyio
selenium python3-selenium
semantic_version python3-semantic-version
semver python3-semver
sen sen
senlin python3-senlin
senlin_dashboard python3-senlin-dashboard
sentinels python3-sentinels
sentinelsat python3-sentinelsat
sepolicy python3-sepolicy
seqdiag python3-seqdiag
seqmagick seqmagick
serpent python3-serpent
serverfiles python3-serverfiles
service_identity python3-service-identity
setools python3-setools
setoptconf python3-setoptconf
setproctitle python3-setproctitle
setuptools python3-setuptools-scm-git-archive
setuptools_git python3-setuptools-git
setuptools_scm python3-setuptools-scm
sexpdata python3-sexpdata
sgp4 python3-sgp4
sh python3-sh
shade python3-shade
shatag shatag
shellescape python3-shellescape
shodan python3-shodan
shortuuid python3-shortuuid
sievelib python3-sievelib
signedjson python3-signedjson
silkaj silkaj
silx python3-silx
simple_cdd python3-simple-cdd
simplebayes python3-simplebayes
simpleeval python3-simpleeval
simplegeneric python3-simplegeneric
simplejson python3-simplejson
simpy python3-simpy3
siphashc python3-siphashc
sireader python3-sireader
siridb_connector python3-siridb-connector
six python3-six
sixer sixer
sklearn_pandas python3-sklearn-pandas
skytools python3-skytools
sleekxmpp python3-sleekxmpp
slepc4py_complex python3-slepc4py-complex
slepc4py_real python3-slepc4py-real
slimit python3-slimit
slimmer python3-slimmer
slip python3-slip
slip.dbus python3-slip-dbus
slixmpp python3-slixmpp
smartypants python3-smartypants
smmap2 python3-smmap
smoke_zephyr python3-smoke-zephyr
smstrade python3-smstrade
snakemake snakemake
snappergui snapper-gui
sniffio python3-sniffio
snimpy python3-snimpy
snmpsim snmpsim
snowballstemmer python3-snowballstemmer
snuggs python3-snuggs
social_auth_app_django python3-social-django
social_auth_core python3-social-auth-core
socketIO_client python3-socketio-client
socketpool python3-socketpool
sockjs_tornado python3-sockjs-tornado
sopel sopel
sorl_thumbnail python3-sorl-thumbnail
sortedcollections python3-sortedcollections
sortedcontainers python3-sortedcontainers
soupsieve python3-soupsieve
spake2 python3-spake2
sparkpost python3-sparkpost
sparse python3-sparse
spectra python3-spectra
spectral_cube python3-spectral-cube
specutils python3-specutils
speedtest_cli speedtest-cli
speg python3-speg
spf_engine python3-spf-engine
spglib python3-spglib
sphere python3-sphere
sphinx_argparse python3-sphinx-argparse
sphinx_astropy python3-sphinx-astropy
sphinx_autobuild python3-sphinx-autobuild
sphinx_automodapi python3-sphinx-automodapi
sphinx_autorun python3-sphinx-autorun
sphinx_bootstrap_theme python3-sphinx-bootstrap-theme
sphinx_celery python3-sphinx-celery
sphinx_feature_classification python3-sphinx-feature-classification
sphinx_gallery python3-sphinx-gallery
sphinx_intl sphinx-intl
sphinx_paramlinks python3-sphinx-paramlinks
sphinx_rtd_theme python3-sphinx-rtd-theme
sphinx_testing python3-sphinx-testing
sphinxcontrib_actdiag python3-sphinxcontrib.actdiag
sphinxcontrib_apidoc python3-sphinxcontrib.apidoc
sphinxcontrib_autoprogram python3-sphinxcontrib.autoprogram
sphinxcontrib_bibtex python3-sphinxcontrib.bibtex
sphinxcontrib_blockdiag python3-sphinxcontrib.blockdiag
sphinxcontrib_doxylink python3-sphinxcontrib.doxylink
sphinxcontrib_httpdomain python3-sphinxcontrib.httpdomain
sphinxcontrib_nwdiag python3-sphinxcontrib.nwdiag
sphinxcontrib_pecanwsme python3-sphinxcontrib-pecanwsme
sphinxcontrib_plantuml python3-sphinxcontrib.plantuml
sphinxcontrib_programoutput python3-sphinxcontrib.programoutput
sphinxcontrib_restbuilder python3-sphinxcontrib.restbuilder
sphinxcontrib_rubydomain python3-sphinxcontrib.rubydomain
sphinxcontrib_seqdiag python3-sphinxcontrib.seqdiag
sphinxcontrib_spelling python3-sphinxcontrib.spelling
sphinxcontrib_websupport python3-sphinxcontrib.websupport
sphinxcontrib_youtube python3-sphinxcontrib.youtube
sphinxtesters python3-sphinxtesters
spoon python3-spoon
spur python3-spur
spyder python3-spyder
spyder_kernels python3-spyder-kernels
spyder_line_profiler python3-spyder-line-profiler
spyder_memory_profiler python3-spyder-memory-profiler
spyder_reports python3-spyder-reports
spyder_unittest python3-spyder-unittest
sqlacodegen sqlacodegen
sqlalchemy_migrate python3-migrate
sqlparse python3-sqlparse
sqlsoup python3-sqlsoup
sqt python3-sqt
srp python3-srp
ssdeep python3-ssdeep
ssh_import_id ssh-import-id
sshoot sshoot
sshpubkeys python3-sshpubkeys
sshtunnel python3-sshtunnel
sshuttle sshuttle
stardicter python3-stardicter
static3 python3-static3
staticsite staticsite
statsd python3-statsd
statsmodels python3-statsmodels
stdeb python3-stdeb
stem python3-stem
stepic stepic
stestr python3-stestr
stevedore python3-stevedore
stomp.py python3-stomp
stomper python3-stomper
stopit python3-stopit
straight.plugin python3-straight.plugin
streamlink python3-streamlink
stringtemplate3 python3-stringtemplate3
structlog python3-structlog
stsci.distutils python3-stsci.distutils
stsci.tools python3-stsci.tools
subliminal python3-subliminal
subunit2sql python3-subunit2sql
subuser subuser
subvertpy python3-subvertpy
suds_jurko python3-suds
sunlight python3-sunlight
sunpy python3-sunpy
sure python3-sure
suricata_update suricata-update
sushy python3-sushy
svg.path python3-svg.path
svgwrite python3-svgwrite
swiftsc python3-swiftsc
swiglpk python3-swiglpk
sympy python3-sympy
systemd_python python3-systemd
systemfixtures python3-systemfixtures
sysv_ipc python3-sysv-ipc
tables python3-tables
tablib python3-tablib
tabulate python3-tabulate
tagpy python3-tagpy
tap.py python3-tap
tap_as_a_service python3-neutron-taas
targetcli_fb targetcli-fb
taskflow python3-taskflow
taskw python3-taskw
tblib python3-tblib
td_watson python3-watson
tempest python3-tempest
tempest_horizon python3-tempest-horizon
tenacity python3-tenacity
termbox python3-termbox
termcolor python3-termcolor
terminado python3-terminado
terminaltables python3-terminaltables
termineter termineter
tesserocr python3-tesserocr
test_server python3-test-server
testfixtures python3-testfixtures
testing.common.database python3-testing.common.database
testing.mysqld python3-testing.mysqld
testing.postgresql python3-testing.postgresql
testpath python3-testpath
testrepository python3-testrepository
testresources python3-testresources
testscenarios python3-testscenarios
testtools python3-testtools
texext python3-texext
textile python3-textile
texttable python3-texttable
thinc python3-thinc
thonny thonny
thriftpy python3-thriftpy
tifffile tifffile
tinycss python3-tinycss
tinycss2 python3-tinycss2
tinyrpc python3-tinyrpc
tkSnack python3-tksnack
tld python3-tld
tldextract python3-tldextract
tldp python3-tldp
tldr.py tldr-py
tlsh python3-tlsh
tlslite_ng python3-tlslite-ng
tmdbsimple python3-tmdbsimple
tmuxp python3-tmuxp
tnetstring3 python3-tnetstring
todoman todoman
toil toil
tomahawk python3-tomahawk
toml python3-toml
toolz python3-toolz
toot toot
tooz python3-tooz
toposort python3-toposort
tornado python3-tornado
tornado4 python3-tornado4
toro python3-toro
tosca_parser python3-tosca-parser
tox tox
tqdm python3-tqdm
traceback2 python3-traceback2
trafficserver_exporter prometheus-trafficserver-exporter
traitlets python3-traitlets
traits python3-traits
transaction python3-transaction
transifex_client transifex-client
transitions python3-transitions
translate_toolkit python3-translate
translationstring python3-translationstring
transliterate python3-transliterate
transmissionrpc python3-transmissionrpc
treq python3-treq
trezor python3-trezor
trio python3-trio
trollimage python3-trollimage
trollsift python3-trollsift
trove python3-trove
trove_dashboard python3-trove-dashboard
trustme python3-trustme
trydiffoscope trydiffoscope
tryton tryton-client
trytond tryton-server
trytond_account tryton-modules-account
trytond_account_asset tryton-modules-account-asset
trytond_account_be tryton-modules-account-be
trytond_account_credit_limit tryton-modules-account-credit-limit
trytond_account_de_skr03 tryton-modules-account-de-skr03
trytond_account_deposit tryton-modules-account-deposit
trytond_account_dunning tryton-modules-account-dunning
trytond_account_dunning_email tryton-modules-account-dunning-email
trytond_account_dunning_fee tryton-modules-account-dunning-fee
trytond_account_dunning_letter tryton-modules-account-dunning-letter
trytond_account_es tryton-modules-account-es
trytond_account_eu tryton-modules-account-eu
trytond_account_fr tryton-modules-account-fr
trytond_account_fr_chorus tryton-modules-account-fr-chorus
trytond_account_invoice tryton-modules-account-invoice
trytond_account_invoice_history tryton-modules-account-invoice-history
trytond_account_invoice_line_standalone tryton-modules-account-invoice-line-standalone
trytond_account_invoice_stock tryton-modules-account-invoice-stock
trytond_account_payment tryton-modules-account-payment
trytond_account_payment_clearing tryton-modules-account-payment-clearing
trytond_account_payment_sepa tryton-modules-account-payment-sepa
trytond_account_payment_sepa_cfonb tryton-modules-account-payment-sepa-cfonb
trytond_account_product tryton-modules-account-product
trytond_account_statement tryton-modules-account-statement
trytond_account_stock_anglo_saxon tryton-modules-account-stock-anglo-saxon
trytond_account_stock_continental tryton-modules-account-stock-continental
trytond_account_stock_landed_cost tryton-modules-account-stock-landed-cost
trytond_account_stock_landed_cost_weight tryton-modules-account-stock-landed-cost-weight
trytond_account_tax_rule_country tryton-modules-account-tax-rule-country
trytond_analytic_account tryton-modules-analytic-account
trytond_analytic_invoice tryton-modules-analytic-invoice
trytond_analytic_purchase tryton-modules-analytic-purchase
trytond_analytic_sale tryton-modules-analytic-sale
trytond_authentication_sms tryton-modules-authentication-sms
trytond_bank tryton-modules-bank
trytond_carrier tryton-modules-carrier
trytond_carrier_percentage tryton-modules-carrier-percentage
trytond_carrier_weight tryton-modules-carrier-weight
trytond_commission tryton-modules-commission
trytond_commission_waiting tryton-modules-commission-waiting
trytond_company tryton-modules-company
trytond_company_work_time tryton-modules-company-work-time
trytond_country tryton-modules-country
trytond_currency tryton-modules-currency
trytond_customs tryton-modules-customs
trytond_dashboard tryton-modules-dashboard
trytond_edocument_uncefact tryton-modules-edocument-uncefact
trytond_edocument_unece tryton-modules-edocument-unece
trytond_google_maps tryton-modules-google-maps
trytond_ldap_authentication tryton-modules-ldap-authentication
trytond_notification_email tryton-modules-notification-email
trytond_party tryton-modules-party
trytond_party_relationship tryton-modules-party-relationship
trytond_party_siret tryton-modules-party-siret
trytond_product tryton-modules-product
trytond_product_attribute tryton-modules-product-attribute
trytond_product_classification tryton-modules-product-classification
trytond_product_classification_taxonomic tryton-modules-product-classification-taxonomic
trytond_product_cost_fifo tryton-modules-product-cost-fifo
trytond_product_cost_history tryton-modules-product-cost-history
trytond_product_measurements tryton-modules-product-measurements
trytond_product_price_list tryton-modules-product-price-list
trytond_production tryton-modules-production
trytond_production_routing tryton-modules-production-routing
trytond_production_work tryton-modules-production-work
trytond_project tryton-modules-project
trytond_project_invoice tryton-modules-project-invoice
trytond_project_plan tryton-modules-project-plan
trytond_project_revenue tryton-modules-project-revenue
trytond_purchase tryton-modules-purchase
trytond_purchase_invoice_line_standalone tryton-modules-purchase-invoice-line-standalone
trytond_purchase_request tryton-modules-purchase-request
trytond_purchase_shipment_cost tryton-modules-purchase-shipment-cost
trytond_sale tryton-modules-sale
trytond_sale_complaint tryton-modules-sale-complaint
trytond_sale_credit_limit tryton-modules-sale-credit-limit
trytond_sale_extra tryton-modules-sale-extra
trytond_sale_invoice_grouping tryton-modules-sale-invoice-grouping
trytond_sale_opportunity tryton-modules-sale-opportunity
trytond_sale_price_list tryton-modules-sale-price-list
trytond_sale_promotion tryton-modules-sale-promotion
trytond_sale_shipment_cost tryton-modules-sale-shipment-cost
trytond_sale_shipment_grouping tryton-modules-sale-shipment-grouping
trytond_sale_stock_quantity tryton-modules-sale-stock-quantity
trytond_sale_subscription tryton-modules-sale-subscription
trytond_sale_supply tryton-modules-sale-supply
trytond_sale_supply_drop_shipment tryton-modules-sale-supply-drop-shipment
trytond_stock tryton-modules-stock
trytond_stock_forecast tryton-modules-stock-forecast
trytond_stock_inventory_location tryton-modules-stock-inventory-location
trytond_stock_location_sequence tryton-modules-stock-location-sequence
trytond_stock_lot tryton-modules-stock-lot
trytond_stock_lot_sled tryton-modules-stock-lot-sled
trytond_stock_package tryton-modules-stock-package
trytond_stock_package_shipping tryton-modules-stock-package-shipping
trytond_stock_package_shipping_dpd tryton-modules-stock-package-shipping-dpd
trytond_stock_package_shipping_ups tryton-modules-stock-package-shipping-ups
trytond_stock_product_location tryton-modules-stock-product-location
trytond_stock_shipment_measurements tryton-modules-stock-shipment-measurements
trytond_stock_split tryton-modules-stock-split
trytond_stock_supply tryton-modules-stock-supply
trytond_stock_supply_day tryton-modules-stock-supply-day
trytond_stock_supply_forecast tryton-modules-stock-supply-forecast
trytond_stock_supply_production tryton-modules-stock-supply-production
trytond_timesheet tryton-modules-timesheet
trytond_timesheet_cost tryton-modules-timesheet-cost
ttystatus python3-ttystatus
tunigo python3-tunigo
tweepy python3-tweepy
twilio python3-twilio
twine twine
twitterwatch twitterwatch
twms twms
twodict python3-twodict
twython python3-twython
txWS python3-txws
txZMQ python3-txzmq
txaio python3-txaio
txfixtures python3-txfixtures
txtorcon python3-txtorcon
typecatcher typecatcher
typed_ast python3-typed-ast
typedload python3-typedload
typeguard python3-typeguard
typing_extensions python3-typing-extensions
typogrify python3-typogrify
tz_converter tz-converter
tzlocal python3-tzlocal
uTidylib python3-utidylib
u_msgpack_python python3-u-msgpack
ua_parser python3-ua-parser
ubuntu_dev_tools python3-ubuntutools
udatetime python3-udatetime
udiskie udiskie
uflash python3-uflash
ufo2ft python3-ufo2ft
ufoLib2 python3-ufolib2
ufonormalizer python3-ufonormalizer
ufw ufw
ujson python3-ujson
ukui_menu ukui-menu
ulmo python3-ulmo
unattended_upgrades unattended-upgrades
uncertainties python3-uncertainties
undertime undertime
unicodecsv python3-unicodecsv
unicycler unicycler
unidiff python3-unidiff
unittest2 python3-unittest2
unpaddedbase64 python3-unpaddedbase64
uritemplate python3-uritemplate
uritools python3-uritools
urllib3 python3-urllib3
urlscan urlscan
urlwatch urlwatch
urwid python3-urwid
urwid_utils python3-urwid-utils
urwidtrees python3-urwidtrees
usagestats python3-usagestats
user_agents python3-user-agents
uvicorn python3-uvicorn
uvloop python3-uvloop
validictory python3-validictory
variety variety
vatnumber python3-vatnumber
vcrpy python3-vcr
vcstools python3-vcstools
vcversioner python3-vcversioner
vdirsyncer vdirsyncer
venusian python3-venusian
versiontools python3-versiontools
veusz python3-veusz
vine python3-vine
virtualenv python3-virtualenv
virtualenv_clone python3-virtualenv-clone
visidata visidata
vispy python3-vispy
vitrage python3-vitrage
vmdb2 vmdb2
vobject python3-vobject
volatildap python3-volatildap
voltron voltron
voluptuous python3-voluptuous
voluptuous_serialize python3-voluptuous-serialize
vulture vulture
w3lib python3-w3lib
wadllib python3-wadllib
wafw00f wafw00f
waiting python3-waiting
waitress python3-waitress
wapiti3 wapiti
warlock python3-warlock
watchdog python3-watchdog
watson_developer_cloud python3-watson-developer-cloud
wchartype python3-wchartype
wcwidth python3-wcwidth
web.py python3-webpy
webassets python3-webassets
webcolors python3-webcolors
webencodings python3-webencodings
websocket_client python3-websocket
websockets python3-websockets
websockify python3-websockify
wfuzz wfuzz
wget python3-wget
whatmaps whatmaps
whatthepatch python3-whatthepatch
wheel python3-wheel
wheezy.template python3-wheezy.template
whichcraft python3-whichcraft
whisper python3-whisper
whitenoise python3-whitenoise
whois python3-whois
widgetsnbextension python3-widgetsnbextension
wikitrans python3-wikitrans
wither python3-wither
wlc wlc
wokkel python3-wokkel
woo python3-woo
wrapt python3-wrapt
ws4py python3-ws4py
wsaccel python3-wsaccel
wsgi_intercept python3-wsgi-intercept
wsgicors python3-wsgicors
wsgilog python3-wsgilog
wsproto python3-wsproto
wstool python3-wstool
wtf_peewee python3-wtf-peewee
wxPython python3-wxgtk4.0
x2go python3-x2go
x2gobroker python3-x2gobroker
xandikos xandikos
xapers xapers
xapian_haystack python3-xapian-haystack
xarray python3-xarray
xattr python3-xattr
xcffib python3-xcffib
xdo python3-xdo
xdot xdot
xhtml2pdf python3-xhtml2pdf
xkcd python3-xkcd
xkcdpass xkcdpass
xlrd python3-xlrd
xlwt python3-xlwt
xml_marshaller python3-xmlmarshaller
xmltodict python3-xmltodict
xonsh xonsh
xopen python3-xopen
xtermcolor python3-xtermcolor
xvfbwrapper python3-xvfbwrapper
yamllint yamllint
yamlordereddictloader python3-yamlordereddictloader
yanc python3-nose-yanc
yapf python3-yapf
yaql python3-yaql
yara_python python3-yara
yarl python3-yarl
yaswfp python3-yaswfp
yattag python3-yattag
yenc python3-yenc
yokadi yokadi
youtube_dl youtube-dl
yowsup2 python3-yowsup
yt python3-yt
yubikey_manager python3-yubikey-manager
zVMCloudConnector python3-zvmcloudconnector
zake python3-zake
zaqar python3-zaqar
zaqar_ui python3-zaqar-ui
zc.customdoctests python3-zc.customdoctests
zc.lockfile python3-zc.lockfile
zeep python3-zeep
zenoss python3-zenoss
zeroconf python3-zeroconf
zfec python3-zfec
zict python3-zict
zipstream python3-zipstream
zktop zktop
zodbpickle python3-zodbpickle
zope.browser python3-zope.browser
zope.component python3-zope.component
zope.configuration python3-zope.configuration
zope.contenttype python3-zope.contenttype
zope.deprecation python3-zope.deprecation
zope.event python3-zope.event
zope.exceptions python3-zope.exceptions
zope.fixers python3-zope.fixers
zope.hookable python3-zope.hookable
zope.i18n python3-zope.i18n
zope.i18nmessageid python3-zope.i18nmessageid
zope.interface python3-zope.interface
zope.location python3-zope.location
zope.proxy python3-zope.proxy
zope.schema python3-zope.schema
zope.security python3-zope.security
zope.testing python3-zope.testing
zope.testrunner python3-zope.testrunner
zxcvbn python3-zxcvbn
zzzeeksphinx python3-zzzeeksphinx
|