<p>A curated list of awesome Python frameworks, libraries and software. Inspired by <ahref="https://github.com/ziadoz/awesome-php">awesome-php</a>.</p>
<li><ahref="http://doc.devpi.net/">devpi</a> - PyPI server and packaging/testing/release tool.</li>
<li><ahref="https://github.com/mvantellingen/localshop">localshop</a> - PyPI server which mirrors official packages on-demand, and also supports local (private) package uploads.</li>
</ul>
<h2id="distribution">Distribution</h2>
<p><em>Libraries to create packaged executables for release distribution.</em></p>
<li><ahref="http://pynsist.readthedocs.org/">pynsist</a> - A tool to build Windows installers, installers bundle Python itself.</li>
<li><ahref="http://pythonhosted.org/py2app/">py2app</a> - Freezes Python scripts (Mac OS X).</li>
<li><ahref="http://www.pyinstaller.org/">PyInstaller</a> - Converts Python programs into stand-alone executables (cross-platform).</li>
<li><ahref="http://dh-virtualenv.readthedocs.org/">dh-virtualenv</a> - Build and distribute a virtualenv as a Debian package.</li>
<li><ahref="http://nuitka.net/">Nuitka</a> - Compile scripts, modules, packages to an executable or extension module.</li>
</ul>
<h2id="build-tools">Build Tools</h2>
<p><em>Compile software from source code.</em></p>
<ul>
<li><ahref="http://www.buildout.org/">buildout</a> - A build system for creating, assembling and deploying applications from multiple parts, some of which may be non-Python-based.</li>
<li><ahref="http://www.scons.org/">SCons</a> - A software construction tool.</li>
<li><ahref="https://github.com/ivankravets/platformio">PlatformIO</a> - A console tool to build code with different development platforms.</li>
<li><ahref="http://www.yoctoproject.org/docs/1.6/bitbake-user-manual/bitbake-user-manual.html">BitBake</a> - A make-like build tool with the special focus of distributions and packages for embedded Linux.</li>
<li><ahref="https://code.google.com/p/fabricate/">fabricate</a> - A build tool that finds dependencies automatically for any language.</li>
<li><ahref="https://github.com/ipython/ipython">IPython</a> - A rich toolkit to help you make the most out of using Python interactively.</li>
<li><ahref="http://bpython-interpreter.org">bpython</a>– A fancy interface to the Python interpreter.</li>
<li><ahref="https://github.com/jonathanslenders/ptpython">ptpython</a> - Advanced Python REPL built on top of the <ahref="https://github.com/jonathanslenders/python-prompt-toolkit">python-prompt-toolkit</a>.</li>
</ul>
<h2id="files">Files</h2>
<p><em>Libraries for file manipulation and MIME type detection.</em></p>
<ul>
<li><ahref="https://docs.python.org/2/library/mimetypes.html">mimetypes</a> - (Python standard library) Map filenames to MIME types.</li>
<li><ahref="https://docs.python.org/2/library/imghdr.html">imghdr</a> - (Python standard library) Determine the type of an image.</li>
<li><ahref="https://github.com/ahupp/python-magic">python-magic</a> - A Python interface to the libmagic file type identification library.</li>
<li><ahref="https://github.com/jaraco/path.py">path.py</a> - A module wrapper for <ahref="https://docs.python.org/2/library/os.path.html">os.path</a>.</li>
<li><ahref="https://github.com/gorakhargosh/watchdog">watchdog</a> - API and shell utilities to monitor file system events.</li>
<li><ahref="https://github.com/mikeorr/Unipath">Unipath</a> - An object-oriented approach to file/directory operations.</li>
<li><ahref="https://pathlib.readthedocs.org/en/pep428/">pathlib</a> - (Python standard library in Python 3.4+) An cross-platform, object-oriented path library.</li>
</ul>
<h2id="date-and-time">Date and Time</h2>
<p><em>Libraries for working with dates and times.</em></p>
<ul>
<li><ahref="https://github.com/crsmithdev/arrow">arrow</a> - Better dates & times for Python.</li>
<li><ahref="https://github.com/KoffeinFlummi/Chronyk">Chronyk</a> - A Python 3 library for parsing human-written times and dates.</li>
<li><ahref="https://pypi.python.org/pypi/python-dateutil">dateutil</a> - Extensions to the standard Python <ahref="https://docs.python.org/2/library/datetime.html">datetime</a> module.</li>
<li><ahref="https://github.com/myusuf3/delorean/">delorean</a> - A library for clearing up the inconvenient truths that arise dealing with datetimes.</li>
<li><ahref="https://github.com/dirn/When.py">when.py</a> - Providing user-friendly functions to help perform common date and time actions.</li>
<li><ahref="https://github.com/zachwill/moment">moment</a> - A Python library for dealing with dates/times. Inspired by <ahref="http://momentjs.com/">Moment.js</a>.</li>
<li><ahref="https://launchpad.net/pytz">pytz</a> - World timezone definitions, modern and historical. Brings the <ahref="http://en.wikipedia.org/wiki/Tz_database">tz database</a> into Python.</li>
<li><ahref="https://github.com/shnode/PyTime">PyTime</a> - A easy-use Python module which aims to operate date/time/datetime by string.</li>
</ul>
<h2id="text-processing">Text Processing</h2>
<p><em>Libraries for parsing and manipulating plain texts.</em></p>
<ul>
<li>General<ul>
<li><ahref="https://docs.python.org/2/library/difflib.html">difflib</a> - (Python standard library) Helpers for computing deltas.</li>
<li><ahref="https://github.com/ztane/python-Levenshtein/">Levenshtein</a> - Fast computation of Levenshtein distance and string similarity.</li>
<li><ahref="https://github.com/stochastic-technologies/shortuuid">shortuuid</a> - A generator library for concise, unambiguous and URL-safe UUIDs.</li>
<li><ahref="https://github.com/LuminosoInsight/python-ftfy">ftfy</a> - Makes Unicode text less broken and more consistent automagically.</li>
<li><ahref="https://pypi.python.org/pypi/Unidecode">unidecode</a> - ASCII transliterations of Unicode text.</li>
<li><ahref="https://github.com/chardet/chardet">chardet</a> - Python 2/3 compatible character encoding detector.</li>
<li><ahref="https://github.com/lxneng/xpinyin">xpinyin</a> - A library to translate Chinese hanzi (漢字) to pinyin (拼音).</li>
<li><ahref="https://github.com/vinta/pangu.py">pangu.py</a> - Spacing texts for CJK and alphanumerics.</li>
<li><ahref="https://github.com/pwaller/pyfiglet">pyfiglet</a> - An implementation of figlet written in Python.</li>
<li><ahref="https://github.com/moskytw/uniout">uniout</a> - Print readable chars instead of the escaped string.</li>
</ul>
</li>
<li>Slugify<ul>
<li><ahref="https://github.com/dimka665/awesome-slugify">awesome-slugify</a> - A Python slugify library that can preserve unicode.</li>
<li><ahref="https://github.com/un33k/python-slugify">python-slugify</a> - A Python slugify library that translates unicode to ASCII.</li>
<li><ahref="https://github.com/mozilla/unicode-slugify">unicode-slugify</a> - A slugifier that generates unicode slugs with Django as a dependency.</li>
</ul>
</li>
<li>Parser<ul>
<li><ahref="http://www.dabeaz.com/ply/">PLY</a> - Implementation of lex and yacc parsing tools for Python</li>
<li><ahref="https://github.com/daviddrysdale/python-phonenumbers">phonenumbers</a> - Parsing, formatting, storing and validating international phone numbers.</li>
<li><ahref="https://github.com/selwin/python-user-agents">python-user-agents</a> - Browser user agent parser.</li>
<li><ahref="https://sqlparse.readthedocs.org/">sqlparse</a> - A non-validating SQL parser.</li>
<li><ahref="http://pygments.org/">Pygments</a> - A generic syntax highlighter.</li>
<li><ahref="https://github.com/derek73/python-nameparser">python-nameparser</a> - Parsing human names into their individual components.</li>
<li><ahref="http://pyparsing.wikispaces.com/">pyparsing</a> - A general purpose framework for generating parsers.</li>
<p><em>Libraries for parsing and manipulating specific text formats.</em></p>
<ul>
<li>General<ul>
<li><ahref="https://github.com/kennethreitz/tablib">tablib</a> - A module for Tabular Datasets in XLS, CSV, JSON, YAML.</li>
</ul>
</li>
<li>Office<ul>
<li><ahref="https://github.com/python-openxml/python-docx">python-docx</a> - Reads, queries and modifies Microsoft Word 2007/2008 docx files.</li>
<li><ahref="https://github.com/python-excel/xlwt">xlwt</a> / <ahref="https://github.com/python-excel/xlrd">xlrd</a> - Writing and reading data and formatting information from Excel files.</li>
<li><ahref="https://xlsxwriter.readthedocs.org/">XlsxWriter</a> - A Python module for creating Excel .xlsx files.</li>
<li><ahref="http://xlwings.org/">xlwings</a> - A BSD-licensed library that makes it easy to call Python from Excel and vice versa.</li>
<li><ahref="https://openpyxl.readthedocs.org/en/latest/">openpyxl</a> - A library for reading and writing Excel 2010 xlsx/xlsm/xltx/xltm files.</li>
<li><ahref="https://github.com/brianray/mm">Marmir</a> - Takes Python data structures and turns them into spreadsheets.</li>
<li><ahref="https://github.com/dagwieers/unoconv">unoconv</a> - Convert between any document format supported by LibreOffice/OpenOffice.</li>
</ul>
</li>
<li>PDF<ul>
<li><ahref="https://github.com/euske/pdfminer">PDFMiner</a> - A tool for extracting information from PDF documents.</li>
<li><ahref="https://github.com/mstamy2/PyPDF2">PyPDF2</a> - A library capable of splitting, merging and transforming PDF pages.</li>
<li><ahref="http://www.reportlab.com/opensource/">ReportLab</a> - Allowing Rapid creation of rich PDF documents.</li>
</ul>
</li>
<li>Markdown<ul>
<li><ahref="https://github.com/waylan/Python-Markdown">Python-Markdown</a> - A Python implementation of John Gruber’s Markdown.</li>
<li><ahref="https://github.com/lepture/mistune">Mistune</a> - Fastest and full featured pure Python parsers of Markdown.</li>
</ul>
</li>
<li>YAML<ul>
<li><ahref="http://pyyaml.org/">PyYAML</a> - YAML implementations for Python.</li>
</ul>
</li>
<li>CSV<ul>
<li><ahref="https://github.com/onyxfish/csvkit">csvkit</a> - Utilities for converting to and working with CSV.</li>
</ul>
</li>
<li>Archive<ul>
<li><ahref="https://github.com/mitsuhiko/unp">unp</a> - A command line tool that can unpack archives easily.</li>
</ul>
</li>
</ul>
<h2id="natural-language-processing">Natural Language Processing</h2>
<p><em>Libraries for working with human languages.</em></p>
<ul>
<li><ahref="http://www.nltk.org/">NLTK</a> - A leading platform for building Python programs to work with human language data.</li>
<li><ahref="http://www.clips.ua.ac.be/pattern">Pattern</a> - A web mining module for the Python. It has tools for natural language processing, machine learning, among others.</li>
<li><ahref="http://textblob.readthedocs.org/">TextBlob</a> - Providing a consistent API for diving into common NLP tasks. Stands on the giant shoulders of NLTK and Pattern.</li>
<li><ahref="https://github.com/fxsjy/jieba">jieba</a> - Chinese Words Segmentation Utilities.</li>
<li><ahref="https://github.com/isnowfy/snownlp">SnowNLP</a> - A library for processing Chinese text.</li>
<li><ahref="https://github.com/victorlin/loso">loso</a> - Another Chinese segmentation library.</li>
<li><ahref="https://github.com/duanhongyi/genius">genius</a> - A Chinese segment base on Conditional Random Field.</li>
<li><ahref="https://github.com/saffsd/langid.py">langid.py</a> - Stand-alone language identification system.</li>
</ul>
<h2id="documentation">Documentation</h2>
<p><em>Libraries for generating project documentation.</em></p>
<li><ahref="http://fitzgen.github.io/pycco/">Pycco</a> - The original quick-and-dirty, hundred-line-long, literate-programming-style documentation generator.</li>
<li><ahref="https://github.com/BurntSushi/pdoc">pdoc</a> - Epydoc replacement to auto generate API documentation for Python libraries.</li>
</ul>
<h2id="configuration">Configuration</h2>
<p><em>Libraries for storing configuration options.</em></p>
<ul>
<li><ahref="https://docs.python.org/2/library/configparser.html">ConfigParser</a> - (Python standard library) INI file parser.</li>
<li><ahref="http://www.voidspace.org.uk/python/configobj.html">ConfigObj</a> - INI file parser with validation.</li>
<li><ahref="http://www.red-dove.com/config-doc/">config</a> - Hierarchical config from the author of <ahref="https://docs.python.org/2/library/logging.html">logging</a>.</li>
<li><ahref="http://profig.readthedocs.org/">profig</a> - Config from multiple formats with value conversion.</li>
<p><em>Libraries for building command-line application.</em></p>
<ul>
<li>Command-line Application Development<ul>
<li><ahref="http://builtoncement.com/">cement</a> - Cement provides a light-weight and fully featured foundation to build anything from single file scripts to complex and intricately designed applications.</li>
<li><ahref="http://click.pocoo.org/">click</a> - A package for creating beautiful command line interfaces in a composable way.</li>
<li><ahref="https://pythonhosted.org/pyCLI/">pyCLI</a> - Command-line applications supporting standard command line parsing, logging, unit and functional testing.</li>
<li><ahref="https://github.com/chriskiehl/Gooey">Gooey</a> - Turn command line programs into a full GUI application with one line</li>
<li><ahref="https://github.com/jonathanslenders/python-prompt-toolkit">python-prompt-toolkit</a> - A Library for building powerful interactive command lines.</li>
</ul>
</li>
<li>Productivity Tools<ul>
<li><ahref="https://github.com/audreyr/cookiecutter">cookiecutter</a> - A command-line utility that creates projects from cookiecutters (project templates). E.g. Python package projects, jQuery plugin projects.</li>
<li><ahref="https://github.com/jakubroztocil/httpie">httpie</a> - A command line HTTP client, a user-friendly cURL replacement.</li>
<li><ahref="https://github.com/mooz/percol">percol</a> - Adds flavor of interactive selection to the traditional pipe concept on UNIX.</li>
<li><ahref="http://www.rainbowstream.org/">RainbowStream</a> - Smart and nice Twitter client on terminal.</li>
<li><ahref="https://github.com/brettcannon/caniusepython3">caniusepython3</a> - Determine what projects are blocking you from porting to Python 3.</li>
<li><ahref="https://github.com/nvbn/thefuck">thefuck</a> - Correcting your previous console command.</li>
<li><ahref="https://github.com/sloria/doitlive">doitlive</a> - A tool for live presentations in the terminal.</li>
<li><ahref="https://github.com/facebook/PathPicker">PathPicker</a> - Select files out of bash output.</li>
</ul>
</li>
</ul>
<h2id="downloader">Downloader</h2>
<p><em>Libraries for downloading.</em></p>
<ul>
<li><ahref="https://github.com/s3tools/s3cmd">s3cmd</a> - A command line tool for managing Amazon S3 and CloudFront.</li>
<li><ahref="https://github.com/bloomreach/s4cmd">s4cmd</a> - Super S3 command line tool, good for higher performance.</li>
<li><ahref="http://rg3.github.io/youtube-dl/">youtube-dl</a> - A small command-line program to download videos from YouTube.</li>
<li><ahref="http://www.soimort.org/you-get/">you-get</a> - A YouTube/Youku/Niconico video downloader written in Python 3.</li>
<li><ahref="https://github.com/coursera-dl/coursera">coursera</a> - Script for downloading Coursera.org videos and naming them.</li>
<li><ahref="https://github.com/WikiTeam/wikiteam">WikiTeam</a> - Tools for downloading and preserving wikis.</li>
<li><ahref="https://github.com/Diaoul/subliminal">subliminal</a> - Library and command line tool to search and download subtitles.</li>
</ul>
<h2id="imagery">Imagery</h2>
<p><em>Libraries for manipulating images.</em></p>
<ul>
<li><ahref="http://pillow.readthedocs.org/">pillow</a> - Pillow is the friendly <ahref="http://www.pythonware.com/products/pil/">PIL</a> fork.</li>
<li><ahref="https://github.com/dahlia/wand">wand</a> - Python bindings for <ahref="http://www.imagemagick.org/script/magick-wand.php">MagickWand</a>, C API for ImageMagick.</li>
<li><ahref="https://github.com/thumbor/thumbor">thumbor</a> - A smart imaging service. It enables on-demand crop, re-sizing and flipping of images.</li>
<li><ahref="http://www.imgseek.net/">imgSeek</a> - A project for searching a collection of images using visual similarity.</li>
<li><ahref="https://github.com/lincolnloop/python-qrcode">python-qrcode</a> - A pure Python QR Code generator.</li>
<li><ahref="https://pythonhosted.org/pyBarcode/">pyBarcode</a> - Create barcodes in Python without needing PIL.</li>
<p><em>Libraries for Optical Character Recognition.</em></p>
<ul>
<li><ahref="https://code.google.com/p/python-tesseract">python-tesseract</a> - A wrapper class for <ahref="https://code.google.com/p/tesseract-ocr/">Google Tesseract OCR</a>.</li>
<li><ahref="https://github.com/madmaze/pytesseract">pytesseract</a> - Another wrapper for Google Tesseract OCR.</li>
<li><ahref="https://github.com/jflesch/pyocr">pyocr</a> - A wrapper for Tesseract and Cuneiform.</li>
</ul>
<h2id="audio">Audio</h2>
<p><em>Libraries for manipulating audio.</em></p>
<ul>
<li><ahref="https://github.com/danilobellini/audiolazy">audiolazy</a> - Expressive Digital Signal Processing (DSP) package for Python.</li>
<li><ahref="http://eyed3.nicfit.net/">eyeD3</a> - A tool for working with audio files, specifically MP3 files containing ID3 metadata.</li>
<li><ahref="http://nedbatchelder.com/code/modules/id3reader.py">id3reader</a> - A Python module for reading MP3 meta data.</li>
<li><ahref="https://code.google.com/p/mutagen/">mutagen</a> - A Python module to handle audio metadata.</li>
<li><ahref="https://github.com/jiaaro/pydub">pydub</a> - Manipulate audio with a simple and easy high level interface.</li>
<li><ahref="https://github.com/echonest/pyechonest">pyechonest</a> - Python client for the <ahref="http://developer.echonest.com/docs/">Echo Nest</a> API.</li>
<li><ahref="http://scikits.appspot.com/talkbox">talkbox</a> - A Python library for speech/signal processing.</li>
<li><ahref="https://github.com/yomguy/TimeSide">TimeSide</a> - Open web audio processing framework.</li>
<li><ahref="https://github.com/devsnd/tinytag">tinytag</a> - A library for reading music meta data of MP3, OGG, FLAC and Wave files.</li>
<li><ahref="https://github.com/globocom/m3u8">m3u8</a> - A module for parsing m3u8 file.</li>
</ul>
<h2id="video">Video</h2>
<p><em>Libraries for manipulating video and GIFs.</em></p>
<ul>
<li><ahref="http://zulko.github.io/moviepy/">moviepy</a> - A module for script-based movie editing with many formats, including animated GIFs.</li>
<li><ahref="http://www.shorten.tv/">shorten.tv</a> - Video summarization.</li>
<li><ahref="https://github.com/aizvorski/scikit-video">scikit-video</a> - Video processing routines for SciPy.</li>
</ul>
<h2id="geolocation">Geolocation</h2>
<p><em>Libraries for geocoding addresses and working with latitudes and longitudes.</em></p>
<ul>
<li><ahref="https://docs.djangoproject.com/en/dev/ref/contrib/gis/">GeoDjango</a> - A world-class geographic web framework.</li>
<li><ahref="https://github.com/appliedsec/pygeoip">pygeoip</a> - Pure Python GeoIP API.</li>
<li><ahref="https://github.com/maxmind/geoip-api-python">GeoIP</a> - Python API for MaxMind GeoIP Legacy Database.</li>
<li><ahref="https://github.com/frewsxcv/python-geojson">geojson</a> - Python bindings and utlities for GeoJSON.</li>
<li><ahref="https://github.com/SmileyChris/django-countries">django-countries</a> - A Django app that provides country choices for use with forms, flag icons static files, and a country field for models.</li>
</ul>
<h2id="http">HTTP</h2>
<p><em>Libraries for working with HTTP.</em></p>
<ul>
<li><ahref="http://docs.python-requests.org/">requests</a> - HTTP Requests for Humans™.</li>
<li><ahref="https://github.com/kennethreitz/grequests">grequests</a> - requests + gevent for asynchronous HTTP requests.</li>
<li><ahref="https://github.com/shazow/urllib3">urllib3</a> - A HTTP library with thread-safe connection pooling, file post support, sanity friendly.</li>
<li><ahref="http://www.web2py.com">web2py</a> - A full stack web framework and platform focused in the ease of use.</li>
<li><ahref="http://webpy.org/">web.py</a> - A web framework for Python that is as simple as it is powerful.</li>
<li><ahref="http://www.turbogears.org/">TurboGears</a> - The Web Framework that starts as a microframework and scales up to a full stack solution.</li>
<li><ahref="http://www.cherrypy.org/">CherryPy</a> - A Minimalist Python Web Framework, HTTP/1.1-compliant and WSGI thread-pooled.</li>
<li><ahref="http://grok.zope.org/">Grok</a> - A framework built on the existing Zope 3 libraries.</li>
<li><ahref="http://bluebream.zope.org/">Bluebream</a> - An open-source web application server, framework and library, formerly known as Zope 3.</li>
<li><ahref="https://github.com/flatpeach/guava">guava</a> - A lightweight and high performance web framework for Python written in C.</li>
</ul>
<h2id="permissions">Permissions</h2>
<p><em>Libraries that allow or deny users access to data or functionality.</em></p>
<ul>
<li><ahref="https://github.com/lukaszb/django-guardian">django-guardian</a> - Implementation of per object permissions for Django 1.2+</li>
<li><ahref="https://github.com/dfunckt/django-rules">django-rules</a> - A tiny but powerful app providing object-level permissions to Django, without requiring a database.</li>
<li><ahref="http://www.github.com/neuman/python-carteblanche/">Carteblanche</a> - Module to align code with thoughts of users and designers. Also magically handles navigation and permissions.</li>
</ul>
<h2id="cms">CMS</h2>
<p><em>Content Management Systems.</em></p>
<ul>
<li><ahref="https://www.django-cms.org/en/">django-cms</a> - An Open source enterprise CMS based on the Django.</li>
<li><ahref="http://djedi-cms.org/">djedi-cms</a> - A lightweight but yet powerful Django CMS with plugins, inline editing and performance in mind.</li>
<li><ahref="http://www.feincms.org/">FeinCMS</a> - One of the most advanced Content Management Systems built on Django.</li>
<li><ahref="http://kotti.pylonsproject.org/">Kotte</a> - A high-level, Pythonic web application framework built on Pyramid.</li>
<li><ahref="http://mezzanine.jupo.org/">Mezzanine</a> - A powerful, consistent, and flexible content management platform.</li>
<li><ahref="http://oppsproject.org/">Opps</a> - A Django-based CMS for magazines, newspapers websites and portals with high-traffic.</li>
<li><ahref="http://plone.org/">Plone</a> - A CMS built on top of the open source application server Zope.</li>
<li><ahref="http://quokkaproject.org/">Quokka</a> - Flexible, extensible, small CMS powered by Flask and MongoDB.</li>
<li><ahref="http://wagtail.io/">Wagtail</a> - A Django content management system.</li>
<li><ahref="http://wid.gy/">Widgy</a> - Last CMS framework, based on Django.</li>
</ul>
<h2id="e-commerce">E-commerce</h2>
<p><em>Frameworks and libraries for e-commerce and payments.</em></p>
<ul>
<li><ahref="http://oscarcommerce.com/">django-oscar</a> - An open-source e-commerce framework for Django.</li>
<li><ahref="https://www.django-cms.org/">django-shop</a> - A Django based shop system.</li>
<li><ahref="https://github.com/agiliq/merchant">merchant</a> - A Django app to accept payments from various payment processors.</li>
<li><ahref="https://github.com/carlospalol/money">money</a> - Money class with optional CLDR-backed locale-aware formatting and an extensible currency exchange solution.</li>
<li><ahref="https://github.com/Alir3z4/python-currencies">python-currencies</a> - Display money format and its filthy currencies.</li>
<li><ahref="https://github.com/lxneng/alipay">alipay</a> - Unofficial Alipay API for Python.</li>
</ul>
<h2id="restful-api">RESTful API</h2>
<p><em>Libraries for developing RESTful APIs.</em></p>
<ul>
<li><ahref="https://cornice.readthedocs.org/">cornice</a> - A REST framework for Pyramid.</li>
<li><ahref="http://www.django-rest-framework.org/">django-rest-framework</a> - A powerful and flexible toolkit that makes it easy to build Web APIs.</li>
<li><ahref="http://tastypieapi.org/">django-tastypie</a> - Creating delicious APIs for Django apps.</li>
<li><ahref="https://github.com/5monkeys/django-formapi">django-formapi</a> - Create JSON APIs with HMAC authentication and Django form-validation.</li>
<li><ahref="http://www.flaskapi.org/">flask-api</a> - An implementation of the same web browsable APIs that django-rest-framework provides.</li>
<li><ahref="http://flask-restful.readthedocs.org/">flask-restful</a> - An extension for Flask that adds support for quickly building REST APIs.</li>
<li><ahref="https://flask-restless.readthedocs.org/en/latest/">flask-restless</a> - A Flask extension for generating ReSTful APIs for database models defined with SQLAlchemy (or Flask-SQLAlchemy).</li>
<li><ahref="https://github.com/marselester/flask-api-utils">flask-api-utils</a> - Flask extension that takes care of API representation and authentication.</li>
<li><ahref="http://falconframework.org/">falcon</a> - A high-performance Python framework for building cloud APIs and web app backends.</li>
<li><ahref="https://github.com/nicolaiarocci/eve">eve</a> - REST API framework powered by Flask, MongoDB and good intentions.</li>
<li><ahref="https://github.com/jeffknupp/sandman">sandman</a> - Automated REST APIs for existing database-driven systems.</li>
<li><ahref="http://restless.readthedocs.org/en/latest/">restless</a> - Framework agnostic REST framework based on lessons learned from TastyPie.</li>
<li><ahref="https://github.com/RueLaLa/savory-pie/">savory-pie</a> - REST API building library (django, and others)</li>
</ul>
<h2id="authentication">Authentication</h2>
<p><em>Libraries for implementing authentications schemes.</em></p>
<ul>
<li>OAuth<ul>
<li><ahref="http://peterhudec.github.io/authomatic/">Authomatic</a> - Simple but powerful framework agnostic authentication/authorization client package.</li>
<li><ahref="https://github.com/idan/oauthlib">OAuthLib</a> - A generic, spec-compliant, thorough implementation of the OAuth request-signing logic.</li>
<li><ahref="https://github.com/litl/rauth">rauth</a> - A Python library for OAuth 1.0/a, 2.0, and Ofly.</li>
<li><ahref="https://github.com/simplegeo/python-oauth2">python-oauth2</a> - A fully tested, abstract interface to creating OAuth clients and servers.</li>
<li><ahref="https://github.com/omab/python-social-auth">python-social-auth</a> - An easy-to-setup social authentication mechanism.</li>
<li><ahref="https://github.com/evonove/django-oauth-toolkit">django-oauth-toolkit</a> - OAuth2 goodies for the Djangonauts.</li>
<li><ahref="https://github.com/caffeinehit/django-oauth2-provider">django-oauth2-provider</a> - Providing OAuth2 access to Django app.</li>
<li><ahref="https://github.com/pennersr/django-allauth">django-allauth</a> - Authentication app for Django that "just works."</li>
<li><ahref="https://github.com/lepture/flask-oauthlib">Flask-OAuthlib</a> - OAuth 1.0/a, 2.0 implementation of client and provider for Flask.</li>
<li><ahref="https://github.com/demianbrecht/sanction">sanction</a> - A dead simple OAuth2 client implementation.</li>
</ul>
</li>
<li>Others<ul>
<li><ahref="https://github.com/progrium/pyjwt">PyJWT</a> - Implementation of the JSON Web Token draft 01.</li>
<li><ahref="https://github.com/davedoesdev/python-jwt">python-jwt</a> - Module for generating and verifying JSON Web Tokens.</li>
<li><ahref="https://github.com/brianloveswords/python-jws">python-jws</a> - Implementation of JSON Web Signatures draft 02.</li>
<li><ahref="https://github.com/demonware/jose">jose</a> - JavaScript Object Signing and Encryption draft implementation.</li>
</ul>
</li>
</ul>
<h2id="template-engine">Template Engine</h2>
<p><em>Libraries and tools for templating and lexing.</em></p>
<ul>
<li><ahref="https://github.com/mitsuhiko/jinja2">Jinja2</a> - A modern and designer friendly templating language.</li>
<li><ahref="http://genshi.edgewall.org/">Genshi</a> - Python templating toolkit for generation of web-aware output.</li>
<li><ahref="http://www.makotemplates.org/">Mako</a> - Hyperfast and lightweight templating for the Python platform.</li>
<li><ahref="https://chameleon.readthedocs.org/">Chameleon</a> - An HTML/XML template engine. Modeled after ZPT, optimized for speed.</li>
<li><ahref="https://code.google.com/p/spitfire/">Spitfire</a> - A very fast Python template compiler.</li>
</ul>
<h2id="queue">Queue</h2>
<p><em>Libraries for working with event and task queues.</em></p>
<ul>
<li><ahref="http://www.celeryproject.org/">celery</a> - An asynchronous task queue/job queue based on distributed message passing.</li>
<li><ahref="https://github.com/coleifer/huey">huey</a> - Little multi-threaded task queue.</li>
<li><ahref="https://github.com/pricingassistant/mrq">mrq</a> - Mr. Queue - A distributed worker task queue in Python using Redis & gevent.</li>
<li><ahref="http://python-rq.org/">rq</a> - Simple job queues for Python.</li>
<li><ahref="https://github.com/rdegges/simpleq">simpleq</a> - A simple, infinitely scalable, Amazon SQS based queue.</li>
</ul>
<h2id="search">Search</h2>
<p><em>Libraries and software for indexing and performing search queries on data.</em></p>
<ul>
<li><ahref="https://github.com/toastdriven/django-haystack">django-haystack</a> - Modular search for Django.</li>
<li><ahref="http://www.elasticsearch.org/guide/en/elasticsearch/client/python-api/current/">elasticsearch-py</a> - The official low-level Python client for <ahref="https://www.elastic.co/products/elasticsearch">Elasticsearch</a>.</li>
<li><ahref="https://github.com/elastic/elasticsearch-dsl-py">elasticsearch-dsl-py</a> - The official high-level Python client for Elasticsearch.</li>
<li><ahref="https://code.google.com/p/solrpy/">solrpy</a> - A Python client for <ahref="http://lucene.apache.org/solr/">solr</a>.</li>
<li><ahref="http://whoosh.readthedocs.org/">Whoosh</a> - A fast, pure Python search engine library.</li>
</ul>
<h2id="news-feed">News Feed</h2>
<p><em>Libraries for building user's activities.</em></p>
<ul>
<li><ahref="https://github.com/tschellenbach/Feedly">Feedly</a> - A library to build newsfeed and notification systems using Cassandra and Redis.</li>
<li><ahref="https://github.com/justquick/django-activity-stream">django-activity-stream</a> - Generate generic activity streams from the actions on your site.</li>
</ul>
<h2id="asset-management">Asset Management</h2>
<p><em>Tools for managing, compressing and minifying website assets.</em></p>
<ul>
<li><ahref="https://github.com/django-compressor/django-compressor">django-compressor</a> - Compresses linked and inline JavaScript or CSS into a single cached file.</li>
<li><ahref="https://github.com/jaysonsantos/jinja-assets-compressor">jinja-assets-compressor</a> - A Jinja extension to compile and compress your assets.</li>
<li><ahref="http://webassets.readthedocs.org/">webassets</a> - Bundles, optimizes, and manages unique cache-busting URLs for static resources.</li>
<li><ahref="http://www.fanstatic.org/">fanstatic</a> - Packages, optimizes, and serves static file dependencies as Python packages.</li>
<li><ahref="http://fileconveyor.org/">fileconveyor</a> - Monitors changes, processes, and transports assets to CDNs and file storage systems.</li>
<li><ahref="http://code.larlet.fr/django-storages/">django-storages</a> - A collection of custom storage back ends for Django.</li>
<li><ahref="http://gluecss.com">glue</a> - Glue is a simple command line tool to generate CSS sprites.</li>
<li><ahref="http://hongminhee.org/libsass-python/">libsass-python</a> - A Python binding of <ahref="https://github.com/hcatlin/libsass">libsass</a>, the reference implementation of SASS/SCSS.</li>
<li><ahref="http://flask-assets.readthedocs.org/">Flask-Assets</a> - Helps you integrate webassets into your Flask app.</li>
</ul>
<h2id="caching">Caching</h2>
<p><em>Libraries for caching data.</em></p>
<ul>
<li><ahref="http://beaker.readthedocs.org/">Beaker</a> - A library for caching and sessions for use with web applications and stand-alone Python scripts and applications.</li>
<li><ahref="http://dogpilecache.readthedocs.org/">dogpile.cache</a> - dogpile.cache is next generation replacement for Beaker made by same authors.</li>
<li><ahref="https://pypi.python.org/pypi/HermesCache">HermesCache</a> - Python caching library with tag-based invalidation and dogpile effect prevention.</li>
<li><ahref="https://github.com/jbalogh/django-cache-machine">django-cache-machine</a> - Automatic caching and invalidation for Django models through the ORM.</li>
<li><ahref="https://github.com/Suor/django-cacheops">django-cacheops</a> - A slick ORM cache with automatic granular event-driven invalidation.</li>
<li><ahref="https://github.com/jmoiron/johnny-cache">johnny-cache</a> - A caching framework for django applications.</li>
<li><ahref="https://github.com/5monkeys/django-viewlet">django-viewlet</a> - Render template parts with extended cache control.</li>
<li><ahref="https://github.com/lericson/pylibmc">pylibmc</a> - A Python wrapper around the <ahref="http://libmemcached.org/libMemcached.html">libmemcached</a> interface.</li>
</ul>
<h2id="email">Email</h2>
<p><em>Libraries for sending and parsing email.</em></p>
<ul>
<li><ahref="https://github.com/kennethreitz/inbox.py">inbox.py</a> - Python SMTP Server for Humans.</li>
<li><ahref="https://github.com/martinrusev/imbox">imbox</a> - Python IMAP for Humans.</li>
<li><ahref="https://github.com/inboxapp/inbox">inbox</a> - The open source email toolkit.</li>
<li><ahref="http://babel.pocoo.org/">Babel</a> - An internationalization library for Python.</li>
<li><ahref="https://korean.readthedocs.org/">Korean</a> - A library for <ahref="http://en.wikipedia.org/wiki/Korean_language">Korean</a> morphology.</li>
</ul>
<h2id="url-manipulation">URL Manipulation</h2>
<p><em>Libraries for parsing URLs.</em></p>
<ul>
<li><ahref="https://github.com/gruns/furl">furl</a> - A small Python library that makes manipulating URLs simple.</li>
<li><ahref="https://github.com/codeinthehole/purl">purl</a> - A simple, immutable URL class with a clean API for interrogation and manipulation.</li>
<li><ahref="https://github.com/ellisonleao/pyshorteners">pyshorteners</a> - A pure Python URL shortening lib.</li>
<li><ahref="https://github.com/Alir3z4/python-short_url">short_url</a> - Python implementation for generating Tiny URL and bit.ly-like URLs.</li>
<li><ahref="https://github.com/sloria/webargs">webargs</a> - A friendly library for parsing HTTP request arguments, with built-in support for popular web frameworks, including Flask, Django, Bottle, Tornado, and Pyramid.</li>
</ul>
<h2id="html-manipulation">HTML Manipulation</h2>
<p><em>Libraries for working with HTML and XML.</em></p>
<ul>
<li><ahref="http://www.crummy.com/software/BeautifulSoup/bs4/doc/">BeautifulSoup</a> - Providing Pythonic idioms for iterating, searching, and modifying HTML or XML.</li>
<li><ahref="http://lxml.de/">lxml</a> - A very fast, easy-to-use and versatile library for handling HTML and XML.</li>
<li><ahref="https://github.com/html5lib/html5lib-python">html5lib</a> - A standards-compliant library for parsing and serializing HTML documents and fragments.</li>
<li><ahref="https://github.com/gawel/pyquery">pyquery</a> - A jQuery-like library for parsing HTML.</li>
<li><ahref="https://pypi.python.org/pypi/cssutils/">cssutils</a> - A CSS library for Python.</li>
<li><ahref="https://github.com/mitsuhiko/markupsafe">MarkupSafe</a> - Implements a XML/HTML/XHTML Markup safe string for Python.</li>
<li><ahref="http://bleach.readthedocs.org/">bleach</a> - A whitelist-based HTML sanitization and text linkification library.</li>
<li><ahref="https://github.com/martinblech/xmltodict">xmltodict</a> - Working with XML feel like you are working with JSON.</li>
<li><ahref="https://github.com/chrisglass/xhtml2pdf">xhtml2pdf</a> - HTML/CSS to PDF converter.</li>
<li><ahref="https://github.com/stchris/untangle">untangle</a> - Converts XML documents to Python objects for easy access.</li>
</ul>
<h2id="web-crawling">Web Crawling</h2>
<p><em>Libraries for scraping websites.</em></p>
<ul>
<li><ahref="http://scrapy.org/">Scrapy</a> - A fast high-level screen scraping and web crawling framework.</li>
<li><ahref="https://github.com/scrapinghub/portia">portia</a> - Visual scraping for Scrapy.</li>
<li><ahref="https://github.com/jmcarp/robobrowser">RoboBrowser</a> - A simple, Pythonic library for browsing the web without a standalone web browser.</li>
<li><ahref="https://github.com/hickford/MechanicalSoup">MechanicalSoup</a> - A Python library for automating interaction with websites.</li>
<li><ahref="http://wwwsearch.sourceforge.net/mechanize/">mechanize</a> - Stateful programmatic web browsing.</li>
<p><em>Libraries for extracting web contents.</em></p>
<ul>
<li><ahref="https://github.com/codelucas/newspaper">newspaper</a> - News extraction, article extraction and content curation in Python.</li>
<li><ahref="https://github.com/Alir3z4/html2text">html2text</a> - Convert HTML to Markdown-formatted text.</li>
<li><ahref="https://github.com/grangier/python-goose">python-goose</a> - HTML Content/Article Extractor.</li>
<li><ahref="https://github.com/michaelhelmick/lassie">lassie</a> - Web Content Retrieval for Humans.</li>
<li><ahref="https://github.com/coleifer/micawber">micawber</a> - A small library for extracting rich content from URLs.</li>
<li><ahref="https://github.com/miso-belica/sumy">sumy</a> - A module for automatic summarization of text documents and HTML pages.</li>
<li><ahref="https://github.com/vinta/Haul">Haul</a> - An Extensible Image Crawler.</li>
<li><ahref="https://github.com/buriy/python-readability">python-readability</a> - Fast Python port of arc90's readability tool.</li>
<li><ahref="https://github.com/erikriver/opengraph">opengraph</a> - A Python module to parse the Open Graph Protocol</li>
<li><ahref="https://github.com/deanmalmgren/textract">textract</a> - Extract text from any document, Word, PowerPoint, PDFs, etc.</li>
<li><ahref="https://github.com/Alir3z4/sanitize">sanitize</a> - Bringing sanity to world of messed-up data.</li>
</ul>
<h2id="forms">Forms</h2>
<p><em>Libraries for working with forms.</em></p>
<ul>
<li><ahref="http://wtforms.readthedocs.org/">WTForms</a> - A flexible forms validation and rendering library.</li>
<li><ahref="http://wtforms-json.readthedocs.org/">WTForms-JSON</a> - A WTForms extension for JSON data handling.</li>
<li><ahref="http://deform.readthedocs.org/">Deform</a> - Python HTML form generation library influenced by the formish form generation library.</li>
<li><ahref="https://github.com/dyve/django-bootstrap3">django-bootstrap3</a> - Bootstrap 3 integration with Django.</li>
<li><ahref="http://django-crispy-forms.readthedocs.org/">django-crispy-forms</a> - A Django app which lets you create beautiful forms in a very elegant and DRY way.</li>
<li><ahref="https://github.com/WiserTogether/django-remote-forms">django-remote-forms</a> - A platform independent Django form serializer.</li>
</ul>
<h2id="data-validation">Data Validation</h2>
<p><em>Libraries for validating data. Used for forms in many cases.</em></p>
<ul>
<li><ahref="https://github.com/alecthomas/voluptuous">voluptuous</a> - A Python data validation library. It is primarily intended for validating data coming into Python as JSON, YAML, etc.</li>
<li><ahref="http://docs.pylonsproject.org/projects/colander/">colander</a> - A system for validating and deserializing data obtained via XML, JSON, an HTML form post or any other equally simple data serialization.</li>
<li><ahref="https://github.com/halst/schema">schema</a> - A library for validating Python data structures.</li>
<li><ahref="https://github.com/schematics/schematics">Schematics</a> - Data Structure Validation.</li>
<li><ahref="https://github.com/ambitioninc/kmatch">kmatch</a> - A language for matching/validating/filtering Python dictionaries.</li>
<li><ahref="https://github.com/podio/valideer">valideer</a> - Lightweight extensible data validation and adaptation library.</li>
</ul>
<h2id="anti-spam">Anti-spam</h2>
<p><em>Libraries for fighting spam.</em></p>
<ul>
<li><ahref="https://github.com/moqada/django-simple-spam-blocker">django-simple-spam-blocker</a> - Simple spam blocker for Django.</li>
<li><ahref="https://github.com/mbi/django-simple-captcha">django-simple-captcha</a> - A simple and highly customizable Django app to add captcha images to any Django form.</li>
</ul>
<h2id="tagging">Tagging</h2>
<p><em>Libraries for tagging items.</em></p>
<ul>
<li><ahref="https://github.com/alex/django-taggit">django-taggit</a> - Simple tagging for Django.</li>
</ul>
<h2id="admin-panels">Admin Panels</h2>
<p><em>Libraries for administrative interfaces.</em></p>
<ul>
<li><ahref="https://github.com/Eugeny/ajenti">Ajenti</a> - The admin panel your servers deserve.</li>
<li><ahref="http://grappelliproject.com">Grappelli</a>– A jazzy skin for the Django Admin-Interface.</li>
<li><ahref="http://djangosuit.com/">django-suit</a> - Alternative Django Admin-Interface (free only for Non-commercial use).</li>
<li><ahref="https://github.com/sshwsfc/django-xadmin">django-xadmin</a> - Drop-in replacement of Django admin comes with lots of goodies.</li>
<li><ahref="https://github.com/mrjoes/flask-admin">flask-admin</a> - Simple and extensible administrative interface framework for Flask.</li>
<li><ahref="https://github.com/mher/flower">flower</a> - Real-time monitor and web admin for Celery.</li>
</ul>
<h2id="static-site-generator">Static Site Generator</h2>
<p><em>Static site generator is a software that takes some text + templates as input and produces HTML files on the output.</em></p>
<ul>
<li><ahref="http://blog.getpelican.com/">Pelican</a> - Uses Markdown or ReST for content and Jinja 2 for themes. Supports DVCS, Disqus. AGPL.</li>
<li><ahref="http://github.com/koenbok/Cactus/">Cactus</a>– Static site generator for designers.</li>
<li><ahref="https://hyde.github.com/">Hyde</a> - Jinja2-based static web site generator.</li>
<li><ahref="http://www.getnikola.com/">Nikola</a> - A static website and blog generator.</li>
<li><ahref="http://tinkerer.me/">Tinkerer</a> - Tinkerer is a blogging engine/.static website generator powered by Sphinx.</li>
</ul>
<h2id="processes-and-threads">Processes and Threads</h2>
<p><em>Libraries for working with processes or threads</em></p>
<ul>
<li><ahref="https://docs.python.org/2/library/multiprocessing.html">multiprocessing</a> - (Python standard library) Process-based "threading" interface.</li>
<li><ahref="https://docs.python.org/2/library/threading.html">threading</a> - (Python standard library) Higher-level threading interface.</li>
<li><ahref="https://github.com/kennethreitz/envoy">envoy</a> - Python Subprocesses for Humans™.</li>
<li><ahref="https://github.com/amoffat/sh">sh</a> - A full-fledged <ahref="https://docs.python.org/2/library/subprocess.html">subprocess</a> replacement for Python.</li>
<li><ahref="http://sarge.readthedocs.org/">sarge</a> - A wrapper for subprocess.</li>
</ul>
<h2id="concurrency-and-networking">Concurrency and Networking</h2>
<p><em>Libraries for concurrency and network programming.</em></p>
<ul>
<li><ahref="https://docs.python.org/3/library/asyncio.html">asyncio</a> - (Python standard library in Python 3.4+) Asynchronous I/O, event loop, coroutines and tasks.</li>
<li><ahref="http://www.gevent.org/">gevent</a> - A coroutine-based Python networking library that uses <ahref="https://github.com/python-greenlet/greenlet">greenlet</a>.</li>
<li><ahref="https://twistedmatrix.com/trac/">Twisted</a> - An event-driven networking engine.</li>
<li><ahref="http://www.tornadoweb.org/">Tornado</a> - A Web framework and asynchronous networking library.</li>
<li><ahref="https://github.com/quantmind/pulsar">pulsar</a> - Event-driven concurrent framework for Python.</li>
<li><ahref="https://github.com/jamwt/diesel">diesel</a> - Greenlet-based event I/O Framework for Python.</li>
<li><ahref="http://eventlet.net/">eventlet</a> - Asynchronous framework with WSGI support.</li>
<li><ahref="http://zeromq.github.io/pyzmq/">pyzmq</a> - A Python wrapper for the 0MQ message library.</li>
<li><ahref="https://github.com/smira/txZMQ">txZMQ</a> - Twisted based wrapper for the 0MQ message library.</li>
<li><ahref="http://crossbar.io">Crossbar</a> - Open-source Unified Application Router (Websocket & WAMP for Python on Autobahn).</li>
</ul>
<h2id="websocket">WebSocket</h2>
<p><em>Libraries for working with WebSocket.</em></p>
<ul>
<li><ahref="https://github.com/tavendo/AutobahnPython">AutobahnPython</a> - WebSocket & WAMP for Python on Twisted and <ahref="https://docs.python.org/3/library/asyncio.html">asyncio</a>.</li>
<li><ahref="https://github.com/Lawouach/WebSocket-for-Python">WebSocket-for-Python</a> - WebSocket client and server library for Python 2 and 3 as well as PyPy.</li>
</ul>
<h2id="wsgi-servers">WSGI Servers</h2>
<p><em>WSGI-compatible web servers.</em></p>
<ul>
<li><ahref="https://uwsgi-docs.readthedocs.org/en/latest/">uwsgi</a> - A project aims at developing a full stack for building hosting services, written in C.</li>
<li><ahref="http://werkzeug.pocoo.org/">Werkzeug</a> - A WSGI utility library for Python that powers Flask and can easily be embedded into your own projects.</li>
<li><ahref="http://pythonpaste.org/">paste</a> - Multi-threaded, stable, tried and tested.</li>
<li><ahref="https://github.com/hivesolutions/netius">netius</a> - Asynchronous, very fast.</li>
<li><ahref="http://pypi.python.org/pypi/gunicorn">gunicorn</a> - Pre-forked, partly written in C.</li>
<li><ahref="http://www.fapws.org/">fapws3</a> - Asynchronous (network side only), written in C.</li>
<li><ahref="http://pypi.python.org/pypi/meinheld">meinheld</a> - Asynchronous, partly written in C.</li>
<li><ahref="http://pypi.python.org/pypi/bjoern">bjoern</a> - Asynchronous, very fast and written in C.</li>
</ul>
<h2id="rpc-servers">RPC Servers</h2>
<p><em>RPC-compatible servers.</em></p>
<ul>
<li><ahref="https://docs.python.org/2/library/simplexmlrpcserver.html">SimpleXMLRPCServer</a> - (Python standard library) Simple XML-RPC server implementation, single-threaded.</li>
<li><ahref="https://github.com/joshmarshall/jsonrpclib/">SimpleJSONRPCServer</a> - This library is an implementation of the JSON-RPC specification.</li>
<li><ahref="https://github.com/dotcloud/zerorpc-python">zeroRPC</a> - zerorpc is a flexible RPC implementation based on <ahref="http://zeromq.org/">ZeroMQ</a> and <ahref="http://msgpack.org/">MessagePack</a>.</li>
</ul>
<h2id="cryptography">Cryptography</h2>
<ul>
<li><ahref="https://www.dlitz.net/software/pycrypto/">PyCrypto</a> - The Python Cryptography Toolkit.</li>
<li><ahref="http://www.paramiko.org/">Paramiko</a> - A Python (2.6+, 3.3+) implementation of the SSHv2 protocol, providing both client and server functionality.</li>
<li><ahref="https://cryptography.io/">cryptography</a> - A package designed to expose cryptographic primitives and recipes to Python developers.</li>
<li><ahref="https://github.com/pyca/pynacl">PyNacl</a> - Python binding to the Networking and Cryptography (NaCl) library.</li>
<li><ahref="https://github.com/davidaurelio/hashids-python">hashids</a> - Implementation of <ahref="http://hashids.org">hashids</a> in Python.</li>
<li><ahref="https://pythonhosted.org/passlib/">Passlib</a> - Secure password storage/hashing library, very high level.</li>
</ul>
<h2id="gui">GUI</h2>
<p><em>Libraries for working with graphical user interface applications.</em></p>
<ul>
<li><ahref="http://www.riverbankcomputing.co.uk/software/pyqt/intro">PyQt</a> - Python bindings for the <ahref="http://qt-project.org/">Qt</a> cross-platform application and UI framework, with support for both Qt v4 and Qt v5 frameworks.</li>
<li><ahref="http://qt-project.org/wiki/pyside">PySide</a> - Python bindings for the <ahref="http://qt-project.org/">Qt</a> cross-platform application and UI framework, supporting the Qt v4 framework.</li>
<li><ahref="http://wxpython.org/">wxPython</a> - A blending of the wxWidgets C++ class library with the Python.</li>
<li><ahref="http://kivy.org/">kivy</a> - A library for creating NUI applications, running on Windows, Linux, Mac OS X, Android and iOS.</li>
<li><ahref="https://docs.python.org/2/library/curses.html#module-curses">curses</a> - Built-in wrapper for <ahref="http://www.gnu.org/software/ncurses/">ncurses</a> used to create terminal GUI applications.</li>
<li><ahref="http://urwid.org/">urwid</a> - A library for creating terminal GUI applications with strong support for widgets, events, rich colors, etc.</li>
<li><ahref="http://www.pyglet.org/">pyglet</a> - A cross-platform windowing and multimedia library for Python.</li>
<li><ahref="https://wiki.python.org/moin/TkInter">Tkinter</a> - Tkinter is Python's de-facto standard GUI package.</li>
<li><ahref="https://github.com/nucleic/enaml">enaml</a> - Creating beautiful user-interfaces with Declaratic Syntax like QML.</li>
<li><ahref="https://github.com/pybee/toga">Toga</a> - A Python native, OS native GUI toolkit.</li>
</ul>
<h2id="game-development">Game Development</h2>
<p><em>Awesome game development libraries.</em></p>
<ul>
<li><ahref="http://www.pygame.org/news.html">Pygame</a> - Pygame is a set of Python modules designed for writing games.</li>
<li><ahref="http://cocos2d.org/">Cocos2d</a> - cocos2d is a framework for building 2D games, demos, and other graphical/interactive applications. It is based on pyglet.</li>
<li><ahref="http://pysdl2.readthedocs.org/">PySDL2</a> - A ctypes based wrapper for the SDL2 library.</li>
<li><ahref="https://www.panda3d.org/">Panda3D</a> - 3D game engine developed by Disney and maintained by Carnegie Mellon's Entertainment Technology Center. Written in C++, completely wrapped in Python.</li>
<li><ahref="http://www.ogre3d.org/tikiwiki/PyOgre">PyOgre</a> - Python bindings for the Ogre 3D render engine, can be used for games, simulations, anything 3D.</li>
<li><ahref="http://pyopengl.sourceforge.net/">PyOpenGL</a> - Python ctypes bindings for OpenGL and it's related APIs.</li>
<li><ahref="http://www.python-sfml.org/">PySFML</a> - Python bindings for <ahref="http://www.sfml-dev.org/">SFML</a></li>
<li><ahref="http://www.renpy.org/">RenPy</a> - A Visual Novel engine.</li>
</ul>
<h2id="logging">Logging</h2>
<p><em>Libraries for generating and working with log files.</em></p>
<ul>
<li><ahref="https://docs.python.org/2/library/logging.html">logging</a> - (Python standard library) Logging facility for Python.</li>
<li><ahref="http://pythonhosted.org/Logbook/">logbook</a> - Logging replacement for Python.</li>
<li><ahref="https://pypi.python.org/pypi/sentry">Sentry</a> - A realtime logging and aggregation server.</li>
<li><ahref="http://raven.readthedocs.org/">Raven</a> - The Python client for Sentry.</li>
</ul>
<h2id="testing">Testing</h2>
<p><em>Libraries for testing codebases and generating test data.</em></p>
<ul>
<li>Testing Frameworks<ul>
<li><ahref="https://docs.python.org/2/library/unittest.html">unittest</a> - (Python standard library) Unit testing framework.</li>
<li><ahref="https://nose.readthedocs.org/">nose</a> - nose extends unittest.</li>
<li><ahref="http://pytest.org/">pytest</a> - A mature full-featured Python testing tool.</li>
<li><ahref="https://nestorsalceda.github.io/mamba">mamba</a> - The definitive testing tool for Python. Born under the banner of BDD.</li>
<li><ahref="https://github.com/benjamin-hodgson/Contexts">contexts</a> - A BDD framework for Python 3.3+. Inspired by C#'s <code>Machine.Specifications</code>.</li>
<li><ahref="https://github.com/drslump/pyshould">pyshould</a> - Should style asserts based on <ahref="https://github.com/hamcrest/PyHamcrest">PyHamcrest</a>.</li>
<li><ahref="http://heynemann.github.io/pyvows/">pyvows</a> - BDD style testing for Python. Inspired by <ahref="http://vowsjs.org/">Vows.js</a>.</li>
</ul>
</li>
<li>Web Testing<ul>
<li><ahref="https://pypi.python.org/pypi/selenium">Selenium</a> - Python bindings for <ahref="http://www.seleniumhq.org/">Selenium</a> WebDriver.</li>
<li><ahref="http://splinter.cobrateam.info/">splinter</a> - Open source tool for testing web applications.</li>
<li><ahref="https://github.com/locustio/locust">locust</a> - Scalable user load testing tool written in Python.</li>
<li><ahref="https://github.com/seatgeek/sixpack">sixpack</a> - A language-agnostic A/B Testing framework.</li>
</ul>
</li>
<li>Mock<ul>
<li><ahref="https://pypi.python.org/pypi/mock">mock</a> - A Python Mocking and Patching Library for Testing.</li>
<li><ahref="https://github.com/dropbox/responses">responses</a> - A utility library for mocking out the requests Python library.</li>
<li><ahref="https://pypi.python.org/pypi/doublex">doublex</a> - Powerful test doubles framework for Python.</li>
<li><ahref="https://github.com/spulec/freezegun">freezegun</a> - Travel through time by mocking the datetime module.</li>
<li><ahref="http://falcao.it/HTTPretty/">httpretty</a> - HTTP request mock tool for Python.</li>
<li><ahref="https://github.com/patrys/httmock">httmock</a> - A mocking library for requests for Python 2.6+ and 3.2+.</li>
<li><ahref="https://github.com/rbarrois/factory_boy">factory_boy</a> - A test fixtures replacement for Python.</li>
<li><ahref="https://mixer.readthedocs.org">mixer</a> - Another fixtures replacement. Supported Django, Flask, SQLAlchemy, Peewee and etc.</li>
<li><ahref="https://github.com/vandersonmota/model_mommy">model_mommy</a> - Creating random fixtures for testing in Django.</li>
<li><ahref="https://pypi.python.org/pypi/radar">radar</a> - Generate random datetime / time.</li>
</ul>
</li>
<li>Error Handler<ul>
<li><ahref="https://github.com/ajalt/fuckitpy">FuckIt.py</a> - FuckIt.py uses state-of-the-art technology to make sure your Python code runs whether it has any right to or not.</li>
</ul>
</li>
</ul>
<h2id="code-analysis-and-linter">Code Analysis and Linter</h2>
<p><em>Libraries and tools for analysing, parsing and manipulation codebases.</em></p>
<ul>
<li>Code Analysis<ul>
<li><ahref="https://github.com/yinwang0/pysonar2">pysonar2</a> - A type inferencer and indexer for Python.</li>
<li><ahref="https://github.com/gak/pycallgraph">pycallgraph</a> - A library that visualises the flow (call graph) of your Python application.</li>
<li><ahref="https://github.com/scottrogowski/code2flow">code2flow</a> - Turn your Python and JavaScript code into DOT flowcharts.</li>
</ul>
</li>
<li>Linter<ul>
<li><ahref="https://pypi.python.org/pypi/flake8">Flake8</a> - The modular source code checker: pep8, pyflakes and co.</li>
<li><ahref="https://pylama.readthedocs.org/">pylama</a> - Code audit tool for Python and JavaScript.</li>
<li><ahref="http://www.pylint.org/">Pylint</a> - A source code analyzer.</li>
</ul>
</li>
</ul>
<h2id="debugging-tools">Debugging Tools</h2>
<p><em>Libraries for debugging code.</em></p>
<ul>
<li><ahref="https://docs.python.org/2/library/pdb.html">pdb</a> - (Python standard library) The Python Debugger.</li>
<li><ahref="https://github.com/Kozea/wdb">wdb</a> - An improbable web debugger through WebSockets.</li>
<li><ahref="http://winpdb.org/">winpdb</a> - A Platform Independent Python Debugger with GUI.</li>
<li><ahref="https://pypi.python.org/pypi/pudb">pudb</a>– A full-screen, console-based Python debugger.</li>
<li><ahref="https://github.com/google/pyringe">pyringe</a> - Debugger capable of attaching to and injecting code into Python processes.</li>
<li><ahref="https://github.com/WoLpH/python-statsd">python-statsd</a> - Python Client for the <ahref="https://github.com/etsy/statsd/">statsd</a> server.</li>
<li><ahref="https://github.com/fabianp/memory_profiler">memory_profiler</a> - Monitor Memory usage of Python code.</li>
<li><ahref="https://github.com/what-studio/profiling">profiling</a> - An interactive Python profiler.</li>
<li><ahref="https://github.com/django-debug-toolbar/django-debug-toolbar">django-debug-toolbar</a> - Display various debug information about the current request/response.</li>
<li><ahref="https://github.com/dcramer/django-devserver">django-devserver</a> - A drop-in replacement for Django's runserver.</li>
<li><ahref="https://github.com/mgood/flask-debugtoolbar">flask-debugtoolbar</a> - A port of the django-debug-toolbar to flask.</li>
<li><ahref="https://github.com/eliben/pyelftools">pyelftools</a> - A pure-Python library for parsing and analyzing ELF files and DWARF debugging information.</li>
</ul>
<h2id="science-and-data-analysis">Science and Data Analysis</h2>
<p><em>Libraries for scientific computing and data analyzing.</em></p>
<ul>
<li><ahref="http://www.scipy.org/">SciPy</a> - A Python-based ecosystem of open-source software for mathematics, science, and engineering.</li>
<li><ahref="http://www.numpy.org/">NumPy</a> - A fundamental package for scientific computing with Python.</li>
<li><ahref="http://numba.pydata.org/">Numba</a> - Python JIT (just in time) complier to LLVM aimed at scientific Python by the developers of Cython and NumPy.</li>
<li><ahref="https://networkx.github.io/">NetworkX</a> - A high-productivity software for complex networks.</li>
<li><ahref="http://pandas.pydata.org/">Pandas</a> - A library providing high-performance, easy-to-use data structures and data analysis tools.</li>
<li><ahref="https://github.com/avelino/mining">Open Mining</a> - Business Intelligence (BI) in Python (Pandas web interface)</li>
<li><ahref="https://github.com/pymc-devs/pymc">PyMC</a> - Markov Chain Monte Carlo sampling toolkit.</li>
<li><ahref="https://github.com/quantopian/zipline">zipline</a> - A Pythonic algorithmic trading library.</li>
<li><ahref="https://pydy.org/">PyDy</a> - Short for Python Dynamics, used to assist with workflow in the modeling of dynamic motion based around NumPy, SciPy, IPython, and matplotlib.</li>
<li><ahref="https://github.com/sympy/sympy">SymPy</a> - A Python library for symbolic mathematics.</li>
<li><ahref="https://github.com/statsmodels/statsmodels">statsmodels</a> - Statistical modeling and econometrics in Python.</li>
<li><ahref="http://www.astropy.org/">astropy</a> - A community Python library for Astronomy.</li>
<li><ahref="http://orange.biolab.si/">orange</a> - Data mining, data visualization, analysis and machine learning through visual programming or Python scripting.</li>
<li><ahref="http://www.rdkit.org/">RDKit</a> - Cheminformatics and Machine Learning Software.</li>
<li><ahref="http://openbabel.org/wiki/Main_Page">Open Babel</a> - A chemical toolbox designed to speak the many languages of chemical data.</li>
<li><ahref="http://cclib.github.io/">cclib</a> - A library for parsing and interpreting the results of computational chemistry packages.</li>
<li><ahref="http://biopython.org/wiki/Main_Page">Biopython</a> - Biopython is a set of freely available tools for biological computation.</li>
<li><ahref="https://github.com/chapmanb/bcbb">bccb</a> - Collection of useful code related to biological analysis.</li>
<li><ahref="https://github.com/chapmanb/bcbio-nextgen">bcbio-nextgen</a> - A toolkit providing best-practice pipelines for fully automated high throughput sequencing analysis.</li>
<li><ahref="http://blaze.pydata.org/en/latest/">blaze</a> - NumPy and Pandas interface to Big Data.</li>
<p><em>Libraries for visualizing data. See: <ahref="https://github.com/sorrycc/awesome-javascript#data-visualization">awesome-javascript</a>.</em></p>
<ul>
<li><ahref="http://matplotlib.org/">matplotlib</a> - A Python 2D plotting library.</li>
<li><ahref="https://github.com/ContinuumIO/bokeh">bokeh</a> - Interactive Web Plotting for Python.</li>
<li><ahref="https://plot.ly/python">plotly</a> - Collaborative web plotting for Python and matplotlib.</li>
<li><ahref="https://github.com/wrobstory/vincent">vincent</a> - A Python to Vega translator.</li>
<li><ahref="https://github.com/mikedewar/d3py">d3py</a> - A plotting library for Python, based on <ahref="http://d3js.org/">D3.js</a>.</li>
<li><ahref="https://github.com/yhat/ggplot">ggplot</a> - Same API as ggplot2 for R.</li>
<li><ahref="https://github.com/kartograph/kartograph.py">Kartograph.py</a> - Rendering beautiful SVG maps in Python.</li>
<li><ahref="http://pygal.org/">pygal</a> - A Python SVG Charts Creator.</li>
<li><ahref="https://pypi.python.org/pypi/pygraphviz">pygraphviz</a> - Python interface to <ahref="http://www.graphviz.org/">Graphviz</a>.</li>
<li><ahref="http://www.pyqtgraph.org/">PyQtGraph</a> - Interactive and realtime 2D/3D/Image plotting and science/engineering widgets.</li>
<li><ahref="http://vispy.org/">VisPy</a> - High-performance scientific visualization based on OpenGL.</li>
</ul>
<h2id="computer-vision">Computer Vision</h2>
<p><em>Libraries for computer vision.</em></p>
<ul>
<li><ahref="http://opencv.org/">OpenCV</a> - Open Source Computer Vision Library.</li>
<li><ahref="http://simplecv.org/">SimpleCV</a> - An open source framework for building computer vision applications.</li>
</ul>
<h2id="machine-learning">Machine Learning</h2>
<p><em>Libraries for Machine Learning. See: <ahref="https://github.com/josephmisiti/awesome-machine-learning#python">awesome-machine-learning</a>.</em></p>
<ul>
<li><ahref="http://scikit-learn.org/">scikit-learn</a> - A Python module for machine learning built on top of SciPy.</li>
<li><ahref="https://github.com/clips/pattern">pattern</a> - Web mining module for Python.</li>
<li><ahref="https://github.com/numenta/nupic">NuPIC</a> - Numenta Platform for Intelligent Computing.</li>
<li><ahref="https://github.com/lisa-lab/pylearn2">Pylearn2</a> - A Machine Learning library based on <ahref="https://github.com/Theano/Theano">Theano</a>.</li>
<li><ahref="https://github.com/hannes-brt/hebel">hebel</a> - GPU-Accelerated Deep Learning Library in Python.</li>
<li><ahref="https://github.com/piskvorky/gensim">gensim</a> - Topic Modelling for Humans.</li>
<li><ahref="https://github.com/pybrain/pybrain">PyBrain</a> - Another Python Machine Learning Library.</li>
<li><ahref="https://github.com/muricoca/crab">Crab</a> - A flexible, fast recommender engine.</li>
<li><ahref="https://github.com/ocelma/python-recsys">python-recsys</a> - A Python library for implementing a Recommender System.</li>
<li><ahref="https://github.com/josephreisinger/vowpal_porpoise">vowpal_porpoise</a> - A lightweight Python wrapper for <ahref="https://github.com/JohnLangford/vowpal_wabbit/">Vowpal Wabbit</a>.</li>
</ul>
<h2id="mapreduce">MapReduce</h2>
<p><em>Framworks and libraries for MapReduce.</em></p>
<ul>
<li><ahref="http://spark.apache.org/docs/latest/programming-guide.html">PySpark</a> - The Spark Python API.</li>
<li><ahref="https://github.com/douban/dpark">dpark</a> - Python clone of Spark, a MapReduce alike framework in Python.</li>
<li><ahref="https://github.com/spotify/luigi">luigi</a> - A module that helps you build complex pipelines of batch jobs.</li>
<li><ahref="https://github.com/Yelp/mrjob">mrjob</a> - Run MapReduce jobs on Hadoop or Amazon Web Services.</li>
<li><ahref="https://github.com/klbostee/dumbo">dumbo</a> - Python module that allows one to easily write and run Hadoop programs.</li>
<li><ahref="https://github.com/Parsely/streamparse">streamparse</a> - Run Python code against real-time streams of data. Integrates with <ahref="https://storm.incubator.apache.org/">Apache Storm</a>.</li>
<p><em>Functional Programming with Python.</em></p>
<ul>
<li><ahref="https://github.com/kachayev/fn.py">fn.py</a> - Functional programming in Python: implementation of missing features to enjoy FP.</li>
<li><ahref="https://github.com/Suor/funcy">funcy</a> - A fancy and practical functional tools.</li>
<li><ahref="https://github.com/pytoolz/toolz">Toolz</a> - A collection of functional utilities for iterators, functions, and dictionaries.</li>
<li><ahref="https://github.com/pytoolz/cytoolz/">CyToolz</a> - Cython implementation of Toolz: High performance functional utilities.</li>
</ul>
<h2id="third-party-apis">Third-party APIs</h2>
<p><em>Libraries for accessing third party services APIs. See: <ahref="https://github.com/realpython/list-of-python-api-wrappers">List of Python API Wrappers and Libraries</a>.</em></p>
<ul>
<li><ahref="https://libcloud.apache.org/">apache-libcloud</a> - One Python library for all clouds.</li>
<li><ahref="https://github.com/boto/boto">boto</a> - Python interface to Amazon Web Services.</li>
<li><ahref="https://github.com/ryanmcgrath/twython">twython</a> - A Python wrapper for the Twitter API.</li>
<li><ahref="https://github.com/google/google-api-python-client">google-api-python-client</a> - Google APIs Client Library for Python.</li>
<li><ahref="https://github.com/burnash/gspread">gspread</a> - Google Spreadsheets Python API.</li>
<li><ahref="https://github.com/jgorset/facepy">facepy</a> - Facepy makes it really easy to interact with Facebook's Graph API</li>
<li><ahref="https://github.com/charlierguo/gmail">gmail</a> - A Pythonic interface for Gmail.</li>
<li><ahref="https://github.com/sunlightlabs/django-wordpress/">django-wordpress</a> - WordPress models and views for Django.</li>
</ul>
<h2id="devops-tools">DevOps Tools</h2>
<p><em>Software and libraries for DevOps.</em></p>
<ul>
<li><ahref="http://www.openstack.org/">OpenStack</a> - Open source software for building private and public clouds.</li>
<li><ahref="https://github.com/ansible/ansible">Ansible</a> - A radically simple IT automation platform.</li>
<li><ahref="https://github.com/saltstack/salt">SaltStack</a> - Infrastructure automation and management system.</li>
<li><ahref="http://www.fabfile.org/">Fabric</a> - A simple, Pythonic tool for remote execution and deployment.</li>
<li><ahref="https://github.com/ronnix/fabtools">Fabtools</a> - Tools for writing awesome Fabric files.</li>
<li><ahref="https://github.com/sebastien/cuisine">cuisine</a> - Chef-like functionality for Fabric.</li>
<li><ahref="https://github.com/giampaolo/psutil">psutil</a> - A cross-platform process and system utilities module.</li>
<li><ahref="https://github.com/pexpect/pexpect">pexpect</a> - Controlling interactive programs in a pseudo-terminal like GNU expect.</li>
<li><ahref="https://github.com/python-provy/provy">provy</a> - An easy-to-use provisioning system in Python.</li>
<li><ahref="https://github.com/nickstenning/honcho">honcho</a> - A Python port of <ahref="https://github.com/ddollar/foreman">Foreman</a>, a tool for managing Procfile-based applications.</li>
<li><ahref="https://github.com/gunnery/gunnery">gunnery</a> - Multipurpose task execution tool for distributed systems with web-based interface.</li>
<li><ahref="https://docs.docker.com/compose/">Docker-Compose</a> - Fast, isolated development environments using <ahref="https://www.docker.com/">Docker</a>.</li>
<li><ahref="http://bitbucket.org/haard/hgapi">hgapi</a> - Pure-Python API for Mercurial.</li>
<li><ahref="http://bitbucket.org/haard/gitapi">gitapi</a> - Pure-Python API for git.</li>
<li><ahref="https://github.com/Supervisor/supervisor">supervisor</a> - Supervisor process control system for UNIX.</li>
</ul>
<h2id="job-scheduler">Job Scheduler</h2>
<p><em>Libraries for scheduling jobs.</em></p>
<ul>
<li><ahref="http://apscheduler.readthedocs.org/">APScheduler</a> - A light but powerful in-process task scheduler that lets you schedule functions.</li>
<li><ahref="https://github.com/thauber/django-schedule">django-schedule</a> - A calendaring app for Django.</li>
<li><ahref="http://pydoit.org/">doit</a> - A task runner/build tool.</li>
<li><ahref="http://pythonhosted.org/joblib/index.html">Joblib</a> - A set of tools to provide lightweight pipelining in Python.</li>
<li><ahref="https://github.com/fengsp/plan">Plan</a> - Writing crontab file in Python like a charm.</li>
<li><ahref="https://github.com/knipknap/SpiffWorkflow">Spiff</a> - A powerful workflow engine implemented in pure Python.</li>
<li><ahref="https://github.com/dbader/schedule">schedule</a> - Python job scheduling for humans.</li>
<li><ahref="http://docs.openstack.org/developer/taskflow/">TaskFlow</a> - A Python library that helps to make task execution easy, consistent and reliable.</li>
</ul>
<h2id="foreign-function-interface">Foreign Function Interface</h2>
<p><em>Libraries for providing foreign function interface.</em></p>
<ul>
<li><ahref="https://docs.python.org/2/library/ctypes.html">ctypes</a> - (Python standard library) Foreign Function Interface for Python calling C code.</li>
<li><ahref="https://pypi.python.org/pypi/cffi">cffi</a> - Foreign Function Interface for Python calling C code.</li>
<li><ahref="http://www.swig.org/Doc1.3/Python.html">SWIG</a> - Simplified Wrapper and Interface Generator.</li>
<li><ahref="http://mathema.tician.de/software/pycuda/">PyCUDA</a> - A Python wrapper for Nvidia's CUDA API.</li>
</ul>
<h2id="high-performance">High Performance</h2>
<p><em>Libraries for making Python faster.</em></p>
<ul>
<li><ahref="http://cython.org/">Cython</a> - Optimizing Static Compiler for Python. Uses type mixins to compile Python into C or C++ modules resulting in large performance gains.</li>
<li><ahref="http://pypy.org/">PyPy</a> - An implementation of Python in Python. The interpreter uses black magic to make Python very fast without having to add in additional type information.</li>
<li><ahref="http://www.stackless.com/">Stackless Python</a> - An enhanced version of the Python.</li>
<li><ahref="https://github.com/dropbox/pyston">Pyston</a> - A Python implementation built using LLVM and modern JIT techniques with the goal of achieving good performance.</li>
</ul>
<h2id="microsoft-windows">Microsoft Windows</h2>
<p><em>Python programming on Microsoft Windows.</em></p>
<ul>
<li><ahref="http://sourceforge.net/projects/pywin32/">PyWin32</a> - Python Extensions for Windows.</li>
<li><ahref="https://github.com/pythonnet/pythonnet">PythonNet</a> - Python Integration with the .NET Common Language Runtime (CLR).</li>
<li><ahref="http://www.lfd.uci.edu/~gohlke/pythonlibs/">pythonlibs</a> - Unofficial Windows binaries for Python extension packages.</li>
<li><ahref="https://code.google.com/p/spyderlib/">spyder</a> - IDE for the Python language with advanced editing, interactive testing, debugging and introspection features (also comes with Anaconda, WinPython).</li>
<li><ahref="https://code.google.com/p/pythonxy/">Python(x,y)</a> - Scientific-applications-oriented Python Distribution based on Qt and Spyder.</li>
<li><ahref="https://winpython.github.io/">WinPython</a> - Portable development environment for Windows 7/8.</li>
</ul>
<h2id="network-virtualization-and-sdn">Network Virtualization and SDN</h2>
<p><em>Tools and libraries for Virtual Networking and SDN (Software Defined Networking).</em></p>
<ul>
<li><ahref="http://mininet.org/">Mininet</a> - A popular network emulator and API written in Python.</li>
<li><ahref="http://www.noxrepo.org/pox/about-pox/">POX</a> - An open source development platform for Python-based Software Defined Networking (SDN) control applications, such as OpenFlow SDN controllers.</li>
<li><ahref="http://frenetic-lang.org/pyretic/">Pyretic</a> - A member of the Frenetic family of SDN programming languages that provides powerful abstractions over network switches or emulators.</li>
<li><ahref="https://github.com/sdn-ixp/internet2award">SDX Platform</a> - SDN based IXP implementation that leverages Mininet, POX and Pyretic.</li>
</ul>
<h2id="hardware">Hardware</h2>
<p><em>Libraries for programming with hardware.</em></p>
<ul>
<li><ahref="https://github.com/SavinaRoja/PyUserInput">PyUserInput</a> - A module for cross-platform control of the mouse and keyboard.</li>
<li><ahref="https://wifi.readthedocs.org/">wifi</a> - A Python library and command line tool for working with WiFi on Linux.</li>
<li><ahref="http://www.secdev.org/projects/scapy/">scapy</a> - A brilliant packet manipulation library.</li>
<li><ahref="http://inotool.org/">ino</a> - Command line toolkit for working with <ahref="http://www.arduino.cc/">Arduino</a>.</li>
<p><em>Libraries for migrating from Python 2 to 3.</em></p>
<ul>
<li><ahref="https://pypi.python.org/pypi/six">Six</a> - Python 2 and 3 compatibility utilities.</li>
<li><ahref="http://python-future.org/index.html">Python-Future</a> - The missing compatibility layer between Python 2 and Python 3.</li>
<li><ahref="https://github.com/mitsuhiko/python-modernize">Python-Modernize</a> - Modernizes Python code for eventual Python 3 migration.</li>
</ul>
<h2id="miscellaneous">Miscellaneous</h2>
<p><em>Useful libraries or tools that don't fit in the categories above.</em></p>
<ul>
<li><ahref="https://github.com/mitsuhiko/pluginbase">pluginbase</a> - A simple but flexible plugin system for Python.</li>
<li><ahref="https://github.com/mitsuhiko/itsdangerous">itsdangerous</a> - Various helpers to pass trusted data to untrusted environments.</li>
<li><ahref="https://github.com/jek/blinker">blinker</a> - A fast Python in-process signal/event dispatching system.</li>
<li><ahref="https://github.com/PacketPerception/pychievements">Pychievements</a> - A framework for creating and tracking achievements.</li>
</ul>
<h2id="algorithms-and-design-patterns">Algorithms and Design Patterns</h2>
<p><em>Python implementation of algorithms and design patterns.</em></p>
<ul>
<li><ahref="https://github.com/faif/python-patterns">python-patterns</a> - A collection of design patterns in Python.</li>
<li><ahref="https://github.com/nryoung/algorithms">algorithms</a> - A module of algorithms for Python.</li>
</ul>
<h2id="editor-plugins">Editor Plugins</h2>
<p><em>Plugins for editors and IDEs.</em></p>
<ul>
<li>Vim<ul>
<li><ahref="https://github.com/klen/python-mode">Python-mode</a> - An all in one plugin for turning Vim into a Python IDE.</li>
<li><ahref="https://github.com/davidhalter/jedi-vim">Jedi-vim</a> - Vim bindings for the <ahref="https://github.com/davidhalter/jedi">Jedi</a> auto-completion library for Python.</li>
<li><ahref="https://github.com/Valloric/YouCompleteMe">YouCompleteMe</a> - Includes <ahref="https://github.com/davidhalter/jedi">Jedi</a>-based completion engine for Python</li>
</ul>
</li>
<li>Emacs<ul>
<li><ahref="https://github.com/jorgenschaefer/elpy">Elpy</a> - Emacs Python Development Environment.</li>
</ul>
</li>
<li>Sublime Text<ul>
<li><ahref="https://github.com/srusskih/SublimeJEDI">SublimeJEDI</a> - A Sublime Text plugin to the awesome auto-complete library <ahref="https://github.com/davidhalter/jedi">Jedi</a>.</li>
<li><ahref="https://github.com/DamnWidget/anaconda">Anaconda</a> - Anaconda turns your Sublime Text 3 in a full featured Python development IDE.</li>
</ul>
</li>
<li>Atom<ul>
<li><ahref="https://github.com/AtomLinter/Linter">Linter</a> - A static code analysis tool for Atom.</li>
<li><ahref="https://github.com/AtomLinter/linter-flake8">Linter-flake8</a> - An addon to <code>linter</code>, that acts as an interface for <code>flake8</code>.</li>
<li><ahref="https://github.com/jhutchins/virtualenv">virtualenv</a> - Atom package for virtualenv management.</li>
</ul>
</li>
</ul>
<h1id="resources">Resources</h1>
<p>Where to discover new Python libraries.</p>
<h2id="websites">Websites</h2>
<ul>
<li><ahref="http://www.reddit.com/r/python">r/Python</a> - News about Python.</li>
<li><ahref="http://python3wos.appspot.com/">Python 3 Wall of Superpowers</a> - Too many popular Python packages don't support Python 3.</li>
<li><ahref="https://github.com/trending?l=python">Trending Python repositories on GitHub today</a> - Good place to find new Python libraries.</li>
<li><ahref="http://pythonhackers.com/open-source/">Python Hackers</a> - List of top 400 projects in GitHub.</li>
<li><ahref="http://coolgithubprojects.com/">CoolGithubProjects</a> - Sharing cool github projects just got easier!</li>
<li><ahref="http://www.fullstackpython.com/">Full Stack Python</a> - Plain English explanations for every layer of the Python web application stack.</li>
<li><ahref="https://www.djangopackages.com/">Django Packages</a> - A directory of reusable apps, sites, tools, and more for Django projects.</li>