From ea39b4ff41ef874340e3faeac4b0be7ad1e35c7b Mon Sep 17 00:00:00 2001 From: Victor Kotlin Date: Thu, 9 Sep 2021 17:34:40 +0300 Subject: [PATCH] pypi build 1.3.6 --- boticordpy.egg-info/PKG-INFO | 77 +++++++++++++++++---------------- boticordpy.egg-info/SOURCES.txt | 6 ++- 2 files changed, 45 insertions(+), 38 deletions(-) diff --git a/boticordpy.egg-info/PKG-INFO b/boticordpy.egg-info/PKG-INFO index 39d263f..e8ff6d8 100644 --- a/boticordpy.egg-info/PKG-INFO +++ b/boticordpy.egg-info/PKG-INFO @@ -1,49 +1,52 @@ Metadata-Version: 2.1 Name: boticordpy -Version: 1.3.5 +Version: 1.3.6 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:

Boticordpy

- -

Модуль для работы с Boticord API

- -

- - -

- - --- - * [Документация](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 +License-File: LICENSE.txt + +

Boticordpy

+ +

Модуль для работы с Boticord API

+ +

+ + +

+ +--- +* [Документация](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_ready(): + stats = {"servers": len(bot.guilds), "shards": bot.shard_count, "users": len(bot.users)} + await boticord.Bots.postStats(stats) + + +bot.run("your-bot-token") +``` + + diff --git a/boticordpy.egg-info/SOURCES.txt b/boticordpy.egg-info/SOURCES.txt index e1e4006..ef2ddba 100644 --- a/boticordpy.egg-info/SOURCES.txt +++ b/boticordpy.egg-info/SOURCES.txt @@ -9,4 +9,8 @@ boticordpy.egg-info/PKG-INFO boticordpy.egg-info/SOURCES.txt boticordpy.egg-info/dependency_links.txt boticordpy.egg-info/requires.txt -boticordpy.egg-info/top_level.txt \ No newline at end of file +boticordpy.egg-info/top_level.txt +boticordpy/modules/__init__.py +boticordpy/modules/bots.py +boticordpy/modules/servers.py +boticordpy/modules/users.py \ No newline at end of file