8000 GitHub - SVJA7IK/HandyLibrary: A library that makes it very convenient to perform standard actions in Python
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

SVJA7IK/HandyLibrary

Repository files navigation

HandyLibrary

Python 3.10

A library that makes it very convenient to perform standard actions in Python

Installation

Using PyPI

The latest stable release is available on PyPI, and you can install it by saying

python -m pip install handy-library 

Example

Example of configuring automatic creation of config.json

from handylib.tools import ConfigLoader

cl = ConfigLoader()
cl.load_config("config.json", [cl.ConfigParam('test', value=[1, 2, 3], description="Params", value_type=list)])

The config.json file that resulted from the output

{
    "test_1_description": "Params",
    "test_1": [1, 2, 3],
    "test_2": 0.123,
    "test_3": true
}

About

A library that makes it very convenient to perform standard actions in Python

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

0