boticordpy/README.md

87 lines
2.2 KiB
Markdown
Raw Normal View History

2022-02-17 19:14:39 +03:00
<p align="center">
2022-02-17 19:15:21 +03:00
<img width="520" src="https://media.discordapp.net/attachments/929108234709639208/943873379809787964/boticordpylogo.png" alt="">
2022-02-17 19:14:39 +03:00
</p>
2021-08-24 21:20:10 +03:00
2022-02-17 19:14:39 +03:00
<p align="center">
<b>
The easiest way to use Boticord API in Python.
<span> · </span>
<a href="https://py.boticord.top/">Docs</a>
</b>
</p>
<p align="center">
<a href="https://pypi.org/project/boticordpy/"><img src="https://img.shields.io/pypi/dm/boticordpy?style=flat-square" alt=""></a>
<a href="https://pypi.org/project/boticordpy/"><img src="https://img.shields.io/pypi/v/boticordpy?style=flat-square" alt=""></a>
<a href="https://py.boticord.top/"><img src="https://img.shields.io/readthedocs/boticordpy?style=flat-square" alt=""></a>
</p>
<h2>Features</h2>
2022-02-17 19:16:17 +03:00
2022-02-17 19:14:39 +03:00
* 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.
<h2>Installation</h2>
<b>Python 3.6 or newer is required.</b>
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
<h2>Examples</h2>
You can find other examples in an examples folder.
**Discord.py Autopost example**
```py
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)
2022-02-17 19:35:54 +03:00
.start()
2022-02-17 19:14:39 +03:00
)
bot.run("bot token")
```
<h2>Links</h2>
* [PyPi](https://pypi.org/project/boticordpy)
* [Documentation](https://py.boticord.top)
* [Github](https://github.com/boticord/boticordpy)
* [Boticord](https://boticord.top/)
* [Support](https://boticord.top/boticord)
<h2>Help</h2>
2022-02-17 19:16:17 +03:00
If You need any help we recommend you to check the documentation. You can find us [here](https://boticord.top/boticord). Main developer is `Marakarka#0575`