Metadata-Version: 2.1
Name: optilogs
Version: 0.1.3
Summary: A simple logging library to send logs to a server
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 optilogs.logger import Optilogs

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

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