mirror of
https://github.com/vinta/awesome-python.git
synced 2025-01-18 15:27:01 +00:00
always look on the bright side of life
This commit is contained in:
parent
2348dfb369
commit
3441b3b509
120
README.md
120
README.md
|
@ -2,6 +2,10 @@
|
||||||
|
|
||||||
A curated list of awesome Python frameworks, libraries and resources. Inspired by [awesome-php](https://github.com/ziadoz/awesome-php).
|
A curated list of awesome Python frameworks, libraries and resources. Inspired by [awesome-php](https://github.com/ziadoz/awesome-php).
|
||||||
|
|
||||||
|
![Life is a piece of shit](https://raw.githubusercontent.com/vinta/awesome-python/master/Life%20is%20a%20piece%20of%20shit,%20you%20need%20Python.gif "Life is a piece of shit, you need Python")
|
||||||
|
|
||||||
|
so you need Python.
|
||||||
|
|
||||||
- [Awesome Python](#awesome-python)
|
- [Awesome Python](#awesome-python)
|
||||||
- [Environment Management](#environment-management)
|
- [Environment Management](#environment-management)
|
||||||
- [Package Management](#package-management)
|
- [Package Management](#package-management)
|
||||||
|
@ -63,14 +67,19 @@ A curated list of awesome Python frameworks, libraries and resources. Inspired b
|
||||||
|
|
||||||
## Files
|
## Files
|
||||||
|
|
||||||
|
*Libraries for file manipulation and MIME type detection.*
|
||||||
|
|
||||||
* [mimetypes](https://docs.python.org/2/library/mimetypes.html) - (Python standard library) Map filenames to MIME types.
|
* [mimetypes](https://docs.python.org/2/library/mimetypes.html) - (Python standard library) Map filenames to MIME types.
|
||||||
* [imghdr](https://docs.python.org/2/library/imghdr.html) - (Python standard library) Determine the type of an image.
|
* [imghdr](https://docs.python.org/2/library/imghdr.html) - (Python standard library) Determine the type of an image.
|
||||||
* [python-magic](https://github.com/ahupp/python-magic) - A Python interface to the libmagic file type identification library.
|
* [python-magic](https://github.com/ahupp/python-magic) - A Python interface to the libmagic file type identification library.
|
||||||
* [path.py](https://github.com/jaraco/path.py) - A module wrapper for [os.path](https://docs.python.org/2/library/os.path.html).
|
* [path.py](https://github.com/jaraco/path.py) - A module wrapper for [os.path](https://docs.python.org/2/library/os.path.html).
|
||||||
* [watchdog](https://github.com/gorakhargosh/watchdog) - API and shell utilities to monitor file system events.
|
* [watchdog](https://github.com/gorakhargosh/watchdog) - API and shell utilities to monitor file system events.
|
||||||
|
* [django-storages](http://django-storages.readthedocs.org/) - A collection of custom storage backends for Django.
|
||||||
|
|
||||||
## Date and Time
|
## Date and Time
|
||||||
|
|
||||||
|
*Libraries for working with dates and times.*
|
||||||
|
|
||||||
* [arrow](https://github.com/crsmithdev/arrow) - Better dates & times for Python.
|
* [arrow](https://github.com/crsmithdev/arrow) - Better dates & times for Python.
|
||||||
* [dateutil](https://pypi.python.org/pypi/python-dateutil) - Extensions to the standard Python [datetime](https://docs.python.org/2/library/datetime.html) module.
|
* [dateutil](https://pypi.python.org/pypi/python-dateutil) - Extensions to the standard Python [datetime](https://docs.python.org/2/library/datetime.html) module.
|
||||||
* [delorean](http://delorean.readthedocs.org/) - A library for clearing up the inconvenient truths that arise dealing with datetimes in Python.
|
* [delorean](http://delorean.readthedocs.org/) - A library for clearing up the inconvenient truths that arise dealing with datetimes in Python.
|
||||||
|
@ -79,6 +88,8 @@ A curated list of awesome Python frameworks, libraries and resources. Inspired b
|
||||||
|
|
||||||
## Text Processing
|
## Text Processing
|
||||||
|
|
||||||
|
*Libraries for parsing and manipulating texts.*
|
||||||
|
|
||||||
* [difflib](https://docs.python.org/2/library/difflib.html) - (Python standard library) Helpers for computing deltas.
|
* [difflib](https://docs.python.org/2/library/difflib.html) - (Python standard library) Helpers for computing deltas.
|
||||||
* [Levenshtein](https://github.com/ztane/python-Levenshtein/) - Fast computation of Levenshtein distance and string similarity.
|
* [Levenshtein](https://github.com/ztane/python-Levenshtein/) - Fast computation of Levenshtein distance and string similarity.
|
||||||
* [fuzzywuzzy](https://github.com/seatgeek/fuzzywuzzy) - Fuzzy String Matching.
|
* [fuzzywuzzy](https://github.com/seatgeek/fuzzywuzzy) - Fuzzy String Matching.
|
||||||
|
@ -97,9 +108,12 @@ A curated list of awesome Python frameworks, libraries and resources. Inspired b
|
||||||
* [pangu.py](https://github.com/vinta/pangu.py) - Spacing texts.
|
* [pangu.py](https://github.com/vinta/pangu.py) - Spacing texts.
|
||||||
* [xlwt / xlrd](http://www.python-excel.org/) - A package is for writing and reading data and formatting information from Excel files.
|
* [xlwt / xlrd](http://www.python-excel.org/) - A package is for writing and reading data and formatting information from Excel files.
|
||||||
* [XlsxWriter](https://xlsxwriter.readthedocs.org/) - A Python module for creating Excel .xlsx files.
|
* [XlsxWriter](https://xlsxwriter.readthedocs.org/) - A Python module for creating Excel .xlsx files.
|
||||||
|
* [PyYAML](http://pyyaml.org/) - YAML implementations for Python.
|
||||||
|
|
||||||
## Natural Language Processing
|
## Natural Language Processing
|
||||||
|
|
||||||
|
*Libraries for working with human languages.*
|
||||||
|
|
||||||
* [NLTK](http://www.nltk.org/) - A leading platform for building Python programs to work with human language data.
|
* [NLTK](http://www.nltk.org/) - A leading platform for building Python programs to work with human language data.
|
||||||
* [TextBlob](http://textblob.readthedocs.org/) - Providing a consistent API for diving into common natural language processing (NLP) tasks.
|
* [TextBlob](http://textblob.readthedocs.org/) - Providing a consistent API for diving into common natural language processing (NLP) tasks.
|
||||||
* [jieba](https://github.com/fxsjy/jieba#jieba-1) - Chinese Words Segementation Utilities.
|
* [jieba](https://github.com/fxsjy/jieba#jieba-1) - Chinese Words Segementation Utilities.
|
||||||
|
@ -108,6 +122,8 @@ A curated list of awesome Python frameworks, libraries and resources. Inspired b
|
||||||
|
|
||||||
## Command-line Tools
|
## Command-line Tools
|
||||||
|
|
||||||
|
*Libraries for building command line utilities.*
|
||||||
|
|
||||||
* [click](http://click.pocoo.org/) - A package for creating beautiful command line interfaces in a composable way.
|
* [click](http://click.pocoo.org/) - A package for creating beautiful command line interfaces in a composable way.
|
||||||
* [clint](https://github.com/kennethreitz/clint) - Python Command-line Application Tools.
|
* [clint](https://github.com/kennethreitz/clint) - Python Command-line Application Tools.
|
||||||
* [docopt](http://docopt.org/) - Pythonic command line arguments parser.
|
* [docopt](http://docopt.org/) - Pythonic command line arguments parser.
|
||||||
|
@ -115,10 +131,14 @@ A curated list of awesome Python frameworks, libraries and resources. Inspired b
|
||||||
|
|
||||||
## Documentation
|
## Documentation
|
||||||
|
|
||||||
|
*Libraries for generating project documentation.*
|
||||||
|
|
||||||
* [Sphinx](http://sphinx-doc.org/) - Python Documentation generator.
|
* [Sphinx](http://sphinx-doc.org/) - Python Documentation generator.
|
||||||
|
|
||||||
## Imagery
|
## Imagery
|
||||||
|
|
||||||
|
*Libraries for manipulating images.*
|
||||||
|
|
||||||
* [pillow](http://pillow.readthedocs.org/) - Pillow is the **friendly** PIL fork. PIL is the [Python Imaging Library](http://www.pythonware.com/products/pil/).
|
* [pillow](http://pillow.readthedocs.org/) - Pillow is the **friendly** PIL fork. PIL is the [Python Imaging Library](http://www.pythonware.com/products/pil/).
|
||||||
* [thumbor](https://github.com/thumbor/thumbor) - A smart imaging service. It enables on-demand crop, resizing and flipping of images.
|
* [thumbor](https://github.com/thumbor/thumbor) - A smart imaging service. It enables on-demand crop, resizing and flipping of images.
|
||||||
* [imgSeek](http://www.imgseek.net/) - A project for searching a collection of images using visual similarity.
|
* [imgSeek](http://www.imgseek.net/) - A project for searching a collection of images using visual similarity.
|
||||||
|
@ -128,6 +148,8 @@ A curated list of awesome Python frameworks, libraries and resources. Inspired b
|
||||||
|
|
||||||
## Audio
|
## Audio
|
||||||
|
|
||||||
|
*Libraries for manipulating audio.*
|
||||||
|
|
||||||
* [django-elastic-transcoder](https://github.com/StreetVoice/django-elastic-transcoder) - Django + AWS Elastic Transcoder.
|
* [django-elastic-transcoder](https://github.com/StreetVoice/django-elastic-transcoder) - Django + AWS Elastic Transcoder.
|
||||||
* [beets](http://beets.radbox.org/) - A music library manager and [MusicBrainz](https://musicbrainz.org/) tagger.
|
* [beets](http://beets.radbox.org/) - A music library manager and [MusicBrainz](https://musicbrainz.org/) tagger.
|
||||||
* [pyechonest](https://github.com/echonest/pyechonest) - Python client for the Echo Nest API.
|
* [pyechonest](https://github.com/echonest/pyechonest) - Python client for the Echo Nest API.
|
||||||
|
@ -139,30 +161,44 @@ A curated list of awesome Python frameworks, libraries and resources. Inspired b
|
||||||
|
|
||||||
## Video
|
## Video
|
||||||
|
|
||||||
|
*Libraries for manipulating video and GIFs.*
|
||||||
|
|
||||||
* [moviepy](http://zulko.github.io/moviepy/) - A module for script-based movie editing with many formats, including animated GIFs.
|
* [moviepy](http://zulko.github.io/moviepy/) - A module for script-based movie editing with many formats, including animated GIFs.
|
||||||
* [shorten.tv](http://www.shorten.tv/) - Video summarization.
|
* [shorten.tv](http://www.shorten.tv/) - Video summarization.
|
||||||
* [youtube-dl](http://rg3.github.io/youtube-dl/) - A small command-line program to download videos from YouTube.
|
* [youtube-dl](http://rg3.github.io/youtube-dl/) - A small command-line program to download videos from YouTube.
|
||||||
|
|
||||||
## Geolocation
|
## Geolocation
|
||||||
|
|
||||||
|
*Libraries for geocoding addresses and working with latitudes and longitudes.*
|
||||||
|
|
||||||
* [GeoDjango](https://docs.djangoproject.com/en/dev/ref/contrib/gis/) - A world-class geographic web framework.
|
* [GeoDjango](https://docs.djangoproject.com/en/dev/ref/contrib/gis/) - A world-class geographic web framework.
|
||||||
* [geopy](https://github.com/geopy/geopy) - Python Geocoding Toolbox.
|
* [geopy](https://github.com/geopy/geopy) - Python Geocoding Toolbox.
|
||||||
|
* [pygeoip](https://github.com/appliedsec/pygeoip) - Pure Python GeoIP API.
|
||||||
|
* [GeoIP](https://github.com/maxmind/geoip-api-python) - Python API for MaxMind GeoIP Legacy Database.
|
||||||
|
* [geojson](https://github.com/frewsxcv/python-geojson) - Python bindings and utlities for GeoJSON.
|
||||||
|
|
||||||
## HTTP
|
## HTTP
|
||||||
|
|
||||||
|
*Libraries for working with HTTP.*
|
||||||
|
|
||||||
* [requests](http://docs.python-requests.org/) - HTTP Requests for Humans™.
|
* [requests](http://docs.python-requests.org/) - HTTP Requests for Humans™.
|
||||||
* [httpie](https://github.com/jakubroztocil/httpie) - A command line HTTP client, a user-friendly cURL replacement.
|
* [httpie](https://github.com/jakubroztocil/httpie) - A command line HTTP client, a user-friendly cURL replacement.
|
||||||
|
|
||||||
## Database Drivers
|
## Database Drivers
|
||||||
|
|
||||||
* [mysql-python](http://sourceforge.net/projects/mysql-python/) - MySQL database connector for Python.
|
*Libraties for connecting and operating databases*
|
||||||
|
|
||||||
|
* [mysql-python](http://sourceforge.net/projects/mysql-python/) - The MySQL database connector for Python.
|
||||||
* [psycopg2](http://initd.org/psycopg/) - The most popular PostgreSQL adapter for the Python.
|
* [psycopg2](http://initd.org/psycopg/) - The most popular PostgreSQL adapter for the Python.
|
||||||
* [PyMongo](http://docs.mongodb.org/ecosystem/drivers/python/) - The official Python client for MongoDB.
|
* [PyMongo](http://docs.mongodb.org/ecosystem/drivers/python/) - The official Python client for MongoDB.
|
||||||
* [redis-py](https://github.com/andymccurdy/redis-py) - Redis Python Client.
|
* [redis-py](https://github.com/andymccurdy/redis-py) - The Redis Python Client.
|
||||||
|
|
||||||
## ORM
|
## ORM
|
||||||
|
|
||||||
|
*Libraries that implement Object-Relational Mapping or datamapping techniques.*
|
||||||
|
|
||||||
* Relational Databases
|
* Relational Databases
|
||||||
|
* [Django Models](https://docs.djangoproject.com/en/dev/topics/db/models/) - The part of Django.
|
||||||
* [SQLAlchemy](http://www.sqlalchemy.org/) - The Python SQL Toolkit and Object Relational Mapper.
|
* [SQLAlchemy](http://www.sqlalchemy.org/) - The Python SQL Toolkit and Object Relational Mapper.
|
||||||
* [peewee](https://github.com/coleifer/peewee) - A small, expressive ORM.
|
* [peewee](https://github.com/coleifer/peewee) - A small, expressive ORM.
|
||||||
* NoSQL Databases
|
* NoSQL Databases
|
||||||
|
@ -171,6 +207,8 @@ A curated list of awesome Python frameworks, libraries and resources. Inspired b
|
||||||
|
|
||||||
## Web Frameworks
|
## Web Frameworks
|
||||||
|
|
||||||
|
*Web development frameworks.*
|
||||||
|
|
||||||
* [Django](https://www.djangoproject.com/) - A high-level Python Web framework that encourages rapid development and clean, pragmatic design.
|
* [Django](https://www.djangoproject.com/) - A high-level Python Web framework that encourages rapid development and clean, pragmatic design.
|
||||||
* [Flask](http://flask.pocoo.org/) - A microframework for Python.
|
* [Flask](http://flask.pocoo.org/) - A microframework for Python.
|
||||||
* [Bottle](http://bottlepy.org/) - A fast, simple and lightweight WSGI micro web-framework.
|
* [Bottle](http://bottlepy.org/) - A fast, simple and lightweight WSGI micro web-framework.
|
||||||
|
@ -178,12 +216,16 @@ A curated list of awesome Python frameworks, libraries and resources. Inspired b
|
||||||
|
|
||||||
## CMS
|
## CMS
|
||||||
|
|
||||||
|
*Content Management Systems*
|
||||||
|
|
||||||
* [Mezzanine](http://mezzanine.jupo.org/) - A powerful, consistent, and flexible content management platform. Built using the Django framework.
|
* [Mezzanine](http://mezzanine.jupo.org/) - A powerful, consistent, and flexible content management platform. Built using the Django framework.
|
||||||
* [Wagtail](http://wagtail.io/) - A Django content management system
|
* [Wagtail](http://wagtail.io/) - A Django content management system
|
||||||
* [django-oscar](http://oscarcommerce.com/) - An open-source ecommerce framework for Django.
|
* [django-oscar](http://oscarcommerce.com/) - An open-source ecommerce framework for Django.
|
||||||
|
|
||||||
## RESTful API
|
## RESTful API
|
||||||
|
|
||||||
|
*Libraries for developing RESTful APIs.*
|
||||||
|
|
||||||
* [django-rest-framework](http://www.django-rest-framework.org/) - A powerful and flexible toolkit that makes it easy to build Web APIs.
|
* [django-rest-framework](http://www.django-rest-framework.org/) - A powerful and flexible toolkit that makes it easy to build Web APIs.
|
||||||
* [django-tastypie](http://tastypieapi.org/) - Creating delicious APIs for Django apps.
|
* [django-tastypie](http://tastypieapi.org/) - Creating delicious APIs for Django apps.
|
||||||
* [flask-api](http://www.flaskapi.org/) - An implementation of the same web browsable APIs that django-rest-framework provides.
|
* [flask-api](http://www.flaskapi.org/) - An implementation of the same web browsable APIs that django-rest-framework provides.
|
||||||
|
@ -192,6 +234,8 @@ A curated list of awesome Python frameworks, libraries and resources. Inspired b
|
||||||
|
|
||||||
## Authentication and OAuth
|
## Authentication and OAuth
|
||||||
|
|
||||||
|
*Libraries for implementing authentications schemes.*
|
||||||
|
|
||||||
* [python-social-auth](https://github.com/omab/python-social-auth) - An easy-to-setup social authentication mechanism with support for several frameworks and auth providers.
|
* [python-social-auth](https://github.com/omab/python-social-auth) - An easy-to-setup social authentication mechanism with support for several frameworks and auth providers.
|
||||||
* [django-oauth-toolkit](https://github.com/evonove/django-oauth-toolkit) - OAuth2 goodies for the Djangonauts.
|
* [django-oauth-toolkit](https://github.com/evonove/django-oauth-toolkit) - OAuth2 goodies for the Djangonauts.
|
||||||
* [django-oauth2-provider](https://github.com/caffeinehit/django-oauth2-provider) - Providing OAuth2 access to Django app.
|
* [django-oauth2-provider](https://github.com/caffeinehit/django-oauth2-provider) - Providing OAuth2 access to Django app.
|
||||||
|
@ -199,15 +243,21 @@ A curated list of awesome Python frameworks, libraries and resources. Inspired b
|
||||||
|
|
||||||
## Template Engine
|
## Template Engine
|
||||||
|
|
||||||
|
*Libraries and tools for templating and lexing.*
|
||||||
|
|
||||||
* [Jinja2](http://jinja.pocoo.org/docs/) - A modern and designer friendly templating language.
|
* [Jinja2](http://jinja.pocoo.org/docs/) - A modern and designer friendly templating language.
|
||||||
|
|
||||||
## Queue
|
## Queue
|
||||||
|
|
||||||
* [celery](http://www.celeryproject.org/) - An asynchronous task queue / job queue based on distributed message passing.
|
*Libraries for working with event and task queues.*
|
||||||
|
|
||||||
|
* [celery](http://www.celeryproject.org/) - An asynchronous task queue/job queue based on distributed message passing.
|
||||||
* [rq](http://python-rq.org/) - Simple job queues for Python.
|
* [rq](http://python-rq.org/) - Simple job queues for Python.
|
||||||
|
|
||||||
## Search
|
## Search
|
||||||
|
|
||||||
|
*Libraries and software for indexing and performing search queries on data.*
|
||||||
|
|
||||||
* [django-haystack](https://github.com/toastdriven/django-haystack) - Modular search for Django.
|
* [django-haystack](https://github.com/toastdriven/django-haystack) - Modular search for Django.
|
||||||
* [elasticsearch-py](http://www.elasticsearch.org/guide/en/elasticsearch/client/python-api/current/) - The official low-level Python client for [Elasticsearch](http://www.elasticsearch.org/).
|
* [elasticsearch-py](http://www.elasticsearch.org/guide/en/elasticsearch/client/python-api/current/) - The official low-level Python client for [Elasticsearch](http://www.elasticsearch.org/).
|
||||||
* [solrpy](https://code.google.com/p/solrpy/) - A Python client for [solr](http://lucene.apache.org/solr/).
|
* [solrpy](https://code.google.com/p/solrpy/) - A Python client for [solr](http://lucene.apache.org/solr/).
|
||||||
|
@ -215,28 +265,40 @@ A curated list of awesome Python frameworks, libraries and resources. Inspired b
|
||||||
|
|
||||||
## Asset Management
|
## Asset Management
|
||||||
|
|
||||||
|
*Tools for managing, compressing and minifying website assets.*
|
||||||
|
|
||||||
* TODO
|
* TODO
|
||||||
|
|
||||||
## Caching
|
## Caching
|
||||||
|
|
||||||
|
*Libraries for caching data.*
|
||||||
|
|
||||||
* TODO
|
* TODO
|
||||||
|
|
||||||
## Email
|
## Email
|
||||||
|
|
||||||
|
*Libraries for sending and parsing email.*
|
||||||
|
|
||||||
* [imbox](https://github.com/martinrusev/imbox) - Python IMAP for Humans.
|
* [imbox](https://github.com/martinrusev/imbox) - Python IMAP for Humans.
|
||||||
* [django-celery-ses](https://github.com/StreetVoice/django-celery-ses) - Django email backend with AWS SES and Celery.
|
* [django-celery-ses](https://github.com/StreetVoice/django-celery-ses) - Django email backend with AWS SES and Celery.
|
||||||
|
|
||||||
## Internationalization
|
## Internationalization
|
||||||
|
|
||||||
* TODO
|
*Libraries for woking with i18n.*
|
||||||
|
|
||||||
|
* [Babel](http://babel.pocoo.org/) - An internationalization library for Python.
|
||||||
|
|
||||||
## URL Manipulation
|
## URL Manipulation
|
||||||
|
|
||||||
|
*Libraries for parsing URLs.*
|
||||||
|
|
||||||
* [furl](https://github.com/gruns/furl) - A small Python library that makes manipulating URLs simple.
|
* [furl](https://github.com/gruns/furl) - A small Python library that makes manipulating URLs simple.
|
||||||
* [purl](https://github.com/codeinthehole/purl) - A simple, immutable URL class with a clean API for interrogation and manipulation.
|
* [purl](https://github.com/codeinthehole/purl) - A simple, immutable URL class with a clean API for interrogation and manipulation.
|
||||||
|
|
||||||
## HTML Manipulation
|
## HTML Manipulation
|
||||||
|
|
||||||
|
*Libraries for working with HTML.*
|
||||||
|
|
||||||
* [BeautifulSoup](http://www.crummy.com/software/BeautifulSoup/bs4/doc/) - Providing Pythonic idioms for iterating, searching, and modifying HTML or XML.
|
* [BeautifulSoup](http://www.crummy.com/software/BeautifulSoup/bs4/doc/) - Providing Pythonic idioms for iterating, searching, and modifying HTML or XML.
|
||||||
* [lxml](http://lxml.de/) - A very fast, easy-to-use and versatile library for handling HTML and XML.
|
* [lxml](http://lxml.de/) - A very fast, easy-to-use and versatile library for handling HTML and XML.
|
||||||
* [html5lib](https://github.com/html5lib/html5lib-python) - A standards-compliant library for parsing and serializing HTML documents and fragments.
|
* [html5lib](https://github.com/html5lib/html5lib-python) - A standards-compliant library for parsing and serializing HTML documents and fragments.
|
||||||
|
@ -247,6 +309,8 @@ A curated list of awesome Python frameworks, libraries and resources. Inspired b
|
||||||
|
|
||||||
## Web Crawling
|
## Web Crawling
|
||||||
|
|
||||||
|
*Libraries for scraping websites.*
|
||||||
|
|
||||||
* [Scrapy](http://scrapy.org/) - A fast high-level screen scraping and web crawling framework.
|
* [Scrapy](http://scrapy.org/) - A fast high-level screen scraping and web crawling framework.
|
||||||
* [portia](https://github.com/scrapinghub/portia) - Visual scraping for Scrapy.
|
* [portia](https://github.com/scrapinghub/portia) - Visual scraping for Scrapy.
|
||||||
* [feedparser](http://pythonhosted.org/feedparser/) - Universal feed parser.
|
* [feedparser](http://pythonhosted.org/feedparser/) - Universal feed parser.
|
||||||
|
@ -254,9 +318,11 @@ A curated list of awesome Python frameworks, libraries and resources. Inspired b
|
||||||
|
|
||||||
## Web Content Extracting
|
## Web Content Extracting
|
||||||
|
|
||||||
|
*Libraries for extracting web contents.*
|
||||||
|
|
||||||
* [newspaper](https://github.com/codelucas/newspaper) - News extraction, article extraction and content curation in Pythom.
|
* [newspaper](https://github.com/codelucas/newspaper) - News extraction, article extraction and content curation in Pythom.
|
||||||
* [html2text](https://github.com/aaronsw/html2text) - Convert HTML to Markdown-formatted text.
|
* [html2text](https://github.com/aaronsw/html2text) - Convert HTML to Markdown-formatted text.
|
||||||
* [python-goose](https://github.com/grangier/python-goose) - HTML Content / Article Extractor.
|
* [python-goose](https://github.com/grangier/python-goose) - HTML Content/Article Extractor.
|
||||||
* [lassie](https://github.com/michaelhelmick/lassie) - Web Content Retrieval for Humans.
|
* [lassie](https://github.com/michaelhelmick/lassie) - Web Content Retrieval for Humans.
|
||||||
* [micawber](https://github.com/coleifer/micawber) - A small library for extracting rich content from URLs.
|
* [micawber](https://github.com/coleifer/micawber) - A small library for extracting rich content from URLs.
|
||||||
* [sumy](https://github.com/miso-belica/sumy) - A module for automatic summarization of text documents and HTML pages.
|
* [sumy](https://github.com/miso-belica/sumy) - A module for automatic summarization of text documents and HTML pages.
|
||||||
|
@ -265,17 +331,29 @@ A curated list of awesome Python frameworks, libraries and resources. Inspired b
|
||||||
|
|
||||||
## Forms
|
## Forms
|
||||||
|
|
||||||
|
*Libraries for working with forms.*
|
||||||
|
|
||||||
* [django-crispy-forms](http://django-crispy-forms.readthedocs.org/) - A Django app which lets you create beautiful forms in a very elegant and DRY way.
|
* [django-crispy-forms](http://django-crispy-forms.readthedocs.org/) - A Django app which lets you create beautiful forms in a very elegant and DRY way.
|
||||||
* [WTForms](http://wtforms.readthedocs.org/) - A flexible forms validation and rendering library.
|
* [WTForms](http://wtforms.readthedocs.org/) - A flexible forms validation and rendering library.
|
||||||
|
|
||||||
|
## Anti-spam
|
||||||
|
|
||||||
|
*Libraries for fighting spam.*
|
||||||
|
|
||||||
|
* TODO
|
||||||
|
|
||||||
## Networking
|
## Networking
|
||||||
|
|
||||||
|
*Libraries for network programming.*
|
||||||
|
|
||||||
* [gevent](http://www.gevent.org/) - A coroutine-based Python networking library that uses [greenlet](https://github.com/python-greenlet/greenlet).
|
* [gevent](http://www.gevent.org/) - A coroutine-based Python networking library that uses [greenlet](https://github.com/python-greenlet/greenlet).
|
||||||
* [Twisted](https://twistedmatrix.com/trac/) - An event-driven networking engine.
|
* [Twisted](https://twistedmatrix.com/trac/) - An event-driven networking engine.
|
||||||
* [Tornado](http://www.tornadoweb.org/) - A Web framework and asynchronous networking library.
|
* [Tornado](http://www.tornadoweb.org/) - A Web framework and asynchronous networking library.
|
||||||
|
|
||||||
## DevOps Tools
|
## DevOps Tools
|
||||||
|
|
||||||
|
*Software and libraries for DevOps*
|
||||||
|
|
||||||
* [OpenStack](http://www.openstack.org/) - Open source software for building private and public clouds.
|
* [OpenStack](http://www.openstack.org/) - Open source software for building private and public clouds.
|
||||||
* [Ansible](http://www.ansible.com/) - An IT automation tool.
|
* [Ansible](http://www.ansible.com/) - An IT automation tool.
|
||||||
* [SaltStack](http://www.saltstack.com/community/) - Infrastructure automation and management system.
|
* [SaltStack](http://www.saltstack.com/community/) - Infrastructure automation and management system.
|
||||||
|
@ -286,17 +364,24 @@ A curated list of awesome Python frameworks, libraries and resources. Inspired b
|
||||||
|
|
||||||
## GUI
|
## GUI
|
||||||
|
|
||||||
|
*Libraries for working with GUI applications.*
|
||||||
|
|
||||||
* [PySide](http://qt-project.org/wiki/pyside) - Python bindings for the Qt cross-platform application and UI framework
|
* [PySide](http://qt-project.org/wiki/pyside) - Python bindings for the Qt cross-platform application and UI framework
|
||||||
* [wxPython](http://wxpython.org/) - A blending of the wxWidgets C++ class library with the Python.
|
* [wxPython](http://wxpython.org/) - A blending of the wxWidgets C++ class library with the Python.
|
||||||
|
* [kivy](http://kivy.org/) - A library for creating NUI applications, running on Windows, Linux, MacOSX, Android and iOS.
|
||||||
|
|
||||||
## Logging
|
## Logging
|
||||||
|
|
||||||
|
*Libraries for generating and working with log files.*
|
||||||
|
|
||||||
* [logging](https://docs.python.org/2/library/logging.html) - (Python standard library) Logging facility for Python
|
* [logging](https://docs.python.org/2/library/logging.html) - (Python standard library) Logging facility for Python
|
||||||
* [Sentry](https://pypi.python.org/pypi/sentry) - A realtime logging and aggregation server.
|
* [Sentry](https://pypi.python.org/pypi/sentry) - A realtime logging and aggregation server.
|
||||||
* [Raven](http://raven.readthedocs.org/) - A Python client for Sentry.
|
* [Raven](http://raven.readthedocs.org/) - A Python client for Sentry.
|
||||||
|
|
||||||
## Testing
|
## Testing
|
||||||
|
|
||||||
|
*Libraries for testing codebases and generating test data.*
|
||||||
|
|
||||||
* Testing Frameworks
|
* Testing Frameworks
|
||||||
* [unittest](https://docs.python.org/2/library/unittest.html) - (Python standard library) Unit testing framework.
|
* [unittest](https://docs.python.org/2/library/unittest.html) - (Python standard library) Unit testing framework.
|
||||||
* [nose](https://nose.readthedocs.org/) - nose extends unittest.
|
* [nose](https://nose.readthedocs.org/) - nose extends unittest.
|
||||||
|
@ -312,11 +397,23 @@ A curated list of awesome Python frameworks, libraries and resources. Inspired b
|
||||||
|
|
||||||
## Code Analysis and Linter
|
## Code Analysis and Linter
|
||||||
|
|
||||||
|
*Libraries and tools for analysing, parsing and manipulation codebases.*
|
||||||
|
|
||||||
* [Flake8](https://pypi.python.org/pypi/flake8) - The modular source code checker: pep8, pyflakes and co.
|
* [Flake8](https://pypi.python.org/pypi/flake8) - The modular source code checker: pep8, pyflakes and co.
|
||||||
* [Pylint](http://www.pylint.org/) - A source code analyzer.
|
* [Pylint](http://www.pylint.org/) - A source code analyzer.
|
||||||
|
|
||||||
|
## Debugging Tools
|
||||||
|
|
||||||
|
*Libraries for dubugging and developing*
|
||||||
|
|
||||||
|
* [pdb](https://docs.python.org/2/library/pdb.html) - (Python standard library) The Python Debugger.
|
||||||
|
* [django-debug-toolbar](https://github.com/django-debug-toolbar/django-debug-toolbar) - Display various debug information about the current request/response.
|
||||||
|
* [django-devserver](https://github.com/dcramer/django-devserver) - A drop-in replacement for Django's runserver.
|
||||||
|
|
||||||
## Science and Data Aanalysis
|
## Science and Data Aanalysis
|
||||||
|
|
||||||
|
*Libraries for scientific computing and data analyzing.*
|
||||||
|
|
||||||
* [SciPy](http://www.scipy.org/) - A Python-based ecosystem of open-source software for mathematics, science, and engineering.
|
* [SciPy](http://www.scipy.org/) - A Python-based ecosystem of open-source software for mathematics, science, and engineering.
|
||||||
* [NumPy](http://www.numpy.org/) - A fundamental package for scientific computing with Python.
|
* [NumPy](http://www.numpy.org/) - A fundamental package for scientific computing with Python.
|
||||||
* [matplotlib](http://matplotlib.org/) - A Python 2D plotting library.
|
* [matplotlib](http://matplotlib.org/) - A Python 2D plotting library.
|
||||||
|
@ -326,6 +423,8 @@ A curated list of awesome Python frameworks, libraries and resources. Inspired b
|
||||||
|
|
||||||
## Machine Learning
|
## Machine Learning
|
||||||
|
|
||||||
|
*Libraries for Machine Learning*
|
||||||
|
|
||||||
* [scikit-learn](http://scikit-learn.org/) - A Python module for machine learning built on top of SciPy.
|
* [scikit-learn](http://scikit-learn.org/) - A Python module for machine learning built on top of SciPy.
|
||||||
* [pattern](https://github.com/clips/pattern) - Web mining module for Python.
|
* [pattern](https://github.com/clips/pattern) - Web mining module for Python.
|
||||||
* [NuPIC](http://numenta.org/) - Numenta Platform for Intelligent Computing.
|
* [NuPIC](http://numenta.org/) - Numenta Platform for Intelligent Computing.
|
||||||
|
@ -336,21 +435,24 @@ A curated list of awesome Python frameworks, libraries and resources. Inspired b
|
||||||
|
|
||||||
## MapReduce
|
## MapReduce
|
||||||
|
|
||||||
|
*Framworks and libraries for MapReduce.*
|
||||||
|
|
||||||
* [PySpark](http://spark.apache.org/docs/latest/programming-guide.html) - The Spark Python API.
|
* [PySpark](http://spark.apache.org/docs/latest/programming-guide.html) - The Spark Python API.
|
||||||
* [dpark](https://github.com/douban/dpark) - Python clone of Spark, a MapReduce alike framework in Python.
|
* [dpark](https://github.com/douban/dpark) - Python clone of Spark, a MapReduce alike framework in Python.
|
||||||
|
|
||||||
## Third-party APIs
|
## Third-party APIs
|
||||||
|
|
||||||
|
*Libraries for accessing third party APIs.*
|
||||||
|
|
||||||
|
* [apache-libcloud](https://libcloud.apache.org/) - One Python library for all clouds.
|
||||||
* [boto](http://docs.pythonboto.org/) - Python interface to Amazon Web Services.
|
* [boto](http://docs.pythonboto.org/) - Python interface to Amazon Web Services.
|
||||||
* [s3cmd](https://github.com/s3tools/s3cmd) - A command line tool for managing Amazon S3 and CloudFront.
|
* [s3cmd](https://github.com/s3tools/s3cmd) - A command line tool for managing Amazon S3 and CloudFront.
|
||||||
* [twython](https://github.com/ryanmcgrath/twython) - A Python wrapper for the Twitter API.
|
* [twython](https://github.com/ryanmcgrath/twython) - A Python wrapper for the Twitter API.
|
||||||
|
|
||||||
## Development Tools
|
|
||||||
|
|
||||||
* TODO
|
|
||||||
|
|
||||||
## Miscellaneous
|
## Miscellaneous
|
||||||
|
|
||||||
|
*Useful libraries or tools that don't fit in the categories above.*
|
||||||
|
|
||||||
* [IPython](http://ipython.org/) - IPython provides a rich toolkit to help you make the most out of using Python interactively.
|
* [IPython](http://ipython.org/) - IPython provides a rich toolkit to help you make the most out of using Python interactively.
|
||||||
|
|
||||||
# Resources
|
# Resources
|
||||||
|
|
Loading…
Reference in New Issue
Block a user