This guide is about writing and testing interactive bots. We assume familiarity with our guide for running bots. | On this page you'll find: | The tutorial below explains the structure of a bot .py, which is the only file you need to create for a new bot. You can use this as boilerplate code for developing your own bot. | Every bot is built upon this structure: | The class name (in this case MyBotHandler) can be defined by you and should match the name of your bot. To register your bot's class, adjust the last line handler_class = MyBotHandler to match your class name.