settings.py 446 B

1234567891011121314151617181920
  1. import time
  2. import os
  3. class settings:
  4. user_to_download = ""
  5. username = ""
  6. password = ""
  7. save_path = os.getcwd()
  8. ffmpeg_path = None
  9. show_cookie_expiry = "true"
  10. clear_temp_files = "false"
  11. current_time = str(int(time.time()))
  12. current_date = time.strftime("%Y%m%d")
  13. save_replays = "true"
  14. save_lives = "true"
  15. run_at_start = "None"
  16. run_at_finish = "None"
  17. save_comments = "true"
  18. log_to_file = "false"
  19. custom_ini_path = 'pyinstalive.ini'