DiscorsUtils is a very useful library made to be used with discord.py
Project description
DiscordUtils
A very useful library made to be used in with discord.py
Installation
pip install DiscordUtils
Example code
DiscordUtils.Pagination.AutoEmbedPaginator
@bot.command()
async def paginate(ctx):
embed1 = discord.Embed(color=ctx.author.color).add_field(name="Example", value="Page 1")
embed2 = discord.Embed(color=ctx.author.color).add_field(name="Example", value="Page 2")
embed3 = discord.Embed(color=ctx.author.color).add_field(name="Example", value="Page 3")
paginator = DiscordUtils.Pagination.AutoEmbedPaginator(ctx)
embeds = [embed1, embed2, embed3]
await paginator.run(embeds)
DiscordUtils.Pagination.CustomEmbedPaginator
@bot.command()
async def paginate(ctx):
embed1 = discord.Embed(color=ctx.author.color).add_field(name="Example", value="Page 1")
embed2 = discord.Embed(color=ctx.author.color).add_field(name="Example", value="Page 2")
embed3 = discord.Embed(color=ctx.author.color).add_field(name="Example", value="Page 3")
paginator = DiscordUtils.Pagination.CustomEmbedPaginator(ctx)
paginator.add_reaction('⏮️', "first")
paginator.add_reaction('⏪', "back")
paginator.add_reaction('🔐', "lock")
paginator.add_reaction('⏩', "next")
paginator.add_reaction('⏭️', "last")
embeds = [embed1, embed2, embed3]
await paginator.run(embeds)
DiscordUtils.InviteTracker
import discord
from discord.ext import commands
import DiscordUtils
bot = commands.AutoShardedBot(command_prefix=">")
tracker = DiscordUtils.InviteTracker(bot)
@bot.event
async def on_ready():
await tracker.cache_invites()
@bot.event
async def on_invite_create(invite):
await tracker.update_invite_cache(invite)
@bot.event
async def on_guild_join(guild):
await tracker.update_guild_cache(guild)
@bot.event
async def on_invite_delete(invite):
await tracker.remove_invite_cache(invite)
@bot.event
async def on_guild_remove(guild):
await tracker.remove_guild_cache(guild)
@bot.event
async def on_member_join(member):
inviter = await tracker.fetch_inviter(member) # inviter is the member who invited
For further information please read the docs
Links
Support
DM/PM toxic_recker#1628
on Discord
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
DiscordUtils-1.1.3.tar.gz
(4.2 kB
view details)
Built Distribution
File details
Details for the file DiscordUtils-1.1.3.tar.gz
.
File metadata
- Download URL: DiscordUtils-1.1.3.tar.gz
- Upload date:
- Size: 4.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/47.1.1 requests-toolbelt/0.9.1 tqdm/4.47.0 CPython/3.8.3
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | d85496ccabfc386b8f6477a82750520d7264905aab9f768af50dbcf3d5d746c4 |
|
MD5 | e53c9b52f0260d87491d9fd9e9cf631e |
|
BLAKE2b-256 | c3dd98f8867df013eacd26be3caabdd0c8019cb87b54a0e66ac83769bed11b4c |
File details
Details for the file DiscordUtils-1.1.3-py3-none-any.whl
.
File metadata
- Download URL: DiscordUtils-1.1.3-py3-none-any.whl
- Upload date:
- Size: 5.5 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/47.1.1 requests-toolbelt/0.9.1 tqdm/4.47.0 CPython/3.8.3
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | bde28a0081bf4d8a6aac285e0efae712af82b402f5fc41982d1a8c2bdb88128b |
|
MD5 | 8de62f38907987aaa88fb32e9fff4431 |
|
BLAKE2b-256 | c975b9d07c5a36e039e9686a7e6aed07e0e1a4b0d7d565235e40a523cc596720 |