taglogger


Nametaglogger JSON
Version 0.0.1 PyPI version JSON
download
home_pagehttps://github.com/joaompinto/taglogger
SummarySimple logger that adds tags to log messages to make it easier to filter them
upload_time2023-07-28 13:38:18
maintainer
docs_urlNone
authorJoão Pinto
requires_python
licenseMIT
keywords
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # taglogger


A simple logger that adds tags to log messages to make it easier to filter them.

![License: MIT](https://img.shields.io/github/license/joaompinto/taglogger?style=for-the-badge&color=%23007ec6)
[![PyPi](https://img.shields.io/pypi/v/taglogger.svg?style=for-the-badge&color=%23007ec6)](https://pypi.python.org/pypi/taglogger)
[![Code style: black](https://img.shields.io/badge/code%20style-black-000000.svg?style=for-the-badge)](https://github.com/ambv/black)

<img src="imgs\taglogger.png">


## Installation

```bash
pip install taglogger
```

## Usage

```python
# main.py
from taglogger import tlog

tlog("traffic", "There is a traffic jam")
```

```bash
$ DEBUG=traffic python main.py
[traffic] There is a traffic jam
```

            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/joaompinto/taglogger",
    "name": "taglogger",
    "maintainer": "",
    "docs_url": null,
    "requires_python": "",
    "maintainer_email": "",
    "keywords": "",
    "author": "Jo\u00e3o Pinto",
    "author_email": "lamego.pinto@gmail.com",
    "download_url": "https://files.pythonhosted.org/packages/a2/e3/7023d8ae46ea88ba9c81bfe68dd706bfca9c37caca349336c77ee5ca7092/taglogger-0.0.1.tar.gz",
    "platform": null,
    "description": "# taglogger\n\n\nA simple logger that adds tags to log messages to make it easier to filter them.\n\n![License: MIT](https://img.shields.io/github/license/joaompinto/taglogger?style=for-the-badge&color=%23007ec6)\n[![PyPi](https://img.shields.io/pypi/v/taglogger.svg?style=for-the-badge&color=%23007ec6)](https://pypi.python.org/pypi/taglogger)\n[![Code style: black](https://img.shields.io/badge/code%20style-black-000000.svg?style=for-the-badge)](https://github.com/ambv/black)\n\n<img src=\"imgs\\taglogger.png\">\n\n\n## Installation\n\n```bash\npip install taglogger\n```\n\n## Usage\n\n```python\n# main.py\nfrom taglogger import tlog\n\ntlog(\"traffic\", \"There is a traffic jam\")\n```\n\n```bash\n$ DEBUG=traffic python main.py\n[traffic] There is a traffic jam\n```\n",
    "bugtrack_url": null,
    "license": "MIT",
    "summary": "Simple logger that adds tags to log messages to make it easier to filter them",
    "version": "0.0.1",
    "project_urls": {
        "Homepage": "https://github.com/joaompinto/taglogger"
    },
    "split_keywords": [],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "64a53916d07f8b0f003080b265be4b385e5d777187d903a65fbf8eea66ef0b59",
                "md5": "704c4f6611531c9f26d190b8160a6f59",
                "sha256": "94b8c843b40d70091d9b451ba0906f19262111b00aef0f04507605a6ec4a775a"
            },
            "downloads": -1,
            "filename": "taglogger-0.0.1-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "704c4f6611531c9f26d190b8160a6f59",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": null,
            "size": 5515,
            "upload_time": "2023-07-28T13:38:17",
            "upload_time_iso_8601": "2023-07-28T13:38:17.475529Z",
            "url": "https://files.pythonhosted.org/packages/64/a5/3916d07f8b0f003080b265be4b385e5d777187d903a65fbf8eea66ef0b59/taglogger-0.0.1-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a2e37023d8ae46ea88ba9c81bfe68dd706bfca9c37caca349336c77ee5ca7092",
                "md5": "bc8adf2fd1c6f6d19b7c660490e42c71",
                "sha256": "4a2218ba9bb56cf434b7ae932221bd688a8f2eadfa2056b1ec6d60075f7e4dc6"
            },
            "downloads": -1,
            "filename": "taglogger-0.0.1.tar.gz",
            "has_sig": false,
            "md5_digest": "bc8adf2fd1c6f6d19b7c660490e42c71",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": null,
            "size": 50269,
            "upload_time": "2023-07-28T13:38:18",
            "upload_time_iso_8601": "2023-07-28T13:38:18.648545Z",
            "url": "https://files.pythonhosted.org/packages/a2/e3/7023d8ae46ea88ba9c81bfe68dd706bfca9c37caca349336c77ee5ca7092/taglogger-0.0.1.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2023-07-28 13:38:18",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "joaompinto",
    "github_project": "taglogger",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "requirements": [],
    "lcname": "taglogger"
}
        
Elapsed time: 0.11285s