Metadata-Version: 2.1
Name: sembed
Version: 1.0.0
Summary: A wrapper of discord.Embed.
Home-page: https://github.com/sevenc-nanashi/sembed
Author: sevenc_nanashi
License: UNKNOWN
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3.8
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Description-Content-Type: text/markdown
Requires-Dist: discord (<2.0.0,>=1.0.0)

# sembed
[![PyPi](https://img.shields.io/pypi/v/sembed.svg)](https://pypi.org/project/sembed/)

This is a wrapper of discord.Embed of [discord.py](https://github.com/Rapptz/discord.py).  

***


Installation
====
Run this:
```bash
pip install sembed
```

***


Basic Usage
=====
### Simple Embed
```python
import discord
import sembed

client = discord.Client()

@client.event
async def on_ready():
    print('We have logged in as {0.user}'.format(client))

@client.event
async def on_message(message):
    if message.author == client.user:
        return

    if message.content == "please test sembed":
        e = sembed.SEmbed("Did you know that", "This embed is made by sembed!")
        await message.channel.send(embed=e)

client.run('your token here')
```

![test_image1](https://imgur.com/XDDLv6I.png)

### All-in-one Embed
```python
import discord
import sembed

client = discord.Client()


@client.event
async def on_ready():
    print('We have logged in as {0.user}'.format(client))


@client.event
async def on_message(message):
    if message.author == client.user:
        return

    if message.content == "please test sembed":
        e = sembed.SEmbed(title="Title", description="Description", color=0x7289da,
                          fields=[sembed.SField("name1", "value1 - inline", True),
                                  sembed.SField("name2", "value2 - inline", True),
                                  sembed.SField("name3", "value3 - not inline", False)],
                          author=sembed.SAuthor("Author", "https://cdn.discordapp.com/avatars/686547120534454315/a_14261e094afcbfe4ab3abde42ac86987.gif", "https://discord.com"),
                          footer=sembed.SFooter("Footer", "https://cdn.discordapp.com/embed/avatars/2.png"),
                          url="https://github.com",
                          image_url="https://cdn.discordapp.com/embed/avatars/3.png",
                          thumbnail_url="https://cdn.discordapp.com/embed/avatars/0.png")

        await message.channel.send(embed=e)

client.run('your token here')
```

![test_image2](https://imgur.com/3RRuRzr.png)


***

Prerequisites
====
* **Python 3.8 (Please make GitHub issue if you can use this lib on different python version)**  
* **[discord.py](https://github.com/Rapptz/discord.py)**   
***

License
====
Please see [LICENSE](https://github.com/sevenc-nanashi/sembed/blob/main/LICENSE).


