Metadata-Version: 2.1
Name: swibots
Version: 1.0.5
Summary: Switch bot api
Home-page: https://github.com/switchcollab/Switch-Bots-Python-Library
Author: switchadmin
Author-email: support@switch.pe
License: LGPLv3
Requires-Python: >=3.10
Description-Content-Type: text/markdown

![Logo](https://raw.githubusercontent.com/switchcollab/Switch-Bots-Python-Library/main/docs/static/img/switch-logo.png)
# SwiBots

Python library for switch app

Please check the [documentation](https://switchcollab.github.io/Switch-Bots-Python-Library) for more information.



# Quick start

Let's discover **SwiBots in less than 5 minutes**.

## Getting Started

You can start building your first app with SwiBots in less than 5 minutes.

1. Install swibots library

```bash
pip install swibots
```




2. Open the editor of your choice and create a python file echobot.py (or whatever name you want!), and paste the following code:

```python title="echobot.py"
from swibots import (
    BotApp,
    BotContext,
    MessageEvent
)

TOKEN = "MY SUPER SECRET TOKEN"

# initialize the app and register commands
app = BotApp(
    TOKEN, "A cool bot with annotations and everything you could possibly want :)"
)


@app.on_message()
async def message_handler(ctx: BotContext[MessageEvent]):
    # easy way to prepare a mesage that is a response of an incomming message
    m = await ctx.prepare_response_message(ctx.event.message)
    m.message = f"Thank you! I received your message: {ctx.event.message.message}"
    # send the message back to the user
    await ctx.send_message(m)


app.run()
```

3. Save your file and run it

```bash
python echobot.py
```

4. Open your switch app and send a message to the bot ```Hello world!```

5. You will receive a reply from your bot saying ```Thank you! I received your message: Hello world! ```
