handy-library


Namehandy-library JSON
Version 0.0.7 PyPI version JSON
download
home_page
SummaryA library that makes it very convenient to perform standard actions in Python
upload_time2023-09-21 11:29:40
maintainer
docs_urlNone
author
requires_python>=3.10
license
keywords handy library handylib universal library
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # HandyLibrary
[![Python 3.10](https://img.shields.io/badge/python-3.10-blue.svg)](https://www.python.org/downloads/release/python-31013/)

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
}
```

            

Raw data

            {
    "_id": null,
    "home_page": "",
    "name": "handy-library",
    "maintainer": "",
    "docs_url": null,
    "requires_python": ">=3.10",
    "maintainer_email": "",
    "keywords": "handy library,handylib,universal library",
    "author": "",
    "author_email": "SVJA7IK <svja7ik@gmail.com>",
    "download_url": "https://files.pythonhosted.org/packages/92/3a/d267982b6260fa5848628f5a2c84fcbc9fd7ba6beba59b6fba6323f09167/handy-library-0.0.7.tar.gz",
    "platform": null,
    "description": "# HandyLibrary\r\n[![Python 3.10](https://img.shields.io/badge/python-3.10-blue.svg)](https://www.python.org/downloads/release/python-31013/)\r\n\r\nA library that makes it very convenient to perform standard actions in Python\r\n## Installation\r\n### Using PyPI\r\nThe latest stable release is available on PyPI, and you can install it by saying\r\n```\r\npython -m pip install handy-library \r\n```\r\n\r\n## Example\r\nExample of configuring automatic creation of `config.json`\r\n```\r\nfrom handylib.tools import ConfigLoader\r\n\r\ncl = ConfigLoader()\r\ncl.load_config(\"config.json\", [cl.ConfigParam('test', value=[1, 2, 3], description=\"Params\", value_type=list)])\r\n```\r\nThe `config.json` file that resulted from the output\r\n```\r\n{\r\n    \"test_1_description\": \"Params\",\r\n    \"test_1\": [1, 2, 3],\r\n    \"test_2\": 0.123,\r\n    \"test_3\": true\r\n}\r\n```\r\n",
    "bugtrack_url": null,
    "license": "",
    "summary": "A library that makes it very convenient to perform standard actions in Python",
    "version": "0.0.7",
    "project_urls": {
        "Homepage": "https://github.com/SVJA7IK/HandyLibrary"
    },
    "split_keywords": [
        "handy library",
        "handylib",
        "universal library"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "2ad0b0e450bac75f59e91cc7aa47a5a2ae0f4f59521cd9f76381efa38f6922ec",
                "md5": "4e0301bcfa190329ba810ca0a02d4351",
                "sha256": "739d6836fb570db9de0d208457c0057ee66e9c9594f00de278d3542e7779d357"
            },
            "downloads": -1,
            "filename": "handy_library-0.0.7-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "4e0301bcfa190329ba810ca0a02d4351",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.10",
            "size": 5890,
            "upload_time": "2023-09-21T11:29:38",
            "upload_time_iso_8601": "2023-09-21T11:29:38.989450Z",
            "url": "https://files.pythonhosted.org/packages/2a/d0/b0e450bac75f59e91cc7aa47a5a2ae0f4f59521cd9f76381efa38f6922ec/handy_library-0.0.7-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "923ad267982b6260fa5848628f5a2c84fcbc9fd7ba6beba59b6fba6323f09167",
                "md5": "bdfd21f076c9ca2cea7ddf7a860e4a20",
                "sha256": "c0e83c19a1e1840bf7860a0a7694a34aec34aa329679f70ee6739be559379fee"
            },
            "downloads": -1,
            "filename": "handy-library-0.0.7.tar.gz",
            "has_sig": false,
            "md5_digest": "bdfd21f076c9ca2cea7ddf7a860e4a20",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.10",
            "size": 5485,
            "upload_time": "2023-09-21T11:29:40",
            "upload_time_iso_8601": "2023-09-21T11:29:40.518032Z",
            "url": "https://files.pythonhosted.org/packages/92/3a/d267982b6260fa5848628f5a2c84fcbc9fd7ba6beba59b6fba6323f09167/handy-library-0.0.7.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2023-09-21 11:29:40",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "SVJA7IK",
    "github_project": "HandyLibrary",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": false,
    "requirements": [],
    "lcname": "handy-library"
}
        
Elapsed time: 0.52471s