Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- from pickle import dump, load
- class DataHandler:
- @staticmethod
- def save_to_file(data, filename):
- with open(filename, 'wb') as file:
- dump(data, file)
- @staticmethod
- def load_from_file(filename):
- with open(filename, 'rb') as file:
- data = load(file)
- return data
- class MyApp:
- def __init__(self):
- self.data_handler = DataHandler()
- def run(self):
- # Seu código para obter e manipular os dados
- dados = {'exemplo': [1, 2, 3, 4]}
- # Salvar dados em um arquivo
- self.data_handler.save_to_file(dados, 'dados.pkl')
- print("Dados salvos com sucesso!")
- # Carregar dados de um arquivo
- dados_carregados = self.data_handler.load_from_file('dados.pkl')
- print("Dados carregados:", dados_carregados)
- if __name__ == "__main__":
- app = MyApp()
- app.run()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement