Metadata-Version: 2.1
Name: hikari-utils
Version: 1.0.1
Summary: A bunch of utils for hikari
Home-page: https://github.com/saicodev1/hikari-utils
Author: palmtrww
Author-email: palmsaico@gmail.com
License: UNKNOWN
Project-URL: Bug Tracker, https://github.com/saicodev1/hikari-utils/issues
Platform: UNKNOWN
Classifier: Development Status :: 1 - Planning
Classifier: Programming Language :: Python :: 3.9
Classifier: License :: OSI Approved :: GNU General Public License v2 (GPLv2)
Classifier: Operating System :: OS Independent
Requires-Python: >=3.9
Description-Content-Type: text/markdown
License-File: LICENSE

# hikari-utils
A python package with utils for hikari

# THIS PROJECT IS STILL IN EARLY STAGES!
This project is still in early development and we will keep adding features

# Samples
## Lightbulb Bot
```python
import hutils
import hikari

bot = hutils.lightbulbbot(token="Discord Bot Token", prefix="Discord Bot Prefix", intents=hikari.Intents.ALL, insensitive=True)

bot.run()
```
## Tanjun Bot
```python
import hutils
import hikari

bot = hutils.tanjunbot(token="Discord Bot Token", guild_id=Discord Bot Guild ID, module_path="./modules")

bot.run()
```

# Note:
When you invite your bot to your server, please add the ```applications.commands``` when generating the invite link, otherwise your bot won't work.

