File: cpython2_fallback

package info (click to toggle)
dh-python 2.20170125
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 1,160 kB
  • ctags: 402
  • sloc: python: 3,953; makefile: 412; perl: 195; sh: 26
file content (2888 lines) | stat: -rw-r--r-- 80,613 bytes parent folder | download
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
python python
setuptools python-pkg-resources
wsgiref python (>= 2.5) | python-wsgiref
argparse python (>= 2.7) | python-argparse
pil python-pil
Pillow python-pil
2ping 2ping
3to2 python-3to2
APLpy python-aplpy
APScheduler python-apscheduler
APacheDEX apachedex
AddOns python-peak.util
Arriero arriero
AuthKit python-authkit
Axiom python-axiom
BBQSQL bbqsql
BTrees python-btrees
Babel python-babel
Beaker python-beaker
BeautifulSoup python-beautifulsoup
BitTornado bittornado
BitTorrent python-bittorrent
Bitten trac-bitten-slave
Blogofile blogofile
Bottleneck python-bottleneck
Box2D python-box2d
Brlapi python-brlapi
Brotli python-brotli
Buffy python-buffy
BytecodeAssembler python-peak.util
BzrPipeline bzr-pipeline
BzrTools bzrtools
CDApplet cairo-dock-dbus-plug-in-interface-python
CDBashApplet cairo-dock-dbus-plug-in-interface-python
CDDB python-cddb
CMOR python-cmor
CacheControl python-cachecontrol
CairoSVG python-cairosvg
CalendarServer calendarserver
Cartopy python-cartopy
Catwalk python-catwalk
CedarBackup2 cedar-backup2
Cerealizer python-cerealizer
Chameleon python-chameleon
CheMPS2 python-chemps2
Cheetah python-cheetah
CherryPy python-cherrypy
CherryTree cherrytree
ClusterShell clustershell
Codeville codeville
Coffin python-coffin
CommonMark_bkrs python-commonmark-bkrs
ConfigArgParse python-configargparse
Connectome_Viewer connectomeviewer
ConsensusCore python-pbconsensuscore
ControlAula controlaula
CouchDB python-couchdb
Couchapp couchapp
CoverageTestRunner python-coverage-test-runner
Creoleparser python-creoleparser
Cython cython
DITrack ditrack
DSV python-dsv
DecoratorTools python-peak.util.decorators
DendroPy python-dendropy
DiaVisViewPlugin trac-diavisview
DisplayCAL dispcalgui
Django python-django
Doconce doconce
EasyProcess python-easyprocess
EbookLib python-ebooklib
EditObj python-editobj
Editra editra
Electrum python-electrum
Elements python-elements
Elixir python-elixir
EnthoughtBase python-enthoughtbase
Epsilon python-epsilon
ExifRead python-exif
Extractor python-extractor
Extremes python-peak.util
FFC python-ffc
FIAT python-fiat
Fabric fabric
Faker python-fake-factory
FeinCMS python-django-feincms
FibraNet python-fibranet
Fiona python-fiona
Flask python-flask
Flask_API python-flask-api
Flask_AutoIndex python-flask-autoindex
Flask_Babel python-flask-babel
Flask_Bcrypt python-flask-bcrypt
Flask_Compress python-flask-compress
Flask_FlatPages python-flask-flatpages
Flask_HTTPAuth python-flask-httpauth
Flask_Limiter python-flask-limiter
Flask_Migrate python-flask-migrate
Flask_OldSessions python-flask-oldsessions
Flask_OpenID python-flask-openid
Flask_Principal python-flask-principal
Flask_RESTful python-flask-restful
Flask_SQLAlchemy python-flask-sqlalchemy
Flask_Script python-flask-script
Flask_Silk python-flask-silk
Flask_Sockets python-flask-sockets
Flask_Testing python-flask-testing
Flask_WTF python-flaskext.wtf
FormAlchemy python-formalchemy
FormEncode python-formencode
Frozen_Flask python-frozen-flask
GDAL python-gdal
GPlayCli gplaycli
GalleryRemote python-galleryremote
Genetic python-genetic
GenomeTools python-genometools
GenomicConsensus python-pbgenomicconsensus
Genshi python-genshi
GeoIP python-geoip
Geophar geophar
Ghost.py python-ghost
GitPython python-git
GooCalendar python-goocalendar
GvGen python-gvgen
Gyoto python-gyoto
Gyoto_lorene python-gyoto
Gyoto_std python-gyoto
HTSeq python-htseq
ID3 python-id3
IMDbPY python-imdbpy
IPy python-ipy
ISO8583_Module python-iso8583
Ibid ibid
Isenkram isenkram-cli
JACK_Client python-jack-client
JCC jcc
JPype python-jpype
Jinja2 python-jinja2
Kajiki python-kajiki
Kivy python-kivy
LEPL python-lepl
Lasagne python-lasagne
LibAppArmor python-libapparmor
Logbook python-logbook
Loom bzr-loom
Louie python-louie
M2Crypto python-m2crypto
MACS2 macs
MAT mat
MDP python-mdp
MIDIUtil python-midiutil
MLPY python-mlpy
Magics python-magics++
Mako python-mako
MapProxy python-mapproxy
Markdown python-markdown
MarkupSafe python-markupsafe
MechanicalSoup python-mechanicalsoup
MicrobeGPS microbegps
MiniMock python-minimock
Mirage mirage
Model_Builder model-builder
ModestMaps python-modestmaps
Mopidy mopidy
Mopidy_ALSAMixer mopidy-alsamixer
Mopidy_Beets mopidy-beets
Mopidy_Dirble mopidy-dirble
Mopidy_InternetArchive mopidy-internetarchive
Mopidy_Local_SQLite mopidy-local-sqlite
Mopidy_MPRIS mopidy-mpris
Mopidy_Podcast mopidy-podcast
Mopidy_Podcast_iTunes mopidy-podcast-itunes
Mopidy_Scrobbler mopidy-scrobbler
Mopidy_SomaFM mopidy-somafm
Mopidy_SoundCloud mopidy-soundcloud
Mopidy_TuneIn mopidy-tunein
Mopidy_Youtube mopidy-youtube
Mopidy_dLeyna mopidy-dleyna
MultipartPostHandler python-multipartposthandler
Myghty python-myghty
MyghtyUtils python-myghtyutils
NavAdd trac-navadd
Nevow python-nevow
Nik4 nik4
Nikola nikola
OERPLib python-oerplib
OWSLib python-owslib
OdooRPC python-odoorpc
OdtExportPlugin trac-odtexport
PAM python-pam
PDAL python-pdal
PEAK_Rules python-peak.rules
PLWM python-plwm
Parsley python-parsley
Paste python-paste
PasteDeploy python-pastedeploy
PasteScript python-pastescript
PasteWebKit python-pastewebkit
Pattern python-pattern
Paver python-paver
Photon photon
Pillow python-pil
Pint python-pint
Pivy python-pivy
Pmw python-pmw
PreludeEasy python-prelude
Printrun printrun
PrivateWikis trac-privatewiki
ProxyTypes python-peak.util
PsychoPy psychopy
PuLP python-pulp
Pwman3 pwman3
PyAIML python-aiml
PyAVM python-pyavm
PyAssimp python-pyassimp
PyAudio python-pyaudio
PyBluez python-bluez
PyCAPTCHA python-captcha
PyChart python-pychart
PyChef python-chef
PyChromecast python-pychromecast
PyDispatcher python-pydispatch
PyFFTW3 python-fftw
PyFeed python-feed
PyFlot python-pyflot
PyGithub python-github
PyGreSQL python-pygresql
PyHamcrest python-hamcrest
PyHoca_CLI pyhoca-cli
PyHoca_GUI pyhoca-gui
PyICU python-pyicu
PyJWT python-jwt
PyKMIP python-pykmip
PyLD python-pyld
PyMTP python-pymtp
PyMca5 python-pymca5
PyMetrics pymetrics
PyMySQL python-pymysql
PyNLPl python-pynlpl
PyNN python-pynn
PyNaCl python-nacl
PyODE python-pyode
PyOpenGL python-opengl
PyPDF2 python-pypdf2
PyProtocols python-protocols
PyPump python-pypump
PyRRD python-pyrrd
PyRSS2Gen python-pyrss2gen
PyRoom pyroom
PySAL python-pysal
PySDL2 python-sdl2
PySocks python-socks
PyStemmer python-stemmer
PyTrie python-trie
PyVCF python-pyvcf
PyVISA python-pyvisa
PyVISA_py python-pyvisa-py
PyVTK python-pyvtk
PyVirtualDisplay python-pyvirtualdisplay
PyWavelets python-pywt
PyWebDAV python-webdav
PyX python-pyx
PyXB python-pyxb
PyYAML python-yaml
Pyevolve python-pyevolve
Pygments python-pygments
Pykka python-pykka
Pylons python-pylons
Pymacs pymacs
Pyrex python-pyrex
Pyro pyro
Pyro4 python2-pyro4
Pysolar python-pysolar
Pyste libboost-python1.62-dev
PythonDaap python-daap
PythonQwt python-qwt
Python_fontconfig python-fontconfig
QtAwesome python-qtawesome
QtPy python-qtpy
QuantLib_Python quantlib-python
Quixote python-quixote1
RBTools python-rbtools
Rabbyt python-rabbyt
Radicale python-radicale
Recoll python-recoll
Ren_Py python-renpy
Rivet python-rivet
Roadmap_Plugin trac-roadmap
Routes python-routes
Rtree python-rtree
RunSnakeRun runsnakerun
SOAPpy python-soappy
SPARQLWrapper python-sparqlwrapper
SQLAlchemy python-sqlalchemy
SQLAlchemy_Utils python-sqlalchemy-utils
SQLObject python-sqlobject
Scrapy python-scrapy
SecretStorage python-secretstorage
SetupDocs python-setupdocs
Shapely python-shapely
SimPy python-simpy
SimpleTAL python-simpletal
SocksipyChain python-socksipychain
SoftLayer python-softlayer
Sonata sonata
SoundFile python-soundfile
South python-django-south
Sphinx python-sphinx
Sponge python-sponge
SquareMap python-squaremap
Stetl python-stetl
Strongwind python-strongwind
SymbolType python-peak.util
TRML2PDF python-trml2pdf
TaskCoach taskcoach
Tempita python-tempita
The_FreeSmartphone_Framework_Daemon fso-frameworkd
Theano python-theano
TileCache tilecache
TileStache tilestache
TkinterTreectrl python-tktreectrl
Tofu python-tofu
TornadIO2 python-tornadio2
ToscaWidgets python-toscawidgets
Trac trac
TracAccountManager trac-accountmanager
TracAnnouncer trac-announcer
TracAuthOpenId trac-authopenid
TracCodeComments trac-codecomments
TracCustomFieldAdmin trac-customfieldadmin
TracDateField trac-datefield
TracHTTPAuth trac-httpauth
TracIncludeMacro trac-includemacro
TracMasterTickets trac-mastertickets
TracMercurial trac-mercurial
TracSpamFilter trac-spamfilter
TracSubTicketsPlugin trac-subtickets
TracSubcomponents trac-subcomponents
TracTags trac-tags
TracVirtualTicketPermissions trac-virtualticketpermissions
TracWikiPrintPlugin trac-wikiprint
TracWysiwyg trac-wysiwyg
TracXMLRPC trac-xmlrpc
Trac_jsGantt trac-jsgantt
TranslatedPages trac-translatedpages
TurboGears2 python-turbogears2
TurboJson python-turbojson
TurboKid python-turbokid
Twisted python-twisted-core
Twisted_Web2 python-twisted-web2
UFL python-ufl
URLObject python-urlobject
Unidecode python-unidecode
Unipath python-unipath
UnknownHorizons unknown-horizons
VMDKstream vmdk-stream-converter
VirtualMailManager vmm
WSME python-wsme
WTForms python-wtforms
Wand python-wand
WebError python-weberror
WebFlash python-webflash
WebHelpers python-webhelpers
WebOb python-webob
WebTest python-webtest
Werkzeug python-werkzeug
Whoosh python-whoosh
WikiTableMacro trac-wikitablemacro
Willow python-willow
XStatic python-xstatic
XStatic_Angular python-xstatic-angular
XStatic_Angular_Bootstrap python-xstatic-angular-bootstrap
XStatic_Angular_Cookies python-xstatic-angular-cookies
XStatic_Angular_FileUpload python-xstatic-angular-fileupload
XStatic_Angular_Gettext python-xstatic-angular-gettext
XStatic_Angular_Mock python-xstatic-angular-mock
XStatic_Angular_Schema_Form python-xstatic-angular-schema-form
XStatic_Angular_lrdragndrop python-xstatic-angular-lrdragndrop
XStatic_Bootstrap_Datepicker python-xstatic-bootstrap-datepicker
XStatic_Bootstrap_SCSS python-xstatic-bootstrap-scss
XStatic_D3 python-xstatic-d3
XStatic_Font_Awesome python-xstatic-font-awesome
XStatic_Hogan python-xstatic-hogan
XStatic_JQuery.Bootstrap.Wizard python-xstatic-jquery.bootstrap.wizard
XStatic_JQuery.TableSorter python-xstatic-jquery.tablesorter
XStatic_JQuery.quicksearch python-xstatic-jquery.quicksearch
XStatic_JQuery_Migrate python-xstatic-jquery-migrate
XStatic_JSEncrypt python-xstatic-jsencrypt
XStatic_Jasmine python-xstatic-jasmine
XStatic_Magic_Search python-xstatic-magic-search
XStatic_QUnit python-xstatic-qunit
XStatic_Rickshaw python-xstatic-rickshaw
XStatic_Spin python-xstatic-spin
XStatic_bootswatch python-xstatic-bootswatch
XStatic_jQuery python-xstatic-jquery
XStatic_jquery_ui python-xstatic-jquery-ui
XStatic_mdi python-xstatic-mdi
XStatic_objectpath python-xstatic-objectpath
XStatic_roboto_fontface python-xstatic-roboto-fontface
XStatic_smart_table python-xstatic-smart-table
XStatic_term.js python-xstatic-term.js
XStatic_tv4 python-xstatic-tv4
X_Tile x-tile
XlsxWriter python-xlsxwriter
Yapsy python-yapsy
ZConfig python-zconfig
ZODB3 python-zodb
ZSI python-zsi
ZooKeeper python-zookeeper
_tifffile python-tifffile
aafigure python-aafigure
abstract_rendering python-abstract-rendering
acme python-acme
acora python-acora
actdiag python-actdiag
activipy python-activipy
activity_log_manager activity-log-manager
adal python-adal
adios python-adios
adios_mpi python-adios
admesh python-admesh
adns_python python-adns
adodb python-adodb
affine python-affine
agtl agtl
aiodns python-aiodns
aioeventlet python-aioeventlet
alabaster python-alabaster
alembic python-alembic
altgraph python-altgraph
amqp python-amqp
amqplib python-amqplib
androguard androguard
aniso8601 python-aniso8601
ansible ansible
antlr_python_runtime python-antlr3
anyjson python-anyjson
aodh python-aodh
aodhclient python-aodhclient
apache_libcloud python-libcloud
apipkg python-apipkg
apns_client python-apns-client
app_catalog_ui python-app-catalog-ui
apparmor python-apparmor
appdirs python-appdirs
applicationinsights python-applicationinsights
apprecommender apprecommender
apptools python-apptools
apsw python-apsw
apt_p2p apt-p2p
apt_xapian_index apt-xapian-index
aptfs aptfs
aptoncd aptoncd
arandr arandr
archipel_agent_action_scheduler archipel-agent-action-scheduler
archipel_agent_hypervisor_geolocalization archipel-agent-hypervisor-geolocalization
archipel_agent_hypervisor_health archipel-agent-hypervisor-health
archipel_agent_hypervisor_network archipel-agent-hypervisor-network
archipel_agent_hypervisor_platformrequest archipel-agent-hypervisor-platformrequest
archipel_agent_iphone_notification archipel-agent-iphone-notification
archipel_agent_virtualmachine_oomkiller archipel-agent-virtualmachine-oomkiller
archipel_agent_virtualmachine_snapshoting archipel-agent-virtualmachine-snapshoting
archipel_agent_virtualmachine_vnc archipel-agent-virtualmachine-vnc
archipel_agent_vmcasting archipel-agent-vmcasting
archipel_agent_vmparking archipel-agent-vmparking
archipel_agent_xmppserver archipel-agent-xmppserver
archipel_core archipel-core
archivemail archivemail
archmage archmage
argcomplete python-argcomplete
argh python-argh
args python-args
argvalidate python-argvalidate
arpy python-arpy
arrayfire python-arrayfire
arrow python-arrow
artifacts python-artifacts
asdf python-asdf
ase python-ase
astLib python-astlib
astor python-astor
astroML python-astroml
astroML_addons python-astroml-addons
astroid python-astroid
astroplan python-astroplan
astropy python-astropy
astropy_helpers python-astropy-helpers
astroquery python-astroquery
astroscrappy python-astroscrappy
async python-async
atheist atheist
atomicwrites python-atomicwrites
attrs python-attr
aubio python-aubio
audioread python-audioread
autobahn python-autobahn
autokey autokey-common
automaton python-automaton
automx automx
autopep8 python-autopep8
autoradio autoradio
avc python-avc
avro python-avro
azure python-azure
azure_batch python-azure
azure_common python-azure
azure_graphrbac python-azure
azure_mgmt python-azure
azure_mgmt_authorization python-azure
azure_mgmt_batch python-azure
azure_mgmt_cdn python-azure
azure_mgmt_cognitiveservices python-azure
azure_mgmt_commerce python-azure
azure_mgmt_compute python-azure
azure_mgmt_dns python-azure
azure_mgmt_iothub python-azure
azure_mgmt_keyvault python-azure
azure_mgmt_logic python-azure
azure_mgmt_network python-azure
azure_mgmt_notificationhubs python-azure
azure_mgmt_nspkg python-azure
azure_mgmt_powerbiembedded python-azure
azure_mgmt_redis python-azure
azure_mgmt_resource python-azure
azure_mgmt_scheduler python-azure
azure_mgmt_storage python-azure
azure_mgmt_trafficmanager python-azure
azure_mgmt_web python-azure
azure_nspkg python-azure
azure_servicebus python-azure
azure_servicemanagement_legacy python-azure
azure_storage python-azure-storage
babelfish python-babelfish
backports.functools_lru_cache python-backports.functools-lru-cache
backports.shutil_get_terminal_size python-backports-shutil-get-terminal-size
backports.ssl_match_hostname python-backports.ssl-match-hostname
backports_abc python-backports-abc
backup2swift python-backup2swift
bandit python-bandit
barbican python-barbican
barman barman
barman_cli barman-cli
basemap python-mpltoolkits.basemap
bashate python-bashate
bcc python-bpfcc
bcdoc python-bcdoc
bcrypt python-bcrypt
beanbag python-beanbag
beanstalkc python-beanstalkc
beautifulsoup4 python-bs4
bernhard python-bernhard
betamax python-betamax
bibtexparser python-bibtexparser
bicyclerepair bicyclerepair
billiard python-billiard
binaryornot python-binaryornot
binplist python-binplist
bioblend python-bioblend
biom_format python-biom-format
biopython python-biopython
biplist python-biplist
bitarray python-bitarray
bitstring python-bitstring
bitstruct python-bitstruct
bjsonrpc python-bjsonrpc
bleach python-bleach
blessed python-blessed
blessings python-blessings
bley bley
blinker python-blinker
blist python-blist
blockdiag python-blockdiag
bloom python-bloom
blosc python-blosc
bmap_tools bmap-tools
bobo python-bobo
boltons python-boltons
bookletimposer bookletimposer
boto python-boto
boto3 python-boto3
botocore python-botocore
bottle python-bottle
bottle_beaker python-bottle-beaker
bottle_cork python-bottle-cork
bottle_sqlite python-bottle-sqlite
bpython bpython
braintree python-braintree
breadability python-breadability
breathe python-breathe
brian python-brian
bsddb3 python-bsddb3
btchip_python python-btchip
btest btest
bugs_everywhere bugs-everywhere
buildbot buildbot
buildbot_slave buildbot-slave
bunch python-bunch
bundlewrap bundlewrap
burn burn
burrito python-burrito
buzhug python-buzhug
bz2file python-bz2file
bzr python-bzrlib
bzr_builddeb bzr-builddeb
bzr_email bzr-email
bzr_etckeeper etckeeper
bzr_fastimport bzr-fastimport
bzr_git bzr-git
bzr_search bzr-search
bzr_stats bzr-stats
bzr_tweet bzr-tweet
bzr_upload bzr-upload
bzr_xmloutput bzr-xmloutput
cached_property python-cached-property
cachetools python-cachetools
cairocffi python-cairocffi
calabash python-calabash
caldav python-caldav
calypso calypso
canmatrix python-canmatrix
capstone python-capstone
carbon graphite-carbon
carrot python-carrot
cassandra_driver python-cassandra
castellan python-castellan
catkin_pkg python-catkin-pkg
cbor python-cbor
ccdproc python-ccdproc
cclib python-cclib
ccsm compizconfig-settings-manager
cdo python-cdo
cecilia cecilia
ceilometer python-ceilometer
ceilometermiddleware python-ceilometermiddleware
celery python-celery
celery_haystack python-django-celery-haystack
cement python-cement
ceph_detect_init ceph-base
ceph_disk ceph-osd
cephfs python-cephfs
ceres python-ceres
certbot python-certbot
certbot_apache python-certbot-apache
certbot_nginx python-certbot-nginx
certifi python-certifi
cf_python python-cf
cffi python-cffi
cfflib python-cfflib
chaco python-chaco
changelog python-changelog
characteristic python-characteristic
chardet python-chardet
chartkick python-chartkick
chaussette chaussette
chemfp python-chemfp
chirp chirp
chm2pdf chm2pdf
chrome_gnome_shell chrome-gnome-shell
cigi python-cigi
cinder python-cinder
cinfony python-cinfony
circuits python-circuits
circus circus
citeproc_py python-citeproc
ck python-ck
ckanclient python-ckanclient
cliapp python-cliapp
click python-click
click_log python-click-log
click_plugins python-click-plugins
click_threading python-click-threading
cliff python-cliff
cliff_tablib cliff-tablib
cligj python-cligj
clint python-clint
closure_linter closure-linter
cloud_sptheme python-cloud-sptheme
cluster python-cluster
cmd2 python-cmd2
cmdtest cmdtest
cmislib python-cmislib
coards python-coards
cobbler python-cobbler
cobe python-cobe
cobra python-cobra
codegen python-codegen
codicefiscale python-codicefiscale
cogent python-cogent
colander python-colander
colorama python-colorama
colorlog python-colorlog
colorspacious python-colorspacious
commando python-commando
compizconfig_python python-compizconfig
configglue python-configglue
configobj python-configobj
configparser python-configparser
configshell_fb python-configshell-fb
confluent_kafka python-confluent-kafka
congress python-congress
constantly python-constantly
construct python-construct
contextlib2 python-contextlib2
contract python-contract
convoy python-convoy
cookiecutter python-cookiecutter
cookies python-cookies
core_python core-network-daemon
core_python_netns core-network-daemon
corens3_python core-network-daemon
cotyledon python-cotyledon
couchdbkit python-couchdbkit
couleur python-couleur
cov_core python-cov-core
coverage python-coverage
cpopen python-cpopen
cpuset cpuset
cpyrit_opencl pyrit-opencl
cracklib python-cracklib
cram python-cram
crank python-crank
crcmod python-crcmod
creepy creepy
crit criu
crmsh crmsh
croniter python-croniter
cryptography python-cryptography
cryptography_vectors python-cryptography-vectors
cs python-cs
csa python-csa
csb python-csb
csscompressor python-csscompressor
cssmin python-cssmin
cssselect python-cssselect
cssutils python-cssutils
csvkit python-csvkit
cursive python-cursive
curtsies python-curtsies
cutadapt python-cutadapt
cvs2svn cvs2svn
cvxopt python-cvxopt
cwiid python-cwiid
cwltool cwltool
cwm python-swap
cycler python-cycler
cyclone python-cyclone
cymruwhois python-cymruwhois
d2to1 python-d2to1
d_rats d-rats
daemonize python-daemonize
dap python-dap
darts.util.lru python-darts.lib.utils.lru
datalad python-datalad
datanommer.commands python-datanommer.commands
datanommer.consumer python-datanommer.consumer
datanommer.models python-datanommer.models
dbf python-dbf
dblatex dblatex
dcmstack python-dcmstack
dcos python-dcos
dctrl2xml dctrl2xml
ddt python-ddt
deap python-deap
debiancontributors python-debiancontributors
debpartial_mirror debpartial-mirror
debtcollector python-debtcollector
decorator python-decorator
defer python-defer
defusedxml python-defusedxml
deluge deluge-common
demjson python-demjson
derpconf python-derpconf
descartes python-descartes
designate python-designate
designate_dashboard python-designate-dashboard
dexml python-dexml
dfdatetime python-dfdatetime
dfvfs python-dfvfs
dfwinreg python-dfwinreg
dh_virtualenv dh-virtualenv
dhcpcanon dhcpcanon
dhcpy6d dhcpy6d
dhm python-dhm
diamond python-diamond
diaspy_api python-diaspy
dib_utils python-dib-utils
diceware diceware
dicoclient python-dicoclient
dictclient python-dictclient
dictdlib python-dictdlib
dictobj python-dictobj
dicttoxml python-dicttoxml
diff_match_patch python-diff-match-patch
dijitso python-dijitso
dill python-dill
dingus python-dingus
dipy python-dipy
dirspec python-dirspec
diskimage_builder python-diskimage-builder
dissy dissy
distlib python-distlib
distorm3 python-distorm3
distro python-distro
distro_info python-distro-info
djagios djagios
django_admin_sortable python-django-adminsortable
django_adminaudit python-django-adminaudit
django_ajax_selects python-ajax-select
django_app_plugins python-django-app-plugins
django_appconf python-django-appconf
django_assets python-django-assets
django_auth_ldap python-django-auth-ldap
django_authority python-django-authority
django_babel python-django-babel
django_bitfield python-django-bitfield
django_bootstrap_form python-bootstrapform
django_braces python-django-braces
django_cas_client python-django-casclient
django_celery python-django-celery
django_celery_transactions python-django-celery-transactions
django_classy_tags python-django-classy-tags
django_compat python-django-compat
django_compressor python-django-compressor
django_conneg python-django-conneg
django_contact_form python-django-contact-form
django_cors_headers python-django-cors-headers
django_countries python-django-countries
django_crispy_forms python-django-crispy-forms
django_debug_toolbar python-django-debug-toolbar
django_discover_runner python-django-discover-runner
django_downloadview python-django-downloadview
django_environ python-django-environ
django_etcd_settings python-django-etcd-settings
django_extensions python-django-extensions
django_extra_views python-django-extra-views
django_filter python-django-filters
django_floppyforms python-django-floppyforms
django_formtools python-django-formtools
django_fsm python-django-fsm
django_fsm_admin python-django-fsm-admin
django_genshi python-django-genshi
django_gravatar2 python-django-gravatar2
django_guardian python-django-guardian
django_haystack python-django-haystack
django_hijack python-django-hijack
django_housekeeping python-django-housekeeping
django_hstore python-django-hstore
django_html_sanitizer python-django-html-sanitizer
django_impersonate python-django-impersonate
django_jinja python-django-jinja
django_jsonfield python-django-jsonfield
django_kvstore python-django-kvstore
django_ldapdb python-django-ldapdb
django_macaddress python-django-macaddress
django_maintenancemode python-django-maintenancemode
django_markupfield python-django-markupfield
django_memoize python-django-memoize
django_model_utils python-django-model-utils
django_modeltranslation python-django-modeltranslation
django_mptt python-django-mptt
django_navtag python-django-navtag
django_nose python-django-nose
django_notification python-django-notification
django_oauth_toolkit python-django-oauth-toolkit
django_openstack_auth python-django-openstack-auth
django_ordered_model python-django-ordered-model
django_organizations python-django-organizations
django_overextends python-django-overextends
django_pagination python-django-pagination
django_picklefield python-django-picklefield
django_pipeline python-django-pipeline
django_piston python-django-piston
django_polymorphic python-django-polymorphic
django_prometheus python-django-prometheus
django_pyscss python-django-pyscss
django_python3_ldap python-django-python3-ldap
django_ratelimit python-django-ratelimit
django_recurrence python-django-recurrence
django_redis python-django-redis
django_redis_sessions python-django-redis-sessions
django_registration python-django-registration
django_restricted_resource python-django-restricted-resource
django_reversion python-django-reversion
django_rosetta python-django-rosetta
django_sekizai python-django-sekizai
django_session_security python-django-session-security
django_setuptest python-django-setuptest
django_shorturls python-django-shorturls
django_shortuuidfield python-django-shortuuidfield
django_simple_captcha python-django-captcha
django_simple_redis_admin python-django-redis-admin
django_sitetree python-django-sitetree
django_sortedm2m python-sortedm2m
django_stronghold python-django-stronghold
django_tables2 python-django-tables2
django_tagging python-django-tagging
django_taggit python-django-taggit
django_tastypie python-django-tastypie
django_testproject django-testproject
django_testscenarios django-testscenarios
django_threaded_multihost python-django-threaded-multihost
django_threadedcomments python-django-threadedcomments
django_treebeard python-django-treebeard
django_uwsgi python-django-uwsgi
django_webpack_loader python-django-webpack-loader
django_websocket python-django-websocket
django_websocket_redis python-django-websocket-redis
django_wkhtmltopdf python-django-wkhtmltopdf
django_xmlrpc python-django-xmlrpc
djangocms_admin_style python-djangocms-admin-style
djangorestframework python-djangorestframework
djangorestframework_gis python-djangorestframework-gis
djextdirect python-django-extdirect
djoser python-djoser
dkimpy python-dkim
dnspython python-dnspython
dnsq python-dnsq
dnsviz dnsviz
doc8 python-doc8
docker_compose docker-compose
docker_py python-docker
docker_pycreds python-dockerpycreds
dockerpty python-dockerpty
docopt python-docopt
docutils python-docutils
dogpile.cache python-dogpile.cache
dogtail python-dogtail
doit python-doit
dominate python-dominate
dosage dosage
dot2tex dot2tex
doublex python-doublex
doxyqml doxyqml
dpkt python-dpkt
dput python-dput
drf_fsm_transitions python-djangorestframework-fsm-transitions
drf_generators python-djangorestframework-generators
drf_haystack python-djangorestframework-haystack
driconf driconf
drizzle python-drizzle
drmaa python-drmaa
drslib python-drslib
dtcwt python-dtcwt
dtrx dtrx
duckduckgo2 python-duckduckgo2
duecredit python-duecredit
dulwich python-dulwich
dumbnet python-dumbnet
duplicity duplicity
dvbobjects opencaster
dvcs_autosync dvcs-autosync
easygui python-easygui
easywebdav python-easywebdav
easyzone python-easyzone
ecdsa python-ecdsa
eficas eficas
efilter python-efilter
elasticsearch python-elasticsearch
elasticsearch_curator python-elasticsearch-curator
elementtidy python-elementtidy
elib.intl python-elib.intl
emcee python-emcee
empy python-empy
enable python-enable
enet python-enet
ensymble ensymble
entrypoints python-entrypoints
enum34 python-enum34
envisage python-envisage
enzyme python-enzyme
ephem python-ephem
epigrass epigrass
epoptes epoptes
epydoc python-epydoc
esmre python-esmre
et_xmlfile python-et-xmlfile
ethtool python-ethtool
euca2ools euca2ools
eventlet python-eventlet
ewmh python-ewmh
exabgp exabgp
exam python-exam
execnet python-execnet
expeyes python-expeyes
expiringdict python-expiringdict
explorer bzr-explorer
expyriment python-expyriment
extras python-extras
eyeD3 python-eyed3
fabio python-fabio
fabulous python-fabulous
factory_boy python-factory-boy
fakeredis python-fakeredis
fakesleep python-fakesleep
falcon python-falcon
fann2 python-fann2
fast5 python-fast5
fastcluster python-fastcluster
fasteners python-fasteners
fastimport python-fastimport
fastkml python-fastkml
faulthandler python-faulthandler
fbless fbless
fdb python-fdb
fdsend python-fdsend
feather_format python-feather-format
fedmsg python-fedmsg
fedmsg_meta_debian python-fedmsg-meta-debian
fedmsg_meta_fedora_infrastructure python-fedmsg-meta-fedora-infrastructure
feedgenerator python-feedgenerator
feedparser python-feedparser
ferretmagic python-ferret
file_encryptor python-file-encryptor
file_magic python-magic
filelock python-filelock
first python-first
fisx python-fisx
fitbit python-fitbit
fitsio python-fitsio
fiu python-fiu
fixtures python-fixtures
fko libfko-python
flake8 python-flake8
flaky python-flaky
flashbake flashbake
flashproxy_common flashproxy-common
flask_multistatic python-flaskext.multistatic
flask_rdf python-flask-rdf
flexmock python-flexmock
flickrapi python-flickrapi
flickrfs flickrfs
flower python-flower
flufl.bounce python-flufl.bounce
flufl.enum python-flufl.enum
flufl.i18n python-flufl.i18n
flufl.lock python-flufl.lock
flufl.password python-flufl.password
flup python-flup
fmcs python-fmcs
fontypython fontypython
foolscap python-foolscap
forgetHTML python-forgethtml
forgetSQL python-forgetsql
fpconst python-fpconst
fpylll python-fpylll
freeipa python-ipalib
freeopcua python-opcua
freevo python-freevo
freezegun python-freezegun
freshen python-freshen
frozendict python-frozendict
fs python-fs
fswrap python-fswrap
fte python-fte
fteproxy fteproxy
ftp_cloudfs python-ftp-cloudfs
fts fts
fts_clacks fts-clacks
fts_fai fts-fai-ldap
fts_ltsp fts-ltsp-ldap
fts_opsi fts-opsi
fudge python-fudge
funcparserlib python-funcparserlib
funcsigs python-funcsigs
functools32 python-functools32
fuse_python python-fuse
fusil fusil
future python-future
futures python-concurrent.futures
futurist python-futurist
fuzzywuzzy python-fuzzywuzzy
fysom python-fysom
gWakeOnLan gwakeonlan
gabbi python-gabbi
galpy python-galpy
galternatives galternatives
gameclock gameclock
gamera python-gamera
gasp python-gasp
gastables python-gastables
gastablesgui gastables
gbp git-buildpackage
gcalcli gcalcli
gccjit python-gccjit
gcircle python-ferret
gcm_client python-gcm-client
gcovr gcovr
gdata python-gdata
gdevilspie gdevilspie
gdmodule python-gd
gear python-gear
gearman python-gearman
genbackupdata genbackupdata
geneagrapher geneagrapher
genty python-genty
geographiclib python-geographiclib
geoip2 python-geoip2
geojson python-geojson
geolinks python-geolinks
geopandas python-geopandas
geopy python-geopy
germinate python-germinate
gerritlib python-gerritlib
gertty gertty
getdns python-getdns
getmail getmail4
gevent python-gevent
gevent_socketio python-socketio
gevent_websocket python-gevent-websocket
geximon geximon
ghp_import ghp-import
ginga python-ginga
git_big_picture git-big-picture
git_os_job python-git-os-job
git_review git-review
gitdb2 python-gitdb
gitinspector gitinspector
gjots2 gjots2
glance python-glance
glance_store python-glance-store
glare python-glare
glipper glipper
globs globs
glpk python-glpk
glueviz python-glue
gmobilemedia gmobilemedia
gmplot python-gmplot
gmpy python-gmpy
gmpy2 python-gmpy2
gnatpython python-gnatpython
gnocchi python-gnocchi
gnocchiclient python-gnocchiclient
gnome_activity_journal gnome-activity-journal
gnome_gmail gnome-gmail
gnukhataserver gnukhata-core-engine
gnuplot_py python-gnuplot
go2 go2
google_api_python_client python-googleapi
google_apputils python-google-apputils
googlecloudapis python-googlecloudapis
gourmet gourmet
gozerbot gozerbot
gpaw gpaw
gpg python-gpg
gphoto2_cffi python-gphoto2cffi
gpodder gpodder
gps python-gps
gpxpy python-gpxpy
gpyconf python-gpyconf
gquilt gquilt
grabserial grabserial
grapefruit python-grapefruit
graphite_web graphite-web
graphviz trac-graphviz
graypy python-graypy
greenlet python-greenlet
grokmirror grokmirror
gssapi python-gssapi
gsw python-gsw
gtextfsm python-gtextfsm
guacamole python-guacamole
guessit python-guessit
guidata python-guidata
guiqwt python-guiqwt
gumbo python-gumbo
gunicorn python-gunicorn
guzzle_sphinx_theme python-guzzle-sphinx-theme
gwebsockets python-gwebsockets
gyp gyp
h2 python-h2
h5py python-h5py
hachoir_core python-hachoir-core
hachoir_metadata python-hachoir-metadata
hachoir_parser python-hachoir-parser
hachoir_regex python-hachoir-regex
hachoir_subfile python-hachoir-subfile
hachoir_urwid python-hachoir-urwid
hachoir_wx python-hachoir-wx
hacking python-hacking
halberd python-halberd
happybase python-happybase
haproxy_log_analysis python-haproxy-log-analysis
hashids python-hashids
hdf5storage python-hdf5storage
hdf_compass python-hdf-compass
healpy python-healpy
heat python-heat
heat_cfntools heat-cfntools
hgnested mercurial-nested
hgsubversion hgsubversion
hgview hgview-common
hidapi python-hid
hidapi_cffi python-hidapi
hiredis python-hiredis
hiro python-hiro
hkdf python-hkdf
hl7 python-hl7
horizon python-django-horizon
hp3parclient python-hp3parclient
hpack python-hpack
hplefthandclient python-hplefthandclient
html2text python-html2text
html5lib python-html5lib
htmltmpl python-htmltmpl
http_parser python-http-parser
httpbin python-httpbin
httpcode httpcode
httpie httpie
httplib2 python-httplib2
httpretty python-httpretty
humanize python-humanize
hunspell python-hunspell
hurry.filesize python-hurry.filesize
hy python-hy
hyde hyde
hydroffice.bag python-hydroffice.bag
hyperframe python-hyperframe
hypothesis python-hypothesis
iapws python-iapws
ibm_db_sa python-ibm-db-sa
ibus_tegaki ibus-tegaki
icalendar python-icalendar
icalview trac-icalview
identicurse identicurse
idna python-idna
ijson python-ijson
imagesize python-imagesize
imaplib2 python-imaplib2
impacket python-impacket
imposm python-imposm
imposm.parser python-imposm-parser
incremental python-incremental
inflect python-inflect
influxdb python-influxdb
iniparse python-iniparse
inotifyx python-inotifyx
instant python-instant
intervaltree python-intervaltree
intervaltree_bio python-intervaltree-bio
invocations python-invocations
invoke python-invoke
ioprocess python-ioprocess
iowait python-iowait
ipaclient python-ipaclient
ipaddr python-ipaddr
ipaddress python-ipaddress
ipalib python-ipalib
ipaplatform python-ipalib
ipapython python-ipalib
ipatests python-ipatests
ipcalc python-ipcalc
ipdb python-ipdb
ipp python-libtrace
ipykernel python-ipykernel
ipython python-ipython
ipython_genutils python-ipython-genutils
ipywidgets python-ipywidgets
irc python-irc
ironic python-ironic
ironic_inspector python-ironic-inspector
ironic_lib python-ironic-lib
ironic_ui python-ironic-ui
isbnlib python-isbnlib
isc_dhcp_leases python-isc-dhcp-leases
iso8601 python-iso8601
isodate python-isodate
isort python-isort
isoweek python-isoweek
isso isso
itango python-itango
itsdangerous python-itsdangerous
jabber.py python-jabber
jabberbot python-jabberbot
jack jack
jaxml python-jaxml
jdcal python-jdcal
jedi python-jedi
jellyfish python-jellyfish
jenkins_job_builder python-jenkins-job-builder
jenkinsapi python-jenkinsapi
jingo python-jingo
jinja2_time python-jinja2-time
jmespath python-jmespath
joblib python-joblib
jpy python-jpy
jpylyzer python-jpylyzer
jsb jsonbot
jsbeautifier python-jsbeautifier
jsmin python-jsmin
json_schema_validator python-json-schema-validator
jsonpatch python-jsonpatch
jsonpath_rw python-jsonpath-rw
jsonpath_rw_ext python-jsonpath-rw-ext
jsonpickle python-jsonpickle
jsonpipe python-jsonpipe
jsonpointer python-json-pointer
jsonrpc2 python-jsonrpc2
jsonrpclib python-jsonrpclib
jsonschema python-jsonschema
junit_xml python-junit.xml
junitxml python-junitxml
junos_eznc python-junos-eznc
jupyter_client python-jupyter-client
jupyter_console python-jupyter-console
jupyter_core python-jupyter-core
jupyter_sphinx_theme python-jupyter-sphinx-theme
kaa_base python-kaa-base
kaa_imlib2 python-kaa-imlib2
kaa_metadata python-kaa-metadata
kafka_python python-kafka
kapidox kapidox
kazoo python-kazoo
kdtree python-kdtree
kedpm kedpm
keepalive python-keepalive
keepkey python-keepkey
keepnote keepnote
key_mon key-mon
keymapper keymapper
keyring python-keyring
keyrings.alt python-keyrings.alt
keystone python-keystone
keystoneauth1 python-keystoneauth1
keystonemiddleware python-keystonemiddleware
keysync keysync
keyutils python-keyutils
kid python-kid
kiki kiki
kineticsTools python-kineticstools
kitchen python-kitchen
kiwi python-kiwi
kjbuckets python-kjbuckets
klaus klaus
klein python-klein
kmodpy python-kmodpy
knockpy knockpy
kombu python-kombu
l20n python-l20n
laditools python-laditools
lamson python-lamson
landslide python-landslide
larch python-larch
latexcodec python-latexcodec
launchpadlib python-launchpadlib
lava_coordinator lava-coordinator
lava_dispatcher lava-dispatcher
lava_server lava-server
lava_tool lava-tool
lavapdu lavapdu-daemon
lazr.config python-lazr.config
lazr.delegates python-lazr.delegates
lazr.restfulclient python-lazr.restfulclient
lazr.smtptest python-lazr.smtptest
lazr.uri python-lazr.uri
lazy_object_proxy python-lazy-object-proxy
lazyarray python-lazyarray
ldap3 python-ldap3
ldappool python-ldappool
ldif3 python-ldif3
ledger_autosync ledger-autosync
legit legit
lesscpy python-lesscpy
leveldb python-leveldb
lhapdf python-lhapdf
lib389 python-lib389
libLAS python-liblas
libarchive_c python-libarchive-c
libconcord python-libconcord
libiio python-libiio
liblarch python-liblarch
libnacl python-libnacl
libsass python-libsass
libtiff python-libtiff
libturpial python-libturpial
libusb1 python-libusb1
libvirt_python python-libvirt
lightblue python-lightblue
limits python-limits
linecache2 python-linecache2
linop python-linop
live_wrapper live-wrapper
livereload python-livereload
livestreamer python-livestreamer
llfuse python-llfuse
llnl_babel python-sidl
llnl_babel_sidl_sidlx python-sidl
llvmlite python-llvmlite
lmdb python-lmdb
lmfit python-lmfit
lockfile python-lockfile
loggerhead loggerhead
logging_tree python-logging-tree
logilab_common python-logilab-common
logilab_constraint python-logilab-constraint
logster logster
logutils python-logutils
londonlaw londonlaw
loofah python-loofah
louis python-louis
lptools lptools
lqa lqa
lua python-lua
lucene python-lucene
ludev_t ludevit
lunch python-lunch
lvm python-lvm2
lxc_python2 python-lxc
lxml python-lxml
lybniz lybniz
lz4 python-lz4
m2ext python-m2ext
m3u8 python-m3u8
macaron python-macaron
macholib python-macholib
macsyfinder macsyfinder
magnum python-magnum
mailer python-mailer
mailman_api mailman-api
mailnag mailnag
mandrill python-mandrill
manila python-manila
manila_ui python-manila-ui
manuel python-manuel
mapbox_vector_tile python-mapbox-vector-tile
mapdamage mapdamage
mapnik python-mapnik
mapper python-libmapper
marisa python-marisa
mate_menu mate-menu
matplotlib python-matplotlib
matplotlib_venn python-matplotlib-venn
maxminddb python-maxminddb
mayavi mayavi2
mccabe python-mccabe
mcomix mcomix
measurement python-measurement
mecab_python python-mecab
mechanize python-mechanize
medusa python-medusa
meld meld
meld3 python-meld3
meliae python-meliae
memory_profiler python-memory-profiler
memprof python-memprof
mercurial mercurial-common
mercurial_extension_utils mercurial-extension-utils
mercurial_keyring mercurial-keyring
metaconfig python-metaconfig
metastudent metastudent
microversion_parse python-microversion-parse
mididings python-mididings
mido python-mido
mimerender python-mimerender
mimms mimms
mini_buildd python-mini-buildd
mini_dinstall mini-dinstall
minieigen python-minieigen
mininet mininet
miniupnpc python-miniupnpc
mipp python-mipp
misaka python-misaka
mistral python-mistral
mistune python-mistune
mitmproxy mitmproxy
mlbviewer mlbviewer
mne python-mne
mnemonic python-mnemonic
mock python-mock
mocker python-mocker
mockito python-mockito
mockldap python-mockldap
mockupdb python-mockupdb
mod_python libapache2-mod-python
mod_pywebsocket python-mod-pywebsocket
model_mommy python-model-mommy
moin python-moinmoin
moksha.common python-moksha.common
moksha.hub python-moksha.hub
monajat python-monajat
mongoengine python-mongoengine
monkeysign monkeysign
monotonic python-monotonic
montage_wrapper python-montage-wrapper
moosic moosic
morris python-morris
motor python-motor
mousetrap gnome-mousetrap
mox python-mox
mox3 python-mox3
mozilla_devscripts mozilla-devscripts
mpegdash python-mpegdash
mpi4py python-mpi4py
mpld3 python-mpld3
mplexporter python-mplexporter
mpmath python-mpmath
mpop python-mpop
mrjob python-mrjob
mrtparse python-mrtparse
msgpack_python python-msgpack
msrest python-msrest
msrestazure python-msrestazure
multi_key_dict python-multi-key-dict
multicorn python-multicorn
multipletau python-multipletau
munch python-munch
munkres python-munkres
murano python-murano
murano_agent murano-agent
murano_dashboard python-murano-dashboard
musicbrainzngs python-musicbrainzngs
mutagen python-mutagen
mwparserfromhell python-mwparserfromhell
mygpoclient python-mygpoclient
mysql_connector_python python-mysql.connector
mysql_utilities mysql-utilities
mysqlclient python-mysqldb
nagiosplugin python-nagiosplugin
nameparser python-nameparser
nanomsg python-nanomsg
napalm_base python-napalm-base
napalm_eos python-napalm-eos
napalm_fortios python-napalm-fortios
napalm_ios python-napalm-ios
napalm_iosxr python-napalm-iosxr
napalm_junos python-napalm-junos
natkit python-libtrace
natsort python-natsort
naturalsort python-naturalsort
nbconvert python-nbconvert
nbformat python-nbformat
nbsphinx python-nbsphinx
nbxmpp python-nbxmpp
ncap python-ncap
ncclient python-ncclient
ndg_httpsclient python-ndg-httpsclient
nemu python-nemu
neo python-neo
netCDF4 python-netcdf4
netaddr python-netaddr
netfilter python-netfilter
netifaces python-netifaces
netmiko python-netmiko
netsnmp_python python-netsnmp
netsyslog python-netsyslog
networking_arista python-networking-arista
networking_l2gw python-networking-l2gw
networking_mlnx python-networking-mlnx
networking_ovn python-networking-ovn
networking_ovs_dpdk python-networking-ovs-dpdk
networkx python-networkx
neuroshare python-neuroshare
neutron python-neutron
neutron_dynamic_routing python-neutron-dynamic-routing
neutron_fwaas python-neutron-fwaas
neutron_lbaas python-neutron-lbaas
neutron_lib python-neutron-lib
neutron_vpnaas python-neutron-vpnaas
nglister nglister
ngs python-ngs
nibabel python-nibabel
nine python-nine
nipy python-nipy
nipype python-nipype
nitime python-nitime
nixstatsagent nixstatsagent
nltk python-nltk
nordugrid_arc_gangliarc nordugrid-arc-gangliarc
nordugrid_arc_nagios_plugins nordugrid-arc-nagios-plugins
nose python-nose
nose2 python-nose2
nose2_cov python-nose2-cov
nose_exclude python-nose-exclude
nose_parameterized python-nose-parameterized
nose_testconfig python-nose-testconfig
nose_timer python-nose-timer
nosehtmloutput python-nosehtmloutput
nosexcover python-nosexcover
notebook python-notebook
notify2 python-notify2
notmuch python-notmuch
nova python-nova
nsscache nsscache
ntplib python-ntplib
numexpr python-numexpr
numpy python-numpy
numpydoc python-numpydoc
nwdiag python-nwdiag
nwsclient python-nwsclient
nwsserver python-nwsserver
nxt_python python-nxt
oauth python-oauth
oauth2client python-oauth2client
oauthlib python-oauthlib
obMenu obmenu
obfsproxy obfsproxy
objgraph python-objgraph
obnam obnam
oboinus oboinus
obsub python-obsub
odfpy python-odf
offtrac python-offtrac
ofxclient python-ofxclient
ofxhome python-ofxhome
ofxparse python-ofxparse
olefile python-olefile
ooolib_python python-ooolib
openbabel python-openbabel
openbmap_logger openbmap-logger
openopt python-openopt
openpyxl python-openpyxl
opensesame opensesame
openslide_python python-openslide
openstack.nose_plugin python-openstack.nose-plugin
openstack_doc_tools python-openstack-doc-tools
openstackdocstheme python-openstackdocstheme
openstacksdk python-openstacksdk
opster python-opster
optcomplete python-optcomplete
os_api_ref python-os-api-ref
os_apply_config python-os-apply-config
os_brick python-os-brick
os_client_config python-os-client-config
os_cloud_config python-os-cloud-config
os_collect_config python-os-collect-config
os_net_config python-os-net-config
os_refresh_config python-os-refresh-config
os_testr python-os-testr
os_vif python-os-vif
os_win python-os-win
osc osc
osc_lib python-osc-lib
oslo.cache python-oslo.cache
oslo.concurrency python-oslo.concurrency
oslo.config python-oslo.config
oslo.context python-oslo.context
oslo.db python-oslo.db
oslo.i18n python-oslo.i18n
oslo.log python-oslo.log
oslo.messaging python-oslo.messaging
oslo.middleware python-oslo.middleware
oslo.policy python-oslo.policy
oslo.privsep python-oslo.privsep
oslo.reports python-oslo.reports
oslo.rootwrap python-oslo.rootwrap
oslo.serialization python-oslo.serialization
oslo.service python-oslo.service
oslo.utils python-oslo.utils
oslo.versionedobjects python-oslo.versionedobjects
oslo.vmware python-oslo.vmware
oslosphinx python-oslosphinx
oslotest python-oslotest
osmapi python-osmapi
osmium python-pyosmium
osprofiler python-osprofiler
overpass python-overpass
overpy python-overpy
ow python-ow
ownet python-ownet
oz oz
packaging python-packaging
pacparser python-pacparser
padme python-padme
pagekite pagekite
pager python-pager
paisley python-paisley
pandas python-pandas
pandocfilters python-pandocfilters
parallax python-parallax
paramiko python-paramiko
park python-park
parse python-parse
parsedatetime python-parsedatetime
parsel python-parsel
passlib python-passlib
path.py python-path
path_and_address python-path-and-address
pathlib python-pathlib
pathlib2 python-pathlib2
pathtools python-pathtools
patool patool
patsy python-patsy
paypal python-paypal
pbalign python-pbalign
pbbarcode pbbarcode
pbcommand python-pbcommand
pbcore python-pbcore
pbh5tools python-pbh5tools
pbkdf2 python-pbkdf2
pbr python-pbr
pcapdump python-libbtbb-pcapdump
pcapy python-pcapy
pcp python-pcp
pcs python-pcs
pdfkit python-pdfkit
pdfminer python-pdfminer
pdfrw python-pdfrw
pdfshuffler pdfshuffler
pdftools python-pdftools
pebl python-pebl
pecan python-pecan
pefile python-pefile
pelican pelican
pep8 python-pep8
pep8_naming python-pep8-naming
persistent python-persistent
petsc4py python-petsc4py
pex python-pex
pexif python-pexif
pexpect python-pexpect
pg8000 python-pg8000
pg_activity pg-activity
pglistener pglistener
pgmagick python-pgmagick
pgpdump python-pgpdump
pgspecial python-pgspecial
pgxnclient pgxnclient
photo_uploader photo-uploader
photutils python-photutils
phply python-phply
phpserialize python-phpserialize
picklable_itertools python-picklable-itertools
pickleshare python-pickleshare
piggyphoto python-piggyphoto
pika python-pika
pika_pool python-pika-pool
pilkit python-pilkit
pip python-pip
pipedviewer python-ferret
pisa python-pisa
pius pius
pjsua python-pjproject
pkgconfig python-pkgconfig
pkginfo python-pkginfo
pkpgcounter pkpgcounter
plasTeX python-plastex
plaso plaso
pldns python-libtrace
plip plip
plotly python-plotly
plt python-libtrace
pluggy python-pluggy
plumbum python-plumbum
ply python-ply
pmock python-pmock
podcastparser python-podcastparser
polib python-polib
pondus pondus
poretools poretools
portalocker python-portalocker
portpicker python-portpicker
positional python-positional
posix_ipc python-posix-ipc
poster python-poster
power python-power
powerline_status python-powerline
powerline_taskwarrior python-powerline-taskwarrior
pp python-pp
pprofile python-pprofile
praw python-praw
preggy python-preggy
prelude python-prelude
prelude_correlator prelude-correlator
prelude_notify prelude-notify
preludedb python-preludedb
preprocess preprocess
presage_dbus_service presage-dbus
presentty presentty
pretend python-pretend
prettytable python-prettytable
prewikka prewikka
prioritized_methods python-peak.rules
proboscis python-proboscis
profitbricks python-profitbricks
progress python-progress
progressbar python-progressbar
proliantutils python-proliantutils
prometheus_client python-prometheus-client
prompt_toolkit python-prompt-toolkit
proteus tryton-proteus
protobix python-protobix
protobuf python-protobuf
protorpc_standalone python-protorpc-standalone
prov python-prov
prowlpy python-prowlpy
psphere python-psphere
pssh pssh
psutil python-psutil
psycogreen python-psycogreen
psycopg2 python-psycopg2
ptex2tex ptex2tex
pthreading python-pthreading
ptk python-ptk
ptyprocess python-ptyprocess
publicsuffix python-publicsuffix
pudb python-pudb
puddletag puddletag
pulseaudio_dlna pulseaudio-dlna
puppet_vswitch puppet-module-vswitch
purity_ng purity-ng
purl python-purl
pushy python-pushy
pwquality python-pwquality
py python-py
pyBigWig python-pybigwig
pyCardDAV python-pycarddav
pyClamd python-pyclamd
pyDoubles python-pydoubles
pyEOS python-pyeos
pyExcelerator python-excelerator
pyFAI python-pyfai
pyIOSXR python-pyiosxr
pyLibravatar python-libravatar
pyMapperGUI pymappergui
pyNFFT python-pynfft
pyOpenSSL python-openssl
pyPortMidi python-pypm
pyRFC3339 python-rfc3339
pySFML python-sfml
pyScss python-pyscss
pyVows python-pyvows
py_Asterisk python-asterisk
py_libmpdclient python-mpdclient
py_moneyed python-moneyed
py_rrdtool python-rrdtool
py_ubjson python-ubjson
pyacidobasic python-acidobasic
pyacoustid python-acoustid
pyaff4 python-aff4
pyalsa python-pyalsa
pyalsaaudio python-alsaaudio
pyaml python-pretty-yaml
pyapi_gitlab python-gitlab
pyasn1 python-pyasn1
pyasn1_modules python-pyasn1-modules
pybind11 python-pybind11
pybloom python-bloomfilter
pybloomfiltermmap python-pybloomfiltermmap
pyblosxom pyblosxom
pybridge pybridge
pybtex pybtex
pybugz bugz
pycadf python-pycadf
pycalendar python-pycalendar
pycares python-pycares
pycassa python-pycassa
pycha python-pycha
pychecker pychecker
pychess pychess
pychm python-chm
pyclamav python-pyclamav
pyclips python-clips
pycoast python-pycoast
pycodestyle python-pycodestyle
pycollada python-collada
pycorrfit pycorrfit
pycountry python-pycountry
pycparser python-pycparser
pycrypto python-crypto
pycryptopp python-pycryptopp
pycups python-cups
pycurl python-pycurl
pydbus python-pydbus
pydds python-pydds
pydhcplib python-pydhcplib
pydicom python-dicom
pydirector python-pydirector
pydl python-pydl
pydns python-dns
pydoctor python-pydoctor
pydot python-pydot
pydot_ng python-pydot-ng
pydotplus python-pydotplus
pyds9 python-pyds9
pyeapi python-pyeapi
pyeclib python-pyeclib
pyelftools python-pyelftools
pyelliptic python-pyelliptic
pyenchant python-enchant
pyentropy python-pyentropy
pyepl python-pyepl
pyepr python-epr
pyface python-pyface
pyfacebook python-facebook
pyfaidx python-pyfaidx
pyferret python-ferret
pyfg python-pyfg
pyfiglet python-pyfiglet
pyfits python-pyfits
pyflakes python-pyflakes
pyforge python-forge
pyfribidi python-pyfribidi
pyftpdlib python-pyftpdlib
pygal python-pygal
pygame python-pygame
pygame_sdl2 python-pygame-sdl2
pygccxml python-pygccxml
pygdchart python-gdchart2
pygeoif python-pygeoif
pyghmi python-pyghmi
pygit2 python-pygit2
pyglet python-pyglet
pygmi wmii
pygobject python-gi
pygooglechart python-pygooglechart
pygopherd pygopherd
pygpgme python-gpgme
pygpiv python-gpiv
pygrace python-pygrace
pygraphviz python-pygraphviz
pygrib python-grib
pygtail python-pygtail
pygtkspellcheck python-gtkspellcheck
pygts python-gts
pyhsm python-pyhsm
pyinotify python-pyinotify
pyip python-pyip
pyjavaproperties python-pyjavaproperties
pykaraoke python-pykaraoke
pykdtree python-pykdtree
pykerberos python-kerberos
pykickstart python-pykickstart
pyknon python-pyknon
pylama python-pylama
pylast python-pylast
pyldap python-pyldap
pylibacl python-pylibacl
pyliblo python-liblo
pyliblzma python-lzma
pylibmc python-pylibmc
pylibpcap python-libpcap
pylibssh2 python-libssh2
pylint pylint
pylint_celery python-pylint-celery
pylint_common python-pylint-common
pylint_django python-pylint-django
pylint_flask python-pylint-flask
pylint_plugin_utils python-pylint-plugin-utils
pylirc python-pylirc
pylogsparser python-logsparser
pylxd python-pylxd
pymacaroons python-pymacaroons
pymad python-pymad
pymc python-pymc
pymecavideo python-mecavideo
pymemcache python-pymemcache
pymetar python-pymetar
pymia python-mia
pymilter python-milter
pymoc python-pymoc
pymodbus python-pymodbus
pymol pymol
pymongo python-pymongo
pymssql python-pymssql
pymtbl python-mtbl
pymvpa2 python-mvpa2
pymzml python-pymzml
pynag python-pynag
pynast pynast
pyneighborhood pyneighborhood
pyngus python-pyngus
pynids python-nids
pynifti python-nifti
pynmea2 python-nmea2
pyo python-pyo
pyocr python-pyocr
pyodbc python-pyodbc
pyogg python-ogg
pyopencl python-pyopencl
pyoptical python-pyoptical
pyorbital python-pyorbital
pyorick python-pyorick
pyosd python-pyosd
pyotp python-pyotp
pyp pyp
pypandoc python-pypandoc
pyparallel python-parallel
pyparsing python-pyparsing
pyparted python-parted
pypcap python-pypcap
pyperclip python-pyperclip
pyproj python-pyproj
pyprompter pyprompter
pyptlib python-pyptlib
pypuppetdb python-pypuppetdb
pypureomapi python-pypureomapi
pyqi pyqi
pyqtgraph python-pyqtgraph
pyquery python-pyquery
pyrad python-pyrad
pyramid python-pyramid
pyramid_beaker python-pyramid-beaker
pyramid_jinja2 python-pyramid-jinja2
pyramid_multiauth python-pyramid-multiauth
pyramid_tm python-pyramid-tm
pyramid_zcml python-pyramid-zcml
pyrax python-pyrax
pyregfi python-pyregfi
pyregion python-pyregion
pyremctl python-remctl
pyresample python-pyresample
pyrit pyrit
pyroma python-pyroma
pyroute2 python-pyroute2
pysam python-pysam
pysaml2 python-pysaml2
pyscanfcs pyscanfcs
pyscard python-pyscard
pyscript python-pyscript
pysendfile python-sendfile
pyserial python-serial
pyshp python-pyshp
pysmbc python-smbc
pysnmp python-pysnmp4
pysnmp_apps python-pysnmp4-apps
pysnmp_mibs python-pysnmp4-mibs
pysolr python-pysolr
pysparse python-sparse
pyspatialite python-pyspatialite
pyspf python-spf
pysqlite python-sqlite
pysrs python-srs
pysrt python-pysrt
pyssim python-pyssim
pyst python-pyst
pystache python-pystache
pysubnettree python-subnettree
pysurfer python-surfer
pysynphot python-pysynphot
pytagsfs pytagsfs
pytango python-tango
pytc python-pytc
pytcpwrap python-tcpwrap
pyte python-pyte
pytest python-pytest
pytest_benchmark python-pytest-benchmark
pytest_catchlog python-pytest-catchlog
pytest_cookies python-pytest-cookies
pytest_cov python-pytest-cov
pytest_django python-pytest-django
pytest_expect python-pytest-expect
pytest_httpbin python-pytest-httpbin
pytest_instafail python-pytest-instafail
pytest_localserver python-pytest-localserver
pytest_mock python-pytest-mock
pytest_multihost python-pytest-multihost
pytest_pylint python-pytest-pylint
pytest_runner python-pytest-runner
pytest_sourceorder python-pytest-sourceorder
pytest_timeout python-pytest-timeout
pytest_tornado python-pytest-tornado
pytest_xdist python-pytest-xdist
pyth python-pyth
python2_biggles python-pybiggles
python2_pythondialog python-dialog
python_Levenshtein python-levenshtein
python_aalib python-aalib
python_afl python-afl
python_application python-application
python_apt python-apt
python_aptly python-aptly
python_augeas python-augeas
python_axolotl python-axolotl
python_axolotl_curve25519 python-axolotl-curve25519
python_barbicanclient python-barbicanclient
python_bibtex python-bibtex
python_bitbucket python-bitbucket
python_bugzilla python-bugzilla
python_can python-can
python_casacore python-casacore
python_catcher python-catcher
python_cdd python-cdd
python_ceilometerclient python-ceilometerclient
python_cinderclient python-cinderclient
python_cjson python-cjson
python_cloudfiles python-cloudfiles
python_congressclient python-congressclient
python_corepywrap python-corepywrap
python_cpl python-cpl
python_crontab python-crontab
python_daemon python-daemon
python_dateutil python-dateutil
python_dbusmock python-dbusmock
python_debian python-debian
python_debianbts python-debianbts
python_designateclient python-designateclient
python_distutils_extra python-distutils-extra
python_djvulibre python-djvu
python_dmidecode python-dmidecode
python_editor python-editor
python_espeak python-espeak
python_etcd python-etcd
python_evtx python-evtx
python_exconsole python-exconsole
python_fcgi python-fcgi
python_fedora python-fedora
python_freecontact python-freecontact
python_gammu python-gammu
python_geohash python-geohash
python_gflags python-gflags
python_glanceclient python-glanceclient
python_gnupg python-gnupg
python_gnutls python-gnutls
python_graph_core python-pygraph
python_graph_dot python-pygraph
python_gtkmvc python-gtkmvc
python_heatclient python-heatclient
python_hglib python-hglib
python_hpilo python-hpilo
python_igraph python-igraph
python_instagram python-instagram
python_iptables python-iptables
python_ironic_inspector_client python-ironic-inspector-client
python_ironicclient python-ironicclient
python_jenkins python-jenkins
python_k8sclient python-k8sclient
python_keyczar python-keyczar
python_keystoneclient python-keystoneclient
python_ldap python-ldap
python_libdiscid python-libdiscid
python_libguess python-libguess
python_libpisock python-pisock
python_librtmp python-librtmp
python_libtorrent python-libtorrent
python_logging_extra python-loggingx
python_ly python-ly
python_lzo python-lzo
python_magnumclient python-magnumclient
python_manilaclient python-manilaclient
python_memcached python-memcache
python_messaging python-messaging
python_mhash python-mhash
python_mimeparse python-mimeparse
python_mistralclient python-mistralclient
python_mk_livestatus python-mk-livestatus
python_monascaclient python-monascaclient
python_mpd2 python-mpd
python_muranoclient python-muranoclient
python_musicbrainz2 python-musicbrainz2
python_networkmanager python-networkmanager
python_neutronclient python-neutronclient
python_nmap python-nmap
python_novaclient python-novaclient
python_novnc python-novnc
python_ntlm python-ntlm
python_openid python-openid
python_openid_cla python-openid-cla
python_openid_teams python-openid-teams
python_openstackclient python-openstackclient
python_pam python-pampy
python_passfd python-passfd
python_phoneutils python-phoneutils
python_popcon python-popcon
python_poppler_qt4 python-poppler-qt4
python_potr python-potr
python_prctl python-prctl
python_presage python-presage
python_pskc python-pskc
python_ptrace python-ptrace
python_redmine python-redmine
python_saharaclient python-saharaclient
python_sane python-sane
python_scciclient python-scciclient
python_seamicroclient python-seamicroclient
python_senlinclient python-senlinclient
python_slugify python-slugify
python_snappy python-snappy
python_social_auth python-social-auth
python_sql python-sql
python_stdnum python-stdnum
python_subunit python-subunit
python_svipc python-svipc
python_swiftclient python-swiftclient
python_tackerclient python-tackerclient
python_termstyle python-termstyle
python_troveclient python-troveclient
python_tuskarclient python-tuskarclient
python_tvrage python-tvrage
python_twitter python-twitter
python_u2flib_server python-u2flib-server
python_unshare python-unshare
python_vagrant python-vagrant
python_watcher python-watcher
python_watcherclient python-watcherclient
python_xlib python-xlib
python_xmltv python-xmltv
python_xmp_toolkit python-libxmp
python_yapps yapps2
python_yubico python-yubico
python_zaqarclient python-zaqarclient
pythontracer pythontracer
pytidylib python-tidylib
pytils python-pytils
pytimechart pytimechart
pytimeparse python-pytimeparse
pytoml python-pytoml
pytools python-pytools
pytrainer pytrainer
pytsk3 python-tsk
pytyrant python-pytyrant
pytz python-tz
pyuca python-pyuca
pyudev python-pyudev
pyusb python-usb
pyviennacl python-pyviennacl
pyvmomi python-pyvmomi
pyvo python-pyvo
pyvorbis python-pyvorbis
pywapi python-pywapi
pywbem python-pywbem
pyweblib python-weblib
pywinrm python-winrm
pywps python-pywps
pyxattr python-pyxattr
pyxdg python-xdg
pyxenstore python-pyxenstore
pyxid python-pyxid
pyxmpp python-pyxmpp
pyxnat python-pyxnat
pyxp wmii
pyzmq python-zmq
pyzor pyzor
q python-q
qbzr qbzr
qcli python-qcli
qct qct
qmtest qmtest
qpid_python python-qpid
qpid_qmf python-qpid-extras-qmf
qpid_tools qpid-tools
qrcode python-qrcode
qrencode python-qrencode
qrtools python-qrtools
qt4reactor python-qt4reactor
qtconsole python-qtconsole
qtile python-qtile
quantities python-quantities
quark_sphinx_theme python-quark-sphinx-theme
queuelib python-queuelib
quisk quisk
quodlibet exfalso
rabbitvcs rabbitvcs-core
radiotray radiotray
radix python-radix
rados python-rados
rainbow python-rainbow
rally python-rally
ranger ranger
rarfile python-rarfile
rasterio python-rasterio
rawdog rawdog
rbd python-rbd
rcssmin python-rcssmin
rdflib python-rdflib
rdflib_jsonld python-rdflib-jsonld
rdiff_backup rdiff-backup
rebuildd rebuildd
recaptcha_client python-recaptcha
reclass python-reclass
recommonmark python-recommonmark
reconfigure python-reconfigure
redis python-redis
redis_py_cluster python-rediscluster
rednose python-rednose
regex python-regex
rekall_core python-rekall-core
relatorio python-relatorio
releases python-releases
rencode python-rencode
reno python-reno
reportlab python-reportlab
repoze.lru python-repoze.lru
repoze.sphinx.autointerface python-repoze.sphinx.autointerface
repoze.tm2 python-repoze.tm2
repoze.who python-repoze.who
reproject python-reproject
requestbuilder python-requestbuilder
requests python-requests
requests_aws python-awsauth
requests_cache python-requests-cache
requests_futures python-requests-futures
requests_kerberos python-requests-kerberos
requests_mock python-requests-mock
requests_oauthlib python-requests-oauthlib
requests_toolbelt python-requests-toolbelt
requests_unixsocket python-requests-unixsocket
requestsexceptions python-requestsexceptions
requirements_detector python-requirements-detector
responses python-responses
restkit python-restkit
restless python-restless
restructuredtext_lint python-restructuredtext-lint
retrying python-retrying
rfc3986 python-rfc3986
rfoo python-rfoo
rgain python-rgain
rhn python-rhn
ricky python-ricky
riemann_client python-riemann-client
ripe.atlas.cousteau python-ripe-atlas-cousteau
ripe.atlas.sagan python-ripe-atlas-sagan
ripe.atlas.tools ripe-atlas-tools
rjsmin python-rjsmin
roman python-roman
rope python-rope
ropemacs python-ropemacs
ropemode python-ropemode
rosdep python-rosdep
rosdistro python-rosdistro
rosinstall python-rosinstall
rosinstall_generator python-rosinstall-generator
rospkg python-rospkg
rows python-rows
rply python-rply
rpm_python python-rpm
rpy python-rpy
rpy2 python-rpy2
rsa python-rsa
rst2pdf rst2pdf
rtslib_fb python-rtslib-fb
ruamel.ordereddict python-ruamel.ordereddict
ruamel.yaml python-ruamel.yaml
rubber rubber
rudolf python-rudolf
ruffus python-ruffus
ryu python-ryu
s3cmd s3cmd
s3transfer python-s3transfer
sage sagemath-common
sagenb python-sagenb
sagenb_export python-sagenb-export
sahara python-sahara
sahara_dashboard python-sahara-dashboard
salt salt-common
sanlock_python python-sanlock
sardana python-sardana
scales python-scales
scandir python-scandir
scapy python-scapy
scgi python-scgi
schedule python-schedule
schema python-schema
schema_salad python-schema-salad
schroot python-schroot
scikit_image python-skimage
scikit_learn python-sklearn
scipy python-scipy
sciscipy python-sciscipy
sclapp python-sclapp
scoop python-scoop
scour python-scour
scp python-scp
screed python-screed
screenkey screenkey
screenlets screenlets
scripttest python-scripttest
scruffington python-scruffy
scrypt python-scrypt
sdnotify python-sdnotify
seaborn python-seaborn
securepass python-securepass
selenium python-selenium
semantic_version python-semantic-version
semver python-semver
senlin python-senlin
sensitivetickets trac-sensitivetickets
sentinels python-sentinels
seqdiag python-seqdiag
serpent python2-serpent
servefile servefile
service_identity python-service-identity
setoptconf python-setoptconf
setproctitle python-setproctitle
setuptools_git python-setuptools-git
setuptools_scm python-setuptools-scm
sfepy python-sfepy
sftp_cloudfs sftpcloudfs
sgp4 python-sgp4
sh python-sh
shade python-shade
shadowsocks shadowsocks
shedskin shedskin
shellescape python-shellescape
shelltoolbox python-shelltoolbox
shortuuid python-shortuuid
sievelib python-sievelib
simpleeval python-simpleeval
simplegeneric python-simplegeneric
simplejson python-simplejson
simpy python-simpy3
singledispatch python-singledispatch
sireader python-sireader
six python-six
sklearn_pandas python-sklearn-pandas
slapos.core slapos-client
sleekxmpp python-sleekxmpp
slepc4py python-slepc4py
slides python-slides
slimit slimit
slimmer python-slimmer
slip python-slip
slip.dbus python-slip-dbus
slip.gtk python-slip-gtk
slowaes python-slowaes
smart python-smartpm
smartypants python-smartypants
smbpasswd python-smbpasswd
smmap2 python-smmap
smstrade python-smstrade
snimpy python-snimpy
snmpsim snmpsim
snowballstemmer python-snowballstemmer
snuggs python-snuggs
socketIO_client python-socketio-client
socketpool python-socketpool
sockjs_tornado python-sockjs-tornado
sorl_thumbnail python-sorl-thumbnail
sortedcontainers python-sortedcontainers
soundgrain soundgrain
sourcecodegen python-sourcecodegen
spake2 python-spake2
spambayes spambayes
specan ubertooth
spectacle spectacle
specto specto
spectral_cube python-spectral-cube
specutils python-specutils
speedtest_cli speedtest-cli
sphere python-sphere
sphinx_argparse python-sphinx-argparse
sphinx_bootstrap_theme python-sphinx-bootstrap-theme
sphinx_paramlinks python-sphinx-paramlinks
sphinx_patchqueue python-sphinx-patchqueue
sphinx_rtd_theme python-sphinx-rtd-theme
sphinx_testing python-sphinx-testing
sphinxcontrib_actdiag python-sphinxcontrib.actdiag
sphinxcontrib_autoprogram sphinxcontrib-autoprogram
sphinxcontrib_blockdiag python-sphinxcontrib.blockdiag
sphinxcontrib_docbookrestapi python-sphinxcontrib.docbookrestapi
sphinxcontrib_doxylink python-sphinxcontrib.doxylink
sphinxcontrib_httpdomain python-sphinxcontrib.httpdomain
sphinxcontrib_issuetracker python-sphinxcontrib.issuetracker
sphinxcontrib_nwdiag python-sphinxcontrib.nwdiag
sphinxcontrib_pecanwsme python-sphinxcontrib-pecanwsme
sphinxcontrib_plantuml python-sphinxcontrib.plantuml
sphinxcontrib_programoutput python-sphinxcontrib.programoutput
sphinxcontrib_rubydomain python-sphinxcontrib.rubydomain
sphinxcontrib_seqdiag python-sphinxcontrib.seqdiag
sphinxcontrib_spelling python-sphinxcontrib.spelling
sphinxcontrib_youtube python-sphinxcontrib.youtube
springpython python-springpython
sprox python-sprox
sptest python-sptest
spur python-spur
spyder python-spyder
spykeutils python-spykeutils
spykeviewer spykeviewer
spyne python-spyne
sqlalchemy_migrate python-migrate
sqlkit python-sqlkit
sqlparse python-sqlparse
sqlsoup python-sqlsoup
srp python-srp
ssdeep python-ssdeep
stackapplet stackapplet
starpy python-starpy
statsd python-statsd
statsmodels python-statsmodels
stdeb python-stdeb
stem python-stem
stepic python-stepic
stevedore python-stevedore
stgit stgit
stomper python-stomper
stompy python-stompy
stopit python-stopit
storm python-storm
straight.plugin python-straight.plugin
stringtemplate3 python-stringtemplate3
structlog python-structlog
stsci.distutils python-stsci.distutils
subliminal python-subliminal
subprocess32 python-subprocess32
subvertpy python-subvertpy
suds_jurko python-suds
summain summain
sunlight python-sunlight
sunpy python-sunpy
supervisor supervisor
supybot supybot
sure python-sure
suricatasc suricata
svg.path python-svg.path
svgwrite python-svgwrite
svnmailer svnmailer
swauth swauth
swift python-swift
swift3 swift-plugin-s3
swift_bench swift-bench
swiftsc python-swiftsc
sympy python-sympy
syslogng syslog-ng-mod-python
systemd_python python-systemd
systemfixtures python-systemfixtures
sysv_ipc python-sysv-ipc
tables python-tables
tablib python-tablib
tabulate python-tabulate
tagpy python-tagpy
tahoe_lafs tahoe-lafs
tails_installer tails-installer
tap.py python-tap
taskflow python-taskflow
taskw python-taskw
taurus python-taurus
tblib python-tblib
tcpwatch tcpwatch-httpproxy
tegaki_pygtk python-tegaki-gtk
tegaki_python python-tegaki
tegaki_tools python-tegakitools
tegaki_train tegaki-train
tempest python-tempest
tempest_lib python-tempest-lib
templayer python-templayer
tenacity python-tenacity
termcolor python-termcolor
terminado python-terminado
testing.common.database python-testing.common.database
testing.mysqld python-testing.mysqld
testing.postgresql python-testing.postgresql
testrepository python-testrepository
testresources python-testresources
testscenarios python-testscenarios
testtools python-testtools
textile python-textile
texttable python-texttable
tftpy python-tftpy
tgext.admin python-tgext.admin
tgext.crud python-tgext.admin
thrift python-thrift
tinycss python-tinycss
tinyeartrainer tinyeartrainer
tkSnack python-tksnack
tlsh python-tlsh
tlslite_ng python-tlslite-ng
tmdbsimple python-tmdbsimple
tnetstring python-tnetstring
tomahawk python-tomahawk
toml python-toml
tooz python-tooz
toposort python-toposort
tornado python-tornado
tornado_pyvows python-tornado-pyvows
tornadorpc python-tornadorpc
toro python-toro
tortoisehg tortoisehg
tosca_parser python-tosca-parser
totalopenstation totalopenstation
tqdm python-tqdm
traceback2 python-traceback2
tracer python-tracer
tracing python-tracing
traitlets python-traitlets
traits python-traits
traitsui python-traitsui
transaction python-transaction
transifex_client transifex-client
translate_toolkit python-translate
translationstring python-translationstring
translitcodec python-translitcodec
transmissionrpc python-transmissionrpc
trash_cli trash-cli
treq python-treq
trezor python-trezor
trimage trimage
tripleo_heat_templates python-tripleo-heat-templates
tripleo_image_elements python-tripleo-image-elements
tritium tritium
trollius python-trollius
trollius_redis python-trollius-redis
trove python-trove
trove_dashboard python-trove-dashboard
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_fee tryton-modules-account-dunning-fee
trytond_account_dunning_letter tryton-modules-account-dunning-letter
trytond_account_fr tryton-modules-account-fr
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_calendar tryton-modules-calendar
trytond_calendar_classification tryton-modules-calendar-classification
trytond_calendar_scheduling tryton-modules-calendar-scheduling
trytond_calendar_todo tryton-modules-calendar-todo
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_google_maps tryton-modules-google-maps
trytond_ldap_authentication tryton-modules-ldap-authentication
trytond_party tryton-modules-party
trytond_party_relationship tryton-modules-party-relationship
trytond_party_siret tryton-modules-party-siret
trytond_party_vcarddav tryton-modules-party-vcarddav
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_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_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
trytond_webdav tryton-modules-webdav
ttb ttb
ttystatus python-ttystatus
tunigo python-tunigo
turnin_ng turnin-ng
tw.forms python-toscawidgets
tweepy python-tweepy
twextpy python-twext
twill python-twill
twython python-twython
txAWS python-txaws
txLibravatar python-txlibravatar
txWS python-txws
txZMQ python-txzmq
txaio python-txaio
txfixtures python-txfixtures
txosc python-txosc
txsocksx python-txsocksx
txtorcon python-txtorcon
txwinrm python-txwinrm
txzookeeper python-txzookeeper
typing python-typing
typogrify python-typogrify
tzlocal python-tzlocal
u1db python-u1db
uTidylib python-utidylib
u_msgpack_python python-u-msgpack
ubuntu_dev_tools python-ubuntutools
ucltip python-ucltip
udev_discover udev-discover
ufo2otf ufo2otf
ufw python-ufw
ujson python-ujson
uncertainties python-uncertainties
unicodecsv python-unicodecsv
uniconvertor python-uniconvertor
unidiff python-unidiff
unittest2 python-unittest2
unittest_xml_reporting python-xmlrunner
uritemplate python-uritemplate
uritools python-uritools
urlgrabber python-urlgrabber
urllib3 python-urllib3
urwid python-urwid
urwid_satext python-urwid-satext
urwidtrees python-urwidtrees
usagestats python-usagestats
usbtc08 python-usbtc08
validictory python-validictory
vamos undertaker
van.pydeb python-van.pydeb
variety variety
vatnumber python-vatnumber
vcrpy python-vcr
vcstools python-vcstools
vcversioner python-vcversioner
venusian python-venusian
versiontools python-versiontools
versuchung python-versuchung
vinetto vinetto
virtaal virtaal
virtualbricks virtualbricks
virtualenv python-virtualenv
virtualenv_clone virtualenv-clone
virtualenvwrapper virtualenvwrapper
visionegg python-visionegg
vispy python-vispy
vizigrep vizigrep
vmdebootstrap vmdebootstrap
vmware_nsx python-vmware-nsx
vobject python-vobject
volatility volatility
voluptuous python-voluptuous
vsgui python-vsgui
vulndb python-vulndb
w3lib python-w3lib
wadllib python-wadllib
waiting python-waiting
waitress python-waitress
wammu wammu
wapiti wapiti
warlock python-warlock
watchdog python-watchdog
watson_developer_cloud python-watson-developer-cloud
wchartype python-wchartype
wcsaxes python-wcsaxes
wcwidth python-wcwidth
weakrefmethod python-weakrefmethod
web.py python-webpy
webassets python-webassets
webcolors python-webcolors
webencodings python-webencodings
weboob python-weboob
websocket_client python-websocket
websockify python-websockify
webunit python-webunit
wfuzz wfuzz
wget python-wget
wheel python-wheel
wheezy.template python-wheezy.template
whichcraft python-whichcraft
whisper python-whisper
whitenoise python-whitenoise
whois python-whois
whyteboard whyteboard
wicd python-wicd
widgetsnbextension python-widgetsnbextension
wikipediafs wikipediafs
winpdb winpdb
wit python-wit
wokkel python-wokkel
woo python-woo
wrapt python-wrapt
ws4py python-ws4py
wsgi_intercept python-wsgi-intercept
wsgicors python-wsgicors
wsgilog python-wsgilog
wstool python-wstool
wstools python-wstools
wxPython_common python-wxgtk3.0
wxmpl python-wxmpl
x2go python-x2go
xapers xapers
xappy python-xappy
xattr python-xattr
xcffib python-xcffib
xdo python-xdo
xe python-xe
xgflib xgridfit
xia xia
xkcd python-xkcd
xlrd python-xlrd
xlwt python-xlwt
xmds2 xmds2
xml_marshaller python-xmlmarshaller
xmlbuilder python-xmlbuilder
xmldiff xmldiff
xmltodict python-xmltodict
xmms2tray xmms2tray
xpra xpra
xtermcolor python-xtermcolor
xvfbwrapper python-xvfbwrapper
xxdiff_scripts xxdiff-scripts
yagtd yagtd
yanc python-nose-yanc
yapf yapf
yaql python-yaql
yara_python python-yara
yattag python-yattag
yenc python-yenc
yokadi yokadi
yowsup2 python-yowsup
yt python-yt
yubikey_neo_manager yubikey-neo-manager
yubikey_piv_manager yubikey-piv-manager
yubioath_desktop yubioath-desktop
yum_metadata_parser python-sqlitecachec
zake python-zake
zaqar python-zaqar
zaqar_ui python-zaqar-ui
zc.buildout python-zc.buildout
zc.customdoctests python-zc.customdoctests
zc.lockfile python-zc.lockfile
zdaemon python-zdaemon
zeep python-zeep
zeitgeist_explorer zeitgeist-explorer
zenmap zenmap
zenoss python-zenoss
zeroconf python-zeroconf
zfec python-zfec
zhpy python-zhpy
zim zim
zinnia_python python-zinnia
zipstream python-zipstream
zope.authentication python-zope.authentication
zope.browser python-zope.browser
zope.cachedescriptors python-zope.cachedescriptors
zope.component python-zope.component
zope.configuration python-zope.configuration
zope.contenttype python-zope.contenttype
zope.copy python-zope.copy
zope.deprecation python-zope.deprecation
zope.dottedname python-zope.dottedname
zope.event python-zope.event
zope.exceptions python-zope.exceptions
zope.hookable python-zope.hookable
zope.i18n python-zope.i18n
zope.i18nmessageid python-zope.i18nmessageid
zope.interface python-zope.interface
zope.location python-zope.location
zope.proxy python-zope.proxy
zope.publisher python-zope.publisher
zope.schema python-zope.schema
zope.security python-zope.security
zope.sendmail python-zope.sendmail
zope.sqlalchemy python-zope.sqlalchemy
zope.testbrowser python-zope.testbrowser
zope.testing python-zope.testing
zope.testrunner python-zope.testrunner
zope.traversing python-zope.traversing
zxcvbn python-zxcvbn
zyne zyne
zzzeeksphinx python-zzzeeksphinx