Metadata-Version: 2.1
Name: yaml-helper
Version: 0.1.0
Summary: Helper methods to read and write YAML files.
Home-page: https://github.com/rendicahya/yaml-helper
Author: Randy Cahya Wihandika
Author-email: rendicahya@gmail.com
License: UNKNOWN
Description: # YAML Helper
        
        Helper methods to read and write YAML files.
        
        ## Installation
        `pip install yaml-helper`
        
        ## Usage
        ```
        from yaml_helper import YAML
        
        
        yaml = YAML('config.yml')
        config = yaml.load()
        
        print(config['ip_address'])
        print(config['port'])
        
        yaml.add({'driver': 'mysqli'})
        yaml.add({'username': 'admin'})
        yaml.write()
        ```
        
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: GNU General Public License v3 (GPLv3)
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
