Create discord bots in python in only 10 seconds.
Project description
botCreate
botCreate is a module to create discord bots in python.
Installing
Type these commands in a command prompt.
# Linux/macOS
python3 -m pip install -U botCreate
# Windows
py -3 -m pip install -U botCreate
Examples
Client
import botCreate
client_type = botCreate.CLIENT
botCreate.create(
name='my super bot',
token='Token.example.123456789',
prefix='!',
type=client_type,
launch=True
)
Bot
import botCreate
bot_type = botCreate.BOT
botCreate.create(
name='my super bot',
token='Token.example.123456789',
prefix='!',
type=bot_type,
launch=True
)
Sharded bot
import botCreate
sharded_bot_type = botCreate.SHARDED_BOT
botCreate.create(
name='my super bot',
token='Token.example.123456789',
prefix='!',
type=sharded_bot_type,
launch=True
)
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
botCreate-1.0.0.tar.gz
(3.7 kB
view hashes)
Built Distribution
Close
Hashes for botCreate-1.0.0-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 0d7d149511f6a9dd20bd347817a813d6f50fc5ec0a9e111f8599f3854c40c899 |
|
MD5 | 9a9974c75464e74546eb024cf6195340 |
|
BLAKE2b-256 | 9e055ba4dc1c778017fd6c79a4cc993f45da41ea124b3fac68818eff987564c9 |