A Python Version of Canvacord
Project description
A copy of canvacord made in python!
Table of contents
Installation
Run any of these commands in terminal:
Mac / Linux
pip install canvacord
Windows
python -m pip install canvacord
Examples
💡 This library requires discord.py.
Creating-Images
import discord
from discord.ext import commands
import canvacord
client = commands.Bot(command_prefix="!")
@client.command()
async def rankcard(ctx):
user = ctx.author
username = ctx.author.name + "#" + ctx.author.discriminator
currentxp = 1
lastxp = 0
nextxp = 2
current_level = 1
current_rank = 1
background = None
image = await canvacord.rankcard(user=user, username=username, currentxp=currentxp, lastxp=lastxp, nextxp=nextxp, level=current_level, rank=current_rank, background=background)
file = discord.File(filename="rankcard.png", fp=image)
await ctx.send(file=file)
@client.command()
async def triggered(ctx):
user = ctx.author
image = await canvacord.trigger(user)
file = discord.File(filename="triggered.gif", fp=image)
await ctx.send(file=file)
@client.command()
async def communism(ctx):
user = ctx.author
image = await canvacord.communism(user)
file = discord.File(filename="communism.gif", fp=image)
await ctx.send(file=file)
@client.command()
async def jail(ctx):
user = ctx.author
image = await canvacord.jail(user)
file = discord.File(filename="jail.png", fp=image)
await ctx.send(file=file)
@client.command()
async def gay(ctx):
user = ctx.author
image = await canvacord.gay(user)
file = discord.File(filename="gay.png", fp=image)
await ctx.send(file=file)
@client.command()
async def hitler(ctx):
user = ctx.author
image = await canvacord.hitler(user)
file = discord.File(filename="hitler.png", fp=image)
await ctx.send(file=file)
@client.command()
async def aborted(ctx):
user = ctx.author
image = await canvacord.aborted(user)
file = discord.File(filename="aborted.png", fp=image)
await ctx.send(file=file)
@client.command()
async def affect(ctx):
user = ctx.author
image = await canvacord.affect(user)
file = discord.File(filename="affect.png", fp=image)
await ctx.send(file=file)
@client.command()
async def airpods(ctx):
user = ctx.author
image = await canvacord.airpods(user)
file = discord.File(filename="airpods.gif", fp=image)
await ctx.send(file=file)
@client.command()
async def america(ctx):
user = ctx.author
image = await canvacord.america(user)
file = discord.File(filename="america.gif", fp=image)
await ctx.send(file=file)
@client.command()
async def wanted(ctx):
user = ctx.author
image = await canvacord.wanted(user)
file = discord.File(filename="wanted.png", fp=image)
await ctx.send(file=file)
@client.command()
async def joke(ctx):
user = ctx.author
image = await canvacord.jokeoverhead(user)
file = discord.File(filename="jokeoverhead.png", fp=image)
await ctx.send(file=file)
@client.command()
async def spank(ctx):
user1 = ctx.author
user2 = ctx.author
image = await canvacord.spank(user1, user2)
file = discord.File(filename="spank.png", fp=image)
await ctx.send(file=file)
@client.command()
async def bed(ctx):
user1 = ctx.author
user2 = ctx.author
image = await canvacord.bed(user1, user2)
file = discord.File(filename="bed.png", fp=image)
await ctx.send(file=file)
client.run("BOT_TOKEN")
Links
Downloads
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
canvacord-3.4.1.tar.gz
(11.3 kB
view details)
Built Distribution
canvacord-3.4.1-py3-none-any.whl
(19.5 kB
view details)
File details
Details for the file canvacord-3.4.1.tar.gz
.
File metadata
- Download URL: canvacord-3.4.1.tar.gz
- Upload date:
- Size: 11.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.4.2 importlib_metadata/4.6.1 pkginfo/1.7.0 requests/2.25.0 requests-toolbelt/0.9.1 tqdm/4.61.2 CPython/3.9.6
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 38d1499a2834005878aa6ddb760933addb7d63986fa7804bbcbb47ff3359361f |
|
MD5 | 4330df0787dae619b4df696aead6449a |
|
BLAKE2b-256 | 46a71c21e014ca1498820aadb4cd162f1395219db6e212fb918ebe52ac26b2b6 |
File details
Details for the file canvacord-3.4.1-py3-none-any.whl
.
File metadata
- Download URL: canvacord-3.4.1-py3-none-any.whl
- Upload date:
- Size: 19.5 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.4.2 importlib_metadata/4.6.1 pkginfo/1.7.0 requests/2.25.0 requests-toolbelt/0.9.1 tqdm/4.61.2 CPython/3.9.6
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | d22638b3aafa50f2b6d526b82eccc43b3f92c10ed1edd436a1ec6014e62dddda |
|
MD5 | 395ed666eaf11f8bc51f7d73852dd57a |
|
BLAKE2b-256 | 32a5d1be7d9a91a46dce09d9f71360109fb4ffd26456ba95b433f86f0da530ee |