├── .github └── PULL_REQUEST_TEMPLATE.md ├── .gitignore ├── .travis.yml ├── CONTRIBUTING.md ├── LICENSE ├── Makefile ├── README.md ├── docs ├── CNAME └── css │ └── extra.css ├── mkdocs.yml └── sort.py /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- 1 | ## What is this Python project? 2 | 3 | Describe features. 4 | 5 | ## What's the difference between this Python project and similar ones? 6 | 7 | Enumerate comparisons. 8 | 9 | -- 10 | 11 | Anyone who agrees with this pull request could vote for it by adding a :+1: to it, and usually, the maintainer will merge it when votes reach **20**. 12 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | 3 | *.py[co] 4 | 5 | docs/index.md 6 | site/ 7 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- 1 | language: ruby 2 | 3 | rvm: 4 | - 2.2 5 | 6 | before_script: 7 | - gem install awesome_bot 8 | 9 | script: 10 | - awesome_bot README.md --allow-dupe --white-list pyparsing,graphviz.org 11 | -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- 1 | # Contributing 2 | 3 | Your contributions are always welcome! 4 | 5 | ## Guidelines 6 | 7 | * Add one link per Pull Request. 8 | * Add the link: `* [project-name](http://example.com/) - A short description ends with a period.` 9 | * Keep descriptions concise. 10 | * Add a section if needed. 11 | * Add the section description. 12 | * Add the section title to Table of Contents. 13 | * Search previous suggestions before making a new one, as yours may be a duplicate. 14 | * Don't mention `Python` in the description as it's implied. 15 | * Check your spelling and grammar. 16 | * Remove any trailing whitespace. 17 | * Send a Pull Request with the reason why the library is awesome. 18 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | Creative Commons Attribution 4.0 International License (CC BY 4.0) 2 | 3 | http://creativecommons.org/licenses/by/4.0/ 4 | -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- 1 | site_install: 2 | pip install mkdocs==0.16.3 3 | pip install mkdocs-material==1.12.2 4 | 5 | site_link: 6 | ln -sf $(CURDIR)/README.md $(CURDIR)/docs/index.md 7 | 8 | site_preview: site_link 9 | mkdocs serve 10 | 11 | site_deploy: site_link 12 | mkdocs gh-deploy --clean 13 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Awesome Python [![Awesome](https://cdn.rawgit.com/sindresorhus/awesome/d7305f38d29fed78fa85652e3a63e154dd8e8829/media/badge.svg)](https://github.com/sindresorhus/awesome) 2 | 3 | A curated list of awesome Python frameworks, libraries, software and resources. 4 | 5 | Inspired by [awesome-php](https://github.com/ziadoz/awesome-php). 6 | 7 | - [Awesome Python](#awesome-python) 8 | - [Admin Panels](#admin-panels) 9 | - [Algorithms and Design Patterns](#algorithms-and-design-patterns) 10 | - [Anti-spam](#anti-spam) 11 | - [Asset Management](#asset-management) 12 | - [Audio](#audio) 13 | - [Authentication](#authentication) 14 | - [Build Tools](#build-tools) 15 | - [Built-in Classes Enhancement](#built-in-classes-enhancement) 16 | - [Caching](#caching) 17 | - [ChatOps Tools](#chatops-tools) 18 | - [Cluster Computing](#cluster-computing) 19 | - [CMS](#cms) 20 | - [Code Analysis](#code-analysis) 21 | - [Command-line Tools](#command-line-tools) 22 | - [Compatibility](#compatibility) 23 | - [Computer Vision](#computer-vision) 24 | - [Concurrency and Parallelism](#concurrency-and-parallelism) 25 | - [Configuration](#configuration) 26 | - [Cryptography](#cryptography) 27 | - [Data Analysis](#data-analysis) 28 | - [Data Validation](#data-validation) 29 | - [Data Visualization](#data-visualization) 30 | - [Database Drivers](#database-drivers) 31 | - [Database](#database) 32 | - [Date and Time](#date-and-time) 33 | - [Debugging Tools](#debugging-tools) 34 | - [Deep Learning](#deep-learning) 35 | - [DevOps Tools](#devops-tools) 36 | - [Distribution](#distribution) 37 | - [Documentation](#documentation) 38 | - [Downloader](#downloader) 39 | - [E-commerce](#e-commerce) 40 | - [Editor Plugins and IDEs](#editor-plugins-and-ides) 41 | - [Email](#email) 42 | - [Environment Management](#environment-management) 43 | - [Files](#files) 44 | - [Foreign Function Interface](#foreign-function-interface) 45 | - [Forms](#forms) 46 | - [Functional Programming](#functional-programming) 47 | - [Game Development](#game-development) 48 | - [Geolocation](#geolocation) 49 | - [GUI](#gui) 50 | - [Hardware](#hardware) 51 | - [HTML Manipulation](#html-manipulation) 52 | - [HTTP](#http) 53 | - [Image Processing](#image-processing) 54 | - [Implementations](#implementations) 55 | - [Interactive Interpreter](#interactive-interpreter) 56 | - [Internationalization](#internationalization) 57 | - [Job Scheduler](#job-scheduler) 58 | - [Logging](#logging) 59 | - [Machine Learning](#machine-learning) 60 | - [Miscellaneous](#miscellaneous) 61 | - [Natural Language Processing](#natural-language-processing) 62 | - [Network Virtualization](#network-virtualization) 63 | - [Networking](#networking) 64 | - [News Feed](#news-feed) 65 | - [ORM](#orm) 66 | - [Package Management](#package-management) 67 | - [Package Repositories](#package-repositories) 68 | - [Permissions](#permissions) 69 | - [Processes](#processes) 70 | - [Queue](#queue) 71 | - [Recommender Systems](#recommender-systems) 72 | - [RESTful API](#restful-api) 73 | - [Robotics](#robotics) 74 | - [RPC Servers](#rpc-servers) 75 | - [Science](#science) 76 | - [Search](#search) 77 | - [Serialization](#serialization) 78 | - [Serverless Frameworks](#serverless-frameworks) 79 | - [Specific Formats Processing](#specific-formats-processing) 80 | - [Static Site Generator](#static-site-generator) 81 | - [Tagging](#tagging) 82 | - [Template Engine](#template-engine) 83 | - [Testing](#testing) 84 | - [Text Processing](#text-processing) 85 | - [Third-party APIs](#third-party-apis) 86 | - [URL Manipulation](#url-manipulation) 87 | - [Video](#video) 88 | - [Web Content Extracting](#web-content-extracting) 89 | - [Web Crawling & Web Scraping](#web-crawling--web-scraping) 90 | - [Web Frameworks](#web-frameworks) 91 | - [WebSocket](#websocket) 92 | - [WSGI Servers](#wsgi-servers) 93 | - [Services](#services) 94 | - [Code Quality](#code-quality) 95 | - [Continuous Integration](#continuous-integration) 96 | - [Resources](#resources) 97 | - [Podcasts](#podcasts) 98 | - [Twitter](#twitter) 99 | - [Websites](#websites) 100 | - [Weekly](#weekly) 101 | - [Other Awesome Lists](#other-awesome-lists) 102 | - [Contributing](#contributing) 103 | 104 | - - - 105 | 106 | ## Admin Panels 107 | 108 | *Libraries for administrative interfaces.* 109 | 110 | * [Ajenti](https://github.com/ajenti/ajenti) - The admin panel your servers deserve. 111 | * [django-suit](http://djangosuit.com/) - Alternative Django Admin-Interface (free only for Non-commercial use). 112 | * [django-xadmin](https://github.com/sshwsfc/xadmin) - Drop-in replacement of Django admin comes with lots of goodies. 113 | * [flask-admin](https://github.com/flask-admin/flask-admin) - Simple and extensible administrative interface framework for Flask. 114 | * [flower](https://github.com/mher/flower) - Real-time monitor and web admin for Celery. 115 | * [Grappelli](http://grappelliproject.com) - A jazzy skin for the Django Admin-Interface. 116 | * [Wooey](https://github.com/wooey/wooey) - A Django app which creates automatic web UIs for Python scripts. 117 | 118 | ## Algorithms and Design Patterns 119 | 120 | *Python implementation of algorithms and design patterns.* 121 | 122 | * [algorithms](https://github.com/keon/algorithms) - Minimal examples of data structures and algorithms in Python. 123 | * [PyPattyrn](https://github.com/tylerlaberge/PyPattyrn) - A simple yet effective library for implementing common design patterns. 124 | * [python-patterns](https://github.com/faif/python-patterns) - A collection of design patterns in Python. 125 | * [sortedcontainers](http://www.grantjenks.com/docs/sortedcontainers/) - Fast, pure-Python implementation of SortedList, SortedDict, and SortedSet types. 126 | 127 | ## Anti-spam 128 | 129 | *Libraries for fighting spam.* 130 | 131 | * [django-simple-captcha](https://github.com/mbi/django-simple-captcha) - A simple and highly customizable Django app to add captcha images to any Django form. 132 | * [django-simple-spam-blocker](https://github.com/moqada/django-simple-spam-blocker) - Simple spam blocker for Django. 133 | 134 | ## Asset Management 135 | 136 | *Tools for managing, compressing and minifying website assets.* 137 | 138 | * [django-compressor](https://github.com/django-compressor/django-compressor) - Compresses linked and inline JavaScript or CSS into a single cached file. 139 | * [django-pipeline](https://github.com/jazzband/django-pipeline) - An asset packaging library for Django. 140 | * [django-storages](https://github.com/jschneier/django-storages) - A collection of custom storage back ends for Django. 141 | * [fanstatic](http://www.fanstatic.org/en/latest/) - Packages, optimizes, and serves static file dependencies as Python packages. 142 | * [fileconveyor](http://wimleers.com/fileconveyor) - A daemon to detect and sync files to CDNs, S3 and FTP. 143 | * [flask-assets](https://github.com/miracle2k/flask-assets) - Helps you integrate webassets into your Flask app. 144 | * [jinja-assets-compressor](https://github.com/jaysonsantos/jinja-assets-compressor) - A Jinja extension to compile and compress your assets. 145 | * [webassets](https://github.com/miracle2k/webassets) - Bundles, optimizes, and manages unique cache-busting URLs for static resources. 146 | 147 | ## Audio 148 | 149 | *Libraries for manipulating audio.* 150 | 151 | * [audiolazy](https://github.com/danilobellini/audiolazy) - Expressive Digital Signal Processing (DSP) package for Python. 152 | * [audioread](https://github.com/beetbox/audioread) - Cross-library (GStreamer + Core Audio + MAD + FFmpeg) audio decoding. 153 | * [beets](http://beets.io/) - A music library manager and [MusicBrainz](https://musicbrainz.org/) tagger. 154 | * [dejavu](https://github.com/worldveil/dejavu) - Audio fingerprinting and recognition. 155 | * [django-elastic-transcoder](https://github.com/StreetVoice/django-elastic-transcoder) - Django + [Amazon Elastic Transcoder](https://aws.amazon.com/elastictranscoder/). 156 | * [eyeD3](http://eyed3.nicfit.net/) - A tool for working with audio files, specifically MP3 files containing ID3 metadata. 157 | * [id3reader](https://nedbatchelder.com/code/modules/id3reader.py) - A Python module for reading MP3 meta data. 158 | * [m3u8](https://github.com/globocom/m3u8) - A module for parsing m3u8 file. 159 | * [mingus](http://bspaans.github.io/python-mingus/) - An advanced music theory and notation package with MIDI file and playback support. 160 | * [mutagen](https://github.com/quodlibet/mutagen) - A Python module to handle audio metadata. 161 | * [pyAudioAnalysis](https://github.com/tyiannak/pyAudioAnalysis) - Python Audio Analysis Library: Feature Extraction, Classification, Segmentation and Applications 162 | * [pydub](https://github.com/jiaaro/pydub) - Manipulate audio with a simple and easy high level interface. 163 | * [pyechonest](https://github.com/echonest/pyechonest) - Python client for the [Echo Nest](http://static.echonest.com/enspex/) API. 164 | * [talkbox](http://scikits.appspot.com/talkbox) - A Python library for speech/signal processing. 165 | * [TimeSide](https://github.com/Parisson/TimeSide) - Open web audio processing framework. 166 | * [tinytag](https://github.com/devsnd/tinytag) - A library for reading music meta data of MP3, OGG, FLAC and Wave files. 167 | 168 | ## Authentication 169 | 170 | *Libraries for implementing authentications schemes.* 171 | 172 | * OAuth 173 | * [Authomatic](https://github.com/authomatic/authomatic) - Simple but powerful framework agnostic authentication/authorization client. 174 | * [django-allauth](https://github.com/pennersr/django-allauth) - Authentication app for Django that "just works." 175 | * [django-oauth-toolkit](https://github.com/evonove/django-oauth-toolkit) - OAuth 2 goodies for Django. 176 | * [Flask-OAuthlib](https://github.com/lepture/flask-oauthlib) - OAuth 1.0/a, 2.0 implementation of client and provider for Flask. 177 | * [OAuthLib](https://github.com/idan/oauthlib) - A generic and thorough implementation of the OAuth request-signing logic. 178 | * [python-oauth2](https://github.com/joestump/python-oauth2) - A fully tested, abstract interface to creating OAuth clients and servers. 179 | * [python-social-auth](https://github.com/omab/python-social-auth) - An easy-to-setup social authentication mechanism. 180 | * [rauth](https://github.com/litl/rauth) - A Python library for OAuth 1.0/a, 2.0, and Ofly. 181 | * [sanction](https://github.com/demianbrecht/sanction) - A dead simple OAuth2 client implementation. 182 | * Others 183 | * [jose](https://github.com/demonware/jose) - JavaScript Object Signing and Encryption draft implementation. 184 | * [PyJWT](https://github.com/jpadilla/pyjwt) - Implementation of the JSON Web Token draft 01. 185 | * [python-jws](https://github.com/brianloveswords/python-jws) - Implementation of JSON Web Signatures draft 02. 186 | * [python-jwt](https://github.com/davedoesdev/python-jwt) - Module for generating and verifying JSON Web Tokens. 187 | 188 | ## Build Tools 189 | 190 | *Compile software from source code.* 191 | 192 | * [BitBake](http://www.yoctoproject.org/docs/1.6/bitbake-user-manual/bitbake-user-manual.html) - A make-like build tool for embedded Linux. 193 | * [buildout](http://www.buildout.org/en/latest/) - A build system for creating, assembling and deploying applications from multiple parts. 194 | * [PlatformIO](https://github.com/platformio/platformio-core) - A console tool to build code with different development platforms. 195 | * [PyBuilder](https://github.com/pybuilder/pybuilder) - A continuous build tool written in pure Python. 196 | * [SCons](http://www.scons.org/) - A software construction tool. 197 | 198 | ## Built-in Classes Enhancement 199 | 200 | *Libraries for enhancing Python built-in classes.* 201 | 202 | * [attrs](https://github.com/python-attrs/attrs) - Replacement for `__init__`, `__eq__`, `__repr__`, etc. boilerplate in class definitions. 203 | * [bidict](https://github.com/jab/bidict) - Efficient, Pythonic bidirectional map data structures and related functionality.. 204 | * [Box](https://github.com/cdgriffith/Box) - Python dictionaries with advanced dot notation access. 205 | * [dotted](https://github.com/carlosescri/DottedDict) - A library that provides a method of accessing lists and dicts with a dotted path notation. 206 | 207 | ## CMS 208 | 209 | *Content Management Systems.* 210 | 211 | * [django-cms](https://www.django-cms.org/en/) - An Open source enterprise CMS based on the Django. 212 | * [djedi-cms](http://djedi-cms.org/) - A lightweight but yet powerful Django CMS with plugins, inline editing and performance in mind. 213 | * [FeinCMS](http://www.feincms.org/) - One of the most advanced Content Management Systems built on Django. 214 | * [Kotti](http://kotti.pylonsproject.org/) - A high-level, Pythonic web application framework built on Pyramid. 215 | * [Mezzanine](http://mezzanine.jupo.org/) - A powerful, consistent, and flexible content management platform. 216 | * [Opps](http://opps.github.io/opps/) - A Django-based CMS for magazines, newspapers websites and portals with high-traffic. 217 | * [Plone](https://plone.org/) - A CMS built on top of the open source application server Zope. 218 | * [Quokka](http://quokkaproject.org/) - Flexible, extensible, small CMS powered by Flask and MongoDB. 219 | * [Wagtail](https://wagtail.io/) - A Django content management system. 220 | * [Widgy](https://wid.gy/) - Last CMS framework, based on Django. 221 | 222 | ## Caching 223 | 224 | *Libraries for caching data.* 225 | 226 | * [Beaker](https://github.com/bbangert/beaker) - A library for caching and sessions for use with web applications and stand-alone Python scripts and applications. 227 | * [DiskCache](http://www.grantjenks.com/docs/diskcache/) - SQLite and file backed cache backend with faster lookups than memcached and redis. 228 | * [django-cache-machine](https://github.com/django-cache-machine/django-cache-machine) - Automatic caching and invalidation for Django models. 229 | * [django-cacheops](https://github.com/Suor/django-cacheops) - A slick ORM cache with automatic granular event-driven invalidation. 230 | * [django-viewlet](https://github.com/5monkeys/django-viewlet) - Render template parts with extended cache control. 231 | * [dogpile.cache](http://dogpilecache.readthedocs.io/en/latest/) - dogpile.cache is next generation replacement for Beaker made by same authors. 232 | * [HermesCache](https://pypi.python.org/pypi/HermesCache) - Python caching library with tag-based invalidation and dogpile effect prevention. 233 | * [johnny-cache](https://github.com/jmoiron/johnny-cache) - A caching framework for Django applications. 234 | * [pylibmc](https://github.com/lericson/pylibmc) - A Python wrapper around the [libmemcached](http://libmemcached.org/libMemcached.html) interface. 235 | 236 | ## ChatOps Tools 237 | 238 | *Libraries for chatbot development.* 239 | 240 | * [Errbot](http://errbot.io/en/latest/) - The easiest and most popular chatbot to implement ChatOps. 241 | 242 | ## Cluster Computing 243 | 244 | *Frameworks and libraries for Cluster Computing.* 245 | 246 | * [PySpark](https://pypi.python.org/pypi/pyspark/) - [Apache Spark](https://spark.apache.org/) Python API. 247 | * [dask](https://dask.pydata.org/en/latest/) - A flexible parallel computing library for analytic computing. 248 | * [faust](https://github.com/robinhood/faust) - A stream processing library, porting the ideas from [Kafka Streams](https://kafka.apache.org/documentation/streams/) to Python. 249 | * [luigi](https://github.com/spotify/luigi) - A module that helps you build complex pipelines of batch jobs. 250 | * [mrjob](https://github.com/Yelp/mrjob) - Run MapReduce jobs on Hadoop or Amazon Web Services. 251 | * [streamparse](https://github.com/Parsely/streamparse) - Run Python code against real-time streams of data via [Apache Storm](http://storm.apache.org/). 252 | 253 | ## Code Analysis 254 | 255 | *Tools of static analysis, linters and code quality checkers. See: [awesome-static-analysis](https://github.com/mre/awesome-static-analysis).* 256 | 257 | * Code Analysis 258 | * [flake8](https://pypi.python.org/pypi/flake8) - A wrapper around pycodestyle, pyflakes and McCabe. 259 | * [coala](http://coala.io/) - Language independent and easily extendable code analysis application. 260 | * [code2flow](https://github.com/scottrogowski/code2flow) - Turn your Python and JavaScript code into DOT flowcharts. 261 | * [prospector](https://github.com/landscapeio/prospector) - A tool to analyse Python code. 262 | * [pycallgraph](https://github.com/gak/pycallgraph) - A library that visualises the flow (call graph) of your Python application. 263 | * [pylama](https://github.com/klen/pylama) - A code audit tool for Python and JavaScript. 264 | * [pylint](https://www.pylint.org/) - A fully customizable source code analyzer. 265 | * Static Type Checkers 266 | * [mypy](http://mypy-lang.org/) - Check variable types during compile time. 267 | * [Pyre](https://github.com/facebook/pyre-check) - Performant type checking. 268 | * Static Type Annotations Generators 269 | * [MonkeyType](https://github.com/Instagram/MonkeyType) - A system for Python that generates static type annotations by collecting runtime types 270 | 271 | ## Command-line Tools 272 | 273 | *Libraries for building command-line application.* 274 | 275 | * Command-line Application Development 276 | * [cement](http://builtoncement.com/) - CLI Application Framework for Python. 277 | * [click](http://click.pocoo.org/dev/) - A package for creating beautiful command line interfaces in a composable way. 278 | * [cliff](https://docs.openstack.org/developer/cliff/) - A framework for creating command-line programs with multi-level commands. 279 | * [clint](https://github.com/kennethreitz/clint) - Python Command-line Application Tools. 280 | * [docopt](http://docopt.org/) - Pythonic command line arguments parser. 281 | * [Gooey](https://github.com/chriskiehl/Gooey) - Turn command line programs into a full GUI application with one line. 282 | * [Python Fire](https://github.com/google/python-fire) - A library for creating command line interfaces from absolutely any Python object. 283 | * [python-prompt-toolkit](https://github.com/jonathanslenders/python-prompt-toolkit) - A library for building powerful interactive command lines. 284 | * Terminal Rendering 285 | * [asciimatics](https://github.com/peterbrittain/asciimatics) - A package to create full-screen text UIs (from interactive forms to ASCII animations). 286 | * [bashplotlib](https://github.com/glamp/bashplotlib) - Making basic plots in the terminal. 287 | * [colorama](https://pypi.python.org/pypi/colorama) - Cross-platform colored terminal text. 288 | * Productivity Tools 289 | * [aws-cli](https://github.com/aws/aws-cli) - A universal command-line interface for Amazon Web Services. 290 | * [cookiecutter](https://github.com/audreyr/cookiecutter) - A command-line utility that creates projects from cookiecutters (project templates). 291 | * [doitlive](https://github.com/sloria/doitlive) - A tool for live presentations in the terminal. 292 | * [howdoi](https://github.com/gleitz/howdoi) - Instant coding answers via the command line. 293 | * [httpie](https://github.com/jakubroztocil/httpie) - A command line HTTP client, a user-friendly cURL replacement. 294 | * [kube-shell](https://github.com/cloudnativelabs/kube-shell) - An integrated shell for working with the Kubernetes CLI. 295 | * [mycli](https://github.com/dbcli/mycli) - A Terminal Client for MySQL with AutoCompletion and Syntax Highlighting. 296 | * [PathPicker](https://github.com/facebook/PathPicker) - Select files out of bash output. 297 | * [percol](https://github.com/mooz/percol) - Adds flavor of interactive selection to the traditional pipe concept on UNIX. 298 | * [pgcli](https://github.com/dbcli/pgcli) - Postgres CLI with autocompletion and syntax highlighting. 299 | * [SAWS](https://github.com/donnemartin/saws) - A Supercharged AWS CLI. 300 | * [thefuck](https://github.com/nvbn/thefuck) - Correcting your previous console command. 301 | * [tmuxp](https://github.com/tony/tmuxp) - A [tmux](https://github.com/tmux/tmux) session manager. 302 | * [try](https://github.com/timofurrer/try) - A dead simple CLI to try out python packages - it's never been easier. 303 | 304 | ## Compatibility 305 | 306 | *Libraries for migrating from Python 2 to 3.* 307 | 308 | * [Python-Future](http://python-future.org/index.html) - The missing compatibility layer between Python 2 and Python 3. 309 | * [Python-Modernize](https://github.com/mitsuhiko/python-modernize) - Modernizes Python code for eventual Python 3 migration. 310 | * [Six](https://pypi.python.org/pypi/six) - Python 2 and 3 compatibility utilities. 311 | 312 | ## Computer Vision 313 | 314 | *Libraries for computer vision.* 315 | 316 | * [OpenCV](http://opencv.org/) - Open Source Computer Vision Library. 317 | * [pyocr](https://github.com/openpaperwork/pyocr) - A wrapper for Tesseract and Cuneiform. 318 | * [pytesseract](https://github.com/madmaze/pytesseract) - Another wrapper for [Google Tesseract OCR](https://github.com/tesseract-ocr). 319 | * [SimpleCV](http://simplecv.org/) - An open source framework for building computer vision applications. 320 | 321 | ## Concurrency and Parallelism 322 | 323 | *Libraries for concurrent and parallel execution.* 324 | 325 | * [concurrent.futures](https://docs.python.org/3/library/multiprocessing.html) - (Python standard library) Process-based "[threading](https://docs.python.org/3/library/threading.html)" interface. 326 | * [multiprocessing](https://docs.python.org/3/library/multiprocessing.html) - (Python standard library) A high-level interface for asynchronously executing callables. 327 | * [eventlet](http://eventlet.net/) - Asynchronous framework with WSGI support. 328 | * [gevent](http://www.gevent.org/) - A coroutine-based Python networking library that uses [greenlet](https://github.com/python-greenlet/greenlet). 329 | * [SCOOP](https://github.com/soravux/scoop) - Scalable Concurrent Operations in Python. 330 | * [Tomorrow](https://github.com/madisonmay/Tomorrow) - Magic decorator syntax for asynchronous code. 331 | * [uvloop](https://github.com/MagicStack/uvloop) - Ultra fast implementation of asyncio event loop on top of libuv. 332 | 333 | ## Configuration 334 | 335 | *Libraries for storing and parsing configuration options.* 336 | 337 | * [config](https://www.red-dove.com/config-doc/) - Hierarchical config from the author of [logging](https://docs.python.org/3/library/logging.html). 338 | * [ConfigObj](https://github.com/DiffSK/configobj) - INI file parser with validation. 339 | * [ConfigParser](https://docs.python.org/3/library/configparser.html) - (Python standard library) INI file parser. 340 | * [profig](http://profig.readthedocs.org/en/default/) - Config from multiple formats with value conversion. 341 | * [python-decouple](https://github.com/henriquebastos/python-decouple) - Strict separation of settings from code. 342 | 343 | ## Cryptography 344 | 345 | * [cryptography](https://cryptography.io/en/latest/) - A package designed to expose cryptographic primitives and recipes to Python developers. 346 | * [Paramiko](http://www.paramiko.org/) - A Python (2.6+, 3.3+) implementation of the SSHv2 protocol, providing both client and server functionality. 347 | * [Passlib](https://passlib.readthedocs.io/en/stable/) - Secure password storage/hashing library, very high level. 348 | * [PyNacl](https://github.com/pyca/pynacl) - Python binding to the Networking and Cryptography (NaCl) library. 349 | 350 | ## Data Analysis 351 | 352 | *Libraries for data analyzing.* 353 | 354 | * [Blaze](https://github.com/blaze/blaze) - NumPy and Pandas interface to Big Data. 355 | * [Open Mining](https://github.com/mining/mining) - Business Intelligence (BI) in Pandas interface. 356 | * [Orange](https://orange.biolab.si/) - Data mining, data visualization, analysis and machine learning through visual programming or scripts. 357 | * [Pandas](http://pandas.pydata.org/) - A library providing high-performance, easy-to-use data structures and data analysis tools. 358 | * [Optimus](https://github.com/ironmussa/Optimus) - Cleansing, pre-processing, feature engineering, exploratory data analysis and easy Machine Learning with a PySpark backend. 359 | 360 | ## Data Validation 361 | 362 | *Libraries for validating data. Used for forms in many cases.* 363 | 364 | * [Cerberus](https://github.com/pyeve/cerberus) - A lightweight and extensible data validation library. 365 | * [colander](https://docs.pylonsproject.org/projects/colander/en/latest/) - Validating and deserializing data obtained via XML, JSON, an HTML form post. 366 | * [Dash](https://plot.ly/products/dash/) - Built on top of Flask, React and Plotly aimed at analytical web applications. 367 | * [awesome-dash](https://github.com/Acrotrend/awesome-dash) 368 | * [jsonschema](https://github.com/Julian/jsonschema) - An implementation of [JSON Schema](http://json-schema.org/) for Python. 369 | * [schema](https://github.com/keleshev/schema) - A library for validating Python data structures. 370 | * [Schematics](https://github.com/schematics/schematics) - Data Structure Validation. 371 | * [valideer](https://github.com/podio/valideer) - Lightweight extensible data validation and adaptation library. 372 | * [voluptuous](https://github.com/alecthomas/voluptuous) - A Python data validation library. 373 | 374 | ## Data Visualization 375 | 376 | *Libraries for visualizing data. See: [awesome-javascript](https://github.com/sorrycc/awesome-javascript#data-visualization).* 377 | 378 | * [Altair](https://github.com/altair-viz/altair) - Declarative statistical visualization library for Python. 379 | * [Bokeh](https://github.com/bokeh/bokeh) - Interactive Web Plotting for Python. 380 | * [bqplot](https://github.com/bloomberg/bqplot) - Interactive Plotting Library for the Jupyter Notebook 381 | * [ggplot](https://github.com/yhat/ggpy) - Same API as ggplot2 for R. 382 | * [Matplotlib](http://matplotlib.org/) - A Python 2D plotting library. 383 | * [Pygal](http://www.pygal.org/en/latest/) - A Python SVG Charts Creator. 384 | * [PyGraphviz](https://pypi.python.org/pypi/pygraphviz) - Python interface to [Graphviz](http://www.graphviz.org/). 385 | * [PyQtGraph](http://www.pyqtgraph.org/) - Interactive and realtime 2D/3D/Image plotting and science/engineering widgets. 386 | * [Seaborn](https://github.com/mwaskom/seaborn) - Statistical data visualization using Matplotlib. 387 | * [VisPy](https://github.com/vispy/vispy) - High-performance scientific visualization based on OpenGL. 388 | 389 | ## Database 390 | 391 | *Databases implemented in Python.* 392 | 393 | * [pickleDB](https://pythonhosted.org/pickleDB/) - A simple and lightweight key-value store for Python. 394 | * [TinyDB](https://github.com/msiemens/tinydb) - A tiny, document-oriented database. 395 | * [ZODB](http://www.zodb.org/en/latest/) - A native object database for Python. A key-value and object graph database. 396 | 397 | ## Database Drivers 398 | 399 | *Libraries for connecting and operating databases.* 400 | 401 | * MySQL - [awesome-mysql](http://shlomi-noach.github.io/awesome-mysql/) 402 | * [mysqlclient](https://github.com/PyMySQL/mysqlclient-python) - MySQL connector with Python 3 support ([mysql-python](https://sourceforge.net/projects/mysql-python/) fork). 403 | * [oursql](https://pythonhosted.org/oursql/) - A better MySQL connector with support for native prepared statements and BLOBs. 404 | * [PyMySQL](https://github.com/PyMySQL/PyMySQL) - A pure Python MySQL driver compatible to mysql-python. 405 | * PostgreSQL - [awesome-postgres](https://github.com/dhamaniasad/awesome-postgres) 406 | * [psycopg2](http://initd.org/psycopg/) - The most popular PostgreSQL adapter for Python. 407 | * [queries](https://github.com/gmr/queries) - A wrapper of the psycopg2 library for interacting with PostgreSQL. 408 | * [txpostgres](https://github.com/wulczer/txpostgres) - Twisted based asynchronous driver for PostgreSQL. 409 | * Other Relational Databases 410 | * [apsw](http://rogerbinns.github.io/apsw/) - Another Python SQLite wrapper. 411 | * [dataset](https://github.com/pudo/dataset) - Store Python dicts in a database - works with SQLite, MySQL, and PostgreSQL. 412 | * [pymssql](http://www.pymssql.org/en/latest/) - A simple database interface to Microsoft SQL Server. 413 | * NoSQL Databases 414 | * [cassandra-driver](https://github.com/datastax/python-driver) - The Python Driver for Apache Cassandra. 415 | * [HappyBase](https://github.com/wbolster/happybase) - A developer-friendly library for Apache HBase. 416 | * [kafka-python](https://github.com/dpkp/kafka-python) - The Python client for Apache Kafka. 417 | * [py2neo](http://py2neo.org/2.0/) - Python wrapper client for Neo4j's restful interface. 418 | * [PyMongo](https://docs.mongodb.com/ecosystem/drivers/python/) - The official Python client for MongoDB. 419 | * [redis-py](https://github.com/andymccurdy/redis-py) - The Python client for Redis. 420 | * Asynchronous Clients 421 | * [Motor](https://github.com/mongodb/motor) - The async Python driver for MongoDB. 422 | * [telephus](https://github.com/driftx/Telephus) - Twisted based client for Cassandra. 423 | * [txRedis](https://github.com/deldotdr/txRedis) - Twisted based client for Redis. 424 | 425 | ## Date and Time 426 | 427 | *Libraries for working with dates and times.* 428 | 429 | * [Chronyk](https://github.com/KoffeinFlummi/Chronyk) - A Python 3 library for parsing human-written times and dates. 430 | * [dateutil](https://github.com/dateutil/dateutil) - Extensions to the standard Python [datetime](https://docs.python.org/3/library/datetime.html) module. 431 | * [delorean](https://github.com/myusuf3/delorean/) - A library for clearing up the inconvenient truths that arise dealing with datetimes. 432 | * [moment](https://github.com/zachwill/moment) - A Python library for dealing with dates/times. Inspired by [Moment.js](http://momentjs.com/). 433 | * [Pendulum](https://github.com/sdispater/pendulum) - Python datetimes made easy. 434 | * [PyTime](https://github.com/shinux/PyTime) - A easy-use Python module which aims to operate date/time/datetime by string. 435 | * [pytz](https://launchpad.net/pytz) - World timezone definitions, modern and historical. Brings the [tz database](https://en.wikipedia.org/wiki/Tz_database) into Python. 436 | * [when.py](https://github.com/dirn/When.py) - Providing user-friendly functions to help perform common date and time actions. 437 | * [maya](https://github.com/kennethreitz/maya) - Datetimes for Humans, Maya is mostly built around the headaches and use-cases around parsing datetime data from websites. 438 | 439 | ## Debugging Tools 440 | 441 | *Libraries for debugging code.* 442 | 443 | * pdb-like Debugger 444 | * [ipdb](https://pypi.python.org/pypi/ipdb) - IPython-enabled [pdb](https://docs.python.org/3/library/pdb.html). 445 | * [pdb++](https://pypi.python.org/pypi/pdbpp/) - Another drop-in replacement for pdb. 446 | * [pudb](https://pypi.python.org/pypi/pudb) - A full-screen, console-based Python debugger. 447 | * [remote-pdb](https://github.com/ionelmc/python-remote-pdb) - Remote vanilla PDB (over TCP sockets). 448 | * [wdb](https://github.com/Kozea/wdb) - An improbable web debugger through WebSockets. 449 | * Profiler 450 | * [line_profiler](https://github.com/rkern/line_profiler) - Line-by-line profiling. 451 | * [memory_profiler](https://github.com/fabianp/memory_profiler) - Monitor Memory usage of Python code. 452 | * [profiling](https://github.com/what-studio/profiling) - An interactive Python profiler. 453 | * [py-spy](https://github.com/benfred/py-spy) - A sampling profiler for Python programs. Written in Rust. 454 | * [Pyflame](https://github.com/uber/pyflame) - A ptracing profiler For Python. 455 | * [vprof](https://github.com/nvdv/vprof) - Visual Python profiler. 456 | * Others 457 | * [IceCream](https://github.com/gruns/icecream) - Inspect variables, expressions, and program execution with a single, simple function call. 458 | * [django-debug-toolbar](https://github.com/jazzband/django-debug-toolbar) - Display various debug information for Django. 459 | * [django-devserver](https://github.com/dcramer/django-devserver) - A drop-in replacement for Django's runserver. 460 | * [flask-debugtoolbar](https://github.com/mgood/flask-debugtoolbar) - A port of the django-debug-toolbar to flask. 461 | * [hunter](https://github.com/ionelmc/python-hunter) - Hunter is a flexible code tracing toolkit. 462 | * [lptrace](https://github.com/khamidou/lptrace) - [strace](http://man7.org/linux/man-pages/man1/strace.1.html) for Python programs. 463 | * [manhole](https://github.com/ionelmc/python-manhole) - Debug service that will accept unix domain socket connections and present the stacktraces for all threads and an interactive prompt. 464 | * [pyelftools](https://github.com/eliben/pyelftools) - Parsing and analyzing ELF files and DWARF debugging information. 465 | * [pyringe](https://github.com/google/pyringe) - Debugger capable of attaching to and injecting code into Python processes. 466 | 467 | ## Deep Learning 468 | 469 | *Frameworks for Neural Networks and Deep Learning. See: [awesome-deep-learning](https://github.com/ChristosChristofidis/awesome-deep-learning).* 470 | 471 | * [Caffe](https://github.com/BVLC/caffe) - A fast open framework for deep learning.. 472 | * [Keras](https://github.com/fchollet/keras) - A high-level neural networks library and capable of running on top of either TensorFlow or Theano. 473 | * [MXNet](https://github.com/dmlc/mxnet) - A deep learning framework designed for both efficiency and flexibility. 474 | * [Neupy](http://neupy.com/pages/home.html) - Running and testing different Artificial Neural Networks algorithms. 475 | * [Pytorch](http://pytorch.org/) - Tensors and Dynamic neural networks in Python with strong GPU acceleration. 476 | * [Serpent.AI](https://github.com/SerpentAI/SerpentAI) - Game agent framework. Use any video game as a deep learning sandbox. 477 | * [TensorFlow](https://github.com/tensorflow/tensorflow) - The most popular Deep Learning framework created by Google. 478 | * [Theano](https://github.com/Theano/Theano) - A library for fast numerical computation. 479 | 480 | ## DevOps Tools 481 | 482 | *Software and libraries for DevOps.* 483 | 484 | * [Ansible](https://github.com/ansible/ansible) - A radically simple IT automation platform. 485 | * [Cloud-Init](http://cloudinit.readthedocs.io/en/latest/) - A multi-distribution package that handles early initialization of a cloud instance. 486 | * [cuisine](https://github.com/sebastien/cuisine) - Chef-like functionality for Fabric. 487 | * [Docker Compose](https://docs.docker.com/compose/) - Fast, isolated development environments using [Docker](https://www.docker.com/). 488 | * [Fabric](http://www.fabfile.org/) - A simple, Pythonic tool for remote execution and deployment. 489 | * [Fabtools](https://github.com/fabtools/fabtools) - Tools for writing awesome Fabric files. 490 | * [honcho](https://github.com/nickstenning/honcho) - A Python clone of [Foreman](https://github.com/ddollar/foreman), for managing Procfile-based applications. 491 | * [OpenStack](https://www.openstack.org/) - Open source software for building private and public clouds. 492 | * [pexpect](https://github.com/pexpect/pexpect) - Controlling interactive programs in a pseudo-terminal like GNU expect. 493 | * [psutil](https://github.com/giampaolo/psutil) - A cross-platform process and system utilities module. 494 | * [SaltStack](https://github.com/saltstack/salt) - Infrastructure automation and management system. 495 | * [supervisor](https://github.com/Supervisor/supervisor) - Supervisor process control system for UNIX. 496 | 497 | ## Distribution 498 | 499 | *Libraries to create packaged executables for release distribution.* 500 | 501 | * [dh-virtualenv](https://github.com/spotify/dh-virtualenv) - Build and distribute a virtualenv as a Debian package. 502 | * [Nuitka](http://nuitka.net/) - Compile scripts, modules, packages to an executable or extension module. 503 | * [py2app](http://pythonhosted.org/py2app/) - Freezes Python scripts (Mac OS X). 504 | * [py2exe](http://www.py2exe.org/) - Freezes Python scripts (Windows). 505 | * [PyInstaller](https://github.com/pyinstaller/pyinstaller) - Converts Python programs into stand-alone executables (cross-platform). 506 | * [pynsist](http://pynsist.readthedocs.io/en/latest/) - A tool to build Windows installers, installers bundle Python itself. 507 | 508 | ## Documentation 509 | 510 | *Libraries for generating project documentation.* 511 | 512 | * [Sphinx](http://www.sphinx-doc.org/en/latest/) - Python Documentation generator. 513 | * [awesome-sphinxdoc](https://github.com/yoloseem/awesome-sphinxdoc) 514 | * [MkDocs](http://www.mkdocs.org/) - Markdown friendly documentation generator. 515 | * [pdoc](https://github.com/BurntSushi/pdoc) - Epydoc replacement to auto generate API documentation for Python libraries. 516 | * [Pycco](https://github.com/pycco-docs/pycco) - The literate-programming-style documentation generator. 517 | 518 | ## Downloader 519 | 520 | *Libraries for downloading.* 521 | 522 | * [s3cmd](https://github.com/s3tools/s3cmd) - A command line tool for managing Amazon S3 and CloudFront. 523 | * [s4cmd](https://github.com/bloomreach/s4cmd) - Super S3 command line tool, good for higher performance. 524 | * [you-get](http://you-get.org/) - A YouTube/Youku/Niconico video downloader written in Python 3. 525 | * [youtube-dl](http://rg3.github.io/youtube-dl/) - A small command-line program to download videos from YouTube. 526 | 527 | ## E-commerce 528 | 529 | *Frameworks and libraries for e-commerce and payments.* 530 | 531 | * [alipay](https://github.com/lxneng/alipay) - Unofficial Alipay API for Python. 532 | * [Cartridge](https://github.com/stephenmcd/cartridge) - A shopping cart app built using the Mezzanine. 533 | * [django-oscar](http://oscarcommerce.com/) - An open-source e-commerce framework for Django. 534 | * [django-shop](https://github.com/awesto/django-shop) - A Django based shop system. 535 | * [merchant](https://github.com/agiliq/merchant) - A Django app to accept payments from various payment processors. 536 | * [money](https://github.com/carlospalol/money) - Money class with optional CLDR-backed locale-aware formatting and an extensible currency exchange solution. 537 | * [python-currencies](https://github.com/Alir3z4/python-currencies) - Display money format and its filthy currencies. 538 | * [forex-python](https://github.com/MicroPyramid/forex-python) - Foreign exchange rates, Bitcoin price index and currency conversion. 539 | * [saleor](http://getsaleor.com/) - An e-commerce storefront for Django. 540 | * [shoop](https://www.shuup.com/en/) - An open source E-Commerce platform based on Django. 541 | 542 | ## Editor Plugins and IDEs 543 | 544 | * Emacs 545 | * [Elpy](https://github.com/jorgenschaefer/elpy) - Emacs Python Development Environment. 546 | * Sublime Text 547 | * [Anaconda](https://github.com/DamnWidget/anaconda) - Anaconda turns your Sublime Text 3 in a full featured Python development IDE. 548 | * [SublimeJEDI](https://github.com/srusskih/SublimeJEDI) - A Sublime Text plugin to the awesome auto-complete library Jedi. 549 | * Vim 550 | * [Jedi-vim](https://github.com/davidhalter/jedi-vim) - Vim bindings for the Jedi auto-completion library for Python. 551 | * [Python-mode](https://github.com/python-mode/python-mode) - An all in one plugin for turning Vim into a Python IDE. 552 | * [YouCompleteMe](https://github.com/Valloric/YouCompleteMe) - Includes [Jedi](https://github.com/davidhalter/jedi)-based completion engine for Python. 553 | * Visual Studio 554 | * [PTVS](https://github.com/Microsoft/PTVS) - Python Tools for Visual Studio. 555 | * Visual Studio Code 556 | * [Python](https://github.com/DonJayamanne/pythonVSCode) - An extension with rich support for the Python language, with features including linting, IntelliSense, formatting, refactoring, debugging, unit tests, and jupyter support. 557 | * [Magic Python](https://github.com/MagicStack/MagicPython) - Cutting edge Python syntax highlighter for Sublime Text, Atom, and Visual Studio Code. Used by GitHub to highlight your Python code! 558 | * IDE 559 | * [LiClipse](http://www.liclipse.com/) - Free polyglot IDE based on Eclipse. Uses PyDev for Python support. 560 | * [PyCharm](https://www.jetbrains.com/pycharm/) - Commercial Python IDE by JetBrains. Has free community edition available. 561 | * [Spyder](https://github.com/spyder-ide/spyder) - Open Source Python IDE. 562 | 563 | ## Email 564 | 565 | *Libraries for sending and parsing email.* 566 | 567 | * [envelopes](http://tomekwojcik.github.io/envelopes/) - Mailing for human beings. 568 | * [flanker](https://github.com/mailgun/flanker) - A email address and Mime parsing library. 569 | * [imbox](https://github.com/martinrusev/imbox) - Python IMAP for Humans. 570 | * [inbox.py](https://github.com/kennethreitz/inbox.py) - Python SMTP Server for Humans. 571 | * [lamson](https://github.com/zedshaw/lamson) - Pythonic SMTP Application Server. 572 | * [Marrow Mailer](https://github.com/marrow/mailer) - High-performance extensible mail delivery framework. 573 | * [modoboa](https://github.com/modoboa/modoboa) - A mail hosting and management platform including a modern and simplified Web UI. 574 | * [Nylas Sync Engine](https://github.com/nylas/sync-engine) - Providing a RESTful API on top of a powerful email sync platform. 575 | * [yagmail](https://github.com/kootenpv/yagmail) - Yet another Gmail/SMTP client. 576 | 577 | ## Environment Management 578 | 579 | *Libraries for Python version and environment management.* 580 | 581 | * [Pipenv](https://github.com/kennethreitz/pipenv) - Sacred Marriage of Pipfile, Pip, & Virtualenv. 582 | * [p](https://github.com/qw3rtman/p) - Dead simple interactive Python version management. 583 | * [pyenv](https://github.com/pyenv/pyenv) - Simple Python version management. 584 | * [venv](https://docs.python.org/3/library/venv.html) - (Python standard library in Python 3.3+) Creating lightweight virtual environments. 585 | * [virtualenv](https://pypi.python.org/pypi/virtualenv) - A tool to create isolated Python environments. 586 | * [virtualenvwrapper](https://pypi.python.org/pypi/virtualenvwrapper) - A set of extensions to virtualenv. 587 | 588 | ## Files 589 | 590 | *Libraries for file manipulation and MIME type detection.* 591 | 592 | * [mimetypes](https://docs.python.org/3/library/mimetypes.html) - (Python standard library) Map filenames to MIME types. 593 | * [path.py](https://github.com/jaraco/path.py) - A module wrapper for [os.path](https://docs.python.org/3/library/os.path.html). 594 | * [pathlib](https://docs.python.org/3/library/pathlib.html) - (Python standard library) An cross-platform, object-oriented path library. 595 | * [PyFilesystem2](https://github.com/pyfilesystem/pyfilesystem2) - Python's filesystem abstraction layer. 596 | * [python-magic](https://github.com/ahupp/python-magic) - A Python interface to the libmagic file type identification library. 597 | * [Unipath](https://github.com/mikeorr/Unipath) - An object-oriented approach to file/directory operations. 598 | * [watchdog](https://github.com/gorakhargosh/watchdog) - API and shell utilities to monitor file system events. 599 | 600 | ## Foreign Function Interface 601 | 602 | *Libraries for providing foreign function interface.* 603 | 604 | * [cffi](https://pypi.python.org/pypi/cffi) - Foreign Function Interface for Python calling C code. 605 | * [ctypes](https://docs.python.org/3/library/ctypes.html) - (Python standard library) Foreign Function Interface for Python calling C code. 606 | * [PyCUDA](https://mathema.tician.de/software/pycuda/) - A Python wrapper for Nvidia's CUDA API. 607 | * [SWIG](http://www.swig.org/Doc1.3/Python.html) - Simplified Wrapper and Interface Generator. 608 | 609 | ## Forms 610 | 611 | *Libraries for working with forms.* 612 | 613 | * [Deform](https://github.com/Pylons/deform) - Python HTML form generation library influenced by the formish form generation library. 614 | * [django-bootstrap3](https://github.com/dyve/django-bootstrap3) - Bootstrap 3 integration with Django. 615 | * [django-crispy-forms](https://github.com/django-crispy-forms/django-crispy-forms) - A Django app which lets you create beautiful forms in a very elegant and DRY way. 616 | * [django-remote-forms](https://github.com/WiserTogether/django-remote-forms) - A platform independent Django form serializer. 617 | * [WTForms](https://github.com/wtforms/wtforms) - A flexible forms validation and rendering library. 618 | 619 | ## Functional Programming 620 | 621 | *Functional Programming with Python.* 622 | 623 | * [Coconut](http://coconut-lang.org/) - Coconut is a variant of Python built for simple, elegant, Pythonic functional programming. 624 | * [CyToolz](https://github.com/pytoolz/cytoolz/) - Cython implementation of Toolz: High performance functional utilities. 625 | * [fn.py](https://github.com/kachayev/fn.py) - Functional programming in Python: implementation of missing features to enjoy FP. 626 | * [funcy](https://github.com/Suor/funcy) - A fancy and practical functional tools. 627 | * [Toolz](https://github.com/pytoolz/toolz) - A collection of functional utilities for iterators, functions, and dictionaries. 628 | 629 | ## GUI 630 | 631 | *Libraries for working with graphical user interface applications.* 632 | 633 | * [curses](https://docs.python.org/3/library/curses.html) - Built-in wrapper for [ncurses](http://www.gnu.org/software/ncurses/) used to create terminal GUI applications. 634 | * [Eel](https://github.com/ChrisKnott/Eel) - Little library for making simple Electron-like offline HTML/JS GUI apps, with full access to Python capabilities and libraries. 635 | * [enaml](https://github.com/nucleic/enaml) - Creating beautiful user-interfaces with Declaratic Syntax like QML. 636 | * [Flexx](https://github.com/zoofIO/flexx) - Flexx is a pure Python toolkit for creating GUI's, that uses web technology for its rendering. 637 | * [kivy](https://kivy.org/) - A library for creating NUI applications, running on Windows, Linux, Mac OS X, Android and iOS. 638 | * [pyglet](https://bitbucket.org/pyglet/pyglet/wiki/Home) - A cross-platform windowing and multimedia library for Python. 639 | * [PyGObject](https://wiki.gnome.org/Projects/PyGObject) - Python Bindings for GLib/GObject/GIO/GTK+ (GTK+3). 640 | * [PyQt](https://riverbankcomputing.com/software/pyqt/intro) - Python bindings for the [Qt](https://www.qt.io/) cross-platform application and UI framework, with support for both Qt v4 and Qt v5 frameworks. 641 | * [PySide](https://wiki.qt.io/PySide) - Python bindings for the [Qt](http://www.qt.io/) cross-platform application and UI framework, supporting the Qt v4 framework. 642 | * [PySimpleGUI](https://github.com/MikeTheWatchGuy/PySimpleGUI) - Wrapper for tkinter that creates a more Python-like interface for beginner and intermediate level custom GUIs. 643 | * [pywebview](https://github.com/r0x0r/pywebview/) - A lightweight cross-platform native wrapper around a webview component that allows to display HTML content in its own native dedicated window. 644 | * [Tkinter](https://wiki.python.org/moin/TkInter) - Tkinter is Python's de-facto standard GUI package. 645 | * [Toga](https://github.com/pybee/toga) - A Python native, OS native GUI toolkit. 646 | * [urwid](http://urwid.org/) - A library for creating terminal GUI applications with strong support for widgets, events, rich colors, etc. 647 | * [wxPython](https://wxpython.org/) - A blending of the wxWidgets C++ class library with the Python. 648 | 649 | ## Game Development 650 | 651 | *Awesome game development libraries.* 652 | 653 | * [Cocos2d](http://cocos2d.org/) - cocos2d is a framework for building 2D games, demos, and other graphical/interactive applications. It is based on pyglet. 654 | * [Panda3D](https://www.panda3d.org/) - 3D game engine developed by Disney and maintained by Carnegie Mellon's Entertainment Technology Center. Written in C++, completely wrapped in Python. 655 | * [Pygame](http://www.pygame.org/news.html) - Pygame is a set of Python modules designed for writing games. 656 | * [PyOgre](http://www.ogre3d.org/tikiwiki/PyOgre) - Python bindings for the Ogre 3D render engine, can be used for games, simulations, anything 3D. 657 | * [PyOpenGL](http://pyopengl.sourceforge.net/) - Python ctypes bindings for OpenGL and it's related APIs. 658 | * [PySDL2](http://pysdl2.readthedocs.io/en/rel_0_9_5/) - A ctypes based wrapper for the SDL2 library. 659 | * [RenPy](https://www.renpy.org/) - A Visual Novel engine. 660 | 661 | ## Geolocation 662 | 663 | *Libraries for geocoding addresses and working with latitudes and longitudes.* 664 | 665 | * [django-countries](https://github.com/SmileyChris/django-countries) - A Django app that provides country choices for use with forms, flag icons static files, and a country field for models. 666 | * [GeoDjango](https://docs.djangoproject.com/en/dev/ref/contrib/gis/) - A world-class geographic web framework. 667 | * [GeoIP](https://github.com/maxmind/geoip-api-python) - Python API for MaxMind GeoIP Legacy Database. 668 | * [geojson](https://github.com/frewsxcv/python-geojson) - Python bindings and utilities for GeoJSON. 669 | * [geopy](https://github.com/geopy/geopy) - Python Geocoding Toolbox. 670 | * [pygeoip](https://github.com/appliedsec/pygeoip) - Pure Python GeoIP API. 671 | 672 | ## HTML Manipulation 673 | 674 | *Libraries for working with HTML and XML.* 675 | 676 | * [BeautifulSoup](https://www.crummy.com/software/BeautifulSoup/bs4/doc/) - Providing Pythonic idioms for iterating, searching, and modifying HTML or XML. 677 | * [bleach](https://github.com/mozilla/bleach) - A whitelist-based HTML sanitization and text linkification library. 678 | * [cssutils](https://pypi.python.org/pypi/cssutils/) - A CSS library for Python. 679 | * [html5lib](https://github.com/html5lib/html5lib-python) - A standards-compliant library for parsing and serializing HTML documents and fragments. 680 | * [lxml](http://lxml.de/) - A very fast, easy-to-use and versatile library for handling HTML and XML. 681 | * [MarkupSafe](https://github.com/pallets/markupsafe) - Implements a XML/HTML/XHTML Markup safe string for Python. 682 | * [pyquery](https://github.com/gawel/pyquery) - A jQuery-like library for parsing HTML. 683 | * [untangle](https://github.com/stchris/untangle) - Converts XML documents to Python objects for easy access. 684 | * [WeasyPrint](http://weasyprint.org) - A visual rendering engine for HTML and CSS that can export to PDF. 685 | * [xmldataset](https://xmldataset.readthedocs.io/en/latest/) - Simple XML Parsing. 686 | * [xmltodict](https://github.com/martinblech/xmltodict) - Working with XML feel like you are working with JSON. 687 | 688 | ## HTTP 689 | 690 | *Libraries for working with HTTP.* 691 | 692 | * [grequests](https://github.com/kennethreitz/grequests) - requests + gevent for asynchronous HTTP requests. 693 | * [httplib2](https://github.com/httplib2/httplib2) - Comprehensive HTTP client library. 694 | * [requests](http://docs.python-requests.org/en/latest/) - HTTP Requests for Humans™. 695 | * [treq](https://github.com/twisted/treq) - Python requests like API built on top of Twisted's HTTP client. 696 | * [urllib3](https://github.com/shazow/urllib3) - A HTTP library with thread-safe connection pooling, file post support, sanity friendly. 697 | 698 | ## Hardware 699 | 700 | *Libraries for programming with hardware.* 701 | 702 | * [ino](http://inotool.org/) - Command line toolkit for working with [Arduino](https://www.arduino.cc/). 703 | * [keyboard](https://github.com/boppreh/keyboard) - Hook and simulate global keyboard events on Windows and Linux. 704 | * [mouse](https://github.com/boppreh/mouse) - Hook and simulate global mouse events on Windows and Linux. 705 | * [Pingo](http://www.pingo.io/) - Pingo provides a uniform API to program devices like the Raspberry Pi, pcDuino, Intel Galileo, etc. 706 | * [PyUserInput](https://github.com/SavinaRoja/PyUserInput) - A module for cross-platform control of the mouse and keyboard. 707 | * [scapy](https://github.com/secdev/scapy) - A brilliant packet manipulation library. 708 | * [wifi](https://github.com/rockymeza/wifi) - A Python library and command line tool for working with WiFi on Linux. 709 | 710 | ## Image Processing 711 | 712 | *Libraries for manipulating images.* 713 | 714 | * [hmap](https://github.com/rossgoodwin/hmap) - Image histogram remapping. 715 | * [imgSeek](https://sourceforge.net/projects/imgseek/) - A project for searching a collection of images using visual similarity. 716 | * [nude.py](https://github.com/hhatto/nude.py) - Nudity detection. 717 | * [pagan](https://github.com/daboth/pagan) - Retro identicon (Avatar) generation based on input string and hash. 718 | * [pillow](https://github.com/python-pillow/Pillow) - Pillow is the friendly [PIL](http://www.pythonware.com/products/pil/) fork. 719 | * [pyBarcode](https://pythonhosted.org/pyBarcode/) - Create barcodes in Python without needing PIL. 720 | * [pygram](https://github.com/ajkumar25/pygram) - Instagram-like image filters. 721 | * [python-qrcode](https://github.com/lincolnloop/python-qrcode) - A pure Python QR Code generator. 722 | * [Quads](https://github.com/fogleman/Quads) - Computer art based on quadtrees. 723 | * [scikit-image](http://scikit-image.org/) - A Python library for (scientific) image processing. 724 | * [thumbor](https://github.com/thumbor/thumbor) - A smart imaging service. It enables on-demand crop, re-sizing and flipping of images. 725 | * [wand](https://github.com/dahlia/wand) - Python bindings for [MagickWand](http://www.imagemagick.org/script/magick-wand.php), C API for ImageMagick. 726 | 727 | ## Implementations 728 | 729 | *Implementations of Python.* 730 | 731 | * [CLPython](https://github.com/metawilm/cl-python) - Implementation of the Python programming language written in Common Lisp. 732 | * [CPython](https://github.com/python/cpython) - **Default, most widely used implementation of the Python programming language written in C.** 733 | * [Cython](http://cython.org/) - Optimizing Static Compiler for Python. Uses type mixins to compile Python into C or C++ modules resulting in large performance gains 734 | * [Grumpy](https://github.com/google/grumpy) - More compiler than interpreter as more powerful CPython2.7 replacement (alpha). 735 | * [IronPython](https://github.com/IronLanguages/ironpython3) - Implementation of the Python programming language written in C# targeting the .NET Framework and Mono. 736 | * [Jython](https://hg.python.org/jython) - Implementation of Python programming language written in Java for the Java virtual machine (JVM). 737 | * [MicroPython](https://github.com/micropython/micropython) - MicroPython - a lean and efficient Python programming language implementation for microcontrollers and constrained systems 738 | * [Numba](http://numba.pydata.org/) - Python JIT compiler to LLVM aimed at scientific Python. 739 | * [PeachPy](https://github.com/Maratyszcza/PeachPy) - x86-64 assembler embedded in Python. Can be used as inline assembler for Python or as a stand-alone assembler for Windows, Linux, OS X, Native Client and Go. 740 | * [Pyjion](https://github.com/Microsoft/Pyjion) - A JIT for Python based upon CoreCLR. 741 | * [PyPy](https://bitbucket.org/pypy/pypy) - Implementation of the Python programming language written in RPython and translated into C. PyPy focuses on speed, efficiency and compatibility with the original CPython interpreter. The interpreter uses black magic to make Python very fast without having to add in additional type information. 742 | * [PySec](https://github.com/ebranca/owasp-pysec) - Hardened version of python that makes it easier for security professionals and developers to write applications more resilient to attacks and manipulations. 743 | * [Pyston](https://github.com/dropbox/pyston) - A Python implementation built using LLVM and modern JIT techniques with the goal of achieving good performance. 744 | * [Stackless Python](https://github.com/stackless-dev/stackless/wiki) - An enhanced version of the Python programming language which allows programmers to reap the benefits of thread-based programming without the performance and complexity problems associated with conventional threads. 745 | 746 | ## Interactive Interpreter 747 | 748 | *Interactive Python interpreters (REPL).* 749 | 750 | * [bpython](https://github.com/bpython/bpython) - A fancy interface to the Python interpreter. 751 | * [Jupyter Notebook (IPython)](https://jupyter.org) - A rich toolkit to help you make the most out of using Python interactively. 752 | * [awesome-jupyter](https://github.com/markusschanta/awesome-jupyter) 753 | * [ptpython](https://github.com/jonathanslenders/ptpython) - Advanced Python REPL built on top of the [python-prompt-toolkit](https://github.com/jonathanslenders/python-prompt-toolkit). 754 | 755 | ## Internationalization 756 | 757 | *Libraries for working with i18n.* 758 | 759 | * [Babel](http://babel.pocoo.org/en/latest/) - An internationalization library for Python. 760 | * [PyICU](https://github.com/ovalhub/pyicu) - A wrapper of International Components for Unicode C++ library ([ICU](http://site.icu-project.org/)). 761 | 762 | ## Job Scheduler 763 | 764 | *Libraries for scheduling jobs.* 765 | 766 | * [APScheduler](http://apscheduler.readthedocs.io/en/latest/) - A light but powerful in-process task scheduler that lets you schedule functions. 767 | * [django-schedule](https://github.com/thauber/django-schedule) - A calendaring app for Django. 768 | * [doit](http://pydoit.org/) - A task runner and build tool. 769 | * [gunnery](https://github.com/gunnery/gunnery) - Multipurpose task execution tool for distributed systems with web-based interface. 770 | * [Joblib](http://pythonhosted.org/joblib/index.html) - A set of tools to provide lightweight pipelining in Python. 771 | * [Plan](https://github.com/fengsp/plan) - Writing crontab file in Python like a charm. 772 | * [schedule](https://github.com/dbader/schedule) - Python job scheduling for humans. 773 | * [Spiff](https://github.com/knipknap/SpiffWorkflow) - A powerful workflow engine implemented in pure Python. 774 | * [TaskFlow](https://docs.openstack.org/developer/taskflow/) - A Python library that helps to make task execution easy, consistent and reliable. 775 | 776 | ## Logging 777 | 778 | *Libraries for generating and working with logs.* 779 | 780 | * [Eliot](https://github.com/ScatterHQ/eliot) - Logging for complex & distributed systems. 781 | * [logbook](http://logbook.readthedocs.io/en/stable/) - Logging replacement for Python. 782 | * [logging](https://docs.python.org/3/library/logging.html) - (Python standard library) Logging facility for Python. 783 | * [raven](https://github.com/getsentry/raven-python) - Python client for Sentry, a log/error tracking, crash reporting and aggregation platform for web applications. 784 | 785 | ## Machine Learning 786 | 787 | *Libraries for Machine Learning. See: [awesome-machine-learning](https://github.com/josephmisiti/awesome-machine-learning#python).* 788 | 789 | * [H2O](https://github.com/h2oai/h2o-3) - Open Source Fast Scalable Machine Learning Platform. 790 | * [Metrics](https://github.com/benhamner/Metrics) - Machine learning evaluation metrics. 791 | * [NuPIC](https://github.com/numenta/nupic) - Numenta Platform for Intelligent Computing. 792 | * [scikit-learn](http://scikit-learn.org/) - The most popular Python library for Machine Learning. 793 | * [Spark ML](http://spark.apache.org/docs/latest/ml-guide.html) - [Apache Spark](http://spark.apache.org/)'s scalable Machine Learning library. 794 | * [vowpal_porpoise](https://github.com/josephreisinger/vowpal_porpoise) - A lightweight Python wrapper for [Vowpal Wabbit](https://github.com/JohnLangford/vowpal_wabbit/). 795 | * [xgboost](https://github.com/dmlc/xgboost) - A scalable, portable, and distributed gradient boosting library. 796 | 797 | ## Microsoft Windows 798 | 799 | *Python programming on Microsoft Windows.* 800 | 801 | * [Python(x,y)](http://python-xy.github.io/) - Scientific-applications-oriented Python Distribution based on Qt and Spyder. 802 | * [pythonlibs](http://www.lfd.uci.edu/~gohlke/pythonlibs/) - Unofficial Windows binaries for Python extension packages. 803 | * [PythonNet](https://github.com/pythonnet/pythonnet) - Python Integration with the .NET Common Language Runtime (CLR). 804 | * [PyWin32](https://sourceforge.net/projects/pywin32/) - Python Extensions for Windows. 805 | * [WinPython](https://winpython.github.io/) - Portable development environment for Windows 7/8. 806 | 807 | ## Miscellaneous 808 | 809 | *Useful libraries or tools that don't fit in the categories above.* 810 | 811 | * [blinker](https://github.com/jek/blinker) - A fast Python in-process signal/event dispatching system. 812 | * [itsdangerous](https://github.com/pallets/itsdangerous) - Various helpers to pass trusted data to untrusted environments. 813 | * [pluginbase](https://github.com/mitsuhiko/pluginbase) - A simple but flexible plugin system for Python. 814 | * [Pychievements](https://github.com/PacketPerception/pychievements) - A framework for creating and tracking achievements. 815 | * [Tryton](http://www.tryton.org/) - A general purpose business framework. 816 | 817 | ## Natural Language Processing 818 | 819 | *Libraries for working with human languages.* 820 | 821 | * [gensim](https://github.com/RaRe-Technologies/gensim) - Topic Modelling for Humans. 822 | * [Jieba](https://github.com/fxsjy/jieba) - Chinese text segmentation. 823 | * [langid.py](https://github.com/saffsd/langid.py) - Stand-alone language identification system. 824 | * [NLTK](http://www.nltk.org/) - A leading platform for building Python programs to work with human language data. 825 | * [Pattern](http://www.clips.ua.ac.be/pattern) - A web mining module for the Python. 826 | * [polyglot](https://github.com/aboSamoor/polyglot) - Natural language pipeline supporting hundreds of languages. 827 | * [SnowNLP](https://github.com/isnowfy/snownlp) - A library for processing Chinese text. 828 | * [spaCy](https://spacy.io/) - A library for industrial-strength natural language processing in Python and Cython. 829 | * [TextBlob](https://github.com/sloria/TextBlob) - Providing a consistent API for diving into common NLP tasks. 830 | * [PyTorch-NLP](https://github.com/PetrochukM/PyTorch-NLP) - A toolkit enabling rapid deep learning NLP prototyping for research. 831 | 832 | ## Network Virtualization 833 | 834 | *Tools and libraries for Virtual Networking and SDN (Software Defined Networking).* 835 | 836 | * [Mininet](http://mininet.org/) - A popular network emulator and API written in Python. 837 | * [POX](https://github.com/noxrepo/pox) - An open source development platform for Python-based Software Defined Networking (SDN) control applications, such as OpenFlow SDN controllers. 838 | * [Pyretic](http://frenetic-lang.org/pyretic/) - A member of the Frenetic family of SDN programming languages that provides powerful abstractions over network switches or emulators. 839 | * [SDX Platform](https://github.com/sdn-ixp/internet2award) - SDN based IXP implementation that leverages Mininet, POX and Pyretic. 840 | 841 | ## Networking 842 | 843 | *Libraries for networking programming.* 844 | 845 | * [asyncio](https://docs.python.org/3/library/asyncio.html) - (Python standard library) Asynchronous I/O, event loop, coroutines and tasks. 846 | - [awesome-asyncio](https://github.com/timofurrer/awesome-asyncio) 847 | * [diesel](https://github.com/dieseldev/diesel) - Greenlet-based event I/O Framework for Python. 848 | * [pulsar](https://github.com/quantmind/pulsar) - Event-driven concurrent framework for Python. 849 | * [pyzmq](http://zeromq.github.io/pyzmq/) - A Python wrapper for the ZeroMQ message library. 850 | * [Twisted](https://twistedmatrix.com/trac/) - An event-driven networking engine. 851 | * [txZMQ](https://github.com/smira/txZMQ) - Twisted based wrapper for the ZeroMQ message library. 852 | * [NAPALM](https://github.com/napalm-automation/napalm) - Cross-vendor API to manipulate network devices. 853 | 854 | ## News Feed 855 | 856 | *Libraries for building user's activities.* 857 | 858 | * [django-activity-stream](https://github.com/justquick/django-activity-stream) - Generating generic activity streams from the actions on your site. 859 | * [Stream-Framework](https://github.com/tschellenbach/Stream-Framework) - Building newsfeed and notification systems using Cassandra and Redis. 860 | 861 | ## ORM 862 | 863 | *Libraries that implement Object-Relational Mapping or data mapping techniques.* 864 | 865 | * Relational Databases 866 | * [Django Models](https://docs.djangoproject.com/en/dev/topics/db/models/) - A part of Django. 867 | * [SQLAlchemy](http://www.sqlalchemy.org/) - The Python SQL Toolkit and Object Relational Mapper. 868 | * [awesome-sqlalchemy](https://github.com/dahlia/awesome-sqlalchemy) 869 | * [Orator](https://orator-orm.com) - The Orator ORM provides a simple yet beautiful ActiveRecord implementation. 870 | * [Peewee](https://github.com/coleifer/peewee) - A small, expressive ORM. 871 | * [PonyORM](https://ponyorm.com/) - ORM that provides a generator-oriented interface to SQL. 872 | * [pyDAL](https://github.com/web2py/pydal/) - A pure Python Database Abstraction Layer. 873 | * [python-sql](https://pypi.python.org/pypi/python-sql) - Write SQL queries pythonically. 874 | * NoSQL Databases 875 | * [django-mongodb-engine](https://github.com/django-nonrel/mongodb-engine) - Django MongoDB Backend. 876 | * [flywheel](https://github.com/stevearc/flywheel) - Object mapper for Amazon DynamoDB. 877 | * [hot-redis](https://github.com/stephenmcd/hot-redis) - Rich Python data types for Redis. 878 | * [MongoEngine](http://mongoengine.org/) - A Python Object-Document-Mapper for working with MongoDB. 879 | * [PynamoDB](https://github.com/pynamodb/PynamoDB) - A Pythonic interface for [Amazon DynamoDB](https://aws.amazon.com/dynamodb/). 880 | * [redisco](https://github.com/kiddouk/redisco) - A Python Library for Simple Models and Containers Persisted in Redis. 881 | * Others 882 | * [butterdb](https://github.com/terrible-ideas/butterdb) - A Python ORM for Google Drive Spreadsheets. 883 | * [dataset](https://github.com/pudo/dataset) - A JSON-based database. 884 | 885 | ## Package Management 886 | 887 | *Libraries for package and dependency management.* 888 | 889 | * [pip](https://pip.pypa.io/en/stable/) - The Python package and dependency manager. 890 | * [Python Package Index](https://pypi.python.org/pypi) 891 | * [conda](https://github.com/conda/conda/) - Cross-platform, Python-agnostic binary package manager. 892 | * [Curdling](http://clarete.li/curdling/) - Curdling is a command line tool for managing Python packages. 893 | * [pip-tools](https://github.com/jazzband/pip-tools) - A set of tools to keep your pinned Python dependencies fresh. 894 | * [wheel](http://pythonwheels.com/) - The new standard of Python distribution and are intended to replace eggs. 895 | 896 | ## Package Repositories 897 | 898 | *Local PyPI repository server and proxies.* 899 | 900 | * [warehouse](https://github.com/pypa/warehouse) - Next generation Python Package Repository (PyPI). 901 | * [Warehouse](https://pypi.org/) 902 | * [bandersnatch](https://bitbucket.org/pypa/bandersnatch) - PyPI mirroring tool provided by Python Packaging Authority (PyPA). 903 | * [devpi](http://doc.devpi.net/latest/) - PyPI server and packaging/testing/release tool. 904 | * [localshop](https://github.com/jazzband/localshop) - Local PyPI server (custom packages and auto-mirroring of pypi). 905 | 906 | ## Permissions 907 | 908 | *Libraries that allow or deny users access to data or functionality.* 909 | 910 | * [Carteblanche](https://github.com/neuman/python-carteblanche/) - Module to align code with thoughts of users and designers. Also magically handles navigation and permissions. 911 | * [django-guardian](https://github.com/django-guardian/django-guardian) - Implementation of per object permissions for Django 1.2+ 912 | * [django-rules](https://github.com/dfunckt/django-rules) - A tiny but powerful app providing object-level permissions to Django, without requiring a database. 913 | 914 | ## Processes 915 | 916 | *Libraries for starting and communicating with OS processes.* 917 | 918 | * [delegator.py](https://github.com/kennethreitz/delegator.py) - [Subprocesses](https://docs.python.org/3.6/library/subprocess.html) for Humans™ 2.0. 919 | * [sarge](http://sarge.readthedocs.io/en/latest/) - Yet another wrapper for subprocess. 920 | * [sh](https://github.com/amoffat/sh) - A full-fledged subprocess replacement for Python. 921 | 922 | ## Queue 923 | 924 | *Libraries for working with event and task queues.* 925 | 926 | * [celery](http://www.celeryproject.org/) - An asynchronous task queue/job queue based on distributed message passing. 927 | * [huey](https://github.com/coleifer/huey) - Little multi-threaded task queue. 928 | * [mrq](https://github.com/pricingassistant/mrq) - Mr. Queue - A distributed worker task queue in Python using Redis & gevent. 929 | * [rq](http://python-rq.org/) - Simple job queues for Python. 930 | * [simpleq](https://github.com/rdegges/simpleq) - A simple, infinitely scalable, Amazon SQS based queue. 931 | 932 | ## Recommender Systems 933 | 934 | *Libraries for building recommender systems.* 935 | 936 | * [annoy](https://github.com/spotify/annoy) - Approximate Nearest Neighbors in C++/Python optimized for memory usage. 937 | * [fastFM](https://github.com/ibayer/fastFM) - A library for Factorization Machines. 938 | * [implicit](https://github.com/benfred/implicit) - A fast Python implementation of collaborative filtering for implicit datasets. 939 | * [libffm](https://github.com/guestwalk/libffm) - A library for Field-aware Factorization Machine (FFM). 940 | * [LightFM](https://github.com/lyst/lightfm) - A Python implementation of a number of popular recommendation algorithms. 941 | * [Spotlight](https://github.com/maciejkula/spotlight) - Deep recommender models using PyTorch. 942 | * [surprise](http://surpriselib.com) - A scikit for building and analyzing recommender systems. 943 | * [TensorRec](https://github.com/jfkirk/tensorrec) - A Recommendation Engine Framework in TensorFlow. 944 | 945 | ## RESTful API 946 | 947 | *Libraries for developing RESTful APIs.* 948 | 949 | * Django 950 | * [django-rest-framework](http://www.django-rest-framework.org/) - A powerful and flexible toolkit to build web APIs. 951 | * [django-tastypie](http://tastypieapi.org/) - Creating delicious APIs for Django apps. 952 | * Flask 953 | * [eve](https://github.com/pyeve/eve) - REST API framework powered by Flask, MongoDB and good intentions. 954 | * [flask-api-utils](https://github.com/marselester/flask-api-utils) - Taking care of API representation and authentication for Flask. 955 | * [flask-api](http://www.flaskapi.org/) - Browsable Web APIs for Flask. 956 | * [flask-restful](https://github.com/flask-restful/flask-restful) - Quickly building REST APIs for Flask. 957 | * [flask-restless](https://github.com/jfinkels/flask-restless) - Generating RESTful APIs for database models defined with SQLAlchemy. 958 | * Pyramid 959 | * [cornice](https://github.com/Cornices/cornice) - A RESTful framework for Pyramid. 960 | * Framework agnostic 961 | * [falcon](http://falconframework.org/) - A high-performance framework for building cloud APIs and web app backends. 962 | * [hug](https://github.com/timothycrosley/hug) - A Python3 framework for cleanly exposing APIs over HTTP and the Command Line with automatic documentation and validation. 963 | * [restless](https://github.com/toastdriven/restless) - Framework agnostic REST framework based on lessons learned from Tastypie. 964 | * [ripozo](https://github.com/vertical-knowledge/ripozo) - Quickly creating REST/HATEOAS/Hypermedia APIs. 965 | * [sandman](https://github.com/jeffknupp/sandman) - Automated REST APIs for existing database-driven systems. 966 | * [apistar](https://github.com/encode/apistar) - A smart Web API framework, designed for Python 3. 967 | 968 | ## Robotics 969 | 970 | *Libraries for robotics.* 971 | 972 | * [PythonRobotics](https://github.com/AtsushiSakai/PythonRobotics) - This is a compilation of various robotics algorithms with visualizations. 973 | * [rospy](http://wiki.ros.org/rospy) - This is a library for ROS (Robot Operating System). 974 | 975 | ## RPC Servers 976 | 977 | *RPC-compatible servers.* 978 | 979 | * [SimpleJSONRPCServer](https://github.com/joshmarshall/jsonrpclib/) - This library is an implementation of the JSON-RPC specification. 980 | * [SimpleXMLRPCServer](https://docs.python.org/3/library/xmlrpc.server.html) - (Python standard library) Simple XML-RPC server implementation, single-threaded. 981 | * [zeroRPC](https://github.com/0rpc/zerorpc-python) - zerorpc is a flexible RPC implementation based on [ZeroMQ](http://zeromq.org/) and [MessagePack](http://msgpack.org/). 982 | 983 | ## Science 984 | 985 | *Libraries for scientific computing.* 986 | 987 | * [astropy](http://www.astropy.org/) - A community Python library for Astronomy. 988 | * [bcbio-nextgen](https://github.com/chapmanb/bcbio-nextgen) - Providing best-practice pipelines for fully automated high throughput sequencing analysis. 989 | * [bccb](https://github.com/chapmanb/bcbb) - Collection of useful code related to biological analysis. 990 | * [Biopython](http://biopython.org/wiki/Main_Page) - Biopython is a set of freely available tools for biological computation. 991 | * [cclib](http://cclib.github.io/) - A library for parsing and interpreting the results of computational chemistry packages. 992 | * [Colour](http://colour-science.org/) - A colour science package implementing a comprehensive number of colour theory transformations and algorithms. 993 | * [NetworkX](https://networkx.github.io/) - A high-productivity software for complex networks. 994 | * [NIPY](http://nipy.org) - A collection of neuroimaging toolkits. 995 | * [NumPy](http://www.numpy.org/) - A fundamental package for scientific computing with Python. 996 | * [Open Babel](http://openbabel.org/wiki/Main_Page) - A chemical toolbox designed to speak the many languages of chemical data. 997 | * [ObsPy](https://github.com/obspy/obspy/wiki/) - A Python toolbox for seismology. 998 | * [PyDy](http://www.pydy.org/) - Short for Python Dynamics, used to assist with workflow in the modeling of dynamic motion. 999 | * [PyMC](https://github.com/pymc-devs/pymc3) - Markov Chain Monte Carlo sampling toolkit. 1000 | * [QuTiP](http://qutip.org/) - Quantum Toolbox in Python. 1001 | * [RDKit](http://www.rdkit.org/) - Cheminformatics and Machine Learning Software. 1002 | * [SciPy](https://www.scipy.org/) - A Python-based ecosystem of open-source software for mathematics, science, and engineering. 1003 | * [statsmodels](https://github.com/statsmodels/statsmodels) - Statistical modeling and econometrics in Python. 1004 | * [SymPy](https://github.com/sympy/sympy) - A Python library for symbolic mathematics. 1005 | * [Zipline](https://github.com/quantopian/zipline) - A Pythonic algorithmic trading library. 1006 | * [SimPy](https://bitbucket.org/simpy/simpy) - A process-based discrete-event simulation framework. 1007 | 1008 | ## Search 1009 | 1010 | *Libraries and software for indexing and performing search queries on data.* 1011 | 1012 | * [django-haystack](https://github.com/django-haystack/django-haystack) - Modular search for Django. 1013 | * [elasticsearch-dsl-py](https://github.com/elastic/elasticsearch-dsl-py) - The official high-level Python client for Elasticsearch. 1014 | * [elasticsearch-py](https://www.elastic.co/guide/en/elasticsearch/client/python-api/current/index.html) - The official low-level Python client for [Elasticsearch](https://www.elastic.co/products/elasticsearch). 1015 | * [esengine](https://github.com/seek-ai/esengine) - ElasticSearch ODM (Object Document Mapper) for Python. 1016 | * [pysolr](https://github.com/django-haystack/pysolr) - A lightweight Python wrapper for Apache Solr (incl. SolrCloud awareness). 1017 | * [solrpy](https://github.com/edsu/solrpy) - A Python client for [solr](http://lucene.apache.org/solr/). 1018 | * [Whoosh](http://whoosh.readthedocs.io/en/latest/) - A fast, pure Python search engine library. 1019 | 1020 | ## Serialization 1021 | 1022 | *Libraries for serializing complex data types* 1023 | 1024 | * [marshmallow](https://github.com/marshmallow-code/marshmallow) - marshmallow is an ORM/ODM/framework-agnostic library for converting complex datatypes, such as objects, to and from native Python datatypes. 1025 | 1026 | ## Serverless Frameworks 1027 | 1028 | *Frameworks for developing serverless Python code.* 1029 | 1030 | * [apex](https://github.com/apex/apex) - Build, deploy, and manage [AWS Lambda](https://aws.amazon.com/lambda/) functions with ease. 1031 | * [python-lambda](https://github.com/nficano/python-lambda) - A toolkit for developing and deploying Python code in AWS Lambda. 1032 | * [Zappa](https://github.com/Miserlou/Zappa) - A tool for deploying WSGI applications on AWS Lambda and API Gateway. 1033 | 1034 | ## Specific Formats Processing 1035 | 1036 | *Libraries for parsing and manipulating specific text formats.* 1037 | 1038 | * General 1039 | * [tablib](https://github.com/kennethreitz/tablib) - A module for Tabular Datasets in XLS, CSV, JSON, YAML. 1040 | * Office 1041 | * [Marmir](https://github.com/brianray/mm) - Takes Python data structures and turns them into spreadsheets. 1042 | * [openpyxl](https://openpyxl.readthedocs.io/en/stable/) - A library for reading and writing Excel 2010 xlsx/xlsm/xltx/xltm files. 1043 | * [pyexcel](https://github.com/pyexcel/pyexcel) - Providing one API for reading, manipulating and writing csv, ods, xls, xlsx and xlsm files. 1044 | * [python-docx](https://github.com/python-openxml/python-docx) - Reads, queries and modifies Microsoft Word 2007/2008 docx files. 1045 | * [python-pptx](https://github.com/scanny/python-pptx) - Python library for creating and updating PowerPoint (.pptx) files. 1046 | * [relatorio](http://relatorio.tryton.org/) - Templating OpenDocument files. 1047 | * [unoconv](https://github.com/dagwieers/unoconv) - Convert between any document format supported by LibreOffice/OpenOffice. 1048 | * [XlsxWriter](https://xlsxwriter.readthedocs.io) - A Python module for creating Excel .xlsx files. 1049 | * [xlwings](https://www.xlwings.org) - A BSD-licensed library that makes it easy to call Python from Excel and vice versa. 1050 | * [xlwt](https://github.com/python-excel/xlwt) / [xlrd](https://github.com/python-excel/xlrd) - Writing and reading data and formatting information from Excel files. 1051 | * PDF 1052 | * [PDFMiner](https://github.com/euske/pdfminer) - A tool for extracting information from PDF documents. 1053 | * [PyPDF2](https://github.com/mstamy2/PyPDF2) - A library capable of splitting, merging and transforming PDF pages. 1054 | * [ReportLab](http://www.reportlab.com/opensource/) - Allowing Rapid creation of rich PDF documents. 1055 | * Markdown 1056 | * [Mistune](https://github.com/lepture/mistune) - Fastest and full featured pure Python parsers of Markdown. 1057 | * [Python-Markdown](https://github.com/waylan/Python-Markdown) - A Python implementation of John Gruber’s Markdown. 1058 | * YAML 1059 | * [PyYAML](http://pyyaml.org/) - YAML implementations for Python. 1060 | * CSV 1061 | * [csvkit](https://github.com/wireservice/csvkit) - Utilities for converting to and working with CSV. 1062 | * Archive 1063 | * [unp](https://github.com/mitsuhiko/unp) - A command line tool that can unpack archives easily. 1064 | 1065 | ## Static Site Generator 1066 | 1067 | *Static site generator is a software that takes some text + templates as input and produces HTML files on the output.* 1068 | 1069 | * [Cactus](https://github.com/eudicots/Cactus) - Static site generator for designers. 1070 | * [Hyde](http://hyde.github.io/) - Jinja2-based static web site generator. 1071 | * [Lektor](https://www.getlektor.com/) - An easy to use static CMS and blog engine. 1072 | * [Nikola](https://www.getnikola.com/) - A static website and blog generator. 1073 | * [Pelican](https://blog.getpelican.com/) - Uses Markdown or ReST for content and Jinja 2 for themes. Supports DVCS, Disqus. AGPL. 1074 | * [Tinkerer](http://tinkerer.me/) - Tinkerer is a blogging engine/.static website generator powered by Sphinx. 1075 | 1076 | ## Tagging 1077 | 1078 | *Libraries for tagging items.* 1079 | 1080 | * [django-taggit](https://github.com/alex/django-taggit) - Simple tagging for Django. 1081 | 1082 | ## Template Engine 1083 | 1084 | *Libraries and tools for templating and lexing.* 1085 | 1086 | * [Genshi](https://genshi.edgewall.org/) - Python templating toolkit for generation of web-aware output. 1087 | * [Jinja2](https://github.com/pallets/jinja) - A modern and designer friendly templating language. 1088 | * [Mako](http://www.makotemplates.org/) - Hyperfast and lightweight templating for the Python platform. 1089 | 1090 | ## Testing 1091 | 1092 | *Libraries for testing codebases and generating test data.* 1093 | 1094 | * Testing Frameworks 1095 | * [hypothesis](https://github.com/HypothesisWorks/hypothesis-python) - Hypothesis is an advanced Quickcheck style property based testing library. 1096 | * [mamba](http://nestorsalceda.github.io/mamba/) - The definitive testing tool for Python. Born under the banner of BDD. 1097 | * [nose](https://github.com/nose-devs/nose) - A nicer unittest for Python. 1098 | * [nose2](https://github.com/nose-devs/nose2) - The successor to nose, based on unittest2. 1099 | * [pytest](https://docs.pytest.org/en/latest/) - A mature full-featured Python testing tool. 1100 | * [Robot Framework](https://github.com/robotframework/robotframework) - A generic test automation framework. 1101 | * [unittest](https://docs.python.org/3/library/unittest.html) - (Python standard library) Unit testing framework. 1102 | * Test Runners 1103 | * [green](https://github.com/CleanCut/green) - A clean, colorful test runner. 1104 | * [tox](https://tox.readthedocs.io/en/latest/) - Auto builds and tests distributions in multiple Python versions 1105 | * GUI / Web Testing 1106 | * [locust](https://github.com/locustio/locust) - Scalable user load testing tool written in Python. 1107 | * [PyAutoGUI](https://github.com/asweigart/pyautogui) - PyAutoGUI is a cross-platform GUI automation Python module for human beings. 1108 | * [Selenium](https://pypi.python.org/pypi/selenium) - Python bindings for [Selenium](http://www.seleniumhq.org/) WebDriver. 1109 | * [sixpack](https://github.com/seatgeek/sixpack) - A language-agnostic A/B Testing framework. 1110 | * [splinter](https://github.com/cobrateam/splinter) - Open source tool for testing web applications. 1111 | * Mock 1112 | * [doublex](https://pypi.python.org/pypi/doublex) - Powerful test doubles framework for Python. 1113 | * [freezegun](https://github.com/spulec/freezegun) - Travel through time by mocking the datetime module. 1114 | * [httmock](https://github.com/patrys/httmock) - A mocking library for requests for Python 2.6+ and 3.2+. 1115 | * [httpretty](https://github.com/gabrielfalcao/HTTPretty) - HTTP request mock tool for Python. 1116 | * [mock](https://docs.python.org/3/library/unittest.mock.html) - (Python standard library) A mocking and patching library. 1117 | * [Mocket](https://github.com/mindflayer/python-mocket) - Socket Mock Framework plus HTTP[S]/asyncio/gevent mocking library with recording/replaying capability. 1118 | * [responses](https://github.com/getsentry/responses) - A utility library for mocking out the requests Python library. 1119 | * [VCR.py](https://github.com/kevin1024/vcrpy) - Record and replay HTTP interactions on your tests. 1120 | * Object Factories 1121 | * [factory_boy](https://github.com/FactoryBoy/factory_boy) - A test fixtures replacement for Python. 1122 | * [mixer](https://github.com/klen/mixer) - Another fixtures replacement. Supported Django, Flask, SQLAlchemy, Peewee and etc. 1123 | * [model_mommy](https://github.com/vandersonmota/model_mommy) - Creating random fixtures for testing in Django. 1124 | * Code Coverage 1125 | * [coverage](https://pypi.python.org/pypi/coverage) - Code coverage measurement. 1126 | * Fake Data 1127 | * [mimesis](https://github.com/lk-geimfari/mimesis) - is a Python library that help you generate fake data. 1128 | * [fake2db](https://github.com/emirozer/fake2db) - Fake database generator. 1129 | * [faker](https://github.com/joke2k/faker) - A Python package that generates fake data. 1130 | * [radar](https://pypi.python.org/pypi/radar) - Generate random datetime / time. 1131 | * Error Handler 1132 | * [FuckIt.py](https://github.com/ajalt/fuckitpy) - FuckIt.py uses state-of-the-art technology to make sure your Python code runs whether it has any right to or not. 1133 | 1134 | ## Text Processing 1135 | 1136 | *Libraries for parsing and manipulating plain texts.* 1137 | 1138 | * General 1139 | * [chardet](https://github.com/chardet/chardet) - Python 2/3 compatible character encoding detector. 1140 | * [difflib](https://docs.python.org/3/library/difflib.html) - (Python standard library) Helpers for computing deltas. 1141 | * [ftfy](https://github.com/LuminosoInsight/python-ftfy) - Makes Unicode text less broken and more consistent automagically. 1142 | * [fuzzywuzzy](https://github.com/seatgeek/fuzzywuzzy) - Fuzzy String Matching. 1143 | * [hashids](https://github.com/davidaurelio/hashids-python) - Implementation of [hashids](http://hashids.org) in Python. 1144 | * [Levenshtein](https://github.com/ztane/python-Levenshtein/) - Fast computation of Levenshtein distance and string similarity. 1145 | * [pangu.py](https://github.com/vinta/pangu.py) - Spacing texts for CJK and alphanumerics. 1146 | * [pyfiglet](https://github.com/pwaller/pyfiglet) - An implementation of figlet written in Python. 1147 | * [pypinyin](https://github.com/mozillazg/python-pinyin) - Convert Chinese hanzi to pinyin. 1148 | * [shortuuid](https://github.com/skorokithakis/shortuuid) - A generator library for concise, unambiguous and URL-safe UUIDs. 1149 | * [textdistance](https://github.com/orsinium/textdistance) - Compute distance between sequences. 30+ algorithms, pure python implementation, common interface, optional external libs usage. 1150 | * [unidecode](https://pypi.python.org/pypi/Unidecode) - ASCII transliterations of Unicode text. 1151 | * [uniout](https://github.com/moskytw/uniout) - Print readable chars instead of the escaped string. 1152 | * [xpinyin](https://github.com/lxneng/xpinyin) - A library to translate Chinese hanzi (漢字) to pinyin (拼音). 1153 | * Slugify 1154 | * [awesome-slugify](https://github.com/dimka665/awesome-slugify) - A Python slugify library that can preserve unicode. 1155 | * [python-slugify](https://github.com/un33k/python-slugify) - A Python slugify library that translates unicode to ASCII. 1156 | * [unicode-slugify](https://github.com/mozilla/unicode-slugify) - A slugifier that generates unicode slugs with Django as a dependency. 1157 | * Parser 1158 | * [phonenumbers](https://github.com/daviddrysdale/python-phonenumbers) - Parsing, formatting, storing and validating international phone numbers. 1159 | * [PLY](http://www.dabeaz.com/ply/) - Implementation of lex and yacc parsing tools for Python. 1160 | * [Pygments](http://pygments.org/) - A generic syntax highlighter. 1161 | * [pyparsing](https://github.com/pyparsing/pyparsing) - A general purpose framework for generating parsers. 1162 | * [python-nameparser](https://github.com/derek73/python-nameparser) - Parsing human names into their individual components. 1163 | * [python-user-agents](https://github.com/selwin/python-user-agents) - Browser user agent parser. 1164 | * [sqlparse](https://github.com/andialbrecht/sqlparse) - A non-validating SQL parser. 1165 | 1166 | ## Third-party APIs 1167 | 1168 | *Libraries for accessing third party services APIs. See: [List of Python API Wrappers and Libraries](https://github.com/realpython/list-of-python-api-wrappers).* 1169 | 1170 | * [apache-libcloud](https://libcloud.apache.org/) - One Python library for all clouds. 1171 | * [boto3](https://github.com/boto/boto3) - Python interface to Amazon Web Services. 1172 | * [django-wordpress](https://github.com/istrategylabs/django-wordpress) - WordPress models and views for Django. 1173 | * [facebook-sdk](https://github.com/mobolic/facebook-sdk) - Facebook Platform Python SDK. 1174 | * [facepy](https://github.com/jgorset/facepy) - Facepy makes it really easy to interact with Facebook's Graph API 1175 | * [gmail](https://github.com/charlierguo/gmail) - A Pythonic interface for Gmail. 1176 | * [google-api-python-client](https://github.com/google/google-api-python-client) - Google APIs Client Library for Python. 1177 | * [gspread](https://github.com/burnash/gspread) - Google Spreadsheets Python API. 1178 | * [twython](https://github.com/ryanmcgrath/twython) - A Python wrapper for the Twitter API. 1179 | 1180 | ## URL Manipulation 1181 | 1182 | *Libraries for parsing URLs.* 1183 | 1184 | * [furl](https://github.com/gruns/furl) - A small Python library that makes parsing and manipulating URLs easy. 1185 | * [purl](https://github.com/codeinthehole/purl) - A simple, immutable URL class with a clean API for interrogation and manipulation. 1186 | * [pyshorteners](https://github.com/ellisonleao/pyshorteners) - A pure Python URL shortening lib. 1187 | * [short_url](https://github.com/Alir3z4/python-short_url) - Python implementation for generating Tiny URL and bit.ly-like URLs. 1188 | * [webargs](https://github.com/sloria/webargs) - A friendly library for parsing HTTP request arguments, with built-in support for popular web frameworks, including Flask, Django, Bottle, Tornado, and Pyramid. 1189 | 1190 | ## Video 1191 | 1192 | *Libraries for manipulating video and GIFs.* 1193 | 1194 | * [moviepy](http://zulko.github.io/moviepy/) - A module for script-based movie editing with many formats, including animated GIFs. 1195 | * [scikit-video](https://github.com/aizvorski/scikit-video) - Video processing routines for SciPy. 1196 | 1197 | ## WSGI Servers 1198 | 1199 | *WSGI-compatible web servers.* 1200 | 1201 | * [bjoern](https://pypi.python.org/pypi/bjoern) - Asynchronous, very fast and written in C. 1202 | * [fapws3](http://www.fapws.org/) - Asynchronous (network side only), written in C. 1203 | * [gunicorn](https://pypi.python.org/pypi/gunicorn) - Pre-forked, partly written in C. 1204 | * [meinheld](https://pypi.python.org/pypi/meinheld) - Asynchronous, partly written in C. 1205 | * [netius](https://github.com/hivesolutions/netius) - Asynchronous, very fast. 1206 | * [rocket](https://pypi.python.org/pypi/rocket) - Multi-threaded. 1207 | * [uWSGI](https://uwsgi-docs.readthedocs.io/en/latest/) - A project aims at developing a full stack for building hosting services, written in C. 1208 | * [waitress](https://waitress.readthedocs.io/en/latest/) - Multi-threaded, powers Pyramid. 1209 | * [Werkzeug](http://werkzeug.pocoo.org/) - A WSGI utility library for Python that powers Flask and can easily be embedded into your own projects. 1210 | 1211 | ## Web Content Extracting 1212 | 1213 | *Libraries for extracting web contents.* 1214 | 1215 | * [Haul](https://github.com/vinta/Haul) - An Extensible Image Crawler. 1216 | * [html2text](https://github.com/Alir3z4/html2text) - Convert HTML to Markdown-formatted text. 1217 | * [lassie](https://github.com/michaelhelmick/lassie) - Web Content Retrieval for Humans. 1218 | * [micawber](https://github.com/coleifer/micawber) - A small library for extracting rich content from URLs. 1219 | * [newspaper](https://github.com/codelucas/newspaper) - News extraction, article extraction and content curation in Python. 1220 | * [python-goose](https://github.com/grangier/python-goose) - HTML Content/Article Extractor. 1221 | * [python-readability](https://github.com/buriy/python-readability) - Fast Python port of arc90's readability tool. 1222 | * [requests-html](https://github.com/kennethreitz/requests-html) - Pythonic HTML Parsing for Humans. 1223 | * [sanitize](https://github.com/Alir3z4/python-sanitize) - Bringing sanity to world of messed-up data. 1224 | * [sumy](https://github.com/miso-belica/sumy) - A module for automatic summarization of text documents and HTML pages. 1225 | * [textract](https://github.com/deanmalmgren/textract) - Extract text from any document, Word, PowerPoint, PDFs, etc. 1226 | * [toapi](https://github.com/gaojiuli/toapi) - Every web site provides APIs. 1227 | 1228 | ## Web Crawling & Web Scraping 1229 | 1230 | *Libraries to automate data extraction from websites.* 1231 | 1232 | * [cola](https://github.com/chineking/cola) - A distributed crawling framework. 1233 | * [Demiurge](https://github.com/matiasb/demiurge) - PyQuery-based scraping micro-framework. 1234 | * [feedparser](http://pythonhosted.org/feedparser/) - Universal feed parser. 1235 | * [Grab](http://grablib.org/) - Site scraping framework. 1236 | * [MechanicalSoup](https://github.com/hickford/MechanicalSoup) - A Python library for automating interaction with websites. 1237 | * [portia](https://github.com/scrapinghub/portia) - Visual scraping for Scrapy. 1238 | * [pyspider](https://github.com/binux/pyspider) - A powerful spider system. 1239 | * [RoboBrowser](https://github.com/jmcarp/robobrowser) - A simple, Pythonic library for browsing the web without a standalone web browser. 1240 | * [Scrapy](https://scrapy.org/) - A fast high-level screen scraping and web crawling framework. 1241 | 1242 | ## Web Frameworks 1243 | 1244 | *Full stack web frameworks.* 1245 | 1246 | * [Django](https://www.djangoproject.com/) - The most popular web framework in Python. 1247 | * [awesome-django](https://github.com/rosarior/awesome-django) 1248 | * [Flask](http://flask.pocoo.org/) - A microframework for Python. 1249 | * [awesome-flask](https://github.com/humiaozuzu/awesome-flask) 1250 | * [Pyramid](https://pylonsproject.org/) - A small, fast, down-to-earth, open source Python web framework. 1251 | * [awesome-pyramid](https://github.com/uralbash/awesome-pyramid) 1252 | * [Sanic](https://github.com/channelcat/sanic) - Web server that's written to go fast. 1253 | * [Tornado](http://www.tornadoweb.org/en/latest/) - A Web framework and asynchronous networking library. 1254 | * [Vibora](https://vibora.io/) - Fast, efficient and asynchronous Web framework inspired by Flask. 1255 | 1256 | ## WebSocket 1257 | 1258 | *Libraries for working with WebSocket.* 1259 | 1260 | * [AutobahnPython](https://github.com/crossbario/autobahn-python) - WebSocket & WAMP for Python on Twisted and [asyncio](https://docs.python.org/3/library/asyncio.html). 1261 | * [Crossbar](https://github.com/crossbario/crossbar/) - Open-source Unified Application Router (Websocket & WAMP for Python on Autobahn). 1262 | * [django-channels](https://github.com/django/channels) - Developer-friendly asynchrony for Django. 1263 | * [django-socketio](https://github.com/stephenmcd/django-socketio) - WebSockets for Django. 1264 | * [WebSocket-for-Python](https://github.com/Lawouach/WebSocket-for-Python) - WebSocket client and server library for Python 2 and 3 as well as PyPy. 1265 | 1266 | # Services 1267 | 1268 | Online tools and APIs to simplify development. 1269 | 1270 | ## Continuous Integration 1271 | 1272 | *See: [awesome-CIandCD](https://github.com/ciandcd/awesome-ciandcd#online-build-system).* 1273 | 1274 | * [CircleCI](https://circleci.com/) - A CI service that can run very fast parallel testing. (GitHub only) 1275 | * [Travis CI](https://travis-ci.org) - A popular CI service for your open source and [private](https://travis-ci.com) projects. (GitHub only) 1276 | * [Vexor CI](https://vexor.io) - A continuous integration tool for private apps with pay-per-minute billing model. 1277 | * [Wercker](http://www.wercker.com/) - A Docker-based platform for building and deploying applications and microservices. 1278 | 1279 | ## Code Quality 1280 | 1281 | * [Codacy](https://www.codacy.com/) - Automated Code Review to ship better code, faster. 1282 | * [Codecov](https://codecov.io/) - Code coverage dashboard. 1283 | * [CodeFactor](https://www.codefactor.io/) - Automated Code Review for Git. 1284 | * [Landscape](https://landscape.io/) - Hosted continuous Python code metrics. 1285 | 1286 | # Resources 1287 | 1288 | Where to discover new Python libraries. 1289 | 1290 | ## Podcasts 1291 | 1292 | * [From Python Import Podcast](http://frompythonimportpodcast.com/) 1293 | * [Podcast.init](https://podcastinit.com/) 1294 | * [Python Bytes](https://pythonbytes.fm) 1295 | * [Python Testing](http://pythontesting.net) 1296 | * [Radio Free Python](http://radiofreepython.com/) 1297 | * [Talk Python To Me](https://talkpython.fm/) 1298 | 1299 | ## Twitter 1300 | 1301 | * [@codetengu](https://twitter.com/codetengu) 1302 | * [@getpy](https://twitter.com/getpy) 1303 | * [@importpython](https://twitter.com/importpython) 1304 | * [@planetpython](https://twitter.com/planetpython) 1305 | * [@pycoders](https://twitter.com/pycoders) 1306 | * [@pypi](https://twitter.com/pypi) 1307 | * [@pythontrending](https://twitter.com/pythontrending) 1308 | * [@PythonWeekly](https://twitter.com/PythonWeekly) 1309 | * [@TalkPython](https://twitter.com/talkpython) 1310 | * [@realpython](https://twitter.com/realpython) 1311 | 1312 | ## Websites 1313 | 1314 | * [/r/CoolGithubProjects](https://www.reddit.com/r/coolgithubprojects/) 1315 | * [/r/Python](https://www.reddit.com/r/python) 1316 | * [Awesome Python @LibHunt](https://python.libhunt.com/) 1317 | * [Django Packages](https://djangopackages.org/) 1318 | * [Full Stack Python](https://www.fullstackpython.com/) 1319 | * [PyPI Ranking](http://pypi-ranking.info/alltime) 1320 | * [Python 3 Wall of Superpowers](http://python3wos.appspot.com/) 1321 | * [Python Hackers](http://www.oss.io/open-source/) 1322 | * [Python ZEEF](https://python.zeef.com/alan.richmond) 1323 | * [Python 开发社区](https://www.ctolib.com/python/) 1324 | * [Real Python](https://realpython.com) 1325 | * [Trending Python repositories on GitHub today](https://github.com/trending?l=python) 1326 | 1327 | ## Weekly 1328 | 1329 | * [CodeTengu Weekly 碼天狗週刊](https://weekly.codetengu.com/) 1330 | * [Import Python Newsletter](http://importpython.com/newsletter/) 1331 | * [Pycoder's Weekly](http://pycoders.com/) 1332 | * [Python Weekly](http://www.pythonweekly.com/) 1333 | * [Python Tricks](https://realpython.com/python-tricks/) 1334 | 1335 | # Other Awesome Lists 1336 | 1337 | List of lists. 1338 | 1339 | * Monty 1340 | * [awesome](https://github.com/sindresorhus/awesome) 1341 | * [awesomo](https://github.com/lk-geimfari/awesomo) 1342 | * [lists](https://github.com/jnv/lists) 1343 | * Python 1344 | * [pycrumbs](https://github.com/kirang89/pycrumbs) 1345 | * [python-github-projects](https://github.com/checkcheckzz/python-github-projects) 1346 | * [python_reference](https://github.com/rasbt/python_reference) 1347 | * [pythonidae](https://github.com/svaksha/pythonidae) 1348 | * [Python Podcasts](https://www.cybrhome.com/topic/python-podcasts) 1349 | * [Python for Social Good](https://github.com/metakermit/awesome-python-for-social-good) 1350 | 1351 | # Contributing 1352 | 1353 | Your contributions are always welcome! Please take a look at the [contribution guidelines](https://github.com/vinta/awesome-python/blob/master/CONTRIBUTING.md) first. 1354 | 1355 | I will keep some pull requests open if I'm not sure whether those libraries are awesome, you could [vote for them](https://github.com/vinta/awesome-python/pulls) by adding :+1: to them. Pull requests will be merged when their votes reach **20**. 1356 | 1357 | - - - 1358 | 1359 | If you have any question about this opinionated list, do not hesitate to contact me [@vinta](https://twitter.com/vinta) on Twitter or open an issue on GitHub. 1360 | -------------------------------------------------------------------------------- /docs/CNAME: -------------------------------------------------------------------------------- 1 | awesome-python.com -------------------------------------------------------------------------------- /docs/css/extra.css: -------------------------------------------------------------------------------- 1 | .bs-sidebar.well { 2 | /* margin-bottom: 0; */ 3 | } 4 | 5 | .bs-sidebar .nav > li > a:hover, 6 | .bs-sidebar .nav > li > a:focus { 7 | border: none; 8 | border-left: 2px solid; 9 | } 10 | 11 | .bs-sidebar .nav > .active > a, 12 | .bs-sidebar .nav > .active:hover > a, 13 | .bs-sidebar .nav > .active:focus > a { 14 | border: none; 15 | border-left: 2px solid; 16 | } 17 | 18 | @media (min-width: 992px) { 19 | .bs-sidebar.affix { 20 | /* top: 60px; */ 21 | /* bottom: 0px; */ 22 | top: 80px; 23 | bottom: 23px; 24 | overflow: auto; 25 | } 26 | } 27 | 28 | @media (min-width: 1200px) { 29 | .bs-sidebar.affix-bottom, 30 | .bs-sidebar.affix { 31 | width: 280px; 32 | } 33 | 34 | .container > .col-md-9 { 35 | padding-left: 40px; 36 | } 37 | } 38 | -------------------------------------------------------------------------------- /mkdocs.yml: -------------------------------------------------------------------------------- 1 | site_name: 'Awesome Python' 2 | site_url: 'https://awesome-python.com' 3 | site_description: 'A curated list of awesome Python frameworks, libraries and software' 4 | site_author: 'Vinta Chen' 5 | repo_name: 'vinta/awesome-python' 6 | repo_url: 'https://github.com/vinta/awesome-python' 7 | theme: 'material' 8 | extra: 9 | feature: 10 | tabs: false 11 | palette: 12 | primary: 'red' 13 | accent: 'pink' 14 | social: 15 | - type: 'github' 16 | link: 'https://github.com/vinta' 17 | - type: 'twitter' 18 | link: 'https://twitter.com/vinta' 19 | - type: 'linkedin' 20 | link: 'https://www.linkedin.com/in/vinta' 21 | google_analytics: 22 | - 'UA-510626-7' 23 | - 'auto' 24 | extra_css: 25 | - css/extra.css 26 | pages: 27 | - "Life is short, you need Python.": "index.md" 28 | -------------------------------------------------------------------------------- /sort.py: -------------------------------------------------------------------------------- 1 | # coding: utf-8 2 | 3 | """ 4 | The approach taken is explained below. I decided to do it simply. 5 | Initially I was considering parsing the data into some sort of 6 | structure and then generating an appropriate README. I am still 7 | considering doing it - but for now this should work. The only issue 8 | I see is that it only sorts the entries at the lowest level, and that 9 | the order of the top-level contents do not match the order of the actual 10 | entries. 11 | 12 | This could be extended by having nested blocks, sorting them recursively 13 | and flattening the end structure into a list of lines. Revision 2 maybe ^.^. 14 | """ 15 | 16 | def sort_blocks(): 17 | # First, we load the current README into memory 18 | with open('README.md', 'r') as read_me_file: 19 | read_me = read_me_file.read() 20 | 21 | # Separating the 'table of contents' from the contents (blocks) 22 | table_of_contents = ''.join(read_me.split('- - -')[0]) 23 | blocks = ''.join(read_me.split('- - -')[1]).split('\n# ') 24 | for i in range(len(blocks)): 25 | if i == 0: 26 | blocks[i] = blocks[i] + '\n' 27 | else: 28 | blocks[i] = '# ' + blocks[i] + '\n' 29 | 30 | # Sorting the libraries 31 | inner_blocks = sorted(blocks[0].split('##')) 32 | for i in range(1 , len(inner_blocks)): 33 | if inner_blocks[i][0] != '#': 34 | inner_blocks[i] = '##' + inner_blocks[i] 35 | inner_blocks=''.join(inner_blocks) 36 | 37 | # Replacing the non-sorted libraries by the sorted ones and gathering all at the final_README file 38 | blocks[0] = inner_blocks 39 | final_README = table_of_contents + '- - -' + ''.join(blocks) 40 | 41 | with open('README.md', 'w+') as sorted_file: 42 | sorted_file.write(final_README) 43 | 44 | def main(): 45 | # First, we load the current README into memory as an array of lines 46 | with open('README.md', 'r') as read_me_file: 47 | read_me = read_me_file.readlines() 48 | 49 | # Then we cluster the lines together as blocks 50 | # Each block represents a collection of lines that should be sorted 51 | # This was done by assuming only links ([...](...)) are meant to be sorted 52 | # Clustering is done by indentation 53 | blocks = [] 54 | last_indent = None 55 | for line in read_me: 56 | s_line = line.lstrip() 57 | indent = len(line) - len(s_line) 58 | 59 | if any([s_line.startswith(s) for s in ['* [', '- [']]): 60 | if indent == last_indent: 61 | blocks[-1].append(line) 62 | else: 63 | blocks.append([line]) 64 | last_indent = indent 65 | else: 66 | blocks.append([line]) 67 | last_indent = None 68 | 69 | with open('README.md', 'w+') as sorted_file: 70 | # Then all of the blocks are sorted individually 71 | blocks = [''.join(sorted(block, key=lambda s: s.lower())) for block in blocks] 72 | # And the result is written back to README.md 73 | sorted_file.write(''.join(blocks)) 74 | 75 | # Then we call the sorting method 76 | sort_blocks() 77 | 78 | 79 | if __name__ == "__main__": 80 | main() 81 | --------------------------------------------------------------------------------