mirror of
https://github.com/boticord/boticordpy.git
synced 2024-11-11 19:07:29 +03:00
Delete boticordpy.egg-info directory
This commit is contained in:
parent
5264def182
commit
26ebe1b79b
5 changed files with 0 additions and 105 deletions
|
@ -1,84 +0,0 @@
|
||||||
Metadata-Version: 2.1
|
|
||||||
Name: boticordpy
|
|
||||||
Version: 1.4
|
|
||||||
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
|
|
||||||
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
|
|
||||||
|
|
||||||
<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)
|
|
||||||
---
|
|
||||||
|
|
||||||
### Примеры
|
|
||||||
|
|
||||||
#### Без Когов
|
|
||||||
Публикуем статистику при запуске бота.
|
|
||||||
|
|
||||||
```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")
|
|
||||||
```
|
|
||||||
|
|
||||||
#### С Когами
|
|
||||||
|
|
||||||
Ког с автоматической публикацией статистики раз в 15 минут + команда для публикации статистики для владельца бота.
|
|
||||||
|
|
||||||
```python
|
|
||||||
from discord.ext import commands
|
|
||||||
|
|
||||||
from boticordpy import BoticordClient
|
|
||||||
|
|
||||||
|
|
||||||
class BoticordCog(commands.Cog):
|
|
||||||
def __init__(self, bot):
|
|
||||||
self.bot = bot
|
|
||||||
self.boticord = BoticordClient(self.bot, "your-boticord-token")
|
|
||||||
self.boticord.start_loop()
|
|
||||||
|
|
||||||
@commands.command(name="boticord-update")
|
|
||||||
@commands.is_owner()
|
|
||||||
async def boticord_update(self, ctx):
|
|
||||||
"""
|
|
||||||
This commands can be used by owner to post stats to boticord
|
|
||||||
"""
|
|
||||||
stats = {"servers": len(self.bot.guilds), "shards": 0, "users": len(self.bot.users)}
|
|
||||||
await self.boticord.Bots.postStats(stats)
|
|
||||||
|
|
||||||
|
|
||||||
def setup(bot):
|
|
||||||
bot.add_cog(BoticordCog(bot))
|
|
||||||
|
|
||||||
```
|
|
||||||
|
|
||||||
|
|
|
@ -1,17 +0,0 @@
|
||||||
LICENSE.txt
|
|
||||||
README.md
|
|
||||||
setup.py
|
|
||||||
boticordpy/__init__.py
|
|
||||||
boticordpy/client.py
|
|
||||||
boticordpy/config.py
|
|
||||||
boticordpy/exceptions.py
|
|
||||||
boticordpy/webhook.py
|
|
||||||
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
|
|
||||||
boticordpy/modules/__init__.py
|
|
||||||
boticordpy/modules/bots.py
|
|
||||||
boticordpy/modules/servers.py
|
|
||||||
boticordpy/modules/users.py
|
|
|
@ -1 +0,0 @@
|
||||||
|
|
|
@ -1,2 +0,0 @@
|
||||||
discord.py
|
|
||||||
aiohttp
|
|
|
@ -1 +0,0 @@
|
||||||
boticordpy
|
|
Loading…
Reference in a new issue