botCreate 1.0.0

Last updated:

0 purchases

botCreate 1.0.0 Image
botCreate 1.0.0 Images
Add to Cart

Description:

botCreate 1.0.0

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
)

License:

For personal and professional use. You cannot resell or redistribute these repositories in their original state.

Customer Reviews

There are no reviews.