flowlogger


Nameflowlogger JSON
Version 0.2.2 PyPI version JSON
download
home_pagehttps://github.com/oblivisheee/flowlogger
SummaryThis is a small library for logging while training ML. Current version is 0.2.2, its a feature-poor pre-alpha.
upload_time2023-11-05 16:10:26
maintainer
docs_urlNone
authoroblivisheee
requires_python>=3.6
license
keywords
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # flowlogger
flowlogger currently is small lib in pre-alpha version for helping with ML training logging.
# What is this?

flowlogger is a lib for ML training logging, currently is very few functions, currently will be improved.
*Currently in pre alpha*
# Installing
Through pip:
```python
pip install flowlogger
```
# Usage
**Calculating the function execution time**:

Using dict:
```python
options = {
        'class_name': 'Test'
        'save_path': 'test.log',
        'print_output': True
        'return_dict': True
    }
@fl.flclass(options=options)
def print_world():
    print('Hello World!')

print_world()
```
Using vars:
```python

@fl.flclass(class_name='Test', save_path='hello.log')
def five_plus_five():
    solution = 5 + 5
    print(solution)

five_plus_five()
```

            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/oblivisheee/flowlogger",
    "name": "flowlogger",
    "maintainer": "",
    "docs_url": null,
    "requires_python": ">=3.6",
    "maintainer_email": "",
    "keywords": "",
    "author": "oblivisheee",
    "author_email": "author@gmail.com",
    "download_url": "https://files.pythonhosted.org/packages/c2/90/d292a63c0a9aa3dc000f1084495b89d8023cd4f68aa013fb5607bab50d09/flowlogger-0.2.2.tar.gz",
    "platform": null,
    "description": "# flowlogger\nflowlogger currently is small lib in pre-alpha version for helping with ML training logging.\n# What is this?\n\nflowlogger is a lib for ML training logging, currently is very few functions, currently will be improved.\n*Currently in pre alpha*\n# Installing\nThrough pip:\n```python\npip install flowlogger\n```\n# Usage\n**Calculating the function execution time**:\n\nUsing dict:\n```python\noptions = {\n        'class_name': 'Test'\n        'save_path': 'test.log',\n        'print_output': True\n        'return_dict': True\n    }\n@fl.flclass(options=options)\ndef print_world():\n    print('Hello World!')\n\nprint_world()\n```\nUsing vars:\n```python\n\n@fl.flclass(class_name='Test', save_path='hello.log')\ndef five_plus_five():\n    solution = 5 + 5\n    print(solution)\n\nfive_plus_five()\n```\n",
    "bugtrack_url": null,
    "license": "",
    "summary": "This is a small library for logging while training ML. Current version is 0.2.2, its a feature-poor pre-alpha.",
    "version": "0.2.2",
    "project_urls": {
        "Homepage": "https://github.com/oblivisheee/flowlogger"
    },
    "split_keywords": [],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ac68258a737912d74049e0004045008ada00ad613ef37cd98bcd338fa850bf7a",
                "md5": "70274223503c32736352942a1f487387",
                "sha256": "699496309ee0f2f61827040e15a75a502fcd2b8775b9b9826c0c4a3947fe3576"
            },
            "downloads": -1,
            "filename": "flowlogger-0.2.2-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "70274223503c32736352942a1f487387",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.6",
            "size": 10053,
            "upload_time": "2023-11-05T16:10:25",
            "upload_time_iso_8601": "2023-11-05T16:10:25.108510Z",
            "url": "https://files.pythonhosted.org/packages/ac/68/258a737912d74049e0004045008ada00ad613ef37cd98bcd338fa850bf7a/flowlogger-0.2.2-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c290d292a63c0a9aa3dc000f1084495b89d8023cd4f68aa013fb5607bab50d09",
                "md5": "71bbaacaae823a44343d74ac3e4285f5",
                "sha256": "519fc3f4f56f75b580d7184076dac23b22905a2d72705aa8d3dbfcc85aa79b8b"
            },
            "downloads": -1,
            "filename": "flowlogger-0.2.2.tar.gz",
            "has_sig": false,
            "md5_digest": "71bbaacaae823a44343d74ac3e4285f5",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.6",
            "size": 9173,
            "upload_time": "2023-11-05T16:10:26",
            "upload_time_iso_8601": "2023-11-05T16:10:26.555057Z",
            "url": "https://files.pythonhosted.org/packages/c2/90/d292a63c0a9aa3dc000f1084495b89d8023cd4f68aa013fb5607bab50d09/flowlogger-0.2.2.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2023-11-05 16:10:26",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "oblivisheee",
    "github_project": "flowlogger",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": false,
    "requirements": [],
    "lcname": "flowlogger"
}
        
Elapsed time: 0.17656s