I'm trying to store a bit of data regarding the bot's conversation within a group (i.e. the bot manages kind of a text-based chat scape room and I want to save which "world" and "stage" the group is in at the time), and so I was wondering whether you can just store this little amount of data within the chat itself (instead of saving it on the bot server side*, which seems quite a lot of work for something that should be so simple).
So following this python zen philosophy, I'm trying to find a KISS way of storing that couple of values, maybe within the telegram chat itself, so that I don't need to manage any serious database on the server side in order to classify which chat things came from.
*I'm using telepot with webhook in a Flask web app.