You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In this example, we'll create a simple echo bot using SwiBots. This bot will respond to any message it receives by sending the same message back to the user.
4
+
5
+
## Prerequisites
6
+
7
+
Before you begin, make sure you have:
8
+
9
+
1. Installed SwiBots (`pip install swibots`)
10
+
2. Obtained a bot token from the Switch platform
11
+
12
+
## The Code
13
+
14
+
Here's the complete code for our echo bot:
15
+
16
+
```python
17
+
from swibots import Client, BotContext, MessageEvent
0 commit comments