Metadata-Version: 2.1
Name: SimConf
Version: 0.0.5
Summary: Simple Attribute saving manager
Home-page: https://github.com/bokonV2/SimConf
Author: bokonV2
Author-email: bokon2014@yandex.ru
License: UNKNOWN
Project-URL: Bug Reports, https://github.com/bokonV2/SimConf/issues
Project-URL: Source, https://github.com/bokonV2/SimConf
Description: # Simple Config
         Simple Attribute saving manager
        
        
        ## Installation
        
        ```bash
        pip install simconf
        ```
        
        ## Documentation
        ### Init
        ```python
        from simconf import SimConf
        config = SimConf(filename, default_atr, ensure_ascii, load_conf)
        ```
        #### filename
        ```python
        filename = "filename"
          (create filename.json)
        
        filename = "folder/filename"
          (create filename.json in folder)
        ```
        
        #### default_atr
        ```python
        default_atr = {"arg0": 0, "arg1": 1 ...}
        default_atr = ["arg0", "arg1" ...]
        default_atr = {"a": {"b": [],},} etСЃ
        ```
        
        #### ensure_ascii
         Standard json attribute
        ```python
        ensure_ascii = bool()
        ```
        
        #### load_conf
          if true, loads values from file, if there is no file, uses default_atr,
          if false, uses default_atr
        ```python
        load_conf = bool()
        ```
        
        ### Use
        
        #### Get arg
        ```python
        arg = config["arg"]
        ```
        
        #### Set arg and create new
        ```python
        config["arg"] = args
        config["new"] = args
        ```
        
        #### Set default value
        ```python
        config.set_default() #use default_atr
        ```
        
        #### Print in console all saves
        ```python
        config.print_all()
        ```
        
        ### Support
         - **Telegramm** https://t.me/Rahazb
         - **Email** bokon2014@yandex.ru
        
Platform: UNKNOWN
Classifier: Intended Audience :: Developers
Classifier: Topic :: Software Development :: Build Tools
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3 :: Only
Requires-Python: >=3.6, <4
Description-Content-Type: text/markdown
