ArticOff / botCreate

Create discord bots in python in only 10 seconds.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Discord Downloads

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
)

About

Create discord bots in python in only 10 seconds.


Languages

Language:Python 100.0%