From 0901fdb517b93825df7e53be37f3ab614f1c0153 Mon Sep 17 00:00:00 2001 From: miguel Date: Wed, 2 Jul 2014 13:00:09 -0400 Subject: [PATCH] added some configuration libraries --- README.md | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/README.md b/README.md index c1cd609..5d735b7 100644 --- a/README.md +++ b/README.md @@ -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.*