Metadata-Version: 2.1
Name: EasyDiscordWebhookMessage
Version: 1.0.0
Summary: A Python package for easily sending messages through Discord webhooks
Home-page: https://github.com/Axel-Pion-MDS/M2_Discord_Webhook
Author: Maengdok
Author-email: maengdok@outlook.com
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Description-Content-Type: text/markdown
License-File: LICENSE


    # Easy Discord Webhook Message

    A Python package for easily sending messages through Discord webhooks.

    ## Installation

    Install the package using pip:

    ```bash
    pip install discord_webhook_easy_message
    ```

    ## Usage

    ```python
    from discord_webhook_easy_message import Webhook

    # Create an instance of the Webhook class
    webhook_instance = Webhook()

    # Define the webhook URL
    webhook_instance.define_webhook_url("your_discord_webhook_url")

    # Define mentions (optional)
    webhook_instance.define_mentions(["userId1", "userId2"])

    # Define content (optional)
    webhook_instance.define_content("Hello @user1, check this out!")

    # Send a message
    webhook_instance.send(
        title="New Release",
        description="Version 1.0 is now available!",
        author="Your Bot",
        color="00FF00",
        url="https://github.com/yourusername/yourrepository/releases/tag/v1.0"
    )
    ```
    
