Skip to main content

Advanced configuration parser for Python

Project description

https://raw.githubusercontent.com/NaPs/Confiture/master/docs/_static/images/confiture_logo.png

Confiture (formerly Dotconf) is an advanced configuration parser which allow nested sections to any level, typed values in syntax, file include and so more. Confiture is also shipped with a powerful schema validation system.

The full documentation can be found here: http://confiture.readthedocs.org

https://www.ohloh.net/p/python-confiture/widgets/project_thin_badge.gif https://travis-ci.org/NaPs/Confiture.svg?branch=master

Features

  • Configuration format kept as simple as possible

  • Developer friendly APIs

  • Python 2 and 3 compatibility

  • Types are expressed in the syntax, so the parser can guess it without validation

  • Four primitive types: string, number, boolean, or list

  • More complex composite types can be created using the schema validation system

  • Nested section of any deep. Sections can take a special “argument” value (look at the example)

  • Schema validation system, all schema can be defined using declarative or imperative way

  • External file include with globbing

  • Integration with argparse

  • Tests (only parser is covered yet)

  • Released under MIT license

Example

This is an example of configuration file for an imaginary web server:

daemon = yes
pidfile = '/var/run/myapp.pid'
interface = '0.0.0.0:80'
interface_ssl = '0.0.0.0:443'

host 'example.org' {
    path '/' {
        rate_limit = 30
    }
}

host 'protected.example.org' {
    enable_ssl = yes

    path '/files' {
        enable_auth = yes
        user 'foo' {
            password = 'bar'
        }
    }
}

You can access to each values using the developer friendly API:

>>> from confiture import Confiture
>>> parsed_conf = Confiture.from_filename('mywebserver.conf').parse()
>>> print parsed_conf.get('daemon', False)
True

Even more exciting, you can create a validation schema to avoid you the painful chore of manual configuration file validation:

from confiture.schema.containers import many, once
from confiture.schema.containers import Section, Value
from confiture.schema.types import Boolean, Integer, Float, String

# Schema definition:

class UserSection(Section):
    password = Value(String())
    _meta = {'repeat': many, 'unique': True}

class PathSection(Section):
    rate_limit = Value(Float(), default=0)
    enable_auth = Value(Boolean(), default=False)
    user = UserSection()

class VirtualHostSection(Section):
    enable_ssl = Value(Boolean(), default=False)
    path = PathSection()
    _meta = {'repeat': many, 'unique': True}

class MyWebserverConfiguration(Section):
    daemon = Value(Boolean(), default=False)
    pidfile = Value(String(), default=None)
    interface = Value(String(), default='127.0.0.1:80')
    interface_ssl = Value(String(), default='127.0.0.1:443')
    host = VirtualHostSection()

Then you can use the API exactly as if it was not validated:

>>> conf = '''
... daemon = yes
... pidfile = '/var/run/myapp.pid'
... interface = '0.0.0.0:80'
... interface_ssl = '0.0.0.0:443'
...
... host 'example.org' {
...     path '/' {
...         rate_limit = 30
...     }
... }
...
... host 'protected.example.org' {
...     enable_ssl = yes
...
...     path '/files' {
...         enable_auth = yes
...         user 'foo' {
...             password = 'bar'
...         }
...     }
... }
... '''
>>> from confiture import Confiture
>>> from myconfschema import MyWebserverConfiguration
>>> parsed_conf = Confiture(conf, schema=MyWebserverConfiguration()).parse()
>>> print 'daemon:', parsed_conf.get('daemon')
daemon: True
>>> for vhost in parsed_conf.subsections('host'):
>>>     print vhost.args
>>>     if vhost.get('enable_ssl'):
>>>         print '  SSL enabled'
>>>     for path in vhost.subsections('path'):
>>>         print '  ' + path.args
>>>         if path.get('enable_auth'):
>>>             print '    Following users can access to this directory:'
>>>             for user in path.subsections('user'):
>>>                 print '     - ' + user.args
>>>
example.org
  /
protected.example.org
  SSL enabled
  /files
    Following users can access to this directory:
      - foo

Setup

The fastest and more common way to install Confiture is using pip:

pip install confiture

Debian

If you use Debian, you can also use the Tecknet repositories. Add this lines in your /etc/apt/source.list file:

deb http://debian.tecknet.org/debian squeeze tecknet
deb-src http://debian.tecknet.org/debian squeeze tecknet

Add the Tecknet repositories key in your keyring:

# wget http://debian.tecknet.org/debian/public.key -O - | apt-key add -

Then, update and install:

# aptitude update
# aptitude install python-confiture

Archlinux

If you use Archlinux, a Confiture package is available in Aur:

yaourt -S python2-confiture

TODO

  • More test.

Changelog

v2.1 - Strawberry mark II, released on 12/10/16

This release only fix a small bug related to encoding and setuptools building process and adds the Path schema type contributed by Anaël Beutot.

Changes:

  • Added the Path schema type

  • Fixed encoding bug when building Python package on Python3/non-utf8 system

v2.0 - Strawberry, released on 11/05/14

I finally decided to rename Dotconf as Confiture to avoid name conflict with another (and similar) project which is already packaged in several distro. Confiture means jam in French and is also at one letter from Configure.

Obviously, this change has broken the API, so I incremented sur API compat version number. Migrating from Dotconf to Confiture will be simple as substituting “dotconf” by “confiture” and “Dotconf” by “Confiture”.

