хранить в БД. Можно еще сделать ООП хранилище
class Storage:
data: dict
def __init__(self) -> None:
self.data = {}
def set(self, name:str, value:any) -> None:
self.data[name] = value
def get(self, name:str) -> any:
return self.data[name]
# создаем экземпляр
storage = Storage()
# вводим данные
storage.set('int', 123)
storage.set('bool', False)
storage.set('str', 'striiiiiing')
storage.set('float', 0.4)
# так можно хранить объекты
storage1 = Storage()
storage1.set('test', True)
storage.set('obj', storage1)
# выводим данные
print('int', storage.get('int'))
print('float', storage.get('float'))
print('str', storage.get('str'))
teststorage = storage.get('obj')
print('obj', teststorage.get('test'))
print('bool', storage.get('bool'))
вывод:
int 123
float 0.4
str striiiiiing
obj True
bool False