An nextcord extension that helps you to launch activities on Discord.
Project description
nextcord-ext-activities
| PyPi | Docs | Support server | GitHub repo |
nextcord.ext.activities is an extension that helps you to launch activities on Discord.
Quick example
import nextcord
from nextcord.ext import activities, commands
bot = commands.Bot(command_prefix="$")
@bot.event
async def on_ready():
print(f"Logged in as {str(bot.user)} (ID {bot.user.id})")
@bot.command()
async def poker(ctx, channel: nextcord.VoiceChannel):
invite_link = await channel.create_activity_invite(activities.Activity.poker)
await ctx.send(invite_link.url)
@bot.command()
async def betrayal(ctx, channel: nextcord.VoiceChannel):
invite_link = await channel.create_activity_invite(activities.Activity.betrayal)
await ctx.send(invite_link.url)
bot.run("token here")
You can find more example in the example directory.
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
File details
Details for the file nextcord-ext-activities-2022.6.11.tar.gz
.
File metadata
- Download URL: nextcord-ext-activities-2022.6.11.tar.gz
- Upload date:
- Size: 5.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.10.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 2b66178b68151d0ea74d852efd9b4585a567138ef6c24442c330efc839ebaec0 |
|
MD5 | c33b6c599d571a7f59fe2f218df878f6 |
|
BLAKE2b-256 | 7efe22e950c8ed1218be770fe32344cdf1c1ce032fc84e2aefc5e84cfe7758f7 |