Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/kisom/pysimpleconfig
A dead simple Python configuration file reader.
https://github.com/kisom/pysimpleconfig
Last synced: 18 days ago
JSON representation
A dead simple Python configuration file reader.
- Host: GitHub
- URL: https://github.com/kisom/pysimpleconfig
- Owner: kisom
- License: isc
- Created: 2012-11-15T20:40:55.000Z (about 12 years ago)
- Default Branch: master
- Last Pushed: 2019-06-24T18:56:52.000Z (over 5 years ago)
- Last Synced: 2024-10-11T02:46:12.778Z (about 1 month ago)
- Language: Python
- Size: 17.6 KB
- Stars: 1
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.rst
- License: LICENSE.txt
Awesome Lists containing this project
README
simpleconfig
============.. image:: https://travis-ci.org/kisom/pysimpleconfig.svg?branch=master
:target: https://travis-ci.org/kisom/pysimpleconfigwhat?
-----simpleconfig is a Python module that reads INI files into a dictionary. It
is both Python 2 and Python 3 compatible.why?
----
I've written this code several times for a couple projects; I got sick of
copying the file over to new project directories.how?
----Both a ``parse`` and ``parse_string`` function are provided. The former parses
config files, and the latter parses a config file serialised into a string.return value and example
------------------------
Both ``parse()`` and ``parse_string`` return a dictionary (see below) where each
section is a key at the top level,
and is a dictionary of key=value pairs itself. For example, given the config
file::>>> config = """
# random version information
version = 1.0.5; last modified 1 April 2001 by John Doe
; example taken from wikipedia
[owner]
name=John Doe
organization=Acme Widgets Inc.[database]
# use IP address in case network name resolution is not working
server=192.0.2.62
port=143
file="payroll.dat"
"""Parsing this with ``simpleconfig`` yields::
>>> import simpleconfig as sc
>>> cfg = sc.parse_string(config)
>>> cfg['owner']['name']
'John Doe'
>>> cfg.owner.name
'John Doe'Note that the dictionary type returned by the parse functions is actually a
`kutils.dicts.AttrDictDict `_,
which is derived from the ``dict`` type and can be used wherever a ``dict`` can.license
-------
simpleconfig is released under an ISC license.author
------
simpleconfig was written by Kyle Isom .additional
----------The module is only tested for compatibility against Python 2.7 and
Python 3.3+. There are no guarantees (or attempts) at compatibility
with previous version of Python.The docs are on `RTD `_.
The sources for simpleconfig are on `Github `_.