Metadata-Version: 2.1
Name: discord-msg-lite
Version: 2
Summary: A simple and lightweight Python PyPI module to send messages easily using Discord Webhooks.
Home-page: https://github.com/YUChoe/discord_msg_lite
Author: Tom YU Choe
Author-email: yonguk.choe@gmail.com
License: MIT
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Information Technology
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: System Administrators
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.6
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Description-Content-Type: text/markdown

# Discord message lite

This is a simple and lightweight Python PyPI module to send messages easily using Discord Webhooks.

## Installation

Run the following to install:

```python
pip install discord-msg-lite
```

## Usage

```python
from discord_msg_lite import Discord_msg

webhook_url = 'https://discordapp.com/api/webhooks/123456789012345678/8xZhP4Zj-8KMVN7wLw6jE04VEK5BIfRxpzCwCwgHxpaNOQzZOTR95dPW53EMRjybXjAO'
dmsg = Discord_msg(webhook_url)
dmsg.send('test 12345 ㄱㄴㄷㄹ')
```


