constants.py 459 B

12345678910111213141516171819202122232425
  1. import sys
  2. class Constants:
  3. SCRIPT_VER = "3.2.4"
  4. PYTHON_VER = sys.version.split(' ')[0]
  5. CONFIG_TEMPLATE = """
  6. [pyinstalive]
  7. username = johndoe
  8. password = grapefruits
  9. download_path = {:s}
  10. download_lives = True
  11. download_replays = True
  12. download_comments = true
  13. show_cookie_expiry = True
  14. log_to_file = True
  15. ffmpeg_path =
  16. run_at_start =
  17. run_at_finish =
  18. use_locks = True
  19. clear_temp_files = False
  20. do_heartbeat = True
  21. proxy =
  22. skip_merge = False
  23. """