How to Create and Deploy a Telegram Bot using Python
Nuances of Telegram Bot Development When we’ve already determined reasons for creating the bot, now it’s time to think on how we plan to organize the development process and what tools we will need. Further, we will demonstrate in practice how to create your first bot and how to teach it to turn our message inside out.
In this part, we are planning how to build the application and what development tools to use. Further, we’ll show how to build your first Telegram bot on Python and will teach it to turn our message backwards. Since it is the manual for beginners, we will run the server with a single endpoint that will receive our telegram messages and will make an answer.
For that, we will use the following tools:
bottle – for our server; a simple and lightweight WSGI micro web-framework requests – for sending requests to telegram. request lib does not need to be overrepresented. It is universally used throughout the world in a variety of projects. Note: you have to install these tools on your computer. We will need them later. For that, open your bash console and install it via pip


