A sane Discord API for Python 3 built on asyncio and good intentions
Project description
Note: this API is still under active daily development, and is in a alpha stage. If you are looking to give feedback, or want to help us out, then feel free to join our Discord server and chat to us. Any help is greatly appreciated, no matter what your experience level may be! :-)
hikari
An opinionated, static typed Discord API for Python3 and asyncio.
Built on good intentions and the hope that it will be extendable and reusable, rather than an obstacle for future development.
import hikari
bot = hikari.Bot(token="...")
@bot.listen()
async def ping(event: hikari.MessageCreateEvent) -> None:
# If a non-bot user sends a message "hk.ping", respond with "Pong!"
if not event.message.author.is_bot and event.message.content.startswith("hk.ping"):
await event.message.reply("Pong!")
bot.run()
Events are determined by the type annotation on the event parameter, or
alternatively as a type passed to the @bot.listen()
decorator, if you do not
want to use type hints.
@bot.listen(hikari.MessageCreateEvent)
async def ping(event):
...
Installation
Install hikari from PyPI with the following command:
python -m pip install hikari -U --pre
# Windows users may need to run this instead...
py -3 -m pip install hikari -U --pre
Additional libraries
You may wish to use a command framework on top of Hikari so that you can start writing a bot quickly without implementing your own command handler.
Hikari does not include a command framework by default, so you will want to pick a third party library to do it.
lightbulb
- a simple and easy to use command framework for Hikari.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Hashes for hikari-2.0.0.dev60-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 2dd45636497e9d1de238d482b05bdff087f8f3c79c00072df1541119d0177229 |
|
MD5 | 2f05bc9372bc435c7b08ea03a892da66 |
|
BLAKE2b-256 | 96eb0784ea241e33df123e3c986a073070775bac15bb2918a748796a1ff04f79 |