Metadata-Version: 2.1
Name: pylogdc
Version: 0.1.3
Summary: Python package for logging actions to Discord servers using webhooks.
Home-page: https://github.com/Trnass/PyLogDc
Author: Trnass
Author-email: admin@trnass.cz
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
License-File: LICENSE
Requires-Dist: requests

# PyLogDc

PyLogDc is Python package, you can log actions of your code / alert to your Discord server using webhook. 
You can use color that you want (using HEX code) or use some of prepared colors.
## Prepared colors
Success = #5cb85c
Info = #5bc0de
Warning = #f0ad4e 
Danger = #d9534f

## Install
For install, run this command in your console / powershell

```bash
pip install pylogdc
```

## Usage
```python
from pylogdc import log_this
webhookURL = "https://discord.com/api/webhooks/......." # Replace with your actual Discord webhook URL
log_this('Test Header', 'Test message', 'info', webhookURL) # Without footer
log_this('Test Header', 'Test message', 'info', webhookURL, "Test Footer") # With footer
```
Remember to replace webhookURL with your actual Discord webhook URL.
