Metadata-Version: 2.1
Name: simple-dmessage
Version: 0.2.0
Summary: A package for sending direct messages via Discord
Author: Lee Kin Emree
Author-email: nspielman@live.com
Requires-Python: >=3.9,<4.0
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Requires-Dist: discord.py (>=2.0.0,<3.0.0)
Description-Content-Type: text/markdown

# Simple Message Bot

This bot is designed to send a custom direct message to a user on discord.

## Example

```python
import asyncio
from message import send_direct_message


async def my_script():
    # Your script code goes here
    await send_direct_message(TOKEN, USER_ID, "Hello, World!")


async def main():
    await my_script()

asyncio.run(main())

```

### Why
I wanted an easy way to get remote notfications from scripts 

