Skip to main content

Create discord bots in python in only 10 seconds.

Project description

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
)

Project details


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.0a0.tar.gz (3.6 kB view hashes)

Uploaded Source

Built Distribution

botCreate-1.0.0a0-py3-none-any.whl (4.0 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page