Skip to content

Commit 7dfcbb7

Browse files
committed
Update readme's and pypi setup
1 parent 8501bb7 commit 7dfcbb7

File tree

2 files changed

+9
-12
lines changed

2 files changed

+9
-12
lines changed

README.md

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,6 @@
11
# discord.py-self_embed
22
A way for selfbots to send embeds again.
3-
It uses [Rauf's embed generator](https://embed.rauf.wtf/).
4-
5-
## Reason for archive
6-
Unfortunatly, the creator of Rauf's embed generator (Rauf) has made the decision to close the embed generator. This means that this library will become unusable.
7-
![CleanShot 2023-08-17 at 9 25 50@2x](https://github.com/bennyscripts/discord.py-self_embed/assets/83777519/5c5f719f-2185-40b5-88ca-893d2593e0f1)
3+
It uses [Benny's Embed Generator](https://benny.fun/embed).
84

95

106
### Install
@@ -18,9 +14,10 @@ Unfortunatly, the creator of Rauf's embed generator (Rauf) has made the decision
1814
>
1915
> embed = discord_self_embed.Embed("discord.py-self_embed",
2016
> description="A way for selfbots to send embeds again.",
21-
> colour="ff0000"
17+
> colour="FFBB00"
2218
> )
2319
> embed.set_author("Benny")
20+
> embed.set_image("https://raw.githubusercontent.com/bennyscripts/ghost/refs/heads/main/ghost.png", big=False)
2421
>
2522
> url = embed.generate_url(hide_url=True) # You can also convert the embed to a string.
2623
> print(url) # The url will be put in your ctx.send() content.

setup.py

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
readme = """
44
# discord.py-self_embed
55
A way for selfbots to send embeds again.
6-
It uses [Benny's embed generator](https://embed.benny.fun).
6+
It uses [Benny's embed generator](https://benny.fun/api/embed).
77
88
### Install
99
> ```bash
@@ -16,10 +16,10 @@
1616
>
1717
> embed = discord_self_embed.Embed("discord.py-self_embed",
1818
> description="A way for selfbots to send embeds again.",
19-
> colour="ff0000",
20-
> url="https://github.com/bentettmar/discord.py-self_embed"
19+
> colour="FFBB00"
2120
> )
22-
> embed.set_author("Ben Tettmar")
21+
> embed.set_author("Benny")
22+
> embed.set_image("https://raw.githubusercontent.com/bennyscripts/ghost/refs/heads/main/ghost.png", big=False)
2323
>
2424
> url = embed.generate_url(hide_url=True) # You can also convert the embed to a string.
2525
> print(url) # The url will be put in your ctx.send() content.
@@ -35,13 +35,13 @@
3535
setup(
3636
name='discord.py-self_embed',
3737
packages=['discord_self_embed', 'discord_self_embed.utils'],
38-
version='1.0.8',
38+
version='1.0.9',
3939
license='MIT',
4040
description='A way for selfbots to send embeds again.',
4141
author='Ben Tettmar',
4242
author_email='[email protected]',
4343
url='https://github.com/bentettmar/discord.py-self_embed',
44-
download_url='https://github.com/bentettmar/discord.py-self_embed/archive/refs/tags/1.0.6.tar.gz',
44+
download_url='https://github.com/bennyscripts/discord.py-self_embed/archive/refs/tags/1.0.9.tar.gz',
4545
keywords=['discord', 'embed', 'selfbot', "discord embed",
4646
"embed discord", "discord selfbot embed", "embed selfbot discord"],
4747
install_requires=[],

0 commit comments

Comments
 (0)