An API wrapper for BotiCord API written in Python
Find a file
2022-02-17 19:14:39 +03:00
boticordpy Documentation for 2.0 2022-02-17 19:14:39 +03:00
docs Documentation for 2.0 2022-02-17 19:14:39 +03:00
examples Documentation for 2.0 2022-02-17 19:14:39 +03:00
tests some models and http 2022-02-10 15:30:28 +03:00
.flake8 some models and http 2022-02-10 15:30:28 +03:00
.gitignore Documentation for 2.0 2022-02-17 19:14:39 +03:00
.readthedocs.yml Documentation for 2.0 2022-02-17 19:14:39 +03:00
conftest.py some models and http 2022-02-10 15:30:28 +03:00
docs-requirements.txt Documentation for 2.0 2022-02-17 19:14:39 +03:00
LICENSE.txt fix setup.py 2021-08-24 21:20:10 +03:00
README.md Documentation for 2.0 2022-02-17 19:14:39 +03:00
requirements.txt some models and http 2022-02-10 15:30:28 +03:00
setuo.cfg fix setup.py 2021-08-24 21:20:10 +03:00
setup.py Documentation for 2.0 2022-02-17 19:14:39 +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 Webhooks * It is not necessary to use any particular library to interact with the Discord API.

Installation

Python 3.6 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="!")


    async def get_stats():
        return {"servers": len(bot.guilds), "shards": 0, "users": len(bot.users)}


    async def on_success_posting():
        print("stats posting successfully")

    boticord_client = BoticordClient("your_api_token")
    autopost = (
        boticord_client.autopost()
        .init_stats(get_stats)
        .on_success(on_success_posting)
    )

    bot.run("bot token")

Links

Help

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