added some configuration libraries

This commit is contained in:
miguel 2014-07-02 13:00:09 -04:00
parent 84315457a8
commit 0901fdb517
1 changed files with 10 additions and 0 deletions

View File

@ -9,6 +9,7 @@ A curated list of awesome Python frameworks, libraries and software. Inspired by
- [Date and Time](#date-and-time)
- [Text Processing](#text-processing)
- [Natural Language Processing](#natural-language-processing)
- [Configuration](#configuration)
- [Command-line Tools](#command-line-tools)
- [Documentation](#documentation)
- [Imagery](#imagery)
@ -146,6 +147,15 @@ A curated list of awesome Python frameworks, libraries and software. Inspired by
* [SnowNLP](https://github.com/isnowfy/snownlp) - A library for processing Chinese text.
* [loso](https://github.com/victorlin/loso) - Another Chinese segmentation library.
## Configuration
*Libraries for storing configuration options.*
* [ConfigParser](https://docs.python.org/2/library/configparser.html) - (Python standard library) INI file parser.
* [ConfigObj](http://www.voidspace.org.uk/python/configobj.html) - INI file parser with validation.
* [config](http://www.red-dove.com/config-doc/) - Hierarchical config from the author of [logging](https://docs.python.org/2/library/logging.html).
* [profig](http://profig.readthedocs.org/) - Config from multiple formats with value conversion.
## Command-line Tools
*Libraries for building command line utilities.*