An API wrapper for BotiCord API written in Python
Find a file
2023-07-04 12:51:47 +03:00
boticordpy Revert "Global listener" 2023-07-04 12:49:30 +03:00
docs Global listener? What is this? 2023-07-04 12:51:47 +03:00
examples suka, guilds or servers? 2023-07-02 22:57:41 +03:00
tests test: UserProfile convertation 2023-06-05 13:00:28 +03:00
.flake8 some models and http 2022-02-10 15:30:28 +03:00
.gitignore vs code users moment 2023-06-04 11:37:43 +03:00
.readthedocs.yml requirements fixes 2022-02-17 19:19:50 +03:00
ACKNOWLEDGEMENTS.txt migration guide 2023-06-28 10:24:41 +03:00
conftest.py some models and http 2022-02-10 15:30:28 +03:00
docs-requirements.txt update docs-requirements 2023-06-04 12:25:54 +03:00
LICENSE.txt updated setup.py 2023-06-05 13:06:50 +03:00
MIGRATION.md too 2023-07-01 13:46:02 +03:00
README.md suka, guilds or servers? 2023-07-02 22:57:41 +03:00
requirements.txt rewrited bots 2023-06-04 10:42:33 +03:00
setup.cfg fix typo 2023-06-04 18:50:22 +03:00
setup.py updated examples/autopost.py 2023-06-05 13:11:25 +03:00

The easiest way to use BotiCord API in Python. · Docs

Features

  • Object-oriented
  • Full BotiCord API Coverage
  • Modern Pythonic API using async/await syntax
  • BotiCord Websocket
  • It is not necessary to use any particular library used to interact with the Discord API.

Installation

Python 3.8 or newer is required.

Enter one of these commands to install the library:

pip install boticordpy
python3 -m pip install boticordpy

Or just clone the repo: https://github.com/boticord/boticordpy

Examples

You can find other examples in an examples folder.

Discord.py Autopost example

from discord.ext import commands
from boticordpy import BoticordClient

bot = commands.Bot(command_prefix="!")


# Function that will return the current bot's stats.
async def get_stats():
    return {"servers": len(bot.guilds), "shards": 0, "members": len(bot.users)}


# Function that will be called if stats are posted successfully.
async def on_success_posting():
    print("wow stats posting works")


boticord_client = BoticordClient(
    "your_boticord_api_token", version=3
)  # <--- BotiCord API token
autopost = (
    boticord_client.autopost()
    .init_stats(get_stats)
    .on_success(on_success_posting)
    .start("id_of_your_bot")  # <--- ID of your bot
)

bot.run("bot token")  # <--- Discord bot's token

Links

Help

If You need any help we recommend you to check the documentation. You can find us here. Main developer is Marakarka