mirror of
https://github.com/vinta/awesome-python.git
synced 2024-11-13 11:16:10 -05:00
porter
This commit is contained in:
parent
5ff5ef21e3
commit
19b693ad7b
1 changed files with 12 additions and 12 deletions
24
README.md
24
README.md
|
@ -10,9 +10,9 @@ A curated list of awesome Python frameworks, libraries and software. Inspired by
|
||||||
- [Date and Time](#date-and-time)
|
- [Date and Time](#date-and-time)
|
||||||
- [Text Processing](#text-processing)
|
- [Text Processing](#text-processing)
|
||||||
- [Natural Language Processing](#natural-language-processing)
|
- [Natural Language Processing](#natural-language-processing)
|
||||||
|
- [Documentation](#documentation)
|
||||||
- [Configuration](#configuration)
|
- [Configuration](#configuration)
|
||||||
- [Command-line Tools](#command-line-tools)
|
- [Command-line Tools](#command-line-tools)
|
||||||
- [Documentation](#documentation)
|
|
||||||
- [Imagery](#imagery)
|
- [Imagery](#imagery)
|
||||||
- [Audio](#audio)
|
- [Audio](#audio)
|
||||||
- [Video](#video)
|
- [Video](#video)
|
||||||
|
@ -132,12 +132,14 @@ A curated list of awesome Python frameworks, libraries and software. Inspired by
|
||||||
* [chardet](https://github.com/chardet/chardet) - Python 2/3 compatible character encoding detector.
|
* [chardet](https://github.com/chardet/chardet) - Python 2/3 compatible character encoding detector.
|
||||||
* [xpinyin](https://github.com/lxneng/xpinyin) - A library to translate chinese hanzi (漢字) to pinyin (拼音).
|
* [xpinyin](https://github.com/lxneng/xpinyin) - A library to translate chinese hanzi (漢字) to pinyin (拼音).
|
||||||
* [pangu.py](https://github.com/vinta/pangu.py) - Spacing texts.
|
* [pangu.py](https://github.com/vinta/pangu.py) - Spacing texts.
|
||||||
* Specific Format
|
* Specific Formats
|
||||||
* [tablib](https://github.com/kennethreitz/tablib) - A module for Tabular Datasets in XLS, CSV, JSON, YAML.
|
* [tablib](https://github.com/kennethreitz/tablib) - A module for Tabular Datasets in XLS, CSV, JSON, YAML.
|
||||||
* [python-docx](https://github.com/mikemaccana/python-docx) - Reads, queries and modifies Microsoft Word 2007/2008 docx files.
|
* [python-docx](https://github.com/mikemaccana/python-docx) - Reads, queries and modifies Microsoft Word 2007/2008 docx files.
|
||||||
* [xlwt](https://github.com/python-excel/xlwt) / [xlrd](https://github.com/python-excel/xlrd) - Packages is for writing and reading data and formatting information from Excel files.
|
* [xlwt](https://github.com/python-excel/xlwt) / [xlrd](https://github.com/python-excel/xlrd) - Packages 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.
|
||||||
* [PDFMiner](https://github.com/euske/pdfminer) - A tool for extracting information from PDF documents.
|
* [PDFMiner](https://github.com/euske/pdfminer) - A tool for extracting information from PDF documents.
|
||||||
|
* [Python-Markdown](https://github.com/waylan/Python-Markdown) - A Python implementation of John Gruber’s Markdown.
|
||||||
|
* [Mistune](https://github.com/lepture/mistune) - Fastest and full featured pure Python parsers of Markdown.
|
||||||
* [PyYAML](http://pyyaml.org/) - YAML implementations for Python.
|
* [PyYAML](http://pyyaml.org/) - YAML implementations for Python.
|
||||||
* Parser
|
* Parser
|
||||||
* [phonenumbers](https://github.com/daviddrysdale/python-phonenumbers) - Library for parsing, formatting, storing and validating international phone numbers.
|
* [phonenumbers](https://github.com/daviddrysdale/python-phonenumbers) - Library for parsing, formatting, storing and validating international phone numbers.
|
||||||
|
@ -158,6 +160,14 @@ A curated list of awesome Python frameworks, libraries and software. Inspired by
|
||||||
* [SnowNLP](https://github.com/isnowfy/snownlp) - A library for processing Chinese text.
|
* [SnowNLP](https://github.com/isnowfy/snownlp) - A library for processing Chinese text.
|
||||||
* [loso](https://github.com/victorlin/loso) - Another Chinese segmentation library.
|
* [loso](https://github.com/victorlin/loso) - Another Chinese segmentation library.
|
||||||
|
|
||||||
|
## Documentation
|
||||||
|
|
||||||
|
*Libraries for generating project documentation.*
|
||||||
|
|
||||||
|
* [Sphinx](http://sphinx-doc.org/) - Python Documentation generator.
|
||||||
|
* [reStructuredText](http://docutils.sourceforge.net/rst.html) - Markup Syntax and Parser Component of Docutils.
|
||||||
|
* [MkDocs](http://www.mkdocs.org/) - Markdown friendly documentation generator.
|
||||||
|
|
||||||
## Configuration
|
## Configuration
|
||||||
|
|
||||||
*Libraries for storing configuration options.*
|
*Libraries for storing configuration options.*
|
||||||
|
@ -179,16 +189,6 @@ A curated list of awesome Python frameworks, libraries and software. Inspired by
|
||||||
* Workflow Tools
|
* Workflow Tools
|
||||||
* [percol](https://github.com/mooz/percol) - Adds flavor of interactive selection to the traditional pipe concept on UNIX
|
* [percol](https://github.com/mooz/percol) - Adds flavor of interactive selection to the traditional pipe concept on UNIX
|
||||||
|
|
||||||
## Documentation
|
|
||||||
|
|
||||||
*Libraries for generating project documentation.*
|
|
||||||
|
|
||||||
* [Sphinx](http://sphinx-doc.org/) - Python Documentation generator.
|
|
||||||
* [reStructuredText](http://docutils.sourceforge.net/rst.html) - Markup Syntax and Parser Component of Docutils.
|
|
||||||
* [Python-Markdown](https://github.com/waylan/Python-Markdown) - A Python implementation of John Gruber’s Markdown.
|
|
||||||
* [Mistune](https://github.com/lepture/mistune) - Fastest and full featured pure Python parsers of Markdown.
|
|
||||||
* [MkDocs](http://www.mkdocs.org/) - Markdown friendly documentation generator.
|
|
||||||
|
|
||||||
## Imagery
|
## Imagery
|
||||||
|
|
||||||
*Libraries for manipulating images.*
|
*Libraries for manipulating images.*
|
||||||
|
|
Loading…
Reference in a new issue