Metadata-Version: 2.0
Name: lightconfig
Version: 0.0.5
Summary: LightConfig is a simple library to make user read or write config
Home-page: https://github.com/daassh/LightConfig
Author: zhang xuan
Author-email: testzx@foxmail.com
License: MIT License
Description-Content-Type: UNKNOWN
Platform: all
Classifier: Operating System :: OS Independent
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: Implementation
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Topic :: Software Development :: Libraries

LightConfig
===========

Get a easy way to edit config file

Installation
------------

LightConfig is conveniently available via pip:

::

    pip install lightconfig

or installable via ``git clone`` and ``setup.py``

::

    git clone https://github.com/daassh/LightConfig.git
    python setup.py install

Usage
-----

The LightConfig library enables you to get a easy way to create or read 
config file.

sample
-----------------

.. code:: python

    from lightconfig import LightConfig
    cfg = LightConfig("config.ini")
    cfg.section1.option1 = "value1"
    print(cfg.section1.option1)  #expect 'value1'


