Metadata-Version: 2.1
Name: pythonbot
Version: 0.3
Summary: Simple api wrapper for Python Bot
Home-page: https://github.com/FlamptX/pythonbot-api-wrapper
Author: Flampt
License: UNKNOWN
Project-URL: Python Bot, https://python-bot.web.app
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown

# Python Bot Api Wrapper
Handles messages and other events from the Python Bot api.

Messages are returned as a Message object with the content and a unique id.

When the client if defined and ran, it will start a loop that checks if there is a new message every 0.5 seconds by default.

### Example of usage
```
import pythonbot

client = pythonbot.Client()

@client.event
async def on_message(message):
    print("New message: " + message.content)

client.run()
```

