mirror of
https://github.com/boticord/boticordpy.git
synced 2024-11-13 20:07:28 +03:00
50 lines
1.5 KiB
Text
50 lines
1.5 KiB
Text
|
Metadata-Version: 2.1
|
|||
|
Name: boticordpy
|
|||
|
Version: 1.3.5
|
|||
|
Summary: Simple Python Module for boticord api
|
|||
|
Home-page: https://github.com/grey-cat-1908/boticordpy
|
|||
|
Author: KerdokuCat
|
|||
|
Author-email: support@kerdoku.top
|
|||
|
License: MIT
|
|||
|
Description: <h1 align="center">Boticordpy</h1>
|
|||
|
|
|||
|
<p align="center">Модуль для работы с <a href="https://boticord.top/">Boticord</a> API</p>
|
|||
|
|
|||
|
<p align="center">
|
|||
|
|
|||
|
<img src="https://img.shields.io/pypi/dm/boticordpy" alt="">
|
|||
|
</p>
|
|||
|
|
|||
|
---
|
|||
|
* [Документация](https://boticordpy.readthedocs.io/)
|
|||
|
* [Исходный код](https://github.com/grey-cat-1908/boticordpy)
|
|||
|
---
|
|||
|
|
|||
|
### Примеры
|
|||
|
|
|||
|
Публикуем статистику нашего бота в Boticord.
|
|||
|
|
|||
|
```Python
|
|||
|
from discord.ext import commands
|
|||
|
|
|||
|
from boticordpy import BoticordClient
|
|||
|
|
|||
|
bot = commands.Bot(command_prefix="!")
|
|||
|
boticord = BoticordClient(bot, "your-boticord-token")
|
|||
|
|
|||
|
|
|||
|
@bot.event
|
|||
|
async def on_connect():
|
|||
|
stats = {"servers": len(bot.guilds), "shards": bot.shard_count, "users": len(bot.users)}
|
|||
|
await boticord.Bots.postStats(stats)
|
|||
|
|
|||
|
|
|||
|
bot.run("your-bot-token")
|
|||
|
```
|
|||
|
|
|||
|
Platform: UNKNOWN
|
|||
|
Classifier: License :: OSI Approved :: MIT License
|
|||
|
Classifier: Programming Language :: Python :: 3
|
|||
|
Classifier: Programming Language :: Python :: 3.7
|
|||
|
Description-Content-Type: text/markdown
|