Metadata-Version: 2.1
Name: dugudugu-discord-notifier
Version: 0.1.0
Summary: A simple Discord notification tool using webhooks
Home-page: https://github.com/taejun0622/notifier
License: MIT
Keywords: discord,webhook,notification,bot
Author: taejun
Author-email: dugudugu0622@gmail.com
Requires-Python: >=3.7,<4.0
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Classifier: Topic :: Communications
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Requires-Dist: python-dotenv (>=1.0.0,<2.0.0)
Requires-Dist: requests (>=2.31.0,<3.0.0)
Project-URL: Repository, https://github.com/taejun0622/notifier
Description-Content-Type: text/markdown

# Discord Notifier

A simple Python package for sending notifications to Discord channels using webhooks.

## Installation

```bash
pip install discord-notifier
```

Or install from source:

```bash
git clone https://github.com/yourusername/discord-notifier.git
cd discord-notifier
pip install .
```

## Configuration

1. Copy `.env.template` to `.env`
2. Add your Discord webhook URL to the `.env` file

## Usage

```python
from notifier.discord_notifier import DiscordNotifier

# Initialize the notifier
notifier = DiscordNotifier()

# Send a simple message
notifier.send_message("Hello, World!")

# Send a message with a title
notifier.send_message("This is the message content", "This is the title")
```

## Features

- Simple and easy to use
- Supports markdown formatting
- Environment-based configuration
- Timeout handling
- Error reporting

## Requirements

- Python 3.7+
- requests
- python-dotenv

