Making A Python-telegram-bot Persistent
I recently coded a simple telegram bot using the python-telegram-bot library, and deployed this bot on Heroku. Now i'm looking for an effective way to make the bot persistent, allo
Solution 1:
I would suggest and try to implement a database for your telegram bot. This will take your bot to a next level, where you would also be able to connect a webapp to the database and add more functionality there.
To start you can try the free tier of MongoDB atlas database. You could use this database to store your data and get it when needed.
You could also look at other database solutions of course.
Post a Comment for "Making A Python-telegram-bot Persistent"