123456789101112131415161718192021222324 |
- import sys
- class Constants:
- SCRIPT_VER = "3.0.7"
- PYTHON_VER = sys.version.split(' ')[0]
- CONFIG_TEMPLATE = """
- [pyinstalive]
- username = johndoe
- password = grapefruits
- download_path = {:s}
- download_lives = True
- download_replays = True
- download_comments = true
- show_cookie_expiry = True
- log_to_file = True
- ffmpeg_path =
- run_at_start =
- run_at_finish =
- use_locks = True
- clear_temp_files = False
- do_heartbeat = False
- proxy =
- """
|