Total Complexity | 0 |
Total Lines | 21 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | from pincer.objects import Embed |
||
|
|||
2 | |||
3 | print(Embed( |
||
4 | title="Pincer - 0.6.4", |
||
5 | description=( |
||
6 | "🚀 An asynchronous python API wrapper meant to replace" |
||
7 | " discord.py\n> Snappy discord api wrapper written " |
||
8 | "with aiohttp & websockets" |
||
9 | ) |
||
10 | ).add_field( |
||
11 | name="**Github Repository**", |
||
12 | value="> https://github.com/Pincer-org/Pincer" |
||
13 | ).set_thumbnail( |
||
14 | url="https://pincer.dev/img/icon.png" |
||
15 | ).set_image( |
||
16 | url=( |
||
17 | "https://repository-images.githubusercontent.com" |
||
18 | "/400871418/045ebf39-7c6e-4c3a-b744-0c3122374203" |
||
19 | ) |
||
20 | ).to_dict()) |
||