SYMBOL INDEX (52 symbols across 5 files) FILE: _archive/ps1coverdl/DuckStation-cover-downloader/covers.py function path (line 35) | def path(): function check_version (line 43) | def check_version(): function serial_list (line 52) | def serial_list(): # Get game serial function existing_covers (line 66) | def existing_covers(): function download_covers (line 74) | def download_covers(serial_list: list): # Download Covers function set_terminal_title (line 100) | def set_terminal_title(title): function run (line 105) | def run(): FILE: _archive/ps2coverdl/1.0/PCSX2 cover downloader.py function path (line 36) | def path(): function check_version (line 44) | def check_version(): function serial_list (line 53) | def serial_list(): # Get game serial function name_list (line 65) | def name_list(): # Get game name function existing_covers (line 73) | def existing_covers(): function serial_to_name (line 78) | def serial_to_name(name_list, serial:str): # Get game name using serial function download_covers (line 86) | def download_covers(serial_list:list, name_list): # Download Covers function run (line 105) | def run(): FILE: _archive/ps2coverdl/2.0/ps2coverdl.py function set_console_title (line 19) | def set_console_title(): function get_config (line 26) | def get_config(): function save_config (line 33) | def save_config(config): function get_pcsx2_file (line 42) | def get_pcsx2_file(config): function serial_list (line 60) | def serial_list(games_file): function name_list (line 79) | def name_list(games_file): function existing_covers (line 96) | def existing_covers(covers_dir): function serial_to_name (line 103) | def serial_to_name(name_list, serial): function download_covers (line 107) | def download_covers(serial_list, name_list, covers_dir, use_ssl): function run (line 149) | def run(games_file, covers_dir, use_ssl): FILE: src/gui.py function get_config_path (line 41) | def get_config_path() -> Path: class pscoverdl_gui (line 61) | class pscoverdl_gui(ctk.CTk): method __init__ (line 62) | def __init__(self): method select_frame_by_name (line 317) | def select_frame_by_name(self, name): method duckstation_button_event (line 336) | def duckstation_button_event(self): method pcsx2_button_event (line 339) | def pcsx2_button_event(self): method select_directory (line 342) | def select_directory(self, emulator: str, is_cache: bool): method load_configurations (line 365) | def load_configurations(self): method save_configurations (line 413) | def save_configurations(self): method start_download (line 435) | def start_download(self, emulator: str): method _on_download_complete (line 468) | def _on_download_complete(self): method _set_download_buttons_state (line 473) | def _set_download_buttons_state(self, state: str): method check_updates (line 480) | def check_updates(self, version: float): FILE: src/pscoverdl.py class BaseCoverDownloader (line 27) | class BaseCoverDownloader: method __init__ (line 28) | def __init__(self, cover_dir, gamelist_dir, cover_type, use_ssl, emula... method get_serial_list (line 36) | def get_serial_list(self, gamelist_cache_path, existing_covers): method existing_covers (line 58) | def existing_covers(self): method serial_to_name (line 65) | def serial_to_name(self, name_list, game_serial): method download_cover (line 68) | def download_cover(self, url, cover_path): method download (line 81) | def download(self): class PCSX2CoverDownloader (line 188) | class PCSX2CoverDownloader(BaseCoverDownloader): method __init__ (line 189) | def __init__(self, cover_dir, gamelist_dir, cover_type, use_ssl, emula... method get_name_list (line 192) | def get_name_list(self): class DuckStationCoverDownloader (line 212) | class DuckStationCoverDownloader(BaseCoverDownloader): method __init__ (line 213) | def __init__(self, cover_dir, gamelist_dir, cover_type, use_ssl, emula... method get_name_list (line 216) | def get_name_list(self): function download_covers (line 234) | def download_covers(cover_dir, gamelist_dir, cover_type, use_ssl, emulat...