Goodbye readchar
This commit is contained in:
parent
845ce2c622
commit
66d5032085
12 changed files with 480 additions and 3641 deletions
|
|
@ -6,8 +6,7 @@ import sys
|
|||
import random
|
||||
import re
|
||||
import queue
|
||||
import readchar
|
||||
#import winpty
|
||||
#import readchar
|
||||
import ctypes
|
||||
import subprocess
|
||||
|
||||
|
|
@ -308,43 +307,6 @@ def change_mode():
|
|||
send_command(pty_proc,f"echo _musicmode {current_mode}")
|
||||
playlist = load_playlist(playlist_path)
|
||||
|
||||
#def adjust_volume(up=True):
|
||||
# global volume
|
||||
# volume = min(1.0, max(0.0, volume + (VOLUME_STEP if up else -VOLUME_STEP)))
|
||||
# pygame.mixer.music.set_volume(volume)
|
||||
# print(f"[DEBUG] Volume: {volume:.2f}")
|
||||
# ==========================================================
|
||||
|
||||
# ==================== QUAKE MONITOR ======================
|
||||
# def monitor_game(pty_proc):
|
||||
# #pty version
|
||||
# global serverstatus_sent
|
||||
|
||||
# buffer = ""
|
||||
|
||||
# while not stop_flag.is_set() or shutdown_event.is_set():
|
||||
# try:
|
||||
# data = pty_proc.read(1024)
|
||||
# if not data:
|
||||
# break
|
||||
|
||||
# # Normalize to string
|
||||
# if isinstance(data, bytes):
|
||||
# data = data.decode(errors="ignore")
|
||||
|
||||
# buffer += data
|
||||
|
||||
# while "\n" in buffer:
|
||||
# line, buffer = buffer.split("\n", 1)
|
||||
# line = strip_ansi(line).strip()
|
||||
# if line:
|
||||
# #print(f"[GAME] {line}")
|
||||
# #print(f"[GAME RAW] {repr(line)}")
|
||||
# handle_game_line(line, pty_proc)
|
||||
|
||||
# except EOFError or KeyboardInterrupt:
|
||||
# break
|
||||
|
||||
def monitor_game(proc):
|
||||
#subprocess version
|
||||
global serverstatus_sent
|
||||
|
|
@ -369,7 +331,6 @@ def monitor_game(proc):
|
|||
handle_game_line(line, proc)
|
||||
|
||||
|
||||
|
||||
def handle_game_line(line, pty_proc):
|
||||
global volume, current_map, ra3_maps, ra3_maps_path, volumecheck, is_ra3, gametypecheck, is_playing, arenacheck, is_in_map, is_ra3_map, last_arena0
|
||||
global serverstatus_sent
|
||||
|
|
@ -478,15 +439,6 @@ def handle_game_line(line, pty_proc):
|
|||
threading.Timer(.3, lambda: stop_playback()).start()
|
||||
#stop_playback()
|
||||
|
||||
# def send_command(pty_proc, cmd):
|
||||
# # winpty version
|
||||
# try:
|
||||
# pty_proc.write(cmd + "\r\n")
|
||||
# pty_proc.flush()
|
||||
# #print(f"[DEBUG] Sent command: {cmd}")
|
||||
# except Exception as e:
|
||||
# print(f"[DEBUG] Failed to send command: {e}")
|
||||
|
||||
def send_command(proc, cmd):
|
||||
#subprocess version
|
||||
try:
|
||||
|
|
@ -497,19 +449,19 @@ def send_command(proc, cmd):
|
|||
|
||||
# ==========================================================
|
||||
|
||||
# ==================== KEYBOARD HANDLER ===================
|
||||
def keyboard_listener():
|
||||
while not stop_flag.is_set():
|
||||
key = readchar.readkey()
|
||||
if key.lower() == '[':
|
||||
previous_track()
|
||||
elif key.lower() == ']':
|
||||
next_track()
|
||||
elif key == '\'':
|
||||
toggle_pause()
|
||||
elif key == '\\':
|
||||
change_mode()
|
||||
# ==========================================================
|
||||
# # ==================== KEYBOARD HANDLER ===================
|
||||
# def keyboard_listener():
|
||||
# while not stop_flag.is_set():
|
||||
# key = readchar.readkey()
|
||||
# if key.lower() == '[':
|
||||
# previous_track()
|
||||
# elif key.lower() == ']':
|
||||
# next_track()
|
||||
# elif key == '\'':
|
||||
# toggle_pause()
|
||||
# elif key == '\\':
|
||||
# change_mode()
|
||||
# # ==========================================================
|
||||
|
||||
# ======================== MAIN ===========================
|
||||
def main():
|
||||
|
|
@ -548,15 +500,7 @@ def main():
|
|||
# Start track watcher thread
|
||||
watcher_thread = threading.Thread(target=track_watcher, daemon=True)
|
||||
watcher_thread.start()
|
||||
|
||||
# # Launch quake process via PTY
|
||||
# try:
|
||||
# pty_proc = winpty.PtyProcess.spawn([game_exe, "--showterminalconsole",] + sys.argv[1:] )
|
||||
# except Exception as e:
|
||||
# print(f"Failed to start game: {e}")
|
||||
# return
|
||||
|
||||
|
||||
|
||||
# # Launch quake process via subprocess
|
||||
pty_proc = subprocess.Popen(
|
||||
[game_exe, "--showterminalconsole"] + sys.argv[1:],
|
||||
|
|
|
|||
|
|
@ -6,8 +6,6 @@ binaries = []
|
|||
hiddenimports = []
|
||||
tmp_ret = collect_all('readchar')
|
||||
datas += tmp_ret[0]; binaries += tmp_ret[1]; hiddenimports += tmp_ret[2]
|
||||
tmp_ret = collect_all('winpty')
|
||||
datas += tmp_ret[0]; binaries += tmp_ret[1]; hiddenimports += tmp_ret[2]
|
||||
|
||||
|
||||
a = Analysis(
|
||||
|
|
|
|||
|
|
@ -1 +1 @@
|
|||
pyinstaller --onefile --name RA3WITHMP3 --icon=quake3modern.ico --collect-all readchar --collect-all winpty RA3MP3Playback.py
|
||||
pyinstaller --onefile --name RA3WITHMP3 --icon=quake3modern.ico --collect-all readchar RA3MP3Playback.py
|
||||
File diff suppressed because it is too large
Load diff
|
|
@ -52,15 +52,6 @@
|
|||
('pyiboot01_bootstrap',
|
||||
'C:\\Users\\Ed\\AppData\\Local\\Programs\\Python\\Python39\\lib\\site-packages\\PyInstaller\\loader\\pyiboot01_bootstrap.py',
|
||||
'PYSOURCE'),
|
||||
('pyi_rth_pkgutil',
|
||||
'C:\\Users\\Ed\\AppData\\Local\\Programs\\Python\\Python39\\Lib\\site-packages\\PyInstaller\\hooks\\rthooks\\pyi_rth_pkgutil.py',
|
||||
'PYSOURCE'),
|
||||
('pyi_rth_inspect',
|
||||
'C:\\Users\\Ed\\AppData\\Local\\Programs\\Python\\Python39\\Lib\\site-packages\\PyInstaller\\hooks\\rthooks\\pyi_rth_inspect.py',
|
||||
'PYSOURCE'),
|
||||
('pyi_rth_multiprocessing',
|
||||
'C:\\Users\\Ed\\AppData\\Local\\Programs\\Python\\Python39\\Lib\\site-packages\\PyInstaller\\hooks\\rthooks\\pyi_rth_multiprocessing.py',
|
||||
'PYSOURCE'),
|
||||
('pyi_rth_pkgres',
|
||||
'C:\\Users\\Ed\\AppData\\Local\\Programs\\Python\\Python39\\Lib\\site-packages\\PyInstaller\\hooks\\rthooks\\pyi_rth_pkgres.py',
|
||||
'PYSOURCE'),
|
||||
|
|
@ -70,78 +61,69 @@
|
|||
('pyi_rth_pythoncom',
|
||||
'C:\\Users\\Ed\\AppData\\Local\\Programs\\Python\\Python39\\Lib\\site-packages\\_pyinstaller_hooks_contrib\\rthooks\\pyi_rth_pythoncom.py',
|
||||
'PYSOURCE'),
|
||||
('pyi_rth_inspect',
|
||||
'C:\\Users\\Ed\\AppData\\Local\\Programs\\Python\\Python39\\Lib\\site-packages\\PyInstaller\\hooks\\rthooks\\pyi_rth_inspect.py',
|
||||
'PYSOURCE'),
|
||||
('pyi_rth_pkgutil',
|
||||
'C:\\Users\\Ed\\AppData\\Local\\Programs\\Python\\Python39\\Lib\\site-packages\\PyInstaller\\hooks\\rthooks\\pyi_rth_pkgutil.py',
|
||||
'PYSOURCE'),
|
||||
('RA3MP3Playback',
|
||||
'C:\\Users\\Ed\\source\\repos\\RA3MP3Playback\\RA3MP3Playback.py',
|
||||
'PYSOURCE'),
|
||||
('winpty\\OpenConsole.exe',
|
||||
'C:\\Users\\Ed\\AppData\\Local\\Programs\\Python\\Python39\\lib\\site-packages\\winpty\\OpenConsole.exe',
|
||||
'BINARY'),
|
||||
('winpty\\conpty.dll',
|
||||
'C:\\Users\\Ed\\AppData\\Local\\Programs\\Python\\Python39\\lib\\site-packages\\winpty\\conpty.dll',
|
||||
'BINARY'),
|
||||
('winpty\\winpty-agent.exe',
|
||||
'C:\\Users\\Ed\\AppData\\Local\\Programs\\Python\\Python39\\lib\\site-packages\\winpty\\winpty-agent.exe',
|
||||
'BINARY'),
|
||||
('winpty\\winpty.dll',
|
||||
'C:\\Users\\Ed\\AppData\\Local\\Programs\\Python\\Python39\\lib\\site-packages\\winpty\\winpty.dll',
|
||||
'BINARY'),
|
||||
('python39.dll',
|
||||
'C:\\Users\\Ed\\AppData\\Local\\Programs\\Python\\Python39\\python39.dll',
|
||||
'BINARY'),
|
||||
('libopusfile-0.dll',
|
||||
'C:\\Users\\Ed\\AppData\\Local\\Programs\\Python\\Python39\\lib\\site-packages\\pygame\\libopusfile-0.dll',
|
||||
'BINARY'),
|
||||
('zlib1.dll',
|
||||
'C:\\Users\\Ed\\AppData\\Local\\Programs\\Python\\Python39\\lib\\site-packages\\pygame\\zlib1.dll',
|
||||
'BINARY'),
|
||||
('libpng16-16.dll',
|
||||
'C:\\Users\\Ed\\AppData\\Local\\Programs\\Python\\Python39\\lib\\site-packages\\pygame\\libpng16-16.dll',
|
||||
'BINARY'),
|
||||
('SDL2_mixer.dll',
|
||||
'C:\\Users\\Ed\\AppData\\Local\\Programs\\Python\\Python39\\lib\\site-packages\\pygame\\SDL2_mixer.dll',
|
||||
'BINARY'),
|
||||
('SDL2_image.dll',
|
||||
'C:\\Users\\Ed\\AppData\\Local\\Programs\\Python\\Python39\\lib\\site-packages\\pygame\\SDL2_image.dll',
|
||||
'BINARY'),
|
||||
('libmodplug-1.dll',
|
||||
'C:\\Users\\Ed\\AppData\\Local\\Programs\\Python\\Python39\\lib\\site-packages\\pygame\\libmodplug-1.dll',
|
||||
'BINARY'),
|
||||
('libogg-0.dll',
|
||||
'C:\\Users\\Ed\\AppData\\Local\\Programs\\Python\\Python39\\lib\\site-packages\\pygame\\libogg-0.dll',
|
||||
'BINARY'),
|
||||
('libjpeg-9.dll',
|
||||
'C:\\Users\\Ed\\AppData\\Local\\Programs\\Python\\Python39\\lib\\site-packages\\pygame\\libjpeg-9.dll',
|
||||
'BINARY'),
|
||||
('SDL2.dll',
|
||||
'C:\\Users\\Ed\\AppData\\Local\\Programs\\Python\\Python39\\lib\\site-packages\\pygame\\SDL2.dll',
|
||||
('libtiff-5.dll',
|
||||
'C:\\Users\\Ed\\AppData\\Local\\Programs\\Python\\Python39\\lib\\site-packages\\pygame\\libtiff-5.dll',
|
||||
'BINARY'),
|
||||
('SDL2_ttf.dll',
|
||||
'C:\\Users\\Ed\\AppData\\Local\\Programs\\Python\\Python39\\lib\\site-packages\\pygame\\SDL2_ttf.dll',
|
||||
('libmodplug-1.dll',
|
||||
'C:\\Users\\Ed\\AppData\\Local\\Programs\\Python\\Python39\\lib\\site-packages\\pygame\\libmodplug-1.dll',
|
||||
'BINARY'),
|
||||
('libwebp-7.dll',
|
||||
'C:\\Users\\Ed\\AppData\\Local\\Programs\\Python\\Python39\\lib\\site-packages\\pygame\\libwebp-7.dll',
|
||||
'BINARY'),
|
||||
('libopus-0.dll',
|
||||
'C:\\Users\\Ed\\AppData\\Local\\Programs\\Python\\Python39\\lib\\site-packages\\pygame\\libopus-0.dll',
|
||||
('SDL2_ttf.dll',
|
||||
'C:\\Users\\Ed\\AppData\\Local\\Programs\\Python\\Python39\\lib\\site-packages\\pygame\\SDL2_ttf.dll',
|
||||
'BINARY'),
|
||||
('freetype.dll',
|
||||
'C:\\Users\\Ed\\AppData\\Local\\Programs\\Python\\Python39\\lib\\site-packages\\pygame\\freetype.dll',
|
||||
'BINARY'),
|
||||
('libtiff-5.dll',
|
||||
'C:\\Users\\Ed\\AppData\\Local\\Programs\\Python\\Python39\\lib\\site-packages\\pygame\\libtiff-5.dll',
|
||||
('libogg-0.dll',
|
||||
'C:\\Users\\Ed\\AppData\\Local\\Programs\\Python\\Python39\\lib\\site-packages\\pygame\\libogg-0.dll',
|
||||
'BINARY'),
|
||||
('portmidi.dll',
|
||||
'C:\\Users\\Ed\\AppData\\Local\\Programs\\Python\\Python39\\lib\\site-packages\\pygame\\portmidi.dll',
|
||||
'BINARY'),
|
||||
('SDL2_mixer.dll',
|
||||
'C:\\Users\\Ed\\AppData\\Local\\Programs\\Python\\Python39\\lib\\site-packages\\pygame\\SDL2_mixer.dll',
|
||||
'BINARY'),
|
||||
('zlib1.dll',
|
||||
'C:\\Users\\Ed\\AppData\\Local\\Programs\\Python\\Python39\\lib\\site-packages\\pygame\\zlib1.dll',
|
||||
'BINARY'),
|
||||
('libopusfile-0.dll',
|
||||
'C:\\Users\\Ed\\AppData\\Local\\Programs\\Python\\Python39\\lib\\site-packages\\pygame\\libopusfile-0.dll',
|
||||
'BINARY'),
|
||||
('libpng16-16.dll',
|
||||
'C:\\Users\\Ed\\AppData\\Local\\Programs\\Python\\Python39\\lib\\site-packages\\pygame\\libpng16-16.dll',
|
||||
'BINARY'),
|
||||
('libopus-0.dll',
|
||||
'C:\\Users\\Ed\\AppData\\Local\\Programs\\Python\\Python39\\lib\\site-packages\\pygame\\libopus-0.dll',
|
||||
'BINARY'),
|
||||
('SDL2.dll',
|
||||
'C:\\Users\\Ed\\AppData\\Local\\Programs\\Python\\Python39\\lib\\site-packages\\pygame\\SDL2.dll',
|
||||
'BINARY'),
|
||||
('SDL2_image.dll',
|
||||
'C:\\Users\\Ed\\AppData\\Local\\Programs\\Python\\Python39\\lib\\site-packages\\pygame\\SDL2_image.dll',
|
||||
'BINARY'),
|
||||
('pywin32_system32\\pywintypes39.dll',
|
||||
'C:\\Users\\Ed\\AppData\\Local\\Programs\\Python\\Python39\\lib\\site-packages\\pywin32_system32\\pywintypes39.dll',
|
||||
'BINARY'),
|
||||
('pywin32_system32\\pythoncom39.dll',
|
||||
'C:\\Users\\Ed\\AppData\\Local\\Programs\\Python\\Python39\\lib\\site-packages\\pywin32_system32\\pythoncom39.dll',
|
||||
'BINARY'),
|
||||
('select.pyd',
|
||||
'C:\\Users\\Ed\\AppData\\Local\\Programs\\Python\\Python39\\DLLs\\select.pyd',
|
||||
'EXTENSION'),
|
||||
('_lzma.pyd',
|
||||
'C:\\Users\\Ed\\AppData\\Local\\Programs\\Python\\Python39\\DLLs\\_lzma.pyd',
|
||||
'EXTENSION'),
|
||||
|
|
@ -151,6 +133,9 @@
|
|||
('unicodedata.pyd',
|
||||
'C:\\Users\\Ed\\AppData\\Local\\Programs\\Python\\Python39\\DLLs\\unicodedata.pyd',
|
||||
'EXTENSION'),
|
||||
('select.pyd',
|
||||
'C:\\Users\\Ed\\AppData\\Local\\Programs\\Python\\Python39\\DLLs\\select.pyd',
|
||||
'EXTENSION'),
|
||||
('_socket.pyd',
|
||||
'C:\\Users\\Ed\\AppData\\Local\\Programs\\Python\\Python39\\DLLs\\_socket.pyd',
|
||||
'EXTENSION'),
|
||||
|
|
@ -184,21 +169,6 @@
|
|||
('pyexpat.pyd',
|
||||
'C:\\Users\\Ed\\AppData\\Local\\Programs\\Python\\Python39\\DLLs\\pyexpat.pyd',
|
||||
'EXTENSION'),
|
||||
('_multiprocessing.pyd',
|
||||
'C:\\Users\\Ed\\AppData\\Local\\Programs\\Python\\Python39\\DLLs\\_multiprocessing.pyd',
|
||||
'EXTENSION'),
|
||||
('_decimal.pyd',
|
||||
'C:\\Users\\Ed\\AppData\\Local\\Programs\\Python\\Python39\\DLLs\\_decimal.pyd',
|
||||
'EXTENSION'),
|
||||
('winpty\\winpty.cp39-win_amd64.pyd',
|
||||
'C:\\Users\\Ed\\AppData\\Local\\Programs\\Python\\Python39\\lib\\site-packages\\winpty\\winpty.cp39-win_amd64.pyd',
|
||||
'EXTENSION'),
|
||||
('_overlapped.pyd',
|
||||
'C:\\Users\\Ed\\AppData\\Local\\Programs\\Python\\Python39\\DLLs\\_overlapped.pyd',
|
||||
'EXTENSION'),
|
||||
('_asyncio.pyd',
|
||||
'C:\\Users\\Ed\\AppData\\Local\\Programs\\Python\\Python39\\DLLs\\_asyncio.pyd',
|
||||
'EXTENSION'),
|
||||
('pygame\\imageext.cp39-win_amd64.pyd',
|
||||
'C:\\Users\\Ed\\AppData\\Local\\Programs\\Python\\Python39\\lib\\site-packages\\pygame\\imageext.cp39-win_amd64.pyd',
|
||||
'EXTENSION'),
|
||||
|
|
@ -286,17 +256,14 @@
|
|||
('_queue.pyd',
|
||||
'C:\\Users\\Ed\\AppData\\Local\\Programs\\Python\\Python39\\DLLs\\_queue.pyd',
|
||||
'EXTENSION'),
|
||||
('D3DCOMPILER_47.dll',
|
||||
'C:\\Program Files\\Oculus\\Support\\oculus-runtime\\D3DCOMPILER_47.dll',
|
||||
'BINARY'),
|
||||
('_decimal.pyd',
|
||||
'C:\\Users\\Ed\\AppData\\Local\\Programs\\Python\\Python39\\DLLs\\_decimal.pyd',
|
||||
'EXTENSION'),
|
||||
('VCRUNTIME140.dll',
|
||||
'C:\\Users\\Ed\\AppData\\Local\\Programs\\Python\\Python39\\VCRUNTIME140.dll',
|
||||
'BINARY'),
|
||||
('pygame\\libogg-0.dll',
|
||||
'C:\\Users\\Ed\\AppData\\Local\\Programs\\Python\\Python39\\lib\\site-packages\\pygame\\libogg-0.dll',
|
||||
'BINARY'),
|
||||
('pygame\\libopus-0.dll',
|
||||
'C:\\Users\\Ed\\AppData\\Local\\Programs\\Python\\Python39\\lib\\site-packages\\pygame\\libopus-0.dll',
|
||||
('pygame\\libjpeg-9.dll',
|
||||
'C:\\Users\\Ed\\AppData\\Local\\Programs\\Python\\Python39\\lib\\site-packages\\pygame\\libjpeg-9.dll',
|
||||
'BINARY'),
|
||||
('pygame\\zlib1.dll',
|
||||
'C:\\Users\\Ed\\AppData\\Local\\Programs\\Python\\Python39\\lib\\site-packages\\pygame\\zlib1.dll',
|
||||
|
|
@ -304,8 +271,11 @@
|
|||
('pygame\\SDL2.dll',
|
||||
'C:\\Users\\Ed\\AppData\\Local\\Programs\\Python\\Python39\\lib\\site-packages\\pygame\\SDL2.dll',
|
||||
'BINARY'),
|
||||
('pygame\\libjpeg-9.dll',
|
||||
'C:\\Users\\Ed\\AppData\\Local\\Programs\\Python\\Python39\\lib\\site-packages\\pygame\\libjpeg-9.dll',
|
||||
('pygame\\libopus-0.dll',
|
||||
'C:\\Users\\Ed\\AppData\\Local\\Programs\\Python\\Python39\\lib\\site-packages\\pygame\\libopus-0.dll',
|
||||
'BINARY'),
|
||||
('pygame\\libogg-0.dll',
|
||||
'C:\\Users\\Ed\\AppData\\Local\\Programs\\Python\\Python39\\lib\\site-packages\\pygame\\libogg-0.dll',
|
||||
'BINARY'),
|
||||
('VCRUNTIME140_1.dll',
|
||||
'C:\\Users\\Ed\\AppData\\Local\\Programs\\Python\\Python39\\VCRUNTIME140_1.dll',
|
||||
|
|
@ -337,24 +307,6 @@
|
|||
('libffi-7.dll',
|
||||
'C:\\Users\\Ed\\AppData\\Local\\Programs\\Python\\Python39\\DLLs\\libffi-7.dll',
|
||||
'BINARY'),
|
||||
('pywinpty-3.0.2.dist-info\\INSTALLER',
|
||||
'C:\\Users\\Ed\\AppData\\Local\\Programs\\Python\\Python39\\lib\\site-packages\\pywinpty-3.0.2.dist-info\\INSTALLER',
|
||||
'DATA'),
|
||||
('pywinpty-3.0.2.dist-info\\METADATA',
|
||||
'C:\\Users\\Ed\\AppData\\Local\\Programs\\Python\\Python39\\lib\\site-packages\\pywinpty-3.0.2.dist-info\\METADATA',
|
||||
'DATA'),
|
||||
('pywinpty-3.0.2.dist-info\\RECORD',
|
||||
'C:\\Users\\Ed\\AppData\\Local\\Programs\\Python\\Python39\\lib\\site-packages\\pywinpty-3.0.2.dist-info\\RECORD',
|
||||
'DATA'),
|
||||
('pywinpty-3.0.2.dist-info\\REQUESTED',
|
||||
'C:\\Users\\Ed\\AppData\\Local\\Programs\\Python\\Python39\\lib\\site-packages\\pywinpty-3.0.2.dist-info\\REQUESTED',
|
||||
'DATA'),
|
||||
('pywinpty-3.0.2.dist-info\\WHEEL',
|
||||
'C:\\Users\\Ed\\AppData\\Local\\Programs\\Python\\Python39\\lib\\site-packages\\pywinpty-3.0.2.dist-info\\WHEEL',
|
||||
'DATA'),
|
||||
('pywinpty-3.0.2.dist-info\\licenses\\LICENSE.txt',
|
||||
'C:\\Users\\Ed\\AppData\\Local\\Programs\\Python\\Python39\\lib\\site-packages\\pywinpty-3.0.2.dist-info\\licenses\\LICENSE.txt',
|
||||
'DATA'),
|
||||
('readchar-4.2.1.dist-info\\INSTALLER',
|
||||
'C:\\Users\\Ed\\AppData\\Local\\Programs\\Python\\Python39\\lib\\site-packages\\readchar-4.2.1.dist-info\\INSTALLER',
|
||||
'DATA'),
|
||||
|
|
@ -403,40 +355,19 @@
|
|||
('readchar\\py.typed',
|
||||
'C:\\Users\\Ed\\AppData\\Local\\Programs\\Python\\Python39\\lib\\site-packages\\readchar\\py.typed',
|
||||
'DATA'),
|
||||
('winpty\\__init__.py',
|
||||
'C:\\Users\\Ed\\AppData\\Local\\Programs\\Python\\Python39\\lib\\site-packages\\winpty\\__init__.py',
|
||||
'DATA'),
|
||||
('winpty\\enums.py',
|
||||
'C:\\Users\\Ed\\AppData\\Local\\Programs\\Python\\Python39\\lib\\site-packages\\winpty\\enums.py',
|
||||
'DATA'),
|
||||
('winpty\\ptyprocess.py',
|
||||
'C:\\Users\\Ed\\AppData\\Local\\Programs\\Python\\Python39\\lib\\site-packages\\winpty\\ptyprocess.py',
|
||||
'DATA'),
|
||||
('winpty\\tests\\__init__.py',
|
||||
'C:\\Users\\Ed\\AppData\\Local\\Programs\\Python\\Python39\\lib\\site-packages\\winpty\\tests\\__init__.py',
|
||||
'DATA'),
|
||||
('winpty\\tests\\test_pty.py',
|
||||
'C:\\Users\\Ed\\AppData\\Local\\Programs\\Python\\Python39\\lib\\site-packages\\winpty\\tests\\test_pty.py',
|
||||
'DATA'),
|
||||
('winpty\\tests\\test_ptyprocess.py',
|
||||
'C:\\Users\\Ed\\AppData\\Local\\Programs\\Python\\Python39\\lib\\site-packages\\winpty\\tests\\test_ptyprocess.py',
|
||||
'DATA'),
|
||||
('winpty\\winpty.pyi',
|
||||
'C:\\Users\\Ed\\AppData\\Local\\Programs\\Python\\Python39\\lib\\site-packages\\winpty\\winpty.pyi',
|
||||
('pygame\\pygame_icon.bmp',
|
||||
'C:\\Users\\Ed\\AppData\\Local\\Programs\\Python\\Python39\\lib\\site-packages\\pygame\\pygame_icon.bmp',
|
||||
'DATA'),
|
||||
('pygame\\freesansbold.ttf',
|
||||
'C:\\Users\\Ed\\AppData\\Local\\Programs\\Python\\Python39\\lib\\site-packages\\pygame\\freesansbold.ttf',
|
||||
'DATA'),
|
||||
('pygame\\pygame_icon.bmp',
|
||||
'C:\\Users\\Ed\\AppData\\Local\\Programs\\Python\\Python39\\lib\\site-packages\\pygame\\pygame_icon.bmp',
|
||||
'DATA'),
|
||||
('base_library.zip',
|
||||
'C:\\Users\\Ed\\source\\repos\\RA3MP3Playback\\build\\RA3WITHMP3\\base_library.zip',
|
||||
'DATA')],
|
||||
[],
|
||||
False,
|
||||
False,
|
||||
1767923557,
|
||||
1768081547,
|
||||
[('run.exe',
|
||||
'C:\\Users\\Ed\\AppData\\Local\\Programs\\Python\\Python39\\lib\\site-packages\\PyInstaller\\bootloader\\Windows-64bit-intel\\run.exe',
|
||||
'EXECUTABLE')],
|
||||
|
|
|
|||
|
|
@ -30,15 +30,6 @@
|
|||
('pyiboot01_bootstrap',
|
||||
'C:\\Users\\Ed\\AppData\\Local\\Programs\\Python\\Python39\\lib\\site-packages\\PyInstaller\\loader\\pyiboot01_bootstrap.py',
|
||||
'PYSOURCE'),
|
||||
('pyi_rth_pkgutil',
|
||||
'C:\\Users\\Ed\\AppData\\Local\\Programs\\Python\\Python39\\Lib\\site-packages\\PyInstaller\\hooks\\rthooks\\pyi_rth_pkgutil.py',
|
||||
'PYSOURCE'),
|
||||
('pyi_rth_inspect',
|
||||
'C:\\Users\\Ed\\AppData\\Local\\Programs\\Python\\Python39\\Lib\\site-packages\\PyInstaller\\hooks\\rthooks\\pyi_rth_inspect.py',
|
||||
'PYSOURCE'),
|
||||
('pyi_rth_multiprocessing',
|
||||
'C:\\Users\\Ed\\AppData\\Local\\Programs\\Python\\Python39\\Lib\\site-packages\\PyInstaller\\hooks\\rthooks\\pyi_rth_multiprocessing.py',
|
||||
'PYSOURCE'),
|
||||
('pyi_rth_pkgres',
|
||||
'C:\\Users\\Ed\\AppData\\Local\\Programs\\Python\\Python39\\Lib\\site-packages\\PyInstaller\\hooks\\rthooks\\pyi_rth_pkgres.py',
|
||||
'PYSOURCE'),
|
||||
|
|
@ -48,78 +39,69 @@
|
|||
('pyi_rth_pythoncom',
|
||||
'C:\\Users\\Ed\\AppData\\Local\\Programs\\Python\\Python39\\Lib\\site-packages\\_pyinstaller_hooks_contrib\\rthooks\\pyi_rth_pythoncom.py',
|
||||
'PYSOURCE'),
|
||||
('pyi_rth_inspect',
|
||||
'C:\\Users\\Ed\\AppData\\Local\\Programs\\Python\\Python39\\Lib\\site-packages\\PyInstaller\\hooks\\rthooks\\pyi_rth_inspect.py',
|
||||
'PYSOURCE'),
|
||||
('pyi_rth_pkgutil',
|
||||
'C:\\Users\\Ed\\AppData\\Local\\Programs\\Python\\Python39\\Lib\\site-packages\\PyInstaller\\hooks\\rthooks\\pyi_rth_pkgutil.py',
|
||||
'PYSOURCE'),
|
||||
('RA3MP3Playback',
|
||||
'C:\\Users\\Ed\\source\\repos\\RA3MP3Playback\\RA3MP3Playback.py',
|
||||
'PYSOURCE'),
|
||||
('winpty\\OpenConsole.exe',
|
||||
'C:\\Users\\Ed\\AppData\\Local\\Programs\\Python\\Python39\\lib\\site-packages\\winpty\\OpenConsole.exe',
|
||||
'BINARY'),
|
||||
('winpty\\conpty.dll',
|
||||
'C:\\Users\\Ed\\AppData\\Local\\Programs\\Python\\Python39\\lib\\site-packages\\winpty\\conpty.dll',
|
||||
'BINARY'),
|
||||
('winpty\\winpty-agent.exe',
|
||||
'C:\\Users\\Ed\\AppData\\Local\\Programs\\Python\\Python39\\lib\\site-packages\\winpty\\winpty-agent.exe',
|
||||
'BINARY'),
|
||||
('winpty\\winpty.dll',
|
||||
'C:\\Users\\Ed\\AppData\\Local\\Programs\\Python\\Python39\\lib\\site-packages\\winpty\\winpty.dll',
|
||||
'BINARY'),
|
||||
('python39.dll',
|
||||
'C:\\Users\\Ed\\AppData\\Local\\Programs\\Python\\Python39\\python39.dll',
|
||||
'BINARY'),
|
||||
('libopusfile-0.dll',
|
||||
'C:\\Users\\Ed\\AppData\\Local\\Programs\\Python\\Python39\\lib\\site-packages\\pygame\\libopusfile-0.dll',
|
||||
'BINARY'),
|
||||
('zlib1.dll',
|
||||
'C:\\Users\\Ed\\AppData\\Local\\Programs\\Python\\Python39\\lib\\site-packages\\pygame\\zlib1.dll',
|
||||
'BINARY'),
|
||||
('libpng16-16.dll',
|
||||
'C:\\Users\\Ed\\AppData\\Local\\Programs\\Python\\Python39\\lib\\site-packages\\pygame\\libpng16-16.dll',
|
||||
'BINARY'),
|
||||
('SDL2_mixer.dll',
|
||||
'C:\\Users\\Ed\\AppData\\Local\\Programs\\Python\\Python39\\lib\\site-packages\\pygame\\SDL2_mixer.dll',
|
||||
'BINARY'),
|
||||
('SDL2_image.dll',
|
||||
'C:\\Users\\Ed\\AppData\\Local\\Programs\\Python\\Python39\\lib\\site-packages\\pygame\\SDL2_image.dll',
|
||||
'BINARY'),
|
||||
('libmodplug-1.dll',
|
||||
'C:\\Users\\Ed\\AppData\\Local\\Programs\\Python\\Python39\\lib\\site-packages\\pygame\\libmodplug-1.dll',
|
||||
'BINARY'),
|
||||
('libogg-0.dll',
|
||||
'C:\\Users\\Ed\\AppData\\Local\\Programs\\Python\\Python39\\lib\\site-packages\\pygame\\libogg-0.dll',
|
||||
'BINARY'),
|
||||
('libjpeg-9.dll',
|
||||
'C:\\Users\\Ed\\AppData\\Local\\Programs\\Python\\Python39\\lib\\site-packages\\pygame\\libjpeg-9.dll',
|
||||
'BINARY'),
|
||||
('SDL2.dll',
|
||||
'C:\\Users\\Ed\\AppData\\Local\\Programs\\Python\\Python39\\lib\\site-packages\\pygame\\SDL2.dll',
|
||||
('libtiff-5.dll',
|
||||
'C:\\Users\\Ed\\AppData\\Local\\Programs\\Python\\Python39\\lib\\site-packages\\pygame\\libtiff-5.dll',
|
||||
'BINARY'),
|
||||
('SDL2_ttf.dll',
|
||||
'C:\\Users\\Ed\\AppData\\Local\\Programs\\Python\\Python39\\lib\\site-packages\\pygame\\SDL2_ttf.dll',
|
||||
('libmodplug-1.dll',
|
||||
'C:\\Users\\Ed\\AppData\\Local\\Programs\\Python\\Python39\\lib\\site-packages\\pygame\\libmodplug-1.dll',
|
||||
'BINARY'),
|
||||
('libwebp-7.dll',
|
||||
'C:\\Users\\Ed\\AppData\\Local\\Programs\\Python\\Python39\\lib\\site-packages\\pygame\\libwebp-7.dll',
|
||||
'BINARY'),
|
||||
('libopus-0.dll',
|
||||
'C:\\Users\\Ed\\AppData\\Local\\Programs\\Python\\Python39\\lib\\site-packages\\pygame\\libopus-0.dll',
|
||||
('SDL2_ttf.dll',
|
||||
'C:\\Users\\Ed\\AppData\\Local\\Programs\\Python\\Python39\\lib\\site-packages\\pygame\\SDL2_ttf.dll',
|
||||
'BINARY'),
|
||||
('freetype.dll',
|
||||
'C:\\Users\\Ed\\AppData\\Local\\Programs\\Python\\Python39\\lib\\site-packages\\pygame\\freetype.dll',
|
||||
'BINARY'),
|
||||
('libtiff-5.dll',
|
||||
'C:\\Users\\Ed\\AppData\\Local\\Programs\\Python\\Python39\\lib\\site-packages\\pygame\\libtiff-5.dll',
|
||||
('libogg-0.dll',
|
||||
'C:\\Users\\Ed\\AppData\\Local\\Programs\\Python\\Python39\\lib\\site-packages\\pygame\\libogg-0.dll',
|
||||
'BINARY'),
|
||||
('portmidi.dll',
|
||||
'C:\\Users\\Ed\\AppData\\Local\\Programs\\Python\\Python39\\lib\\site-packages\\pygame\\portmidi.dll',
|
||||
'BINARY'),
|
||||
('SDL2_mixer.dll',
|
||||
'C:\\Users\\Ed\\AppData\\Local\\Programs\\Python\\Python39\\lib\\site-packages\\pygame\\SDL2_mixer.dll',
|
||||
'BINARY'),
|
||||
('zlib1.dll',
|
||||
'C:\\Users\\Ed\\AppData\\Local\\Programs\\Python\\Python39\\lib\\site-packages\\pygame\\zlib1.dll',
|
||||
'BINARY'),
|
||||
('libopusfile-0.dll',
|
||||
'C:\\Users\\Ed\\AppData\\Local\\Programs\\Python\\Python39\\lib\\site-packages\\pygame\\libopusfile-0.dll',
|
||||
'BINARY'),
|
||||
('libpng16-16.dll',
|
||||
'C:\\Users\\Ed\\AppData\\Local\\Programs\\Python\\Python39\\lib\\site-packages\\pygame\\libpng16-16.dll',
|
||||
'BINARY'),
|
||||
('libopus-0.dll',
|
||||
'C:\\Users\\Ed\\AppData\\Local\\Programs\\Python\\Python39\\lib\\site-packages\\pygame\\libopus-0.dll',
|
||||
'BINARY'),
|
||||
('SDL2.dll',
|
||||
'C:\\Users\\Ed\\AppData\\Local\\Programs\\Python\\Python39\\lib\\site-packages\\pygame\\SDL2.dll',
|
||||
'BINARY'),
|
||||
('SDL2_image.dll',
|
||||
'C:\\Users\\Ed\\AppData\\Local\\Programs\\Python\\Python39\\lib\\site-packages\\pygame\\SDL2_image.dll',
|
||||
'BINARY'),
|
||||
('pywin32_system32\\pywintypes39.dll',
|
||||
'C:\\Users\\Ed\\AppData\\Local\\Programs\\Python\\Python39\\lib\\site-packages\\pywin32_system32\\pywintypes39.dll',
|
||||
'BINARY'),
|
||||
('pywin32_system32\\pythoncom39.dll',
|
||||
'C:\\Users\\Ed\\AppData\\Local\\Programs\\Python\\Python39\\lib\\site-packages\\pywin32_system32\\pythoncom39.dll',
|
||||
'BINARY'),
|
||||
('select.pyd',
|
||||
'C:\\Users\\Ed\\AppData\\Local\\Programs\\Python\\Python39\\DLLs\\select.pyd',
|
||||
'EXTENSION'),
|
||||
('_lzma.pyd',
|
||||
'C:\\Users\\Ed\\AppData\\Local\\Programs\\Python\\Python39\\DLLs\\_lzma.pyd',
|
||||
'EXTENSION'),
|
||||
|
|
@ -129,6 +111,9 @@
|
|||
('unicodedata.pyd',
|
||||
'C:\\Users\\Ed\\AppData\\Local\\Programs\\Python\\Python39\\DLLs\\unicodedata.pyd',
|
||||
'EXTENSION'),
|
||||
('select.pyd',
|
||||
'C:\\Users\\Ed\\AppData\\Local\\Programs\\Python\\Python39\\DLLs\\select.pyd',
|
||||
'EXTENSION'),
|
||||
('_socket.pyd',
|
||||
'C:\\Users\\Ed\\AppData\\Local\\Programs\\Python\\Python39\\DLLs\\_socket.pyd',
|
||||
'EXTENSION'),
|
||||
|
|
@ -162,21 +147,6 @@
|
|||
('pyexpat.pyd',
|
||||
'C:\\Users\\Ed\\AppData\\Local\\Programs\\Python\\Python39\\DLLs\\pyexpat.pyd',
|
||||
'EXTENSION'),
|
||||
('_multiprocessing.pyd',
|
||||
'C:\\Users\\Ed\\AppData\\Local\\Programs\\Python\\Python39\\DLLs\\_multiprocessing.pyd',
|
||||
'EXTENSION'),
|
||||
('_decimal.pyd',
|
||||
'C:\\Users\\Ed\\AppData\\Local\\Programs\\Python\\Python39\\DLLs\\_decimal.pyd',
|
||||
'EXTENSION'),
|
||||
('winpty\\winpty.cp39-win_amd64.pyd',
|
||||
'C:\\Users\\Ed\\AppData\\Local\\Programs\\Python\\Python39\\lib\\site-packages\\winpty\\winpty.cp39-win_amd64.pyd',
|
||||
'EXTENSION'),
|
||||
('_overlapped.pyd',
|
||||
'C:\\Users\\Ed\\AppData\\Local\\Programs\\Python\\Python39\\DLLs\\_overlapped.pyd',
|
||||
'EXTENSION'),
|
||||
('_asyncio.pyd',
|
||||
'C:\\Users\\Ed\\AppData\\Local\\Programs\\Python\\Python39\\DLLs\\_asyncio.pyd',
|
||||
'EXTENSION'),
|
||||
('pygame\\imageext.cp39-win_amd64.pyd',
|
||||
'C:\\Users\\Ed\\AppData\\Local\\Programs\\Python\\Python39\\lib\\site-packages\\pygame\\imageext.cp39-win_amd64.pyd',
|
||||
'EXTENSION'),
|
||||
|
|
@ -264,17 +234,14 @@
|
|||
('_queue.pyd',
|
||||
'C:\\Users\\Ed\\AppData\\Local\\Programs\\Python\\Python39\\DLLs\\_queue.pyd',
|
||||
'EXTENSION'),
|
||||
('D3DCOMPILER_47.dll',
|
||||
'C:\\Program Files\\Oculus\\Support\\oculus-runtime\\D3DCOMPILER_47.dll',
|
||||
'BINARY'),
|
||||
('_decimal.pyd',
|
||||
'C:\\Users\\Ed\\AppData\\Local\\Programs\\Python\\Python39\\DLLs\\_decimal.pyd',
|
||||
'EXTENSION'),
|
||||
('VCRUNTIME140.dll',
|
||||
'C:\\Users\\Ed\\AppData\\Local\\Programs\\Python\\Python39\\VCRUNTIME140.dll',
|
||||
'BINARY'),
|
||||
('pygame\\libogg-0.dll',
|
||||
'C:\\Users\\Ed\\AppData\\Local\\Programs\\Python\\Python39\\lib\\site-packages\\pygame\\libogg-0.dll',
|
||||
'BINARY'),
|
||||
('pygame\\libopus-0.dll',
|
||||
'C:\\Users\\Ed\\AppData\\Local\\Programs\\Python\\Python39\\lib\\site-packages\\pygame\\libopus-0.dll',
|
||||
('pygame\\libjpeg-9.dll',
|
||||
'C:\\Users\\Ed\\AppData\\Local\\Programs\\Python\\Python39\\lib\\site-packages\\pygame\\libjpeg-9.dll',
|
||||
'BINARY'),
|
||||
('pygame\\zlib1.dll',
|
||||
'C:\\Users\\Ed\\AppData\\Local\\Programs\\Python\\Python39\\lib\\site-packages\\pygame\\zlib1.dll',
|
||||
|
|
@ -282,8 +249,11 @@
|
|||
('pygame\\SDL2.dll',
|
||||
'C:\\Users\\Ed\\AppData\\Local\\Programs\\Python\\Python39\\lib\\site-packages\\pygame\\SDL2.dll',
|
||||
'BINARY'),
|
||||
('pygame\\libjpeg-9.dll',
|
||||
'C:\\Users\\Ed\\AppData\\Local\\Programs\\Python\\Python39\\lib\\site-packages\\pygame\\libjpeg-9.dll',
|
||||
('pygame\\libopus-0.dll',
|
||||
'C:\\Users\\Ed\\AppData\\Local\\Programs\\Python\\Python39\\lib\\site-packages\\pygame\\libopus-0.dll',
|
||||
'BINARY'),
|
||||
('pygame\\libogg-0.dll',
|
||||
'C:\\Users\\Ed\\AppData\\Local\\Programs\\Python\\Python39\\lib\\site-packages\\pygame\\libogg-0.dll',
|
||||
'BINARY'),
|
||||
('VCRUNTIME140_1.dll',
|
||||
'C:\\Users\\Ed\\AppData\\Local\\Programs\\Python\\Python39\\VCRUNTIME140_1.dll',
|
||||
|
|
@ -315,24 +285,6 @@
|
|||
('libffi-7.dll',
|
||||
'C:\\Users\\Ed\\AppData\\Local\\Programs\\Python\\Python39\\DLLs\\libffi-7.dll',
|
||||
'BINARY'),
|
||||
('pywinpty-3.0.2.dist-info\\INSTALLER',
|
||||
'C:\\Users\\Ed\\AppData\\Local\\Programs\\Python\\Python39\\lib\\site-packages\\pywinpty-3.0.2.dist-info\\INSTALLER',
|
||||
'DATA'),
|
||||
('pywinpty-3.0.2.dist-info\\METADATA',
|
||||
'C:\\Users\\Ed\\AppData\\Local\\Programs\\Python\\Python39\\lib\\site-packages\\pywinpty-3.0.2.dist-info\\METADATA',
|
||||
'DATA'),
|
||||
('pywinpty-3.0.2.dist-info\\RECORD',
|
||||
'C:\\Users\\Ed\\AppData\\Local\\Programs\\Python\\Python39\\lib\\site-packages\\pywinpty-3.0.2.dist-info\\RECORD',
|
||||
'DATA'),
|
||||
('pywinpty-3.0.2.dist-info\\REQUESTED',
|
||||
'C:\\Users\\Ed\\AppData\\Local\\Programs\\Python\\Python39\\lib\\site-packages\\pywinpty-3.0.2.dist-info\\REQUESTED',
|
||||
'DATA'),
|
||||
('pywinpty-3.0.2.dist-info\\WHEEL',
|
||||
'C:\\Users\\Ed\\AppData\\Local\\Programs\\Python\\Python39\\lib\\site-packages\\pywinpty-3.0.2.dist-info\\WHEEL',
|
||||
'DATA'),
|
||||
('pywinpty-3.0.2.dist-info\\licenses\\LICENSE.txt',
|
||||
'C:\\Users\\Ed\\AppData\\Local\\Programs\\Python\\Python39\\lib\\site-packages\\pywinpty-3.0.2.dist-info\\licenses\\LICENSE.txt',
|
||||
'DATA'),
|
||||
('readchar-4.2.1.dist-info\\INSTALLER',
|
||||
'C:\\Users\\Ed\\AppData\\Local\\Programs\\Python\\Python39\\lib\\site-packages\\readchar-4.2.1.dist-info\\INSTALLER',
|
||||
'DATA'),
|
||||
|
|
@ -381,33 +333,12 @@
|
|||
('readchar\\py.typed',
|
||||
'C:\\Users\\Ed\\AppData\\Local\\Programs\\Python\\Python39\\lib\\site-packages\\readchar\\py.typed',
|
||||
'DATA'),
|
||||
('winpty\\__init__.py',
|
||||
'C:\\Users\\Ed\\AppData\\Local\\Programs\\Python\\Python39\\lib\\site-packages\\winpty\\__init__.py',
|
||||
'DATA'),
|
||||
('winpty\\enums.py',
|
||||
'C:\\Users\\Ed\\AppData\\Local\\Programs\\Python\\Python39\\lib\\site-packages\\winpty\\enums.py',
|
||||
'DATA'),
|
||||
('winpty\\ptyprocess.py',
|
||||
'C:\\Users\\Ed\\AppData\\Local\\Programs\\Python\\Python39\\lib\\site-packages\\winpty\\ptyprocess.py',
|
||||
'DATA'),
|
||||
('winpty\\tests\\__init__.py',
|
||||
'C:\\Users\\Ed\\AppData\\Local\\Programs\\Python\\Python39\\lib\\site-packages\\winpty\\tests\\__init__.py',
|
||||
'DATA'),
|
||||
('winpty\\tests\\test_pty.py',
|
||||
'C:\\Users\\Ed\\AppData\\Local\\Programs\\Python\\Python39\\lib\\site-packages\\winpty\\tests\\test_pty.py',
|
||||
'DATA'),
|
||||
('winpty\\tests\\test_ptyprocess.py',
|
||||
'C:\\Users\\Ed\\AppData\\Local\\Programs\\Python\\Python39\\lib\\site-packages\\winpty\\tests\\test_ptyprocess.py',
|
||||
'DATA'),
|
||||
('winpty\\winpty.pyi',
|
||||
'C:\\Users\\Ed\\AppData\\Local\\Programs\\Python\\Python39\\lib\\site-packages\\winpty\\winpty.pyi',
|
||||
('pygame\\pygame_icon.bmp',
|
||||
'C:\\Users\\Ed\\AppData\\Local\\Programs\\Python\\Python39\\lib\\site-packages\\pygame\\pygame_icon.bmp',
|
||||
'DATA'),
|
||||
('pygame\\freesansbold.ttf',
|
||||
'C:\\Users\\Ed\\AppData\\Local\\Programs\\Python\\Python39\\lib\\site-packages\\pygame\\freesansbold.ttf',
|
||||
'DATA'),
|
||||
('pygame\\pygame_icon.bmp',
|
||||
'C:\\Users\\Ed\\AppData\\Local\\Programs\\Python\\Python39\\lib\\site-packages\\pygame\\pygame_icon.bmp',
|
||||
'DATA'),
|
||||
('base_library.zip',
|
||||
'C:\\Users\\Ed\\source\\repos\\RA3MP3Playback\\build\\RA3WITHMP3\\base_library.zip',
|
||||
'DATA')],
|
||||
|
|
|
|||
Binary file not shown.
|
|
@ -35,93 +35,6 @@
|
|||
('ast',
|
||||
'C:\\Users\\Ed\\AppData\\Local\\Programs\\Python\\Python39\\lib\\ast.py',
|
||||
'PYMODULE'),
|
||||
('asyncio',
|
||||
'C:\\Users\\Ed\\AppData\\Local\\Programs\\Python\\Python39\\lib\\asyncio\\__init__.py',
|
||||
'PYMODULE'),
|
||||
('asyncio.base_events',
|
||||
'C:\\Users\\Ed\\AppData\\Local\\Programs\\Python\\Python39\\lib\\asyncio\\base_events.py',
|
||||
'PYMODULE'),
|
||||
('asyncio.base_futures',
|
||||
'C:\\Users\\Ed\\AppData\\Local\\Programs\\Python\\Python39\\lib\\asyncio\\base_futures.py',
|
||||
'PYMODULE'),
|
||||
('asyncio.base_subprocess',
|
||||
'C:\\Users\\Ed\\AppData\\Local\\Programs\\Python\\Python39\\lib\\asyncio\\base_subprocess.py',
|
||||
'PYMODULE'),
|
||||
('asyncio.base_tasks',
|
||||
'C:\\Users\\Ed\\AppData\\Local\\Programs\\Python\\Python39\\lib\\asyncio\\base_tasks.py',
|
||||
'PYMODULE'),
|
||||
('asyncio.constants',
|
||||
'C:\\Users\\Ed\\AppData\\Local\\Programs\\Python\\Python39\\lib\\asyncio\\constants.py',
|
||||
'PYMODULE'),
|
||||
('asyncio.coroutines',
|
||||
'C:\\Users\\Ed\\AppData\\Local\\Programs\\Python\\Python39\\lib\\asyncio\\coroutines.py',
|
||||
'PYMODULE'),
|
||||
('asyncio.events',
|
||||
'C:\\Users\\Ed\\AppData\\Local\\Programs\\Python\\Python39\\lib\\asyncio\\events.py',
|
||||
'PYMODULE'),
|
||||
('asyncio.exceptions',
|
||||
'C:\\Users\\Ed\\AppData\\Local\\Programs\\Python\\Python39\\lib\\asyncio\\exceptions.py',
|
||||
'PYMODULE'),
|
||||
('asyncio.format_helpers',
|
||||
'C:\\Users\\Ed\\AppData\\Local\\Programs\\Python\\Python39\\lib\\asyncio\\format_helpers.py',
|
||||
'PYMODULE'),
|
||||
('asyncio.futures',
|
||||
'C:\\Users\\Ed\\AppData\\Local\\Programs\\Python\\Python39\\lib\\asyncio\\futures.py',
|
||||
'PYMODULE'),
|
||||
('asyncio.locks',
|
||||
'C:\\Users\\Ed\\AppData\\Local\\Programs\\Python\\Python39\\lib\\asyncio\\locks.py',
|
||||
'PYMODULE'),
|
||||
('asyncio.log',
|
||||
'C:\\Users\\Ed\\AppData\\Local\\Programs\\Python\\Python39\\lib\\asyncio\\log.py',
|
||||
'PYMODULE'),
|
||||
('asyncio.proactor_events',
|
||||
'C:\\Users\\Ed\\AppData\\Local\\Programs\\Python\\Python39\\lib\\asyncio\\proactor_events.py',
|
||||
'PYMODULE'),
|
||||
('asyncio.protocols',
|
||||
'C:\\Users\\Ed\\AppData\\Local\\Programs\\Python\\Python39\\lib\\asyncio\\protocols.py',
|
||||
'PYMODULE'),
|
||||
('asyncio.queues',
|
||||
'C:\\Users\\Ed\\AppData\\Local\\Programs\\Python\\Python39\\lib\\asyncio\\queues.py',
|
||||
'PYMODULE'),
|
||||
('asyncio.runners',
|
||||
'C:\\Users\\Ed\\AppData\\Local\\Programs\\Python\\Python39\\lib\\asyncio\\runners.py',
|
||||
'PYMODULE'),
|
||||
('asyncio.selector_events',
|
||||
'C:\\Users\\Ed\\AppData\\Local\\Programs\\Python\\Python39\\lib\\asyncio\\selector_events.py',
|
||||
'PYMODULE'),
|
||||
('asyncio.sslproto',
|
||||
'C:\\Users\\Ed\\AppData\\Local\\Programs\\Python\\Python39\\lib\\asyncio\\sslproto.py',
|
||||
'PYMODULE'),
|
||||
('asyncio.staggered',
|
||||
'C:\\Users\\Ed\\AppData\\Local\\Programs\\Python\\Python39\\lib\\asyncio\\staggered.py',
|
||||
'PYMODULE'),
|
||||
('asyncio.streams',
|
||||
'C:\\Users\\Ed\\AppData\\Local\\Programs\\Python\\Python39\\lib\\asyncio\\streams.py',
|
||||
'PYMODULE'),
|
||||
('asyncio.subprocess',
|
||||
'C:\\Users\\Ed\\AppData\\Local\\Programs\\Python\\Python39\\lib\\asyncio\\subprocess.py',
|
||||
'PYMODULE'),
|
||||
('asyncio.tasks',
|
||||
'C:\\Users\\Ed\\AppData\\Local\\Programs\\Python\\Python39\\lib\\asyncio\\tasks.py',
|
||||
'PYMODULE'),
|
||||
('asyncio.threads',
|
||||
'C:\\Users\\Ed\\AppData\\Local\\Programs\\Python\\Python39\\lib\\asyncio\\threads.py',
|
||||
'PYMODULE'),
|
||||
('asyncio.transports',
|
||||
'C:\\Users\\Ed\\AppData\\Local\\Programs\\Python\\Python39\\lib\\asyncio\\transports.py',
|
||||
'PYMODULE'),
|
||||
('asyncio.trsock',
|
||||
'C:\\Users\\Ed\\AppData\\Local\\Programs\\Python\\Python39\\lib\\asyncio\\trsock.py',
|
||||
'PYMODULE'),
|
||||
('asyncio.unix_events',
|
||||
'C:\\Users\\Ed\\AppData\\Local\\Programs\\Python\\Python39\\lib\\asyncio\\unix_events.py',
|
||||
'PYMODULE'),
|
||||
('asyncio.windows_events',
|
||||
'C:\\Users\\Ed\\AppData\\Local\\Programs\\Python\\Python39\\lib\\asyncio\\windows_events.py',
|
||||
'PYMODULE'),
|
||||
('asyncio.windows_utils',
|
||||
'C:\\Users\\Ed\\AppData\\Local\\Programs\\Python\\Python39\\lib\\asyncio\\windows_utils.py',
|
||||
'PYMODULE'),
|
||||
('base64',
|
||||
'C:\\Users\\Ed\\AppData\\Local\\Programs\\Python\\Python39\\lib\\base64.py',
|
||||
'PYMODULE'),
|
||||
|
|
@ -149,21 +62,6 @@
|
|||
('commctrl',
|
||||
'C:\\Users\\Ed\\AppData\\Local\\Programs\\Python\\Python39\\lib\\site-packages\\win32\\lib\\commctrl.py',
|
||||
'PYMODULE'),
|
||||
('concurrent',
|
||||
'C:\\Users\\Ed\\AppData\\Local\\Programs\\Python\\Python39\\lib\\concurrent\\__init__.py',
|
||||
'PYMODULE'),
|
||||
('concurrent.futures',
|
||||
'C:\\Users\\Ed\\AppData\\Local\\Programs\\Python\\Python39\\lib\\concurrent\\futures\\__init__.py',
|
||||
'PYMODULE'),
|
||||
('concurrent.futures._base',
|
||||
'C:\\Users\\Ed\\AppData\\Local\\Programs\\Python\\Python39\\lib\\concurrent\\futures\\_base.py',
|
||||
'PYMODULE'),
|
||||
('concurrent.futures.process',
|
||||
'C:\\Users\\Ed\\AppData\\Local\\Programs\\Python\\Python39\\lib\\concurrent\\futures\\process.py',
|
||||
'PYMODULE'),
|
||||
('concurrent.futures.thread',
|
||||
'C:\\Users\\Ed\\AppData\\Local\\Programs\\Python\\Python39\\lib\\concurrent\\futures\\thread.py',
|
||||
'PYMODULE'),
|
||||
('configparser',
|
||||
'C:\\Users\\Ed\\AppData\\Local\\Programs\\Python\\Python39\\lib\\configparser.py',
|
||||
'PYMODULE'),
|
||||
|
|
@ -320,9 +218,6 @@
|
|||
('hashlib',
|
||||
'C:\\Users\\Ed\\AppData\\Local\\Programs\\Python\\Python39\\lib\\hashlib.py',
|
||||
'PYMODULE'),
|
||||
('hmac',
|
||||
'C:\\Users\\Ed\\AppData\\Local\\Programs\\Python\\Python39\\lib\\hmac.py',
|
||||
'PYMODULE'),
|
||||
('html',
|
||||
'C:\\Users\\Ed\\AppData\\Local\\Programs\\Python\\Python39\\lib\\html\\__init__.py',
|
||||
'PYMODULE'),
|
||||
|
|
@ -377,75 +272,6 @@
|
|||
('mimetypes',
|
||||
'C:\\Users\\Ed\\AppData\\Local\\Programs\\Python\\Python39\\lib\\mimetypes.py',
|
||||
'PYMODULE'),
|
||||
('multiprocessing',
|
||||
'C:\\Users\\Ed\\AppData\\Local\\Programs\\Python\\Python39\\lib\\multiprocessing\\__init__.py',
|
||||
'PYMODULE'),
|
||||
('multiprocessing.connection',
|
||||
'C:\\Users\\Ed\\AppData\\Local\\Programs\\Python\\Python39\\lib\\multiprocessing\\connection.py',
|
||||
'PYMODULE'),
|
||||
('multiprocessing.context',
|
||||
'C:\\Users\\Ed\\AppData\\Local\\Programs\\Python\\Python39\\lib\\multiprocessing\\context.py',
|
||||
'PYMODULE'),
|
||||
('multiprocessing.dummy',
|
||||
'C:\\Users\\Ed\\AppData\\Local\\Programs\\Python\\Python39\\lib\\multiprocessing\\dummy\\__init__.py',
|
||||
'PYMODULE'),
|
||||
('multiprocessing.dummy.connection',
|
||||
'C:\\Users\\Ed\\AppData\\Local\\Programs\\Python\\Python39\\lib\\multiprocessing\\dummy\\connection.py',
|
||||
'PYMODULE'),
|
||||
('multiprocessing.forkserver',
|
||||
'C:\\Users\\Ed\\AppData\\Local\\Programs\\Python\\Python39\\lib\\multiprocessing\\forkserver.py',
|
||||
'PYMODULE'),
|
||||
('multiprocessing.heap',
|
||||
'C:\\Users\\Ed\\AppData\\Local\\Programs\\Python\\Python39\\lib\\multiprocessing\\heap.py',
|
||||
'PYMODULE'),
|
||||
('multiprocessing.managers',
|
||||
'C:\\Users\\Ed\\AppData\\Local\\Programs\\Python\\Python39\\lib\\multiprocessing\\managers.py',
|
||||
'PYMODULE'),
|
||||
('multiprocessing.pool',
|
||||
'C:\\Users\\Ed\\AppData\\Local\\Programs\\Python\\Python39\\lib\\multiprocessing\\pool.py',
|
||||
'PYMODULE'),
|
||||
('multiprocessing.popen_fork',
|
||||
'C:\\Users\\Ed\\AppData\\Local\\Programs\\Python\\Python39\\lib\\multiprocessing\\popen_fork.py',
|
||||
'PYMODULE'),
|
||||
('multiprocessing.popen_forkserver',
|
||||
'C:\\Users\\Ed\\AppData\\Local\\Programs\\Python\\Python39\\lib\\multiprocessing\\popen_forkserver.py',
|
||||
'PYMODULE'),
|
||||
('multiprocessing.popen_spawn_posix',
|
||||
'C:\\Users\\Ed\\AppData\\Local\\Programs\\Python\\Python39\\lib\\multiprocessing\\popen_spawn_posix.py',
|
||||
'PYMODULE'),
|
||||
('multiprocessing.popen_spawn_win32',
|
||||
'C:\\Users\\Ed\\AppData\\Local\\Programs\\Python\\Python39\\lib\\multiprocessing\\popen_spawn_win32.py',
|
||||
'PYMODULE'),
|
||||
('multiprocessing.process',
|
||||
'C:\\Users\\Ed\\AppData\\Local\\Programs\\Python\\Python39\\lib\\multiprocessing\\process.py',
|
||||
'PYMODULE'),
|
||||
('multiprocessing.queues',
|
||||
'C:\\Users\\Ed\\AppData\\Local\\Programs\\Python\\Python39\\lib\\multiprocessing\\queues.py',
|
||||
'PYMODULE'),
|
||||
('multiprocessing.reduction',
|
||||
'C:\\Users\\Ed\\AppData\\Local\\Programs\\Python\\Python39\\lib\\multiprocessing\\reduction.py',
|
||||
'PYMODULE'),
|
||||
('multiprocessing.resource_sharer',
|
||||
'C:\\Users\\Ed\\AppData\\Local\\Programs\\Python\\Python39\\lib\\multiprocessing\\resource_sharer.py',
|
||||
'PYMODULE'),
|
||||
('multiprocessing.resource_tracker',
|
||||
'C:\\Users\\Ed\\AppData\\Local\\Programs\\Python\\Python39\\lib\\multiprocessing\\resource_tracker.py',
|
||||
'PYMODULE'),
|
||||
('multiprocessing.shared_memory',
|
||||
'C:\\Users\\Ed\\AppData\\Local\\Programs\\Python\\Python39\\lib\\multiprocessing\\shared_memory.py',
|
||||
'PYMODULE'),
|
||||
('multiprocessing.sharedctypes',
|
||||
'C:\\Users\\Ed\\AppData\\Local\\Programs\\Python\\Python39\\lib\\multiprocessing\\sharedctypes.py',
|
||||
'PYMODULE'),
|
||||
('multiprocessing.spawn',
|
||||
'C:\\Users\\Ed\\AppData\\Local\\Programs\\Python\\Python39\\lib\\multiprocessing\\spawn.py',
|
||||
'PYMODULE'),
|
||||
('multiprocessing.synchronize',
|
||||
'C:\\Users\\Ed\\AppData\\Local\\Programs\\Python\\Python39\\lib\\multiprocessing\\synchronize.py',
|
||||
'PYMODULE'),
|
||||
('multiprocessing.util',
|
||||
'C:\\Users\\Ed\\AppData\\Local\\Programs\\Python\\Python39\\lib\\multiprocessing\\util.py',
|
||||
'PYMODULE'),
|
||||
('netrc',
|
||||
'C:\\Users\\Ed\\AppData\\Local\\Programs\\Python\\Python39\\lib\\netrc.py',
|
||||
'PYMODULE'),
|
||||
|
|
@ -699,9 +525,6 @@
|
|||
('runpy',
|
||||
'C:\\Users\\Ed\\AppData\\Local\\Programs\\Python\\Python39\\lib\\runpy.py',
|
||||
'PYMODULE'),
|
||||
('secrets',
|
||||
'C:\\Users\\Ed\\AppData\\Local\\Programs\\Python\\Python39\\lib\\secrets.py',
|
||||
'PYMODULE'),
|
||||
('selectors',
|
||||
'C:\\Users\\Ed\\AppData\\Local\\Programs\\Python\\Python39\\lib\\selectors.py',
|
||||
'PYMODULE'),
|
||||
|
|
@ -855,24 +678,6 @@
|
|||
('winerror',
|
||||
'C:\\Users\\Ed\\AppData\\Local\\Programs\\Python\\Python39\\lib\\site-packages\\win32\\lib\\winerror.py',
|
||||
'PYMODULE'),
|
||||
('winpty',
|
||||
'C:\\Users\\Ed\\AppData\\Local\\Programs\\Python\\Python39\\lib\\site-packages\\winpty\\__init__.py',
|
||||
'PYMODULE'),
|
||||
('winpty.enums',
|
||||
'C:\\Users\\Ed\\AppData\\Local\\Programs\\Python\\Python39\\lib\\site-packages\\winpty\\enums.py',
|
||||
'PYMODULE'),
|
||||
('winpty.ptyprocess',
|
||||
'C:\\Users\\Ed\\AppData\\Local\\Programs\\Python\\Python39\\lib\\site-packages\\winpty\\ptyprocess.py',
|
||||
'PYMODULE'),
|
||||
('winpty.tests',
|
||||
'C:\\Users\\Ed\\AppData\\Local\\Programs\\Python\\Python39\\lib\\site-packages\\winpty\\tests\\__init__.py',
|
||||
'PYMODULE'),
|
||||
('winpty.tests.test_pty',
|
||||
'C:\\Users\\Ed\\AppData\\Local\\Programs\\Python\\Python39\\lib\\site-packages\\winpty\\tests\\test_pty.py',
|
||||
'PYMODULE'),
|
||||
('winpty.tests.test_ptyprocess',
|
||||
'C:\\Users\\Ed\\AppData\\Local\\Programs\\Python\\Python39\\lib\\site-packages\\winpty\\tests\\test_ptyprocess.py',
|
||||
'PYMODULE'),
|
||||
('xml',
|
||||
'C:\\Users\\Ed\\AppData\\Local\\Programs\\Python\\Python39\\lib\\xml\\__init__.py',
|
||||
'PYMODULE'),
|
||||
|
|
@ -900,12 +705,6 @@
|
|||
('xml.sax.xmlreader',
|
||||
'C:\\Users\\Ed\\AppData\\Local\\Programs\\Python\\Python39\\lib\\xml\\sax\\xmlreader.py',
|
||||
'PYMODULE'),
|
||||
('xmlrpc',
|
||||
'C:\\Users\\Ed\\AppData\\Local\\Programs\\Python\\Python39\\lib\\xmlrpc\\__init__.py',
|
||||
'PYMODULE'),
|
||||
('xmlrpc.client',
|
||||
'C:\\Users\\Ed\\AppData\\Local\\Programs\\Python\\Python39\\lib\\xmlrpc\\client.py',
|
||||
'PYMODULE'),
|
||||
('zipfile',
|
||||
'C:\\Users\\Ed\\AppData\\Local\\Programs\\Python\\Python39\\lib\\zipfile.py',
|
||||
'PYMODULE'),
|
||||
|
|
|
|||
Binary file not shown.
Binary file not shown.
|
|
@ -14,19 +14,18 @@ Types if import:
|
|||
IMPORTANT: Do NOT post this list to the issue-tracker. Use it as a basis for
|
||||
tracking down the missing module yourself. Thanks!
|
||||
|
||||
missing module named pyimod02_importers - imported by C:\Users\Ed\AppData\Local\Programs\Python\Python39\Lib\site-packages\PyInstaller\hooks\rthooks\pyi_rth_pkgutil.py (delayed), C:\Users\Ed\AppData\Local\Programs\Python\Python39\Lib\site-packages\PyInstaller\hooks\rthooks\pyi_rth_pkgres.py (delayed)
|
||||
missing module named _posixsubprocess - imported by subprocess (optional), multiprocessing.util (delayed)
|
||||
missing module named pyimod02_importers - imported by C:\Users\Ed\AppData\Local\Programs\Python\Python39\Lib\site-packages\PyInstaller\hooks\rthooks\pyi_rth_pkgres.py (delayed), C:\Users\Ed\AppData\Local\Programs\Python\Python39\Lib\site-packages\PyInstaller\hooks\rthooks\pyi_rth_pkgutil.py (delayed)
|
||||
missing module named pep517 - imported by importlib.metadata (delayed)
|
||||
missing module named 'org.python' - imported by copy (optional), xml.sax (delayed, conditional)
|
||||
missing module named grp - imported by shutil (optional), tarfile (optional), pathlib (delayed, optional), subprocess (optional)
|
||||
missing module named pwd - imported by posixpath (delayed, conditional), shutil (optional), tarfile (optional), pathlib (delayed, conditional, optional), subprocess (optional), distutils.util (delayed, conditional, optional), http.server (delayed, optional), webbrowser (delayed), netrc (delayed, conditional), getpass (delayed)
|
||||
missing module named 'org.python' - imported by pickle (optional), xml.sax (delayed, conditional)
|
||||
missing module named org - imported by copy (optional)
|
||||
missing module named posix - imported by os (conditional, optional), shutil (conditional), importlib._bootstrap_external (conditional)
|
||||
missing module named resource - imported by posix (top-level)
|
||||
excluded module named _frozen_importlib - imported by importlib (optional), importlib.abc (optional), zipimport (top-level)
|
||||
missing module named _frozen_importlib_external - imported by importlib._bootstrap (delayed), importlib (optional), importlib.abc (optional), zipimport (top-level)
|
||||
missing module named org - imported by pickle (optional)
|
||||
missing module named _manylinux - imported by pkg_resources._vendor.packaging.tags (delayed, optional), packaging._manylinux (delayed, optional)
|
||||
missing module named termios - imported by readchar._posix_read (top-level), tty (top-level), getpass (optional)
|
||||
missing module named _frozen_importlib_external - imported by importlib._bootstrap (delayed), importlib (optional), importlib.abc (optional), zipimport (top-level)
|
||||
excluded module named _frozen_importlib - imported by importlib (optional), importlib.abc (optional), zipimport (top-level)
|
||||
missing module named pep517 - imported by importlib.metadata (delayed)
|
||||
missing module named readline - imported by cmd (delayed, conditional, optional), code (delayed, conditional, optional), pdb (delayed, optional)
|
||||
missing module named __builtin__ - imported by pkg_resources._vendor.pyparsing (conditional)
|
||||
missing module named ordereddict - imported by pkg_resources._vendor.pyparsing (optional)
|
||||
|
|
@ -43,19 +42,10 @@ missing module named _scproxy - imported by urllib.request (conditional)
|
|||
missing module named 'java.lang' - imported by platform (delayed, optional), xml.sax._exceptions (conditional)
|
||||
missing module named vms_lib - imported by platform (delayed, optional)
|
||||
missing module named java - imported by platform (delayed)
|
||||
missing module named _posixshmem - imported by multiprocessing.resource_tracker (conditional), multiprocessing.shared_memory (conditional)
|
||||
missing module named multiprocessing.BufferTooShort - imported by multiprocessing (top-level), multiprocessing.connection (top-level)
|
||||
missing module named multiprocessing.AuthenticationError - imported by multiprocessing (top-level), multiprocessing.connection (top-level)
|
||||
missing module named multiprocessing.get_context - imported by multiprocessing (top-level), multiprocessing.pool (top-level), multiprocessing.managers (top-level), multiprocessing.sharedctypes (top-level)
|
||||
missing module named multiprocessing.TimeoutError - imported by multiprocessing (top-level), multiprocessing.pool (top-level)
|
||||
missing module named multiprocessing.set_start_method - imported by multiprocessing (top-level), multiprocessing.spawn (top-level)
|
||||
missing module named multiprocessing.get_start_method - imported by multiprocessing (top-level), multiprocessing.spawn (top-level)
|
||||
missing module named flaky - imported by winpty.tests.test_ptyprocess (top-level)
|
||||
missing module named pytest - imported by winpty.tests.test_pty (top-level), winpty.tests.test_ptyprocess (top-level)
|
||||
missing module named asyncio.DefaultEventLoopPolicy - imported by asyncio (delayed, conditional), asyncio.events (delayed, conditional)
|
||||
missing module named OpenGL - imported by pygame (delayed)
|
||||
missing module named numpy - imported by pygame.pixelcopy (top-level), pygame.mixer (top-level), pygame.surfarray (top-level), pygame.sndarray (top-level), pygame (delayed)
|
||||
missing module named pygame._common - imported by pygame.rect (top-level), pygame.rwobject (top-level), pygame.color (top-level), pygame.surface (top-level), pygame.display (top-level), pygame.draw (top-level), pygame.image (top-level), pygame.key (top-level), pygame.mask (top-level), pygame.transform (top-level), pygame.pixelcopy (top-level), pygame.pixelarray (top-level), pygame.font (top-level), pygame.mixer_music (top-level), pygame.mixer (top-level)
|
||||
missing module named 'pygame.overlay' - imported by pygame (optional)
|
||||
missing module named typing_extensions - imported by pygame.math (top-level), pygame.mouse (top-level)
|
||||
missing module named 'pygame.cdrom' - imported by pygame (conditional, optional)
|
||||
missing module named _posixsubprocess - imported by subprocess (optional)
|
||||
|
|
|
|||
File diff suppressed because it is too large
Load diff
Loading…
Add table
Add a link
Reference in a new issue