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
|
pil python3-pil
Pillow python3-pil
setuptools python3-pkg-resources
argparse python3 (>= 3.2)
3to2 python3-3to2
APLpy python3-aplpy
APScheduler python3-apscheduler
BTrees python3-btrees
Babel python3-babel
Beaker python3-beaker
Bottleneck python3-bottleneck
Brlapi python3-brlapi
Brotli python3-brotli
CDApplet cairo-dock-dbus-plug-in-interface-python
CDBashApplet cairo-dock-dbus-plug-in-interface-python
CMOR python3-cmor
CacheControl python3-cachecontrol
CairoSVG python3-cairosvg
Cartopy python3-cartopy
CedarBackup3 cedar-backup3
Cerealizer python3-cerealizer
Chameleon python3-chameleon
CherryPy python3-cherrypy3
Coffin python3-coffin
CommonMark_bkrs python3-commonmark-bkrs
ConfigArgParse python3-configargparse
ConsensusCore python3-pbconsensuscore
Cython cython3
Decopy decopy
DendroPy python3-dendropy
Django python3-django
EasyProcess python3-easyprocess
EbookLib python3-ebooklib
ExifRead python3-exif
FIAT python3-fiat
Faker python3-fake-factory
FeinCMS python3-django-feincms
Fiona python3-fiona
Flask python3-flask
Flask_API python3-flask-api
Flask_AutoIndex python3-flask-autoindex
Flask_Babel python3-flask-babel
Flask_Bcrypt python3-flask-bcrypt
Flask_Compress python3-flask-compress
Flask_FlatPages python3-flask-flatpages
Flask_Limiter python3-flask-limiter
Flask_Login python3-flask-login
Flask_Migrate python3-flask-migrate
Flask_OpenID python3-flask-openid
Flask_Principal python3-flask-principal
Flask_RESTful python3-flask-restful
Flask_SQLAlchemy python3-flask-sqlalchemy
Flask_Script python3-flask-script
Flask_Silk python3-flask-silk
Flask_Testing python3-flask-testing
Flask_WTF python3-flaskext.wtf
FormEncode python3-formencode
Frozen_Flask python3-frozen-flask
GDAL python3-gdal
GaussSum gausssum
Genshi python3-genshi
GeoIP python3-geoip
Ghost.py python3-ghost
GitPython python3-git
GladTeX python3-gleetex
Glances glances
Gyoto python3-gyoto
Gyoto_lorene python3-gyoto
Gyoto_std python3-gyoto
HeapDict python3-heapdict
IPy python3-ipy
JACK_Client python3-jack-client
Jinja2 python3-jinja2
JsonTest python3-jsontest
Kajiki python3-kajiki
Kivy python3-kivy
Kyoto_Cabinet python3-kyotocabinet
LEPL python3-lepl
Lasagne python3-lasagne
LibAppArmor python3-libapparmor
Logbook python3-logbook
MDP python3-mdp
MIDIUtil python3-midiutil
MPD_sima mpd-sima
Magics python3-magics++
Mako python3-mako
MapProxy python3-mapproxy
Markdown python3-markdown
MarkupSafe python3-markupsafe
Markups python3-markups
MechanicalSoup python3-mechanicalsoup
Mnemosyne mnemosyne
Nautilus_scripts_manager nautilus-scripts-manager
OSMAlchemy python3-osmalchemy
OWSLib python3-owslib
OdooRPC python3-odoorpc
OnionBalance onionbalance
Paste python3-paste
PasteDeploy python3-pastedeploy
Pillow python3-pil
Pint python3-pint
Plinth plinth
PuLP python3-pulp
PyAVM python3-pyavm
PyAudio python3-pyaudio
PyChromecast python3-pychromecast
PyDispatcher python3-pydispatch
PyGithub python3-github
PyGreSQL python3-pygresql
PyHamcrest python3-hamcrest
PyICU python3-icu
PyJWT python3-jwt
PyKCS11 python3-pykcs11
PyKMIP python3-pykmip
PyLD python3-pyld
PyMca5 python3-pymca5
PyMySQL python3-pymysql
PyNLPl python3-pynlpl
PyNaCl python3-nacl
PyOpenGL python3-opengl
PyPDF2 python3-pypdf2
PyPump python3-pypump
PyQSO pyqso
PyRSS2Gen python3-pyrss2gen
PySAL python3-pysal
PySDL2 python3-sdl2
PySocks python3-socks
PyStemmer python3-stemmer
PyTrie python3-trie
PyUtilib python3-pyutilib
PyVCF python3-pyvcf
PyVISA python3-pyvisa
PyVISA_py python3-pyvisa-py
PyVirtualDisplay python3-pyvirtualdisplay
PyWavelets python3-pywt
PyX python3-pyx
PyXB python3-pyxb
PyYAML python3-yaml
Pygments python3-pygments
Pykka python3-pykka
Pyomo pyomo
Pyro4 python3-pyro4
Pysolar python3-pysolar
PythonQwt python3-qwt
Python_fontconfig python3-fontconfig
QtAwesome python3-qtawesome
QtPy python3-qtpy
Radicale python3-radicale
Recoll python3-recoll
Routes python3-routes
Rtree python3-rtree
SPARQLWrapper python3-sparqlwrapper
SQLAlchemy python3-sqlalchemy
SQLAlchemy_Utils python3-sqlalchemy-utils
SQLObject python3-sqlobject
SecretStorage python3-secretstorage
Shapely python3-shapely
Signaller python3-signaller
SimPy python3-simpy
SoftLayer python3-softlayer
SoundFile python3-soundfile
Sphinx python3-sphinx
Tempita python3-tempita
Theano python3-theano
TornadIO2 python3-tornadio2
Twisted python3-twisted
UFL python3-ufl
URLObject python3-urlobject
Unidecode python3-unidecode
WALinuxAgent waagent
WSME python3-wsme
WTForms python3-wtforms
Wand python3-wand
WebOb python3-webob
WebTest python3-webtest
Werkzeug python3-werkzeug
Whoosh python3-whoosh
XStatic python3-xstatic
XStatic_Angular python3-xstatic-angular
XStatic_Angular_Bootstrap python3-xstatic-angular-bootstrap
XStatic_Angular_Cookies python3-xstatic-angular-cookies
XStatic_Angular_FileUpload python3-xstatic-angular-fileupload
XStatic_Angular_Gettext python3-xstatic-angular-gettext
XStatic_Angular_Mock python3-xstatic-angular-mock
XStatic_Angular_Schema_Form python3-xstatic-angular-schema-form
XStatic_Angular_lrdragndrop python3-xstatic-angular-lrdragndrop
XStatic_Bootstrap_Datepicker python3-xstatic-bootstrap-datepicker
XStatic_Bootstrap_SCSS python3-xstatic-bootstrap-scss
XStatic_D3 python3-xstatic-d3
XStatic_Font_Awesome python3-xstatic-font-awesome
XStatic_Hogan python3-xstatic-hogan
XStatic_JQuery.Bootstrap.Wizard python3-xstatic-jquery.bootstrap.wizard
XStatic_JQuery.TableSorter python3-xstatic-jquery.tablesorter
XStatic_JQuery.quicksearch python3-xstatic-jquery.quicksearch
XStatic_JQuery_Migrate python3-xstatic-jquery-migrate
XStatic_JSEncrypt python3-xstatic-jsencrypt
XStatic_Jasmine python3-xstatic-jasmine
XStatic_Magic_Search python3-xstatic-magic-search
XStatic_QUnit python3-xstatic-qunit
XStatic_Rickshaw python3-xstatic-rickshaw
XStatic_Spin python3-xstatic-spin
XStatic_bootswatch python3-xstatic-bootswatch
XStatic_jQuery python3-xstatic-jquery
XStatic_jquery_ui python3-xstatic-jquery-ui
XStatic_mdi python3-xstatic-mdi
XStatic_objectpath python3-xstatic-objectpath
XStatic_roboto_fontface python3-xstatic-roboto-fontface
XStatic_smart_table python3-xstatic-smart-table
XStatic_term.js python3-xstatic-term.js
XStatic_tv4 python3-xstatic-tv4
XlsxWriter python3-xlsxwriter
Yapsy python3-yapsy
ZConfig python3-zconfig
_lxc python3-lxc
abstract_rendering python3-abstract-rendering
acme python3-acme
acme_tiny acme-tiny
acora python3-acora
actdiag python3-actdiag
activipy python3-activipy
adal python3-adal
adios python3-adios
adios_mpi python3-adios
admesh python3-admesh
aeidon python3-aeidon
afew afew
affine python3-affine
aiocoap python3-aiocoap
aiodns python3-aiodns
aioeventlet python3-aioeventlet
aiohttp python3-aiohttp
aiohttp_jinja2 python3-aiohttp-jinja2
aiohttp_mako python3-aiohttp-mako
aiopg python3-aiopg
aioredis python3-aioredis
aioxmlrpc python3-aioxmlrpc
aiozmq python3-aiozmq
alabaster python3-alabaster
alembic python3-alembic
altgraph python3-altgraph
amqp python3-amqp
amqplib python3-amqplib
aniso8601 python3-aniso8601
ansible_tower_cli ansible-tower-cli
anyjson python3-anyjson
aodhclient python3-aodhclient
apache_libcloud python3-libcloud
api_hour python3-api-hour
apipkg python3-apipkg
apparmor python3-apparmor
appdirs python3-appdirs
applicationinsights python3-applicationinsights
apsw python3-apsw
apt_clone apt-clone
apt_venv apt-venv
argcomplete python3-argcomplete
argh python3-argh
args python3-args
ariba ariba
arpy python3-arpy
arrayfire python3-arrayfire
arrow python3-arrow
artifacts python3-artifacts
asciinema asciinema
asdf python3-asdf
ase python3-ase
assword assword
astLib python3-astlib
astor python3-astor
astroML python3-astroml
astroML_addons python3-astroml-addons
astroid python3-astroid
astroplan python3-astroplan
astropy python3-astropy
astropy_helpers python3-astropy-helpers
astroquery python3-astroquery
astroscrappy python3-astroscrappy
async python3-async
async_timeout python3-async-timeout
asyncpg python3-asyncpg
asyncssh python3-asyncssh
atomicwrites python3-atomicwrites
atpublic python3-public
attrs python3-attr
aubio python3-aubio
audioread python3-audioread
audiotools audiotools
autobahn python3-autobahn
automaton python3-automaton
avro_python3 python3-avro
aws_shell aws-shell
awscli awscli
azure python3-azure
azure_batch python3-azure
azure_cli azure-cli
azure_cli_component azure-cli
azure_cli_configure azure-cli
azure_cli_core azure-cli
azure_cli_feedback azure-cli
azure_cli_iot azure-cli
azure_cli_keyvault azure-cli
azure_cli_network azure-cli
azure_cli_profile azure-cli
azure_cli_redis azure-cli
azure_cli_resource azure-cli
azure_cli_role azure-cli
azure_cli_storage azure-cli
azure_cli_taskhelp azure-cli
azure_cli_vm azure-cli
azure_cli_webapp azure-cli
azure_common python3-azure
azure_graphrbac python3-azure
azure_mgmt python3-azure
azure_mgmt_authorization python3-azure
azure_mgmt_batch python3-azure
azure_mgmt_cdn python3-azure
azure_mgmt_cognitiveservices python3-azure
azure_mgmt_commerce python3-azure
azure_mgmt_compute python3-azure
azure_mgmt_dns python3-azure
azure_mgmt_iothub python3-azure
azure_mgmt_keyvault python3-azure
azure_mgmt_logic python3-azure
azure_mgmt_network python3-azure
azure_mgmt_notificationhubs python3-azure
azure_mgmt_nspkg python3-azure
azure_mgmt_powerbiembedded python3-azure
azure_mgmt_redis python3-azure
azure_mgmt_resource python3-azure
azure_mgmt_scheduler python3-azure
azure_mgmt_storage python3-azure
azure_mgmt_trafficmanager python3-azure
azure_mgmt_web python3-azure
azure_nspkg python3-azure
azure_servicebus python3-azure
azure_servicemanagement_legacy python3-azure
azure_storage python3-azure-storage
babelfish python3-babelfish
backup2swift python3-backup2swift
backupchecker backupchecker
bandit python3-bandit
barectf python3-barectf
basemap python3-mpltoolkits.basemap
bashate python3-bashate
bcdoc python3-bcdoc
bcrypt python3-bcrypt
beanbag python3-beanbag
beautifulsoup4 python3-bs4
betamax python3-betamax
bibtexparser python3-bibtexparser
billiard python3-billiard
binaryornot python3-binaryornot
binwalk python3-binwalk
bioblend python3-bioblend
biom_format python3-biom-format
biopython python3-biopython
biplist python3-biplist
bitarray python3-bitarray
bitbucket_api python3-bitbucket-api
bitstring python3-bitstring
bitstruct python3-bitstruct
bleach python3-bleach
blessed python3-blessed
blessings python3-blessings
blinker python3-blinker
blist python3-blist
blockdiag python3-blockdiag
blosc python3-blosc
boltons python3-boltons
borgbackup borgbackup
boto python3-boto
boto3 python3-boto3
botocore python3-botocore
bottle python3-bottle
bottle_beaker python3-bottle-beaker
bottle_cork python3-bottle-cork
bottle_sqlite python3-bottle-sqlite
bpython bpython3
brainstorm python3-brainstorm
braintree python3-braintree
breathe python3-breathe
brebis brebis
bsddb3 python3-bsddb3
bugwarrior bugwarrior
buku buku
bumpversion bumpversion
burrito python3-burrito
bz2file python3-bz2file
cached_property python3-cached-property
cachetools python3-cachetools
caffeine caffeine
cairocffi python3-cairocffi
canmatrix python3-canmatrix
cappuccino cappuccino
capstone python3-capstone
cassandra_driver python3-cassandra
castellan python3-castellan
cbor python3-cbor
ccdproc python3-ccdproc
cclib python3-cclib
cdist cdist
cdo python3-cdo
ceilometermiddleware python3-ceilometermiddleware
celery python3-celery
celery_haystack python3-django-celery-haystack
cement python3-cement
certifi python3-certifi
cffi python3-cffi
changelog python3-changelog
characteristic python3-characteristic
chardet python3-chardet
chartkick python3-chartkick
checkbox_ng python3-checkbox-ng
checkbox_support python3-checkbox-support
cigi python3-cigi
circlator circlator
circuits python3-circuits
citeproc_py python3-citeproc
ck python3-ck
click python3-click
click_log python3-click-log
click_plugins python3-click-plugins
click_threading python3-click-threading
cliff python3-cliff
cligh cligh
cligj python3-cligj
clint python3-clint
cloud_init cloud-init
cloud_sptheme python3-cloud-sptheme
cloudpickle python3-cloudpickle
cmd2 python3-cmd2
coards python3-coards
cobra python3-cobra
codicefiscale python3-codicefiscale
colander python3-colander
colorama python3-colorama
colorlog python3-colorlog
colorspacious python3-colorspacious
configobj python3-configobj
configshell_fb python3-configshell-fb
confluent_kafka python3-confluent-kafka
constantly python3-constantly
construct python3-construct
contextlib2 python3-contextlib2
cookiecutter python3-cookiecutter
cookies python3-cookies
cotyledon python3-cotyledon
cov_core python3-cov-core
coverage python3-coverage
cppman cppman
cracklib python3-cracklib
cram python3-cram
crank python3-crank
crcmod python3-crcmod
croniter python3-croniter
cryptography python3-cryptography
cryptography_vectors python3-cryptography-vectors
cs python3-cs
csb python3-csb
csscompressor python3-csscompressor
cssmin python3-cssmin
cssselect python3-cssselect
cssutils python3-cssutils
csvkit python3-csvkit
ctop ctop
cupshelpers python3-cupshelpers
cursive python3-cursive
curtsies python3-curtsies
cutadapt python3-cutadapt
cycler python3-cycler
cymruwhois python3-cymruwhois
d2to1 python3-d2to1
daemonize python3-daemonize
darts.util.lru python3-darts.lib.utils.lru
db2twitter db2twitter
dbf python3-dbf
dcos python3-dcos
ddt python3-ddt
deap python3-deap
debdry debdry
debiancontributors python3-debiancontributors
debmake debmake
debocker debocker
debtags debtags
debtcollector python3-debtcollector
decorator python3-decorator
defer python3-defer
defusedxml python3-defusedxml
demjson python3-demjson
descartes python3-descartes
devscripts devscripts
dexml python3-dexml
dfdatetime python3-dfdatetime
dfwinreg python3-dfwinreg
diaspy_api python3-diaspy
dib_utils python3-dib-utils
dictobj python3-dictobj
dicttoxml python3-dicttoxml
diff_match_patch python3-diff-match-patch
diffoscope diffoscope
dijitso python3-dijitso
dill python3-dill
dirspec python3-dirspec
dirtbike dirtbike
distlib python3-distlib
distro python3-distro
distro_info python3-distro-info
django_admin_sortable python3-django-adminsortable
django_ajax_selects python3-ajax-select
django_appconf python3-django-appconf
django_assets python3-django-assets
django_babel python3-django-babel
django_bitfield python3-django-bitfield
django_bootstrap_form python3-bootstrapform
django_braces python3-django-braces
django_cas_client python3-django-casclient
django_celery python3-django-celery
django_celery_transactions python3-django-celery-transactions
django_classy_tags python3-django-classy-tags
django_compat python3-django-compat
django_compressor python3-django-compressor
django_contact_form python3-django-contact-form
django_cors_headers python3-django-cors-headers
django_countries python3-django-countries
django_crispy_forms python3-django-crispy-forms
django_debug_toolbar python3-django-debug-toolbar
django_discover_runner python3-django-discover-runner
django_downloadview python3-django-downloadview
django_environ python3-django-environ
django_etcd_settings python3-django-etcd-settings
django_extensions python3-django-extensions
django_filter python3-django-filters
django_floppyforms python3-django-floppyforms
django_formtools python3-django-formtools
django_fsm python3-django-fsm
django_fsm_admin python3-django-fsm-admin
django_gravatar2 python3-django-gravatar2
django_guardian python3-django-guardian
django_haystack python3-django-haystack
django_hijack python3-django-hijack
django_housekeeping python3-django-housekeeping
django_hstore python3-django-hstore
django_html_sanitizer python3-django-html-sanitizer
django_impersonate python3-django-impersonate
django_jinja python3-django-jinja
django_jsonfield python3-django-jsonfield
django_macaddress python3-django-macaddress
django_maintenancemode python3-django-maintenancemode
django_markupfield python3-django-markupfield
django_memoize python3-django-memoize
django_model_utils python3-django-model-utils
django_modeltranslation python3-django-modeltranslation
django_mptt python3-django-mptt
django_navtag python3-django-navtag
django_nose python3-django-nose
django_notification python3-django-notification
django_oauth_toolkit python3-django-oauth-toolkit
django_openstack_auth python3-django-openstack-auth
django_ordered_model python3-django-ordered-model
django_organizations python3-django-organizations
django_overextends python3-django-overextends
django_picklefield python3-django-picklefield
django_pipeline python3-django-pipeline
django_polymorphic python3-django-polymorphic
django_prometheus python3-django-prometheus
django_pyscss python3-django-pyscss
django_python3_ldap python3-django-python3-ldap
django_ratelimit python3-django-ratelimit
django_recurrence python3-django-recurrence
django_redis python3-django-redis
django_redis_sessions python3-django-redis-sessions
django_registration python3-django-registration
django_restricted_resource python3-django-restricted-resource
django_reversion python3-django-reversion
django_sekizai python3-django-sekizai
django_session_security python3-django-session-security
django_setuptest python3-django-setuptest
django_shortuuidfield python3-django-shortuuidfield
django_simple_captcha python3-django-captcha
django_simple_redis_admin python3-django-redis-admin
django_sitetree python3-django-sitetree
django_sortedm2m python3-sortedm2m
django_stronghold python3-django-stronghold
django_tables2 python3-django-tables2
django_taggit python3-django-taggit
django_tastypie python3-django-tastypie
django_testproject python3-django-testproject
django_testscenarios python3-django-testscenarios
django_treebeard python3-django-treebeard
django_uwsgi python3-django-uwsgi
django_webpack_loader python3-django-webpack-loader
django_websocket_redis python3-django-websocket-redis
django_wkhtmltopdf python3-django-wkhtmltopdf
django_xmlrpc python3-django-xmlrpc
djangocms_admin_style python3-djangocms-admin-style
djangorestframework python3-djangorestframework
djangorestframework_gis python3-djangorestframework-gis
djoser python3-djoser
djvubind djvubind
dkimpy python3-dkim
dna_jellyfish python3-dna-jellyfish
dnspython python3-dnspython
dnsq python3-dnsq
doc8 python3-doc8
docker_py python3-docker
docker_pycreds python3-dockerpycreds
dockerpty python3-dockerpty
docopt python3-docopt
docutils python3-docutils
dodgy dodgy
dogpile.cache python3-dogpile.cache
doit python3-doit
dominate python3-dominate
doublex python3-doublex
drf_fsm_transitions python3-djangorestframework-fsm-transitions
drf_generators python3-djangorestframework-generators
drf_haystack python3-djangorestframework-haystack
drizzle python3-drizzle
drslib python3-drslib
dtcwt python3-dtcwt
duecredit python3-duecredit
dugong python3-dugong
dulwich python3-dulwich
easygui python3-easygui
easywebdav python3-easywebdav
eccodes python3-eccodes
ecdsa python3-ecdsa
efilter python3-efilter
elasticsearch python3-elasticsearch
elasticsearch_curator python3-elasticsearch-curator
emcee python3-emcee
empy python3-empy
enjarify enjarify
entrypoints python3-entrypoints
enzyme python3-enzyme
ephem python3-ephem
esmre python3-esmre
et_xmlfile python3-et-xmlfile
eventlet python3-eventlet
ewmh python3-ewmh
exam python3-exam
execnet python3-execnet
expeyes python-expeyes
expiringdict python3-expiringdict
extras python3-extras
fabio python3-fabio
factory_boy python3-factory-boy
fades fades
fail2ban fail2ban
fakeredis python3-fakeredis
fakesleep python3-fakesleep
falcon python3-falcon
fann2 python3-fann2
fast5 python3-fast5
fastcluster python3-fastcluster
fasteners python3-fasteners
fastimport python3-fastimport
fastkml python3-fastkml
fdb python3-fdb
fdroidserver fdroidserver
feather_format python3-feather-format
feedgenerator python3-feedgenerator
feedparser python3-feedparser
ferretmagic python3-ferret
file_encryptor python3-file-encryptor
file_magic python3-magic
filelock python3-filelock
first python3-first
fisx python3-fisx
fitsio python3-fitsio
fiu python3-fiu
fixtures python3-fixtures
flake8 python3-flake8
flaky python3-flaky
flask_multistatic python3-flaskext.multistatic
flask_rdf python3-flask-rdf
flexmock python3-flexmock
flickrapi python3-flickrapi
flufl.bounce python3-flufl.bounce
flufl.enum python3-flufl.enum
flufl.i18n python3-flufl.i18n
flufl.lock python3-flufl.lock
flufl.testing python3-flufl.testing
freeopcua python3-opcua
freezegun python3-freezegun
frozendict python3-frozendict
fudge python3-fudge
funcparserlib python3-funcparserlib
funcsigs python3-funcsigs
future python3-future
futurist python3-futurist
fuzzywuzzy python3-fuzzywuzzy
fysom python3-fysom
gTranscribe gtranscribe
gabbi python3-gabbi
galileo galileo
galpy python3-galpy
gccjit python3-gccjit
gcircle python3-ferret
gear python3-gear
genty python3-genty
geographiclib python3-geographiclib
geoip2 python3-geoip2
geojson python3-geojson
geolinks python3-geolinks
geopandas python3-geopandas
geopy python3-geopy
germinate python3-germinate
gerritlib python3-gerritlib
getdns python3-getdns
gevent python3-gevent
gimmik python3-gimmik
ginga python3-ginga
git_build_recipe git-build-recipe
git_os_job python3-git-os-job
gitdb2 python3-gitdb
glance_store python3-glance-store
glue glue-sprite
glueviz python3-glue
gmplot python3-gmplot
gmpy2 python3-gmpy2
gnocchiclient python3-gnocchiclient
google_api_python_client python3-googleapi
google_apputils python3-google-apputils
googlecloudapis python3-googlecloudapis
gpg python3-gpg
gphoto2_cffi python3-gphoto2cffi
gpxpy python3-gpxpy
gramps gramps
graphite_api graphite-api
graphviz python3-graphviz
graypy python3-graypy
greenlet python3-greenlet
gssapi python3-gssapi
gsw python3-gsw
gtimelog gtimelog
guacamole python3-guacamole
guess_language_spirit python3-guess-language
guessit python3-guessit
guidata python3-guidata
guiqwt python3-guiqwt
gumbo python3-gumbo
gunicorn python3-gunicorn
gvb gvb
h2 python3-h2
h5py python3-h5py
hacking python3-hacking
haproxy_log_analysis python3-haproxy-log-analysis
hashID hashid
hashids python3-hashids
hdf5storage python3-hdf5storage
healpy python3-healpy
hidapi_cffi python3-hidapi
hiredis python3-hiredis
hiro python3-hiro
hkdf python3-hkdf
hl7 python3-hl7
howdoi howdoi
hpack python3-hpack
hplefthandclient python3-hplefthandclient
html2text python3-html2text
html5lib python3-html5lib
http_parser python3-http-parser
httpbin python3-httpbin
httplib2 python3-httplib2
httpretty python3-httpretty
humanize python3-humanize
hunspell python3-hunspell
hurry.filesize python3-hurry.filesize
hy python3-hy
hydroffice.bag python3-hydroffice.bag
hyperframe python3-hyperframe
hypothesis python3-hypothesis
i8c i8c
iapws python3-iapws
icalendar python3-icalendar
idna python3-idna
ijson python3-ijson
imagesize python3-imagesize
imaplib2 python3-imaplib2
img2pdf python3-img2pdf
incremental python3-incremental
inflect python3-inflect
influxdb python3-influxdb
iniparse python3-iniparse
instant python3-instant
intervaltree python3-intervaltree
intervaltree_bio python3-intervaltree-bio
invocations python3-invocations
invoke python3-invoke
iotop iotop
iowait python3-iowait
ipdb python3-ipdb
ipp python3-libtrace
ipykernel python3-ipykernel
ipython python3-ipython
ipython_genutils python3-ipython-genutils
ipywidgets python3-ipywidgets
irc python3-irc
irclog2html irclog2html
ironic_lib python3-ironic-lib
isbnlib python3-isbnlib
isc_dhcp_leases python3-isc-dhcp-leases
iso8601 python3-iso8601
isodate python3-isodate
isort python3-isort
isoweek python3-isoweek
itango python3-itango
itsdangerous python3-itsdangerous
iva iva
jdcal python3-jdcal
jedi python3-jedi
jellyfish python3-jellyfish
jenkins_job_builder python3-jenkins-job-builder
jingo python3-jingo
jinja2_time python3-jinja2-time
jmespath python3-jmespath
joblib python3-joblib
jpy python3-jpy
jsbeautifier python3-jsbeautifier
jsmin python3-jsmin
jsonpatch python3-jsonpatch
jsonpath_rw python3-jsonpath-rw
jsonpath_rw_ext python3-jsonpath-rw-ext
jsonpickle python3-jsonpickle
jsonpointer python3-json-pointer
jsonschema python3-jsonschema
junit_xml python3-junit.xml
junitxml python3-junitxml
jupyter_client python3-jupyter-client
jupyter_console python3-jupyter-console
jupyter_core python3-jupyter-core
jupyter_sphinx_theme python3-jupyter-sphinx-theme
kafka_python python3-kafka
kazam kazam
kazoo python3-kazoo
kdtree python3-kdtree
keepalive python3-keepalive
keyring python3-keyring
keyrings.alt python3-keyrings.alt
keystoneauth1 python3-keystoneauth1
keystonemiddleware python3-keystonemiddleware
keyutils python3-keyutils
khal khal
khard khard
khmer khmer
kitchen python3-kitchen
klein python3-klein
kombu python3-kombu
l20n python3-l20n
latexcodec python3-latexcodec
launchpadlib python3-launchpadlib
lazr.config python3-lazr.config
lazr.delegates python3-lazr.delegates
lazr.restfulclient python3-lazr.restfulclient
lazr.smtptest python3-lazr.smtptest
lazr.uri python3-lazr.uri
lazy_object_proxy python3-lazy-object-proxy
lazygal lazygal
ldap3 python3-ldap3
ldappool python3-ldappool
ldif3 python3-ldif3
lecm lecm
lensfun python3-lensfun
lesscpy python3-lesscpy
leveldb python3-leveldb
lfm lfm
libarchive_c python3-libarchive-c
libhfst_swig python3-libhfst
libnacl python3-libnacl
libsass python3-libsass
libusb1 python3-libusb1
libvirt_python python3-libvirt
lift lift
lightdm_gtk_greeter_settings lightdm-gtk-greeter-settings
limits python3-limits
limnoria limnoria
linecache2 python3-linecache2
linop python3-linop
lios lios
livereload python3-livereload
livestreamer python3-livestreamer
llfuse python3-llfuse
llvmlite python3-llvmlite
lmdb python3-lmdb
lmfit python3-lmfit
locket python3-locket
lockfile python3-lockfile
logging_tree python3-logging-tree
logilab_common python3-logilab-common
logutils python3-logutils
louis python3-louis
lshell lshell
lttnganalyses python3-lttnganalyses
lttngust python3-lttngust
lvm python3-lvm2
lxml python3-lxml
lz4 python3-lz4
m3u8 python3-m3u8
macholib python3-macholib
magcode_core python3-magcode-core
magic_wormhole magic-wormhole
mailer python3-mailer
manuel python3-manuel
mapbox_vector_tile python3-mapbox-vector-tile
mapnik python3-mapnik
marisa python3-marisa
mate_tweak mate-tweak
matplotlib python3-matplotlib
matplotlib_venn python3-matplotlib-venn
maxminddb python3-maxminddb
mccabe python3-mccabe
measurement python3-measurement
meld3 python3-meld3
memory_profiler python3-memory-profiler
memprof python3-memprof
menulibre menulibre
metaconfig python3-metaconfig
microversion_parse python3-microversion-parse
mido python3-mido
mimerender python3-mimerender
minieigen python3-minieigen
misaka python3-misaka
mistune python3-mistune
mkdocs mkdocs
mkosi mkosi
mock python3-mock
mockito python3-mockito
mockupdb python3-mockupdb
model_mommy python3-model-mommy
mongoengine python3-mongoengine
monotonic python3-monotonic
montage_wrapper python3-montage-wrapper
morris python3-morris
motor python3-motor
mox3 python3-mox3
mpegdash python3-mpegdash
mpi4py python3-mpi4py
mpld3 python3-mpld3
mplexporter python3-mplexporter
mpmath python3-mpmath
mps_youtube mps-youtube
mrtparse python3-mrtparse
msgpack_python python3-msgpack
msrest python3-msrest
msrestazure python3-msrestazure
mugshot mugshot
multi_key_dict python3-multi-key-dict
multicorn python3-multicorn
multidict python3-multidict
multipletau python3-multipletau
munch python3-munch
munkres python3-munkres
musicbrainzngs python3-musicbrainzngs
mutagen python3-mutagen
mwparserfromhell python3-mwparserfromhell
mypy mypy
mysql_connector_python python3-mysql.connector
mysqlclient python3-mysqldb
nagiosplugin python3-nagiosplugin
nagstamon nagstamon
nameparser python3-nameparser
nanomsg python3-nanomsg
natkit python3-libtrace
natsort python3-natsort
nbconvert python3-nbconvert
nbformat python3-nbformat
nbsphinx python3-nbsphinx
nbxmpp python3-nbxmpp
ndg_httpsclient python3-ndg-httpsclient
netCDF4 python3-netcdf4
netaddr python3-netaddr
netfilter python3-netfilter
netifaces python3-netifaces
netmiko python3-netmiko
networkx python3-networkx
neutron_lib python3-neutron-lib
ngs python3-ngs
nibabel python3-nibabel
nine python3-nine
nltk python3-nltk
nml nml
nodeenv nodeenv
nose python3-nose
nose2 python3-nose2
nose2_cov python3-nose2-cov
nose_exclude python3-nose-exclude
nose_parameterized python3-nose-parameterized
nose_timer python3-nose-timer
nosehtmloutput python3-nosehtmloutput
nosexcover python3-nosexcover
notebook python3-notebook
notify2 python3-notify2
notmuch python3-notmuch
npm2deb npm2deb
nrpe_ng nrpe-ng
ntplib python3-ntplib
numexpr python3-numexpr
numpy python3-numpy
numpydoc python3-numpydoc
nwdiag python3-nwdiag
oauth python3-oauth
oauth2client python3-oauth2client
oauthlib python3-oauthlib
objgraph python3-objgraph
obsub python3-obsub
ocrmypdf ocrmypdf
odfpy python3-odf
offtrac python3-offtrac
ofxparse python3-ofxparse
ofxstatement ofxstatement
ofxstatement_alfabank ofxstatement-plugins
ofxstatement_austrian ofxstatement-plugins
ofxstatement_be_ing ofxstatement-plugins
ofxstatement_be_kbc ofxstatement-plugins
ofxstatement_be_keytrade ofxstatement-plugins
ofxstatement_betterment ofxstatement-plugins
ofxstatement_bubbas ofxstatement-plugins
ofxstatement_czech ofxstatement-plugins
ofxstatement_dab ofxstatement-plugins
ofxstatement_germany_1822direkt ofxstatement-plugins
ofxstatement_iso20022 ofxstatement-plugins
ofxstatement_latvian ofxstatement-plugins
ofxstatement_lithuanian ofxstatement-plugins
ofxstatement_mbank.sk ofxstatement-plugins
ofxstatement_otp ofxstatement-plugins
ofxstatement_paypal ofxstatement-plugins
ofxstatement_polish ofxstatement-plugins
ofxstatement_postfinance ofxstatement-plugins
ofxstatement_russian ofxstatement-plugins
ofxstatement_seb ofxstatement-plugins
ofxstatement_simple ofxstatement-plugins
ofxstatement_unicreditcz ofxstatement-plugins
olefile python3-olefile
onboard onboard
onioncircuits onioncircuits
openalpr python3-openalpr
openmolar openmolar
openpyxl python3-openpyxl
openslide_python python3-openslide
openstack.nose_plugin python3-openstack.nose-plugin
openstack_doc_tools python3-openstack-doc-tools
openstackdocstheme python3-openstackdocstheme
openstacksdk python3-openstacksdk
os_api_ref python3-os-api-ref
os_brick python3-os-brick
os_client_config python3-os-client-config
os_testr python3-os-testr
os_vif python3-os-vif
os_win python3-os-win
osc_lib python3-osc-lib
oslo.cache python3-oslo.cache
oslo.concurrency python3-oslo.concurrency
oslo.config python3-oslo.config
oslo.context python3-oslo.context
oslo.db python3-oslo.db
oslo.i18n python3-oslo.i18n
oslo.log python3-oslo.log
oslo.messaging python3-oslo.messaging
oslo.middleware python3-oslo.middleware
oslo.policy python3-oslo.policy
oslo.privsep python3-oslo.privsep
oslo.reports python3-oslo.reports
oslo.rootwrap python3-oslo.rootwrap
oslo.serialization python3-oslo.serialization
oslo.service python3-oslo.service
oslo.utils python3-oslo.utils
oslo.versionedobjects python3-oslo.versionedobjects
oslo.vmware python3-oslo.vmware
oslosphinx python3-oslosphinx
oslotest python3-oslotest
osmapi python3-osmapi
osmium python3-pyosmium
osprofiler python3-osprofiler
overpass python3-overpass
overpy python3-overpy
packaging python3-packaging
pacparser python3-pacparser
padme python3-padme
pafy python3-pafy
pager python3-pager
pandas python3-pandas
pandocfilters python3-pandocfilters
panoramisk python3-panoramisk
parallax python3-parallax
paramiko python3-paramiko
parsel python3-parsel
partd python3-partd
passlib python3-passlib
path.py python3-path
path_and_address python3-path-and-address
pathspider pathspider
pathtools python3-pathtools
patool patool
patsy python3-patsy
paypal python3-paypal
pbkdf2 python3-pbkdf2
pbr python3-pbr
pcp python3-pcp
pdfkit python3-pdfkit
pdfrw python3-pdfrw
pecan python3-pecan
pefile python3-pefile
pep8 python3-pep8
pep8_naming python3-pep8-naming
persistent python3-persistent
pex python3-pex
pexpect python3-pexpect
pg8000 python3-pg8000
pgmagick python3-pgmagick
pgpdump python3-pgpdump
pgspecial python3-pgspecial
photocollage photocollage
photutils python3-photutils
phply python3-phply
phpserialize python3-phpserialize
picklable_itertools python3-picklable-itertools
pickleshare python3-pickleshare
pika python3-pika
pika_pool python3-pika-pool
pilkit python3-pilkit
pip python3-pip
pipedviewer python3-ferret
pkgconfig python3-pkgconfig
pkginfo python3-pkginfo
plainbox python3-plainbox
planetfilter planetfilter
playitslowly playitslowly
pldns python3-libtrace
plotly python3-plotly
plt python3-libtrace
pluggy python3-pluggy
plumbum python3-plumbum
ply python3-ply
podcastparser python3-podcastparser
polib python3-polib
policyd_rate_limit policyd-rate-limit
portalocker python3-portalocker
portpicker python3-portpicker
positional python3-positional
posix_ipc python3-posix-ipc
power python3-power
powerline_status python3-powerline
powerline_taskwarrior python3-powerline-taskwarrior
pprofile python3-pprofile
praw python3-praw
pretend python3-pretend
prettytable python3-prettytable
proboscis python3-proboscis
profitbricks python3-profitbricks
progress python3-progress
progressbar python3-progressbar
proliantutils python3-proliantutils
prometheus_client python3-prometheus-client
prometheus_pgbouncer_exporter prometheus-pgbouncer-exporter
prompt_toolkit python3-prompt-toolkit
proselint python3-proselint
protobix python3-protobix
protobuf python3-protobuf
protorpc_standalone python3-protorpc-standalone
prov python3-prov
psutil python3-psutil
psycopg2 python3-psycopg2
ptk python3-ptk
ptyprocess python3-ptyprocess
publicsuffix python3-publicsuffix
pudb python3-pudb
purl python3-purl
py python3-py
py3dns python3-dns
pyBigWig python3-pybigwig
pyClamd python3-pyclamd
pyFAI python3-pyfai
pyLibravatar python3-libravatar
pyNFFT python3-pynfft
pyOpenSSL python3-openssl
pyRFC3339 python3-rfc3339
pySFML python3-sfml
pyScss python3-pyscss
py_enigma python3-enigma
py_moneyed python3-moneyed
py_postgresql python3-postgresql
py_ubjson python3-ubjson
pyacoustid python3-acoustid
pyaml python3-pretty-yaml
pyapi_gitlab python3-gitlab
pyasn1 python3-pyasn1
pyasn1_modules python3-pyasn1-modules
pybind11 python3-pybind11
pycadf python3-pycadf
pycares python3-pycares
pycodestyle python3-pycodestyle
pycountry python3-pycountry
pycparser python3-pycparser
pycrypto python3-crypto
pycups python3-cups
pycurl python3-pycurl
pydbus python3-pydbus
pydicom python3-dicom
pydl python3-pydl
pydocstyle pydocstyle
pydot python3-pydot
pydotplus python3-pydotplus
pyds9 python3-pyds9
pyeapi python3-pyeapi
pyeclib python3-pyeclib
pyelftools python3-pyelftools
pyelliptic python3-pyelliptic
pyenchant python3-enchant
pyepr python3-epr
pyfaidx python3-pyfaidx
pyfastaq fastaq
pyferret python3-ferret
pyfiglet python3-pyfiglet
pyfits python3-pyfits
pyflakes python3-pyflakes
pyforge python3-forge
pyftpdlib python3-pyftpdlib
pygccxml python3-pygccxml
pygeoif python3-pygeoif
pygit2 python3-pygit2
pygobject python3-gi
pygpgme python3-gpgme
pygrace python3-pygrace
pygraphviz python3-pygraphviz
pygrib python3-grib
pygtail python3-pygtail
pygtkspellcheck python3-gtkspellcheck
pyinfra pyinfra
pyinotify python3-pyinotify
pykdtree python3-pykdtree
pykerberos python3-kerberos
pylama python3-pylama
pylast python3-pylast
pyldap python3-pyldap
pylibacl python3-pylibacl
pyliblo python3-liblo
pylibmc python3-pylibmc
pylint pylint3
pylint_celery python3-pylint-celery
pylint_common python3-pylint-common
pylint_django python3-pylint-django
pylint_flask python3-pylint-flask
pylint_plugin_utils python3-pylint-plugin-utils
pylxd python3-pylxd
pymacaroons python3-pymacaroons
pymad python3-pymad
pymemcache python3-pymemcache
pymia python3-mia
pymoc python3-pymoc
pymongo python3-pymongo
pymummer python3-pymummer
pymzml python3-pymzml
pyngus python3-pyngus
pynmea2 python3-nmea2
pynzb python3-pynzb
pyo python3-pyo
pyocr python3-pyocr
pyodbc python3-pyodbc
pyopencl python3-pyopencl
pyorbital python3-pyorbital
pyorick python3-pyorick
pyotp python3-pyotp
pypandoc python3-pypandoc
pyparallel python3-parallel
pyparsing python3-pyparsing
pyparted python3-parted
pypass pypass
pyperclip python3-pyperclip
pypolicyd_spf postfix-policyd-spf-python
pyppd pyppd
pyproj python3-pyproj
pypuppetdb python3-pypuppetdb
pypureomapi python3-pypureomapi
pyqtgraph python3-pyqtgraph
pyquery python3-pyquery
pyrad python3-pyrad
pyramid python3-pyramid
pyramid_jinja2 python3-pyramid-jinja2
pyramid_multiauth python3-pyramid-multiauth
pyregfi python3-pyregfi
pyregion python3-pyregion
pyresample python3-pyresample
pyroma python3-pyroma
pyroute2 python3-pyroute2
pysam python3-pysam
pysaml2 python3-pysaml2
pyscard python3-pyscard
pysendfile python3-sendfile
pyserial python3-serial
pyshp python3-pyshp
pysmbc python3-smbc
pysnmp python3-pysnmp4
pysolr python3-pysolr
pyspf python3-spf
pysrt python3-pysrt
pyssim python3-pyssim
pystache python3-pystache
pysubnettree python3-subnettree
pysynphot python3-pysynphot
pytaglib python3-taglib
pytango python3-tango
pyte python3-pyte
pytest python3-pytest
pytest_benchmark python3-pytest-benchmark
pytest_catchlog python3-pytest-catchlog
pytest_cookies python3-pytest-cookies
pytest_cov python3-pytest-cov
pytest_django python3-pytest-django
pytest_expect python3-pytest-expect
pytest_httpbin python3-pytest-httpbin
pytest_instafail python3-pytest-instafail
pytest_localserver python3-pytest-localserver
pytest_mock python3-pytest-mock
pytest_multihost python3-pytest-multihost
pytest_pylint python3-pytest-pylint
pytest_runner python3-pytest-runner
pytest_sourceorder python3-pytest-sourceorder
pytest_timeout python3-pytest-timeout
pytest_tornado python3-pytest-tornado
pytest_xdist python3-pytest-xdist
python3_openid python3-openid
python_Levenshtein python3-levenshtein
python_aalib python3-aalib
python_afl python3-afl
python_apt python3-apt
python_aptly python3-aptly
python_augeas python3-augeas
python_axolotl python3-axolotl
python_axolotl_curve25519 python3-axolotl-curve25519
python_barbicanclient python3-barbicanclient
python_bugzilla python3-bugzilla
python_can python3-can
python_casacore python3-casacore
python_ceilometerclient python3-ceilometerclient
python_cinderclient python3-cinderclient
python_congressclient python3-congressclient
python_cpl python3-cpl
python_crontab python3-crontab
python_daemon python3-daemon
python_dateutil python3-dateutil
python_dbusmock python3-dbusmock
python_debian python3-debian
python_debianbts python3-debianbts
python_designateclient python3-designateclient
python_distutils_extra python3-distutils-extra
python_djvulibre python3-djvu
python_dvdvideo python3-dvdvideo
python_editor python3-editor
python_espeak python3-espeak
python_etcd python3-etcd
python_evtx python3-evtx
python_fedora python3-fedora
python_gammu python3-gammu
python_gflags python3-gflags
python_glanceclient python3-glanceclient
python_gnupg python3-gnupg
python_graph_core python3-pygraph
python_graph_dot python3-pygraph
python_heatclient python3-heatclient
python_hglib python3-hglib
python_hpilo python3-hpilo
python_igraph python3-igraph
python_instagram python3-instagram
python_iptables python3-iptables
python_ironic_inspector_client python3-ironic-inspector-client
python_ironicclient python3-ironicclient
python_jenkins python3-jenkins
python_k8sclient python3-k8sclient
python_keystoneclient python3-keystoneclient
python_libdiscid python3-libdiscid
python_libguess python3-libguess
python_librtmp python3-librtmp
python_libtorrent python3-libtorrent
python_ly python3-ly
python_magnumclient python3-magnumclient
python_manilaclient python3-manilaclient
python_memcached python3-memcache
python_mimeparse python3-mimeparse
python_mistralclient python3-mistralclient
python_monascaclient python3-monascaclient
python_mpd2 python3-mpd
python_muranoclient python3-muranoclient
python_musicpd python3-musicpd
python_neutronclient python3-neutronclient
python_nmap python3-nmap
python_novaclient python3-novaclient
python_openflow python3-openflow
python_openid_cla python3-openid-cla
python_openid_teams python3-openid-teams
python_openstackclient python3-openstackclient
python_pam python3-pampy
python_popcon python3-popcon
python_poppler_qt4 python3-poppler-qt4
python_poppler_qt5 python3-poppler-qt5
python_potr python3-potr
python_pskc python3-pskc
python_qpid_proton python3-qpid-proton
python_redmine python3-redmine
python_saharaclient python3-saharaclient
python_sane python3-sane
python_scciclient python3-scciclient
python_senlinclient python3-senlinclient
python_slugify python3-slugify
python_snappy python3-snappy
python_social_auth python3-social-auth
python_sql python3-sql
python_stdnum python3-stdnum
python_subunit python3-subunit
python_svipc python3-svipc
python_swiftclient python3-swiftclient
python_tackerclient python3-tackerclient
python_termstyle python3-termstyle
python_troveclient python3-troveclient
python_u2flib_server python3-u2flib-server
python_vagrant python3-vagrant
python_watcherclient python3-watcherclient
python_xlib python3-xlib
python_xmp_toolkit python3-libxmp
python_zaqarclient python3-zaqarclient
pythondialog python3-dialog
pytidylib python3-tidylib
pytils python3-pytils
pytimeparse python3-pytimeparse
pytoml python3-pytoml
pytools python3-pytools
pytsk3 python3-tsk
pytz python3-tz
pyuca python3-pyuca
pyudev python3-pyudev
pyusb python3-usb
pyviennacl python3-pyviennacl
pyvmomi python3-pyvmomi
pyvo python3-pyvo
pywapi python3-pywapi
pywinrm python3-winrm
pyxattr python3-pyxattr
pyxdg python3-xdg
pyzmq python3-zmq
q python3-q
qrcode python3-qrcode
qtconsole python3-qtconsole
qtile python3-qtile
quark_sphinx_theme python3-quark-sphinx-theme
queuelib python3-queuelib
qweborf qweborf
rarfile python3-rarfile
rasterio python3-rasterio
rcssmin python3-rcssmin
rdflib python3-rdflib
rdflib_jsonld python3-rdflib-jsonld
recommonmark python3-recommonmark
reconfigure python3-reconfigure
redis python3-redis
redis_py_cluster python3-rediscluster
rednose python3-rednose
regex python3-regex
relational python3-relational
relational_gui relational
relational_readline relational-cli
relatorio python3-relatorio
releases python3-releases
rencode python3-rencode
reno python3-reno
reportbug python3-reportbug
reportlab python3-reportlab
repoze.lru python3-repoze.lru
repoze.sphinx.autointerface python3-repoze.sphinx.autointerface
repoze.tm2 python3-repoze.tm2
repoze.who python3-repoze.who
reproject python3-reproject
reprotest reprotest
requestbuilder python3-requestbuilder
requests python3-requests
requests_aws python3-awsauth
requests_cache python3-requests-cache
requests_futures python3-requests-futures
requests_kerberos python3-requests-kerberos
requests_mock python3-requests-mock
requests_oauthlib python3-requests-oauthlib
requests_toolbelt python3-requests-toolbelt
requests_unixsocket python3-requests-unixsocket
requestsexceptions python3-requestsexceptions
requirements_detector python3-requirements-detector
responses python3-responses
restless python3-restless
restructuredtext_lint python3-restructuredtext-lint
retrying python3-retrying
retweet retweet
rfc3986 python3-rfc3986
rhythmbox_ampache rhythmbox-ampache
ripe.atlas.cousteau python3-ripe-atlas-cousteau
ripe.atlas.sagan python3-ripe-atlas-sagan
rjsmin python3-rjsmin
roman python3-roman
rpl rpl
rply python3-rply
rpm_python python3-rpm
rpy2 python3-rpy2
rsa python3-rsa
rss2email rss2email
rtslib_fb python3-rtslib-fb
rtv rtv
ruamel.yaml python3-ruamel.yaml
ruffus python3-ruffus
s3transfer python3-s3transfer
sagenb_export python3-sagenb-export
scales python3-scales
scapy_python3 python3-scapy
schedule python3-schedule
schema python3-schema
schroot python3-schroot
scikit_bio python3-skbio
scikit_image python3-skimage
scikit_learn python3-sklearn
scipy python3-scipy
scoop python3-scoop
scour python3-scour
scp python3-scp
screed python3-screed
scripttest python3-scripttest
scruffington python3-scruffy
sdnotify python3-sdnotify
seaborn python3-seaborn
selenium python3-selenium
semantic_version python3-semantic-version
semver python3-semver
sen sen
sentinels python3-sentinels
sepolicy python3-sepolicy
seqdiag python3-seqdiag
serpent python3-serpent
service_identity python3-service-identity
setools python3-setools
setoptconf python3-setoptconf
setproctitle python3-setproctitle
setuptools_git python3-setuptools-git
setuptools_scm python3-setuptools-scm
sgp4 python3-sgp4
sh python3-sh
shade python3-shade
shatag shatag
shellescape python3-shellescape
shortuuid python3-shortuuid
sievelib python3-sievelib
simple_cdd python3-simple-cdd
simpleeval python3-simpleeval
simplegeneric python3-simplegeneric
simplejson python3-simplejson
simpy python3-simpy3
sireader python3-sireader
six python3-six
sixer sixer
sklearn_pandas python3-sklearn-pandas
sleekxmpp python3-sleekxmpp
slimmer python3-slimmer
slip python3-slip
slip.dbus python3-slip-dbus
slixmpp python3-slixmpp
smartypants python3-smartypants
smmap2 python3-smmap
smstrade python3-smstrade
snakemake snakemake
snimpy python3-snimpy
snowballstemmer python3-snowballstemmer
snuggs python3-snuggs
socketIO_client python3-socketio-client
socketpool python3-socketpool
sockjs_tornado python3-sockjs-tornado
sopel sopel
sorl_thumbnail python3-sorl-thumbnail
sortedcontainers python3-sortedcontainers
spake2 python3-spake2
spectral_cube python3-spectral-cube
specutils python3-specutils
sphere python3-sphere
sphinx_argparse python3-sphinx-argparse
sphinx_bootstrap_theme python3-sphinx-bootstrap-theme
sphinx_paramlinks python3-sphinx-paramlinks
sphinx_rtd_theme python3-sphinx-rtd-theme
sphinx_testing python3-sphinx-testing
sphinxcontrib_actdiag python3-sphinxcontrib.actdiag
sphinxcontrib_autoprogram python3-sphinxcontrib.autoprogram
sphinxcontrib_blockdiag python3-sphinxcontrib.blockdiag
sphinxcontrib_doxylink python3-sphinxcontrib.doxylink
sphinxcontrib_httpdomain python3-sphinxcontrib.httpdomain
sphinxcontrib_nwdiag python3-sphinxcontrib.nwdiag
sphinxcontrib_plantuml python3-sphinxcontrib.plantuml
sphinxcontrib_programoutput python3-sphinxcontrib.programoutput
sphinxcontrib_rubydomain python3-sphinxcontrib.rubydomain
sphinxcontrib_seqdiag python3-sphinxcontrib.seqdiag
sphinxcontrib_spelling python3-sphinxcontrib.spelling
sphinxcontrib_youtube python3-sphinxcontrib.youtube
spur python3-spur
spyder python3-spyder
sqlacodegen sqlacodegen
sqlalchemy_migrate python3-migrate
sqlparse python3-sqlparse
sqlsoup python3-sqlsoup
srp python3-srp
ssdeep python3-ssdeep
ssh_import_id ssh-import-id
sshuttle sshuttle
staticsite staticsite
statsd python3-statsd
stdeb python3-stdeb
stem python3-stem
stevedore python3-stevedore
stopit python3-stopit
straight.plugin python3-straight.plugin
structlog python3-structlog
stsci.distutils python3-stsci.distutils
subliminal python3-subliminal
subuser subuser
suds_jurko python3-suds
sunlight python3-sunlight
sunpy python3-sunpy
sure python3-sure
svg.path python3-svg.path
svgwrite python3-svgwrite
swiftsc python3-swiftsc
sympy python3-sympy
systemd_python python3-systemd
systemfixtures python3-systemfixtures
sysv_ipc python3-sysv-ipc
tables python3-tables
tabulate python3-tabulate
tap.py python3-tap
targetcli_fb targetcli-fb
taskflow python3-taskflow
taskw python3-taskw
tblib python3-tblib
tempest python3-tempest
tempest_lib python3-tempest-lib
tenacity python3-tenacity
termcolor python3-termcolor
terminado python3-terminado
testing.common.database python3-testing.common.database
testing.mysqld python3-testing.mysqld
testing.postgresql python3-testing.postgresql
testrepository python3-testrepository
testresources python3-testresources
testscenarios python3-testscenarios
testtools python3-testtools
textile python3-textile
texttable python3-texttable
tinycss python3-tinycss
tkSnack python3-tksnack
tldp python3-tldp
tlsh python3-tlsh
tlslite_ng python3-tlslite-ng
tmdbsimple python3-tmdbsimple
tomahawk python3-tomahawk
toml python3-toml
toolz python3-toolz
tooz python3-tooz
toposort python3-toposort
tornado python3-tornado
toro python3-toro
tosca_parser python3-tosca-parser
tox tox
tqdm python3-tqdm
traceback2 python3-traceback2
traitlets python3-traitlets
traits python3-traits
transaction python3-transaction
translate_toolkit python3-translate
translationstring python3-translationstring
transmissionrpc python3-transmissionrpc
treq python3-treq
trollius python3-trollius
trollius_redis python3-trollius-redis
trydiffoscope trydiffoscope
tunigo python3-tunigo
tweepy python3-tweepy
twine twine
twitterwatch twitterwatch
twython python3-twython
txZMQ python3-txzmq
txaio python3-txaio
txfixtures python3-txfixtures
typecatcher typecatcher
typed_ast python3-typed-ast
typogrify python3-typogrify
tz_converter tz-converter
tzlocal python3-tzlocal
u_msgpack_python python3-u-msgpack
ubuntu_dev_tools python3-ubuntutools
udiskie udiskie
ufw ufw
ujson python3-ujson
unattended_upgrades unattended-upgrades
uncertainties python3-uncertainties
unicodecsv python3-unicodecsv
unidiff python3-unidiff
unittest2 python3-unittest2
uritemplate python3-uritemplate
uritools python3-uritools
urllib3 python3-urllib3
urlscan urlscan
urwid python3-urwid
urwidtrees python3-urwidtrees
usagestats python3-usagestats
uucp_lmtp uucp-lmtp
validictory python3-validictory
vatnumber python3-vatnumber
vcrpy python3-vcr
vcversioner python3-vcversioner
vdirsyncer vdirsyncer
venusian python3-venusian
versiontools python3-versiontools
virtualenv python3-virtualenv
vispy python3-vispy
vobject python3-vobject
voltron voltron
voluptuous python3-voluptuous
vulture vulture
w3lib python3-w3lib
wadllib python3-wadllib
waiting python3-waiting
waitress python3-waitress
warlock python3-warlock
watchdog python3-watchdog
watson_developer_cloud python3-watson-developer-cloud
wchartype python3-wchartype
wcsaxes python3-wcsaxes
wcwidth python3-wcwidth
webassets python3-webassets
webcolors python3-webcolors
webencodings python3-webencodings
websocket_client python3-websocket
websockets python3-websockets
websockify python3-websockify
wget python3-wget
whatmaps whatmaps
wheel python3-wheel
wheezy.template python3-wheezy.template
whichcraft python3-whichcraft
whitenoise python3-whitenoise
whois python3-whois
widgetsnbextension python3-widgetsnbextension
wlc wlc
woo python3-woo
wrapt python3-wrapt
ws4py python3-ws4py
wsgi_intercept python3-wsgi-intercept
wsgicors python3-wsgicors
xattr python3-xattr
xcffib python3-xcffib
xdo python3-xdo
xdot xdot
xkcd python3-xkcd
xkcdpass xkcdpass
xlrd python3-xlrd
xmltodict python3-xmltodict
xonsh xonsh
xtermcolor python3-xtermcolor
xvfbwrapper python3-xvfbwrapper
yamllint yamllint
yanc python3-nose-yanc
yapf yapf3
yaql python3-yaql
yara_python python3-yara
yarl python3-yarl
yattag python3-yattag
youtube_dl youtube-dl
yt python3-yt
zake python3-zake
zc.customdoctests python3-zc.customdoctests
zeep python3-zeep
zenoss python3-zenoss
zeroconf python3-zeroconf
zict python3-zict
zipstream python3-zipstream
zope.browser python3-zope.browser
zope.component python3-zope.component
zope.configuration python3-zope.configuration
zope.contenttype python3-zope.contenttype
zope.deprecation python3-zope.deprecation
zope.event python3-zope.event
zope.exceptions python3-zope.exceptions
zope.fixers python3-zope.fixers
zope.hookable python3-zope.hookable
zope.i18n python3-zope.i18n
zope.i18nmessageid python3-zope.i18nmessageid
zope.interface python3-zope.interface
zope.location python3-zope.location
zope.proxy python3-zope.proxy
zope.schema python3-zope.schema
zope.security python3-zope.security
zope.testing python3-zope.testing
zope.testrunner python3-zope.testrunner
zzzeeksphinx python3-zzzeeksphinx
|