A package for visualize discord embeds
Project description
Virtual Embed
With this api you can get your embeds as image (If you want to create embed visualizer for your bot, this api is for you!)
Installation
pip install virtualembed
Tutorial
If you have discord embed already you can convert into virtualembed
embed = discord.Embed()
embed.title = "test"
embed.description = "test"
embed.add_field(name="Virtual Embeds?", value="Virtual EMBEDSS !!", inline=True)
embed.add_field(name="Whats python?", value="Python IS AWESOME!!", inline=True)
virtualembed = virtualembed_from_embed(e)
# This will return virtualembed object
Lets create Embed Object
embed = VirtualEmbed(title="Virtual Embeds!",
description="With this api you can get embeds as images like this!!",
color="#fff")
If you say i don't want to make embed sender as Ugly clyde you can do this
embed.bot_name = "Your bot Name"
embed.bot_avatar = "Avatar url"
Lets add some fields because it looks empty
embed.add_field("Embed Fields Are", "SO COOOOL!", True)
embed.add_field("Also Inline Support", "Aweeeesome", True)
Who doesn't want images on embeds
embed.set_author("Python Is Awesome",
icon_url="https://berkayyildiz.com/wp-content/uploads/2018/06/opengraph-icon-200x200.png")
embed.set_thumbnail("https://berkayyildiz.com/wp-content/uploads/2018/06/opengraph-icon-200x200.png")
embed.set_image("https://berkayyildiz.com/wp-content/uploads/2018/06/opengraph-icon-200x200.png")
At Total
embed = VirtualEmbed(title="Virtual Embeds!",
description="With this api you can get embeds as images like this!!",
color="#fff")
embed.add_field("Embed Fields Are", "SO COOOOL!", True)
embed.add_field("Also Inline Support", "Aweeeesome", True)
embed.set_author("Python Is Awesome",
icon_url="https://berkayyildiz.com/wp-content/uploads/2018/06/opengraph-icon-200x200.png")
embed.set_thumbnail("https://berkayyildiz.com/wp-content/uploads/2018/06/opengraph-icon-200x200.png")
embed.set_image("https://berkayyildiz.com/wp-content/uploads/2018/06/opengraph-icon-200x200.png")
We created our first embed, now lets see how can we use this object
With this line you can get your image object
embed_img = embed.get_embed_as_image()
To save our image
embed_img.save_img("path/to/example_embed.png")
# Save embed to target path
Or i just want to get as bytes
embed_img.get_buffer()
# This will return BytesIO object
Final Result
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file virtualembed-0.0.12.tar.gz.
File metadata
- Download URL: virtualembed-0.0.12.tar.gz
- Upload date:
- Size: 4.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.9 tqdm/4.63.1 importlib-metadata/4.11.3 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3c047afed5cf7b4b63f954ffcd8c57be485a484c385fce9b72997be973d54e10
|
|
| MD5 |
ca7873c7c3993fd8b9101f5846f2a75f
|
|
| BLAKE2b-256 |
dd99ad390873a1bd72476b64f8d1f64b23b3fb3006d50ac84ac322726313b50a
|
File details
Details for the file virtualembed-0.0.12-py3-none-any.whl.
File metadata
- Download URL: virtualembed-0.0.12-py3-none-any.whl
- Upload date:
- Size: 4.8 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.9 tqdm/4.63.1 importlib-metadata/4.11.3 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4557fbbb9559271eeb701718ef299ee9c797bdf88284599ad16da9c32b23e303
|
|
| MD5 |
d4b66694cbe2b38611059133ea2e4d41
|
|
| BLAKE2b-256 |
2f63024a2f7260212192a76126767b96020937d1304c495fa3bae448443bba7a
|