Skip to main content

Yet Another Config Tool

Project description

============
YACT - Yet Another Config tool
============
Simple configuration handling for Python applications.
------------------------------------------------------
.. image :: https://travis-ci.org/dreadpirate15/yact.svg?branch=master
:target: https://travis-ci.org/dreadpirate15/yact

.. image :: https://coveralls.io/repos/github/dreadpirate15/yact/badge.svg?branch=master
:target: https://coveralls.io/github/dreadpirate15/yact?branch=master

YACT is a simple, lightweight, and flexible configuration package for Python applications.
It's designed to be as easy as possible to setup configuration for your project without needing to
jump through hoops.

Examples
========

**Basic usage:**

::

import yact
config = yact.from_file('sample.conf')
isinstance(config, yact.Config)
>>> True

**Modifying and saving:**

::

config.set('foo', 'bar')
print(config['foo'])
>>> 'bar'
config.save()

**Dot notation for nested configs:**

::

config.set('this.is.nested', True)
print(config.get('this')['is']['nested'])
>>> True

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

yact-0.5.1.tar.gz (4.4 kB view hashes)

Uploaded Source

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