Metadata-Version: 2.1
Name: ulogging
Version: 1.1.0
Summary: Module for logging
Author: s0urce
Author-email: boyarkin.gleb@gmail.com
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Description-Content-Type: text/markdown
License-File: LICENSE

# ulogging-py

**GitHub:** https://github.com/s0urcedev/ulogging-py

**PyPi:** https://pypi.org/project/ulogging/

Python module for logging

## Installation:

```console
pip install ulogging
```

## Importing:

```py
from ulogging import Logging
```

## Using:

`log_it_low_importance` — decorator for low importance logging

`log_it_high_importance` — decorator for high importance logging

`log_here(log_id)` — method for log where you put this method

`file.close()` — closing output file (DON'T FORGET ABOUT PUTTING IT TO END OF A FILE)

And other documentation in `ulogging/__init__.py` and examples in `examples.py`
