Metadata-Version: 2.4
Name: log2py
Version: 1.0.0
Summary: A Simple Logging Library for Python
Home-page: https://github.com/sinokadev/log4py
Author: Kanowara Sinoka
Author-email: sinok@sinoka.dev
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.7
Description-Content-Type: text/markdown
License-File: LICENSE
Dynamic: author
Dynamic: author-email
Dynamic: classifier
Dynamic: description
Dynamic: description-content-type
Dynamic: home-page
Dynamic: license-file
Dynamic: requires-python
Dynamic: summary

# Simple Logging Library - log4py

![img](logo.png)

## Menual
### 1. Install
```bash
$ wget https://raw.githubusercontent.com/newkincode/log4py/main/log4py.py
```
### 2. Import
```python
from log4py import Logger
```
### 3. Use
```python
logger = Logger()
logger.info("Hello World!")
logger.save()
```
### 4. Result
```
0000-00-00 00-00-00 - INFO - Hello World!
```
