Metadata-Version: 2.1
Name: tomler
Version: 0.1.2
Summary: A simple reader for TOML configuration files.
Home-page: https://github.com/DrugoLebowski/tomler
Author: Valerio Belli
Author-email: belli.valerio@gmail.com
License: MIT
Description: 
        ======
        TOMLer
        ======
        
        A simple reader for configuration file with TOML syntax.
        
        Usage
        -----
        At first, import the module as follows
        
        .. code-block::
        
            from tomler import Config
        
        After that, you can call for the first time the configuration file as follows
        
        .. code-block::
        
            config = Config('<path to the configuration file>', [True | False])
        
        The second parameter is optional. It activates (or deactivates) the hot
        reloading of the configuration file each time a value is accessed.
        
        The class **Config** implements the singleton pattern.
        
        A value is accessed similarly a dictionary, in particular as follows
        
        .. code-block::
        
            val = config["key_1/key_2/.../key_N"]
Platform: UNKNOWN
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: Implementation :: CPython
Classifier: Programming Language :: Python :: Implementation :: PyPy
Requires-Python: >=3.5
Description-Content-Type: text/x-rst
