Metadata-Version: 2.1
Name: juneberry
Version: 1.4.0
Summary: Advanced Logging in Python
License: Apache-2.0
Author: mmlvgx
Author-email: mmlvgx@gmail.com
Requires-Python: >=3.10,<4.0
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Description-Content-Type: text/markdown

# juneberry
juneberry — Advanced Logging in Python
# Installation
You can install `yakui` with Python Installer of Python (`pip`)
```bash
pip install juneberry
```
# Examples
`examples/basic.py`
```py
from juneberry import Logger


logger = Logger(name="basic")


logger.info("Hello, world!")
logger.warn("Hello, world!")
logger.debug("Hello, world!")
logger.error("Hello, world!")
logger.fatal("Hello, world!")
```

