Metadata-Version: 2.1
Name: optilogs
Version: 0.1.2
Summary: A simple logging library to send logs to a server
Home-page: https://github.com/votre-repo/optilog
Author: Allan PEREZ GONZALEZ
Author-email: aperezgo74@gmail.com
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
Requires-Dist: requests

# Optilogs

Optilogs is a simple logging library that sends logs to a server via HTTP requests.

## Installation

Use the package manager [pip](https://pip.pypa.io/en/stable/) to install optilogs.

```bash
pip install optilogs
```

Example

```bash
from optilog.logger import Optilog

# Create an instance of Optilog with the IP and port of your log server
optilog = Optilog(server_ip="0.0.0.0", server_port=5050)

# Send a log
optilog.log("Ceci est un log de test")
```
