Inirama -- Simple parser for INI files
Project description
Inirama – Simple parser for INI files
Requirements
python 2.7, 3.2
Installation
Inirama should be installed using pip:
pip install inirama
Usage
from inirama import Namespace parser = Namespace() parser.read('config.ini') print Parser['section']['key'] parser['other']['new'] = 'value' parser.write('new_config.ini')
Interpolation
from inirama import InterpolationNamespace parser = InterpolationNamespace() parser.parse(""" [main] test = value foo = bar {test} more_deep = wow {foo} """) print parser['main']['more_deep'] # wow bar value
Bug tracker
If you have any suggestions, bug reports or annoyances please report them to the issue tracker at https://github.com/klen/inirama/issues
Contributing
Development of inirama happens at github: https://github.com/klen/inirama
Contributors
klen (Kirill Klenov)
License
Licensed under a BSD license.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Inirama-0.2.2.tar.gz
(4.3 kB
view details)
File details
Details for the file Inirama-0.2.2.tar.gz
.
File metadata
- Download URL: Inirama-0.2.2.tar.gz
- Upload date:
- Size: 4.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 7ceee154001852c33d816dca6e3a8663efea415db55332a8d3f3553ff5e91745 |
|
MD5 | d68c2ebbc3496747e296fa91ec8ea1f0 |
|
BLAKE2b-256 | 1c5b67ea3eadf30eeff80c67bfc2a06173a971c35e8522c5a7ddd828abae6924 |