File: cpython2_fallback

package info (click to toggle)
dh-python 1.20141111-2
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 1,012 kB
  • ctags: 357
  • sloc: python: 3,503; makefile: 410; perl: 151; sh: 24
file content (1896 lines) | stat: -rw-r--r-- 52,072 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
python python
setuptools python-pkg-resources
wsgiref python (>= 2.5) | python-wsgiref
argparse python (>= 2.7) | python-argparse
pil python-imaging
APScheduler python-apscheduler
APacheDEX apachedex
Arriero arriero
AuthKit python-authkit
Axiom python-axiom
Babel python-babel
Beaker python-beaker
BeautifulSoup python-beautifulsoup
Bitten trac-bitten-slave
Blogofile blogofile
Brlapi python-brlapi
Buffy python-buffy
BzrPipeline bzr-pipeline
BzrTools bzrtools
CDApplet cairo-dock-dbus-plug-in-interface-python
CDBashApplet cairo-dock-dbus-plug-in-interface-python
CMOR python-cmor
CairoSVG python-cairosvg
Calendar_and_Contacts_Server calendarserver
Catwalk python-catwalk
CedarBackup2 cedar-backup2
Cerealizer python-cerealizer
Chameleon python-chameleon
Cheetah python-cheetah
CherryPy python-cherrypy3
CherryTree cherrytree
ClusterShell clustershell
Coffin python-coffin
Coherence python-coherence
CouchDB python-couchdb
Couchapp couchapp
CoverageTestRunner python-coverage-test-runner
Creoleparser python-creoleparser
Cython cython
DITrack ditrack
DSV python-dsv
DiaVisViewPlugin trac-diavisview
Django python-django
Doconce doconce
EbookLib python-ebooklib
EditObj python-editobj
Editra editra
Electrum python-electrum
Elixir python-elixir
EnthoughtBase python-enthoughtbase
Epsilon python-epsilon
ExifRead python-exif
Extractor python-extractor
FFC python-ffc
FIAT python-fiat
Fabric fabric
FeinCMS python-django-feincms
FibraNet python-fibranet
Flask python-flask
Flask_AutoIndex python-flask-autoindex
Flask_Babel python-flask-babel
Flask_HTTPAuth python-flask-httpauth
Flask_Jsonpify python-jsonpify
Flask_Login python-flask-login
Flask_Migrate python-flask-migrate
Flask_OpenID python-flask-openid
Flask_Principal python-flask-principal
Flask_SQLAlchemy python-flask-sqlalchemy
Flask_Script python-flask-script
Flask_Silk python-flask-silk
Flask_WTF python-flaskext.wtf
FormAlchemy python-formalchemy
FormEncode python-formencode
GDAL python-gdal
GalleryRemote python-galleryremote
GaussSum gausssum
Genetic python-genetic
GenomeTools python-genometools
Genshi python-genshi
GeoIP python-geoip
GitPython python-git
GooCalendar python-goocalendar
GvGen python-gvgen
HTSeq python-htseq
IMDbPY python-imdbpy
IPy python-ipy
ISO8583_Module python-iso8583
Ibid ibid
Isenkram isenkram-cli
JCC jcc
JPype python-jpype
Jinja2 python-jinja2
Kajiki python-kajiki
Kivy python-kivy
LEPL python-lepl
LibAppArmor python-libapparmor
Logbook python-logbook
Loom bzr-loom
Louie python-louie
M2Crypto python-m2crypto
MACS macs
MAT mat
MIDIUtil python-midiutil
MMTK python-mmtk
Magic_file_extensions python-magic
Mako python-mako
Markdown python-markdown
MarkupSafe python-markupsafe
MiniMock python-minimock
Mirage mirage
Mnemosyne mnemosyne
Model_Builder model-builder
ModestMaps python-modestmaps
Mopidy mopidy
MultipartPostHandler python-multipartposthandler
MySQL_python python-mysqldb
NavAdd trac-navadd
Nevow python-nevow
Nikola nikola
OERPLib python-oerplib
OWSLib python-owslib
OdtExportPlugin trac-odtexport
PAM python-pam
PIDA pida
Pafy python-pafy
Parsley python-parsley
Paste python-paste
PasteDeploy python-pastedeploy
PasteScript python-pastescript
PasteWebKit python-pastewebkit
Photon photon
Pillow python-pil
Pint python-pint
Pivy python-pivy
Pmw python-pmw
PocketSphinx python-pocketsphinx
PreludeEasy python-prelude
PsychoPy psychopy
Pwman3 pwman3
PyAIML python-aiml
PyAVM python-pyavm
PyAssimp python-pyassimp
PyAudio python-pyaudio
PyBluez python-bluez
PyCAPTCHA python-captcha
PyChef python-chef
PyFFTW3 python-fftw
PyFeed python-feed
PyFlot python-pyflot
PyGreSQL python-pygresql
PyHamcrest python-hamcrest
PyHoca_CLI pyhoca-cli
PyHoca_GUI pyhoca-gui
PyICU python-pyicu
PyJWT python-jwt
PyLD python-pyld
PyMca pymca
PyMetrics pymetrics
PyODE python-pyode
PyOpenGL python-opengl
PyPDF2 python-pypdf2
PyPhantomJS python-pyphantomjs
PyProtocols python-protocols
PyPump python-pypump
PyRRD python-pyrrd
PyRSS2Gen python-pyrss2gen
PyRoom pyroom
PySocks python-pysocks
PyStemmer python-stemmer
PyTango python-pytango
PyVISA pyvisa
PyWavelets python-pywt
PyWebDAV python-webdav
PyX python-pyx
PyXB python-pyxb
PyYAML python-yaml
Py_ python-py++
Pyevolve python-pyevolve
Pygments python-pygments
Pykka python-pykka
Pylons python-pylons
Pymacs pymacs
Pyrex python-pyrex
Pyro4 python2-pyro4
Pysolar python-pysolar
Pyste libboost-python1.55-dev
Python_fontconfig python-fontconfig
QuantLib_Python quantlib-python
RBTools python-rbtools
Radicale python-radicale
Recoll python-recoll
Ren_Py python-renpy
Roadmap_Plugin trac-roadmap
Routes python-routes
RunSnakeRun runsnakerun
SOAPpy python-soappy
SPARQLWrapper python-sparqlwrapper
SQLAlchemy python-sqlalchemy
SQLObject python-sqlobject
SciTools python-scitools
ScientificPython python-scientific
SecretStorage python-secretstorage
SetupDocs python-setupdocs
Shapely python-shapely
Shinken shinken-common
SimPy python-simpy
SocksiPy_branch python-socksipy
SocksipyChain python-socksipychain
SoftLayer python-softlayer
Sonata sonata
South python-django-south
Soya python-soya
Sphinx python-sphinx
SphinxBase python-sphinxbase
SquareMap python-squaremap
Strongwind python-strongwind
TRML2PDF python-trml2pdf
TaskCoach taskcoach
TcosConfigurator tcos-configurator
Tempita python-tempita
The_FreeSmartphone_Framework_Daemon fso-frameworkd
TileStache tilestache
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-datefieldplugin
TracGit trac-git
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
TurboJson python-turbojson
Twisted python-twisted
Twisted_Conch python-twisted-conch
Twisted_Core python-twisted-core
Twisted_Lore python-twisted-lore
Twisted_Mail python-twisted-mail
Twisted_Names python-twisted-names
Twisted_News python-twisted-news
Twisted_Runner python-twisted-runner
Twisted_Web python-twisted-web
Twisted_Web2 python-twisted-web2
Twisted_Words python-twisted-words
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
WordPress_Library python-wordpresslib
XStatic python-xstatic
XStatic_Angular python-xstatic-angular
XStatic_Angular_Cookies python-xstatic-angular-cookies
XStatic_Angular_Mock python-xstatic-angular-mock
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_QUnit python-xstatic-qunit
XStatic_Rickshaw python-xstatic-rickshaw
XStatic_Spin python-xstatic-spin
XStatic_jQuery python-xstatic-jquery
XStatic_jquery_ui python-xstatic-jquery-ui
X_Tile x-tile
XlsxWriter python-xlsxwriter
Yapsy python-yapsy
ZConfig python-zconfig
ZODB3 python-zodb
ZooKeeper python-zookeeper
_tifffile python-tifffile
actdiag python-actdiag
admesh python-admesh
adns_python python-adns
affine python-affine
alabaster python-alabaster
albatross python-albatross
alembic python-alembic
allmydata_tahoe tahoe-lafs
amqp python-amqp
amqplib python-amqplib
aniso8601 python-aniso8601
ansible ansible
anyjson python-anyjson
apache_libcloud python-libcloud
apipkg python-apipkg
apns_client python-apns-client
apparmor python-apparmor
appdirs python-appdirs
apptools python-apptools
apsw python-apsw
apt_clone apt-clone
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
arista arista
arpy python-arpy
arrow python-arrow
assword assword
astor python-astor
astroid python-astroid
astropy python-astropy
astropy_helpers python-astropy-helpers
async python-async
atheist atheist
audioread python-audioread
authres python-authres
autobahn python-autobahn
autokey autokey-common
automx automx
autopep8 python-autopep8
autoradio autoradio
avc python-avc
babelfish python-babelfish
backports.ssl_match_hostname python-backports.ssl-match-hostname
backup2swift python-backup2swift
barman barman
bashate python-bashate
bcdoc python-bcdoc
beanstalkc python-beanstalkc
beautifulsoup4 python-bs4
bicyclerepair bicyclerepair
billiard python-billiard
binaryornot python-binaryornot
binwalk binwalk
biom_format python-biom-format
biopython python-biopython
biplist python-biplist
bitarray python-bitarray
bleach python-bleach
blessings python-blessings
bley bley
blinker python-blinker
blist python-blist
blockdiag python-blockdiag
bmap_tools bmap-tools
bobo python-bobo
bookletimposer bookletimposer
bootstrap_vz bootstrap-vz
boto python-boto
botocore python-botocore
bottle python-bottle
bpython bpython
braintree python-braintree
breadability python-breadability
breathe python-breathe
bsddb3 python-bsddb3
bugs_everywhere bugs-everywhere
buildbot buildbot
buildbot_slave buildbot-slave
bunch python-bunch
burn burn
buzhug python-buzhug
bzr python-bzrlib
bzr_builddeb bzr-builddeb
bzr_email bzr-email
bzr_etckeeper etckeeper
bzr_search bzr-search
bzr_stats bzr-stats
bzr_tweet bzr-tweet
bzr_upload bzr-upload
bzr_xmloutput bzr-xmloutput
cairocffi python-cairocffi
calabash python-calabash
calypso calypso
cappuccino cappuccino
capstone python-capstone
carbon graphite-carbon
cardstories cardstories
cclib python-cclib
cdo python-cdo
cecilia cecilia
ceilometer python-ceilometer
celery python-celery
ceres python-ceres
cffi python-cffi
chaco python-chaco
changelog python-changelog
characteristic python-characteristic
chardet python-chardet
chemfp python-chemfp
chirp chirp
chm2pdf chm2pdf
cigi python-cigi
cinder python-cinder
cinfony python-cinfony
circuits python-circuits
ckanclient python-ckanclient
cliapp python-cliapp
click python-click
cliff python-cliff
cliff_tablib cliff-tablib
clint python-clint
closure_linter closure-linter
cloud_init cloud-init
cloud_sptheme python-cloud-sptheme
cluster python-cluster
cmd2 python-cmd2
cmdtest cmdtest
cobe python-cobe
cogent python-cogent
colander python-colander
colorama python-colorama
colorlog python-colorlog
commando python-commando
configglue python-configglue
configobj python-configobj
configparser python-configparser
construct python-construct
contextlib2 python-contextlib2
contract python-contract
convoy python-convoy
cookiecutter python-cookiecutter
core_python core-network-daemon
core_python_netns core-network-daemon
corens3_python core-network-daemon
couchdbkit python-couchdbkit
couleur python-couleur
cov_core python-cov-core
coverage python-coverage
cppman cppman
cpuset cpuset
cpyrit_opencl pyrit-opencl
cracklib python-cracklib
crcmod python-crcmod
croniter python-croniter
cryptography python-cryptography
cryptography_vectors python-cryptography-vectors
cs python-cs
csb python-csb
cssmin cssmin
cssselect python-cssselect
cssutils python-cssutils
cubictemp python-cubictemp
cvs2svn cvs2svn
cvxopt python-cvxopt
cwm python-swap
cyclone python-cyclone
d2to1 python-d2to1
dap python-dap
datanommer.commands python-datanommer.commands
datanommer.consumer python-datanommer.consumer
datanommer.models python-datanommer.models
datapm datapm
dblatex dblatex
ddt python-ddt
deap python-deap
debbindiff debbindiff
debiancontributors python-debiancontributors
debtagshw python-debtagshw
decorator python-decorator
defer python-defer
defusedxml python-defusedxml
deluge deluge-common
demjson python-demjson
designate python-designate
dexml python-dexml
dh_virtualenv dh-virtualenv
dhcpy6d dhcpy6d
dhm python-dhm
dib_utils python-dib-utils
dicoclient python-dicoclient
dictclient python-dictclient
dictdlib python-dictdlib
diff_match_patch python-diff-match-patch
dingus python-dingus
dirspec python-dirspec
diskimage_builder python-diskimage-builder
dispcalGUI dispcalgui
dissy dissy
distorm3 python-distorm3
distro_info python-distro-info
django_adminaudit python-django-adminaudit
django_ajax_selects python-ajax-select
django_appconf python-appconf
django_assets python-django-assets
django_auth_ldap python-django-auth-ldap
django_authority python-django-authority
django_bitfield python-django-bitfield
django_bootstrap_form python-bootstrapform
django_braces python-django-braces
django_celery python-django-celery
django_classy_tags python-django-classy-tags
django_compressor python-compressor
django_conneg python-django-conneg
django_contact_form python-django-contact-form
django_countries python-django-countries
django_crispy_forms python-django-crispy-forms
django_dajax python-django-dajax
django_dajaxice python-django-dajaxice
django_debug_toolbar python-django-debug-toolbar
django_discover_runner python-django-discover-runner
django_evolution python-django-evolution
django_extensions python-django-extensions
django_filter python-django-filters
django_floppyforms python-django-floppyforms
django_formfieldset python-django-formfieldset
django_genshi python-django-genshi
django_guardian python-django-guardian
django_haystack python-django-haystack
django_jsonfield python-django-jsonfield
django_ldapdb python-django-ldapdb
django_macaddress python-django-macaddress
django_markupfield python-django-markupfield
django_model_utils python-django-model-utils
django_mptt python-django-mptt
django_nose python-django-nose
django_notification python-django-notification
django_oauth_plus python-django-oauth-plus
django_openid_auth python-django-auth-openid
django_openstack_auth python-openstack-auth
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_pyscss python-django-pyscss
django_ratelimit python-django-ratelimit
django_registration python-django-registration
django_rest_framework_nested_resource python-djangorestframework-nested-resource
django_restricted_resource python-django-restricted-resource
django_reversion python-django-reversion
django_sekizai python-django-sekizai
django_shorturls python-django-shorturls
django_shortuuidfield python-django-shortuuidfield
django_simple_captcha python-django-captcha
django_sitetree python-django-sitetree
django_social_auth python-django-social-auth
django_sortedm2m python-sortedm2m
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_threadedcomments python-django-threadedcomments
django_treebeard python-django-treebeard
django_uuidfield python-django-uuidfield
django_voting python-django-voting
django_websocket python-django-websocket
django_xmlrpc python-django-xmlrpc
djangorestframework python-djangorestframework
djangorestframework_gis python-djangorestframework-gis
djextdirect python-django-extdirect
dkimpy python-dkim
dnspython python-dnspython
dnsq python-dnsq
docker_py python-docker
docopt python-docopt
docutils python-docutils
dogpile.cache python-dogpile.cache
dogpile.core python-dogpile.core
dogtail python-dogtail
doit python-doit
dosage dosage
doublex python-doublex
doxyqml doxyqml
dput python-dput
driconf driconf
drmaa python-drmaa
drslib python-drslib
dtrx dtrx
dulwich python-dulwich
dumbnet python-dumbnet
duplicity duplicity
dvbobjects opencaster
easygui python-easygui
easyzone python-easyzone
ecdsa python-ecdsa
eficas eficas
elasticsearch python-elasticsearch
empy python-empy
enable python-enable
enet python-enet
ensymble ensymble
enum python-enum
enum34 python-enum34
envisage python-envisage
enzyme python-enzyme
epigrass epigrass
epoptes epoptes
epydoc python-epydoc
ethtool python-ethtool
etk.docking python-etk.docking
euca2ools euca2ools
eventlet python-eventlet
exabgp exabgp
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
falcon python-falcon
fastimport python-fastimport
faulthandler python-faulthandler
fdb python-fdb
fdroidserver fdroidserver
fdsend python-fdsend
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
ferari python-ferari
first python-first
fitbit python-fitbit
fiu python-fiu
fixtures python-fixtures
fko libfko-python
flake8 python-flake8
flashproxy_common flashproxy-common
flexmock python-flexmock
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
fontforge python-fontforge
fontypython fontypython
foolscap python-foolscap
freeipa python-freeipa
freevo python-freevo
freezegun python-freezegun
frescobaldi frescobaldi
freshen python-freshen
fs python-fs
fswrap python-fswrap
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
funkload funkload
fuse_python python-fuse
fusil fusil
futures python-concurrent.futures
fysom python-fysom
gameclock gameclock
gamera python-gamera
gaphas python-gaphas
gaphor gaphor
gastables python-gastables
gastablesgui gastables
gbp git-buildpackage
gcm_client python-gcm-client
gcovr gcovr
gdata python-gdata
gdmodule python-gd
gear python-gear
gearman python-gearman
genbackupdata genbackupdata
geolinks python-geolinks
geopy python-geopy
germinate python-germinate
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
git_review git-review
gitdb python-gitdb
github_cli github-cli
gjots2 gjots2
glance python-glance
glance_store python-glance-store
glipper glipper
glitch python-glitch
globs globs
glpk python-glpk
glue glue-sprite
gmobilemedia gmobilemedia
gmpy python-gmpy
gmpy2 python-gmpy2
gnatpython python-gnatpython
gnome_app_install gnome-codec-install
gnome_gmail gnome-gmail
gnomecatalog gnomecatalog
gnuplot_py python-gnuplot
go2 go2
google_api_python_client python-googleapi
google_apputils python-google-apputils
googlecl googlecl
googlecloudapis python-googlecloudapis
gourmet gourmet
gpodder gpodder
gps python-gps
gpyconf python-gpyconf
gquilt gquilt
grapefruit python-grapefruit
graphite_web graphite-web
greenio python-greenio
greenlet python-greenlet
grokmirror grokmirror
gsw python-gsw
guessit python-guessit
guidata python-guidata
guiqwt python-guiqwt
gunicorn gunicorn
guzzle_sphinx_theme python-guzzle-sphinx-theme
gyp gyp
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
happybase python-happybase
healpy python-healpy
heat python-heat
hgnested mercurial-nested
hgsubversion hgsubversion
hiredis python-hiredis
hl7 python-hl7
horizon python-django-horizon
hp3parclient python-hp3parclient
hplefthandclient python-hplefthandclient
html2text python-html2text
html5lib python-html5lib
http_parser python-http-parser
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
iapws python-iapws
ibm_db_sa python-ibm-db-sa
icalendar python-icalendar
icalview trac-icalviewplugin
icinga2 python-icinga2
identicurse identicurse
impacket python-impacket
imposm python-imposm
imposm.parser python-imposm-parser
influxdb python-influxdb
iniparse python-iniparse
inotifyx python-inotifyx
instant python-instant
ioprofiler ioapps
iotop iotop
iowait python-iowait
ipaddr python-ipaddr
ipaplatform python-freeipa
ipapython python-freeipa
ipatests freeipa-tests
ipdb python-ipdb
ipython ipython
irc python-irc
ironic python-ironic
iso8601 python-iso8601
isodate python-isodate
itsdangerous python-itsdangerous
jabberbot python-jabberbot
jedi python-jedi
jenkinsapi python-jenkinsapi
jingo python-jingo
jmespath python-jmespath
joblib python-joblib
jpylyzer python-jpylyzer
jsmin python-jsmin
json_schema_validator python-json-schema-validator
jsonpatch python-jsonpatch
jsonpath_rw python-jsonpath-rw
jsonpickle python-jsonpickle
jsonpipe python-jsonpipe
jsonpointer python-json-pointer
jsonrpc2 python-jsonrpc2
jsonrpclib python-jsonrpclib
jsonschema python-jsonschema
junitxml python-junitxml
kaa_base python-kaa-base
kaa_imlib2 python-kaa-imlib2
kaa_metadata python-kaa-metadata
kapidox kapidox
kazoo python-kazoo
kdtree python-kdtree
kedpm kedpm
keepnote keepnote
key_mon key-mon
keymapper keymapper
keyring python-keyring
keystone python-keystone
keystonemiddleware python-keystonemiddleware
keysync keysync
kiki kiki
kinterbasdb python-kinterbasdb
kitchen python-kitchen
kjbuckets python-kjbuckets
kmodpy python-kmodpy
kombu python-kombu
laditools python-laditools
landslide python-landslide
larch python-larch
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
lazyarray python-lazyarray
lazygal lazygal
ldappool python-ldappool
legit legit
lesscpy python-lesscpy
leveldb python-leveldb
libLAS python-liblas
libconcord python-libconcord
liblarch python-liblarch
librabbitmq python-librabbitmq
libturpial python-libturpial
libvirt_python python-libvirt
linop python-linop
lio lio-utils
livereload python-livereload
livestreamer python-livestreamer
llfuse python-llfuse
llnl_babel python-sidl
llnl_babel_sidl_sidlx python-sidl
llvmpy python-llvm
lmfit python-lmfit
loggerhead loggerhead
logging_tree python-logging-tree
logilab_astng python-logilab-astng
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
lshell lshell
lua python-lua
lucene python-lucene
ludev_t ludevit
lxml python-lxml
lybniz lybniz
lz4 python-lz4
m2ext python-m2ext
macaron python-macaron
mailman_api mailman-api
mailnag mailnag
mandrill python-mandrill
mapper python-libmapper
marisa python-marisa
matplotlib python-matplotlib
mayavi mayavi2
mccabe python-mccabe
mcomix mcomix
mecab_python python-mecab
mechanize python-mechanize
medusa python-medusa
melange python-cream.melange
meld meld
meld3 python-meld3
meliae python-meliae
memory_profiler python-memory-profiler
memprof python-memprof
mercurial mercurial-common
mercurial_keyring mercurial-keyring
metaconfig python-metaconfig
metastudent metastudent
mididings python-mididings
mingc python-ming
mini_buildd python-mini-buildd
mini_dinstall mini-dinstall
minieigen python-minieigen
miniupnpc python-miniupnpc
mipp python-mipp
misaka python-misaka
mitmproxy mitmproxy
mlbviewer mlbviewer
mne python-mne
mock python-mock
mocker python-mocker
mockito python-mockito
mockldap python-mockldap
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
moosic moosic
mox python-mox
mox3 python-mox3
mozilla_devscripts mozilla-devscripts
mpi4py python-mpi4py
mpld3 python-mpld3
mplexporter python-mplexporter
mpmath python-mpmath
mpop python-mpop
mps_youtube mps-youtube
mrjob python-mrjob
msgpack_python python-msgpack
multicorn python-multicorn
multipletau python-multipletau
munkres python-munkres
museek_python_bindings python-museek
musicbrainzngs python-musicbrainzngs
mutagen python-mutagen
mygpoclient python-mygpoclient
mysql_connector_python python-mysql.connector
mysql_utilities mysql-utilities
nagiosplugin python-nagiosplugin
natsort python-natsort
naturalsort python-naturalsort
nautilus_pastebin nautilus-pastebin
nbxmpp python-nbxmpp
ncclient python-ncclient
nemu python-nemu
neo python-neo
neso tryton-neso
netaddr python-netaddr
netifaces python-netifaces
netlib python-netlib
netsnmp_python python-netsnmp
netsyslog python-netsyslog
networkx python-networkx
neuroshare python-neuroshare
neutron python-neutron
nine python-nine
nipy python-nipy
nipype python-nipype
nltk python-nltk
nml nml
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
notify2 python-notify2
notmuch python-notmuch
nova python-nova
ntplib python-ntplib
numexpr python-numexpr
numm python-numm
numpy python-numpy
numpydoc python-numpydoc
nwdiag python-nwdiag
nwsclient python-nwsclient
nwsserver python-nwsserver
nxt_python python-nxt
oauth python-oauth
oauth2 python-oauth2
oauth2client python-oauth2client
oauthlib python-oauthlib
obexftp python-obexftp
obfsproxy obfsproxy
objgraph python-objgraph
obnam obnam
oboinus oboinus
ocsmanager python-ocsmanager
odf python-odf
odfpy python-odf
offlineimap offlineimap
ofxclient python-ofxclient
ofxhome python-ofxhome
ofxparse python-ofxparse
oidua oidua
ooniprobe ooniprobe
ooo2dbk ooo2dbk
ooolib_python python-ooolib
openbabel python-openbabel
openbmap_logger openbmap-logger
openslide_python python-openslide
openstack.nose_plugin python-openstack.nose-plugin
openstack_doc_tools python-openstack-doc-tools
optcomplete python-optcomplete
os_apply_config python-os-apply-config
os_cloud_config python-os-cloud-config
os_collect_config python-os-collect-config
os_refresh_config python-os-refresh-config
osc osc
oslo.config python-oslo.config
oslo.db python-oslo.db
oslo.i18n python-oslo.i18n
oslo.messaging python-oslo.messaging
oslo.rootwrap python-oslo.rootwrap
oslo.utils python-oslo.utils
oslo.vmware python-oslo.vmware
oslosphinx python-oslosphinx
oslotest python-oslotest
osprofiler python-osprofiler
ow python-ow
ownet python-ownet
pagekite pagekite
paisley python-paisley
pam python-pampy
pandas python-pandas
pandocfilters python-pandocfilters
paramiko python-paramiko
park python-park
parse python-parse
parsedatetime python-parsedatetime
passlib python-passlib
pathtools python-pathtools
patool patool
patsy python-patsy
pbkdf2 python-pbkdf2
pbr python-pbr
pcapy python-pcapy
pcp python-pcp
pcs python-pcs
pdfminer python-pdfminer
pdfrw python-pdfrw
pdfshuffler pdfshuffler
pecan python-pecan
pefile python-pefile
pelican python-pelican
pep8 pep8
perroquet perroquet
persistent python-persistent
pexpect python-pexpect
pg_activity pg-activity
pgmagick python-pgmagick
pgpdump python-pgpdump
pgxnclient pgxnclient
photo_uploader photo-uploader
pies python-pies
piggyphoto python-piggyphoto
pika python-pika
pip python-pip
pithos pithos
pkgconfig python-pkgconfig
pkginfo python-pkginfo
plotly python-plotly
plumbum python-plumbum
ply python-ply
polib python-polib
pondus pondus
portalocker python-portalocker
posix_ipc python-posix-ipc
power python-power
powerline_status python-powerline
prelude python-prelude
preludedb python-preludedb
preprocess preprocess
presage_dbus_service presage-dbus
pretend python-pretend
prettytable python-prettytable
prewikka prewikka
proboscis python-proboscis
profitbricks_client python-profitbricks-client
proteus tryton-proteus
protobuf python-protobuf
protobuf.socketrpc python-protobuf.socketrpc
protorpc_standalone python-protorpc-standalone
psphere python-psphere
pssh pssh
psutil python-psutil
psycopg2 python-psycopg2
ptex2tex ptex2tex
publicsuffix python-publicsuffix
pudb python-pudb
purity_ng purity-ng
pushy python-pushy
py python-py
pyCardDAV python-pycarddav
pyClamd python-pyclamd
pyDoubles python-pydoubles
pyExcelerator python-excelerator
pyFAI pyfai
pyFFTW python-pyfftw
pyLibravatar python-libravatar
pyNFFT python-pynfft
pyOpenSSL python-openssl
pyOwnCloud python-owncloud
pyPortMidi python-pypm
pySFML python-sfml
pyScss python-pyscss
py_Asterisk python-asterisk
py_bcrypt python-bcrypt
py_libmpdclient python-mpdclient
py_pypcap python-pypcap
py_rrdtool python-rrdtool
pyacidobasic python-acidobasic
pyacoustid python-acoustid
pyalsa python-pyalsa
pyalsaaudio python-alsaaudio
pyapi_gitlab python-gitlab
pyasn1 python-pyasn1
pyasn1_modules python-pyasn1-modules
pybloomfiltermmap python-pybloomfiltermmap
pyblosxom pyblosxom
pybridge pybridge
pybtex pybtex
pybugz bugz
pycadf python-pycadf
pycalendar python-pycalendar
pycassa python-pycassa
pycha python-pycha
pychecker pychecker
pychess pychess
pychm python-chm
pyclamav python-pyclamav
pyclips python-clips
pycoast python-pycoast
pycollada python-collada
pycountry python-pycountry
pycparser python-pycparser
pycrypto python-crypto
pycryptopp python-pycryptopp
pycups python-cups
pycurl python-pycurl
pydds python-pydds
pydhcplib python-pydhcplib
pydicom python-dicom
pydns python-dns
pydoctor python-pydoctor
pydot python-pydot
pyds9 python-pyds9
pyelliptic python-pyelliptic
pyenchant python-enchant
pyepl python-pyepl
pyepr python-epr
pyface python-pyface
pyfann python-pyfann
pyfiglet python-pyfiglet
pyfits python-pyfits
pyflakes pyflakes
pyfribidi python-pyfribidi
pyftpdlib python-pyftpdlib
pygame python-pygame
pyghmi python-pyghmi
pygmi wmii
pygobject python-gi
pygopherd pygopherd
pygpgme python-pyme
pygpiv python-gpiv
pygrace python-pygrace
pygraphviz python-pygraphviz
pygrib python-grib
pygtkspellcheck python-gtkspellcheck
pygts python-gts
pyhsm python-pyhsm
pyinotify python-pyinotify
pyip python-pyip
pykaraoke python-pykaraoke
pykdtree python-pykdtree
pyke python-pyke
pykerberos python-kerberos
pykickstart python-pykickstart
pyknon python-pyknon
pylast python-pylast
pylibacl python-pylibacl
pyliblo python-liblo
pylibmc python-pylibmc
pylibpcap python-libpcap
pylibtiff python-libtiff
pylint pylint
pylirc python-pylirc
pylogsparser python-logsparser
pymad python-pymad
pymecavideo python-mecavideo
pymemcache python-pymemcache
pymetar python-pymetar
pymia python-mia
pymilter python-milter
pymodbus python-pymodbus
pymol pymol
pymtbl python-mtbl
pymucipher python-museek
pymvpa2 python-mvpa2
pynag python-pynag
pynast pynast
pyneighborhood pyneighborhood
pynzb python-pynzb
pyo python-pyo
pyogg python-ogg
pyopencl python-pyopencl
pyoperators python-pyoperators
pyorbital python-pyorbital
pyosd python-pyosd
pyp pyp
pyparallel python-parallel
pyparsing python-pyparsing
pyparted python-parted
pyproj python-pyproj
pyprompter pyprompter
pyptlib python-pyptlib
pypureomapi python-pypureomapi
pyqi pyqi
pyqtgraph python-pyqtgraph
pyquery python-pyquery
pyrad python-pyrad
pyramid python-pyramid
pyramid_beaker python-pyramid-beaker
pyramid_tm python-pyramid-tm
pyramid_zcml python-pyramid-zcml
pyremctl python-remctl
pyresample python-pyresample
pyrit pyrit
pyrite_publisher pyrite-publisher
pysam python-pysam
pysaml2 python-pysaml2
pysane python-sane
pysatellites python-satellites
pyscanfcs pyscanfcs
pyscard python-pyscard
pyscript python-pyscript
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-pysqlite2
pysrs python-srs
pysrt python-pysrt
pyst python-pyst
pystache python-pystache
pysubnettree python-subnettree
pysurfer python-surfer
pytagsfs pytagsfs
pytc python-pytc
pytcpwrap python-tcpwrap
pyte python-pyte
pytest python-pytest
pytest_cov python-pytest-cov
pytest_instafail python-pytest-instafail
pytest_xdist python-pytest-xdist
pyth python-pyth
python3_ldap python-ldap3
python_Levenshtein python-levenshtein
python_aalib python-aalib
python_application python-application
python_apt python-apt
python_ase python-ase
python_augeas python-augeas
python_barbicanclient python-barbicanclient
python_bibtex python-bibtex
python_bitbucket python-bitbucket
python_catcher python-catcher
python_ceilometerclient python-ceilometerclient
python_cinderclient python-cinderclient
python_cloudfiles python-cloudfiles
python_corepywrap python-corepywrap
python_cpl python-cpl
python_cream python-cream
python_crontab python-crontab
python_dateutil python-dateutil
python_dbusmock python-dbusmock
python_debian python-debian
python_default_encoding python-freeipa
python_designateclient python-designateclient
python_distutils_extra python-distutils-extra
python_djvulibre python-djvu
python_espeak python-espeak
python_evtx python-evtx
python_exconsole python-exconsole
python_fcgi python-fcgi
python_fedora python-fedora
python_freecontact python-freecontact
python_geoclue python-geoclue
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_heatclient python-heatclient
python_hglib python-hglib
python_igraph python-igraph
python_irclib python-irclib
python_ironicclient python-ironicclient
python_jenkins python-jenkins
python_jswebkit python-jswebkit
python_keyczar python-keyczar
python_keystoneclient python-keystoneclient
python_ldap python-ldap
python_libdiscid python-libdiscid
python_libgearman python-gearman.libgearman
python_libguess python-libguess
python_libtorrent python-libtorrent
python_logging_extra python-loggingx
python_lzo python-lzo
python_memcached python-memcache
python_messaging python-messaging
python_mimeparse python-mimeparse
python_mk_livestatus python-mk-livestatus
python_mpd python-mpd
python_networkmanager python-networkmanager
python_neutronclient python-neutronclient
python_nmap python-nmap
python_novaclient python-novaclient
python_novnc python-novnc
python_nss python-nss
python_ntlm python-ntlm
python_openid python-openid
python_openstackclient python-openstackclient
python_passfd python-passfd
python_poppler_qt4 python-poppler-qt4
python_potr python-potr
python_presage python-presage
python_pskc python-pskc
python_ptrace python-ptrace
python_saharaclient python-saharaclient
python_savannaclient python-savannaclient
python_seamicroclient python-seamicroclient
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_termstyle python-termstyle
python_tldap python-tldap
python_troveclient python-troveclient
python_tuskarclient python-tuskarclient
python_tvrage python-tvrage
python_twitter python-twitter
python_unshare python-unshare
python_xmltv python-xmltv
python_xmp_toolkit python-libxmp
pytidylib python-tidylib
pytils python-pytils
pytimechart pytimechart
pytools python-pytools
pytz python-tz
pyudev python-pyudev
pyusb python-usb
pyviennacl python-pyviennacl
pyvmomi python-pyvmomi
pyvorbis python-pyvorbis
pywapi python-pywapi
pywbem python-pywbem
pywcs python-pywcs
pyweblib python-weblib
pyxattr python-pyxattr
pyxdg python-xdg
pyxenstore python-pyxenstore
pyxmpp python-pyxmpp
pyxnat python-pyxnat
pyxp wmii
pyzmq python-zmq
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
quantities python-quantities
queuelib python-queuelib
quisk quisk
quodlibet exfalso
rabbitvcs rabbitvcs-core
radiotray radiotray
radix python-radix
ranger ranger
rarfile python-rarfile
rawdog rawdog
rdflib python-rdflib
rdiff_backup rdiff-backup
rebuildd rebuildd
recaptcha_client python-recaptcha
reclass python-reclass
reconfigure python-reconfigure
redis python-redis
rednose python-rednose
regex python-regex
relatorio python-relatorio
releases python-releases
remuco remuco-base
reportbug python-reportbug
reportlab python-reportlab
repoze.lru python-repoze.lru
repoze.sphinx.autointerface python-repoze.sphinx.autointerface
repoze.tm2 python-repoze.tm2
repoze.what python-repoze.what
repoze.what.plugins.sql python-repoze.what-plugins
repoze.what.plugins.xml python-repoze.what-plugins
repoze.what_pylons python-repoze.what-plugins
repoze.what_quickstart python-repoze.what-plugins
repoze.who python-repoze.who
repoze.who.plugins.ldap python-repoze.who-plugins
repoze.who.plugins.openid python-repoze.who-plugins
repoze.who.plugins.sa python-repoze.who-plugins
repoze.who_friendlyform python-repoze.who-plugins
repoze.who_testutil python-repoze.who-plugins
requestbuilder python-requestbuilder
requests python-requests
requests_aws python-awsauth
requests_kerberos python-requests-kerberos
requests_mock python-requests-mock
requests_oauthlib python-requests-oauthlib
responses python-responses
restkit python-restkit
retrying python-retrying
rfc3986 python-rfc3986
rfoo python-rfoo
rgain python-rgain
rhn python-rhn
ricky python-ricky
roman python-roman
rope python-rope
ropemacs python-ropemacs
ropemode python-ropemode
roundup roundup
rpl rpl
rply python-rply
rpy python-rpy
rpy2 python-rpy2
rsa python-rsa
rst2pdf rst2pdf
rtslib_fb python-rtslib-fb
rubber rubber
ryu python-ryu
salt salt-common
sardana python-sardana
scapy python-scapy
scgi python-scgi
schroot python-schroot
scikit_image python-skimage
scikit_learn python-sklearn
scipy python-scipy
sclapp python-sclapp
scoop python-scoop
screenkey screenkey
scripttest python-scripttest
scrypt python-scrypt
seaborn python-seaborn
securepass python-securepass
seivot seivot
semver python-semver
sensitivetickets trac-sensitivetickets
seqdiag python-seqdiag
servefile servefile
service_identity python-service-identity
setproctitle python-setproctitle
setuptools_git python-setuptools-git
sftp_cloudfs sftpcloudfs
sh python-sh
shadowsocks shadowsocks
shedskin shedskin
shelltoolbox python-shelltoolbox
shortuuid python-shortuuid
simplegeneric python-simplegeneric
simplejson python-simplejson
simplemediawiki python-simplemediawiki
singledispatch python-singledispatch
sireader python-sireader
six python-six
slapos.core slapos-client
sleekxmpp python-sleekxmpp
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
smbus python-smbus
smmap python-smmap
smstrade python-smstrade
snimpy snimpy
snmpsim snmpsim
socketIO_client python-socketio-client
socketpool python-socketpool
sockjs_tornado python-sockjs-tornado
sorl_thumbnail python-sorl-thumbnail
soundgrain soundgrain
sourcecodegen python-sourcecodegen
spambayes spambayes
speaklater python-speaklater
spectacle spectacle
specto specto
speedtest_cli speedtest-cli
sphere python-sphere
sphinx_paramlinks python-sphinx-paramlinks
sphinx_rtd_theme python-sphinx-rtd-theme
sphinx_testing python-sphinx-testing
sphinxcontrib_actdiag python-sphinxcontrib.actdiag
sphinxcontrib_blockdiag python-sphinxcontrib.blockdiag
sphinxcontrib_docbookrestapi python-sphinxcontrib.docbookrestapi
sphinxcontrib_httpdomain python-sphinxcontrib.httpdomain
sphinxcontrib_issuetracker python-sphinxcontrib.issuetracker
sphinxcontrib_nwdiag python-sphinxcontrib.nwdiag
sphinxcontrib_pecanwsme python-sphinxcontrib-pecanwsme
sphinxcontrib_phpdomain python-sphinxcontrib.phpdomain
sphinxcontrib_plantuml python-sphinxcontrib.plantuml
sphinxcontrib_programoutput python-sphinxcontrib.programoutput
sphinxcontrib_seqdiag python-sphinxcontrib.seqdiag
sphinxcontrib_spelling python-sphinxcontrib.spelling
sphinxcontrib_youtube python-sphinxcontrib.youtube
springpython python-springpython
sprox python-sprox
sptest python-sptest
spyder python-spyderlib
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
ssh_import_id ssh-import-id
stackapplet stackapplet
starpy python-starpy
statsd python-statsd
statsmodels python-statsmodels
stdeb python-stdeb
steadymark python-steadymark
stem python-stem
stepic python-stepic
stevedore python-stevedore
stgit stgit
stomper python-stomper
storm python-storm
stsci.distutils python-stsci.distutils
subliminal python-subliminal
subvertpy python-subvertpy
suds python-suds
summain summain
sunlight python-sunlight
supervisor supervisor
sure python-sure
suricatasc suricata
svnmailer svnmailer
swift python-swift
swift3 swift-plugin-s3
swiftsc python-swiftsc
sympy python-sympy
synaptiks kde-config-touchpad
system_storage_manager system-storage-manager
sysv_ipc python-sysv-ipc
tables python-tables
tablib python-tablib
tagpy python-tagpy
targetcli targetcli
taskflow python-taskflow
taurus python-taurus
tblib python-tblib
tcm lio-utils
tcosconfig tcosconfig
templayer python-templayer
termcolor python-termcolor
testrepository python-testrepository
testresources python-testresources
testscenarios python-testscenarios
testtools python-testtools
textile python-textile
texttable python-texttable
tftpy python-tftpy
tg.devtools python-tg.devtools
tgext.admin python-tgext.admin
tgext.crud python-tgext.admin
thrift python-thrift
tilelite tilelite
tkSnack python-tksnack
tnetstring python-tnetstring
tomahawk python-tomahawk
tooz python-tooz
topia.termextract python-topia.termextract
toposort python-toposort
tornado python-tornado
tortoisehg tortoisehg
totalopenstation totalopenstation
tracing python-tracing
traits python-traits
traitsui python-traitsui
transaction python-transaction
transifex_client transifex-client
translate_toolkit translate-toolkit
translationstring python-translationstring
translitcodec python-translitcodec
transmissionrpc python-transmissionrpc
trash_cli trash-cli
tripleo_heat_templates python-tripleo-heat-templates
tripleo_image_elements python-tripleo-image-elements
trollius python-trollius
trove python-trove
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_dunning tryton-modules-account-dunning
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_sepa tryton-modules-account-payment-sepa
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_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_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_company tryton-modules-company
trytond_company_work_time tryton-modules-company-work-time
trytond_country tryton-modules-country
trytond_currency tryton-modules-currency
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_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_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_shipment_cost tryton-modules-purchase-shipment-cost
trytond_sale tryton-modules-sale
trytond_sale_credit_limit tryton-modules-sale-credit-limit
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_shipment_cost tryton-modules-sale-shipment-cost
trytond_sale_shipment_grouping tryton-modules-sale-shipment-grouping
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_package tryton-modules-stock-package
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
ttb ttb
ttystatus python-ttystatus
turpial turpial
turses turses
tuskar python-tuskar
tuskar_ui python-tuskar-ui
tw.forms python-toscawidgets
tweepy python-tweepy
twill python-twill
twython python-twython
txAWS python-txaws
txLibravatar python-txlibravatar
txWS python-txws
txZMQ python-txzmq
txosc python-txosc
txsocksx python-txsocksx
txtorcon python-txtorcon
txzookeeper python-txzookeeper
typogrify python-typogrify
u1db python-u1db
uTidylib python-utidylib
ubuntu_dev_tools ubuntu-dev-tools
ucltip python-ucltip
udev_discover udev-discover
ufw python-ufw
uncertainties python-uncertainties
unicodecsv python-unicodecsv
unittest_xml_reporting python-xmlrunner
uritemplate python-uritemplate
urllib3 python-urllib3
urlscan urlscan
urwid python-urwid
urwid_satext python-urwid-satext
validictory python-validictory
vamos undertaker
van.pydeb python-van.pydeb
vatnumber python-vatnumber
vcversioner python-vcversioner
venusian python-venusian
versiontools python-versiontools
versuchung python-versuchung
viper python-viper
virtaal virtaal
virtualbricks virtualbricks
virtualenv python-virtualenv
virtualenv_clone virtualenv-clone
virtualenvwrapper virtualenvwrapper
visionegg python-visionegg
volatility volatility
voluptuous python-voluptuous
vsgui python-vsgui
w3lib python-w3lib
wadllib python-wadllib
waitress python-waitress
wammu wammu
wapiti wapiti
warlock python-warlock
watchdog python-watchdog
web.py python-webpy
webassets python-webassets
webcolors python-webcolors
weboob python-weboob
websocket_client python-websocket
websockify websockify
whatmaps whatmaps
wheel python-wheel
whisper python-whisper
whois python-whois
whyteboard whyteboard
wicd python-wicd
wikipediafs wikipediafs
winpdb winpdb
wit python-wit
withsqlite python-withsqlite
wokkel python-wokkel
wrapt python-wrapt
ws4py python-ws4py
wsgi_intercept python-wsgi-intercept
wsgilog python-wsgilog
wstools python-wstools
wxGlade python-wxglade
wxPython_common python-wxgtk2.8
wxmpl python-wxmpl
x2go python-x2go
xapers xapers
xappy python-xappy
xattr python-xattr
xdo python-xdo
xdot xdot
xe python-xe
xgflib xgridfit
xlrd python-xlrd
xlwt python-xlwt
xmds2 xmds2
xml_marshaller python-xmlmarshaller
xmltodict python-xmltodict
xmms2tray xmms2tray
xpra xpra
xtermcolor python-xtermcolor
xvfbwrapper python-xvfbwrapper
xxdiff_scripts xxdiff-scripts
yaql python-yaql
yara_python python-yara
yenc python-yenc
yokadi yokadi
youtube_dl youtube-dl
yum_metadata_parser python-sqlitecachec
zake python-zake
zc.buildout python-zc.buildout
zc.lockfile python-zc.lockfile
zdaemon python-zdaemon
zeitgeist_explorer zeitgeist-explorer
zenmap zenmap
zfec python-zfec
zim zim
zinnia_python python-zinnia
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