Advertisement
Rnery

getting variables, example..

Dec 27th, 2023
947
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.90 KB | Source Code | 0 0
  1. from pickle import dump, load
  2.  
  3. class DataHandler:
  4.     @staticmethod
  5.     def save_to_file(data, filename):
  6.         with open(filename, 'wb') as file:
  7.             dump(data, file)
  8.  
  9.     @staticmethod
  10.     def load_from_file(filename):
  11.         with open(filename, 'rb') as file:
  12.             data = load(file)
  13.         return data
  14.  
  15. class MyApp:
  16.     def __init__(self):
  17.         self.data_handler = DataHandler()
  18.  
  19.     def run(self):
  20.         # Seu código para obter e manipular os dados
  21.         dados = {'exemplo': [1, 2, 3, 4]}
  22.  
  23.         # Salvar dados em um arquivo
  24.         self.data_handler.save_to_file(dados, 'dados.pkl')
  25.         print("Dados salvos com sucesso!")
  26.  
  27.         # Carregar dados de um arquivo
  28.         dados_carregados = self.data_handler.load_from_file('dados.pkl')
  29.         print("Dados carregados:", dados_carregados)
  30.  
  31. if __name__ == "__main__":
  32.     app = MyApp()
  33.     app.run()
  34.  
Tags: python python3
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement