Skip to main content

A simple json configuration handler.

Project description

Aratrum

Pypi Build Status Code Climate

A simple configuration handler that reads a JSON config file and provides methods to interact with it.

Was it really necessary to make a package for such a simple thing? Maybe not, but I like the DRYness of it, since almost every app will need a configuration reader.

Installation

pip install aratrum

Usage

Load a configuration file:

>>> from Aratrum import Aratrum
>>> config = Aratrum('config.json')
>>> options = config.get()
>>> print(type(options))
dict

Set a value in the config and save it:

>>> config = Aratrum('config.json')
>>> config.get()
>>> config.set('server', 'somewhere')
>>> config.save()

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

aratrum-0.3.2.tar.gz (2.2 kB view hashes)

Uploaded Source

Built Distribution

aratrum-0.3.2-py3-none-any.whl (4.3 kB view hashes)

Uploaded Python 3

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