Changes:

  • Renamed Dotconf as Confiture

  • Added a beautiful logo :-)

  • Fixed documentation build

  • Fixed Travis-CI execution

  • Fixed parser which now detects unexpected end of files

  • Now use universal newline flag when opening file in from_filename (ref #13)

New contributors:

  • Grégoire Rocher (provided a fix for the parser)

v1.8 released on 08/09/13

This new release bring a lot of bugfixes all reported by Stefan Tschiggerl. Thanks to him for its time and its help to enhance Confiture.

Changes:

  • Fixed a bug where from_filename is not passing extra

  • Fixed examples in readme and docs

  • Fixed bad API usage in containers’ argument validation

  • Handle the uniqueness validation of empty args

  • Added single subsection access method (eg: section.subsection(‘foo’))

  • Fixed optional section without occurrence not working

  • Fixed a bug when subsection method is used twice with the same name

  • Fixed traceback when a section is not in schema

New contributors:

  • Stefan Tschiggerl (bug report and fixes)

v1.7 released on 31/07/13

The major (and almost the only) change of this release is the compatibility with Python 3. This work has been done with the help of 2to3 with some thing fixed manually. Enjoy!

  • Added compatibility with Python 3

  • Now use py.test instead of nosetests

v1.6 released on 09/12/12

This second stable release bring some bug fixes and features, the API has not been broken. I also registered the project on travis-ci and I will try to improve the test coverage for the next release.

Changes:

  • Added Choice container

  • Added a from_filename constructor the the Confiture class

  • Added encoding management (by default, files are parsed in UTF-8)

  • Added continuous integration with travis

  • Fixed bug with Float type validation

  • Fixed an error when a section is included by an external file (thanks to DuanmuChun for its bug report and help to fix it)

  • Fixed other minor bugs

New contributors:

  • DuanmuChun (bug report and help to fix it)

v1.5 released on 14/04/2012

First stable release of Confiture has been released, development will now take care of API compatibility. The project status has been changed to “Beta” on the PYPI, and should be “Stable” on the next release if no major bug is found. Packages will be updated for Debian and Archlinux, feel free to contact me if you want to package it for your distro.

Changes:

  • Added Eval, NamedRegex and RegexPattern types

  • Added TypedArray container

  • Fixed bug with scalar values from a singleton list in Value container

  • Fixed argument validation in Section container

  • Updated documentation (new tips and tricks section)

New contributors:

  • Anaël Beutot (thanks for RegexPattern type and argument validation fix)

v0.4 released on 07/04/2012

  • Added debian package

  • Added IPSocketAddress type

  • Added Array container

  • Added release procedure

  • Fixed bug on IPAddress and IPNetwork types when ipaddr is missing

  • Fixed documentation build

v0.3 released on 04/04/2012

  • Added IPAddress, IPNetwork, Regex and Url types

  • Added min and max options on Integer type

  • Added units on number parsing (42k == 42000)

  • Fixed bug with validation of long numbers

v0.2 released on 03/04/2012

  • Added argparse integration feature & documentation

  • Cleanup

v0.1 released on 24/03/2012

  • Initial version.

A note on versioning

Confiture use a two numbers X.Y versioning. The Y part is incremented by one on each release. The X part is used as API compatibility indicator and will be incremented each time the API is broken.

Contribute

You can contribute to Confiture through these ways:

Feel free to contact me for any question/suggestion: <antoine@inaps.org>.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

confiture-2.1.tar.gz (46.7 kB view details)

Uploaded Source

Built Distributions

confiture-2.1-py3-none-any.whl (22.7 kB view details)

Uploaded Python 3

confiture-2.1-py2.7.egg (39.2 kB view details)

Uploaded Source

confiture-2.1-py2-none-any.whl (22.7 kB view details)

Uploaded Python 2

File details

Details for the file confiture-2.1.tar.gz.

File metadata

  • Download URL: confiture-2.1.tar.gz
  • Upload date:
  • Size: 46.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No

File hashes

Hashes for confiture-2.1.tar.gz
Algorithm Hash digest
SHA256 38970d34bdc6ba8ba021cd56ead7cec23999a6c23c17ccfef7e3810b7184e8b9
MD5 b91d2a4785fb0689307963f7286890ab
BLAKE2b-256 14ee28a6fda6baa280b16dbc6bbac49a6392fef83c028022d52728c4db85c0b0

See more details on using hashes here.

File details

Details for the file confiture-2.1-py3-none-any.whl.

File metadata

File hashes

Hashes for confiture-2.1-py3-none-any.whl
Algorithm Hash digest
SHA256 7f80f624683be6825e2de51b299a04a2a8e0a1cf88a1d3a3c758ed250c771ed3
MD5 a5dd9af083ff51cd449c5485aeb8625d
BLAKE2b-256 caff93cfc0da1a26b2e10bda055d1f12fe66b6935f0f041a29ad0e1e031015d1

See more details on using hashes here.

File details

Details for the file confiture-2.1-py2.7.egg.

File metadata

  • Download URL: confiture-2.1-py2.7.egg
  • Upload date:
  • Size: 39.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No

File hashes

Hashes for confiture-2.1-py2.7.egg
Algorithm Hash digest
SHA256 420634bc68351da8482f4e054cc6841fb7c86731f5bfc163e0aca049371b0d60
MD5 628fb7734374fcb1fd98108d769df32d
BLAKE2b-256 13fb9c8f90f10d446a2cbd0dc0c8507423da1ef0103a4f0b6c0555c4b223d864

See more details on using hashes here.

File details

Details for the file confiture-2.1-py2-none-any.whl.

File metadata

File hashes

Hashes for confiture-2.1-py2-none-any.whl
Algorithm Hash digest
SHA256 38ef7bb57a98527522fb1b61355a250b7ef4cf26964197bb6696920afd624eef
MD5 0f1b8bc27f0b27a727ac59516097939e
BLAKE2b-256 144eef90bb67f4ebb208e34da04ea9d08adb53732de9958dd91e886685681c15

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page