Metadata-Version: 2.1
Name: entrymaven
Version: 0.0.1
Summary: Simple and efficient customizable logger for Python
Author: Leonardo Cardillo
License: MIT License
Keywords: entrymaven entry maven leoncardi leonardo cardillo custom customizable logger loggers logging logs log
Description-Content-Type: text/markdown
License-File: LICENSE

# EntryMaven

## About

The **EntryMaven** Python package aims to offer a simple and efficient customizable logger using the native Logging library.  
*Designed exclusively to study the development and upload of Libraries.

With this package, you can easily create records that automatically generate log files, allowing you to customize the names of these records files, which will be stored in the root of your project.

Author: **Leonardo Cardillo**

## Getting Started - Library

### Installation

```Python
pip install entrymaven
```

### Usage

Simple example of how to use:

```Python
import entrymaven as emav

emav.Essentials.gen()
l = emav.l

l.info('First entry in this log file')

# Output: 2000-01-01 00:00:00,000 - INFO - First entry in this log file
```

> **Note**: As default, the log file name is "entries.log" and the log level is DEBUG

An alternative, more concise approach that includes defining a custom log file name and log recording level:

```Python
from entrymaven import l, Essentials
Essentials.gen(filename= 'test.log', level= 'INFO')

l.info('First entry in this log file')
```
