0.0.2版本更新
This commit is contained in:
@@ -0,0 +1,6 @@
|
|||||||
|
python -m PyInstaller -w -F main.py
|
||||||
|
|
||||||
|
<br />
|
||||||
|
|
||||||
|
# 编译成exe
|
||||||
|
python -m PyInstaller build.spec --clean
|
||||||
|
|||||||
Binary file not shown.
Binary file not shown.
|
After Width: | Height: | Size: 70 KiB |
Binary file not shown.
|
After Width: | Height: | Size: 169 KiB |
+68
@@ -0,0 +1,68 @@
|
|||||||
|
# -*- mode: python ; coding: utf-8 -*-
|
||||||
|
import os
|
||||||
|
|
||||||
|
try:
|
||||||
|
_SPEC_ROOT = os.path.dirname(os.path.abspath(SPEC))
|
||||||
|
except NameError:
|
||||||
|
_SPEC_ROOT = os.getcwd()
|
||||||
|
_LOGO_ICO = os.path.normpath(os.path.join(_SPEC_ROOT, "logo.ico"))
|
||||||
|
|
||||||
|
# 无此文件时 PyInstaller 会用默认图标,看起来像「没换」——必须存在且为合法 .ico(文件头 00 00 01 00)
|
||||||
|
if not os.path.isfile(_LOGO_ICO):
|
||||||
|
raise FileNotFoundError(
|
||||||
|
"找不到图标文件: %s\n请将 logo.ico 放在与 build.spec 同一目录后重新打包。" % _LOGO_ICO
|
||||||
|
)
|
||||||
|
_LOGO_ICO_ABS = os.path.abspath(_LOGO_ICO)
|
||||||
|
print("[build.spec] EXE 嵌入图标:", _LOGO_ICO_ABS)
|
||||||
|
|
||||||
|
block_cipher = None
|
||||||
|
|
||||||
|
_datas = [
|
||||||
|
(os.path.join(os.getcwd(), 'layout'), 'layout'),
|
||||||
|
(os.path.join(os.getcwd(), 'assets'), 'assets'),
|
||||||
|
(_LOGO_ICO_ABS, "."),
|
||||||
|
]
|
||||||
|
|
||||||
|
a = Analysis(
|
||||||
|
['main.py'],
|
||||||
|
pathex=[os.getcwd()],
|
||||||
|
binaries=[],
|
||||||
|
datas=_datas,
|
||||||
|
hiddenimports=[],
|
||||||
|
hookspath=[],
|
||||||
|
hooksconfig={},
|
||||||
|
runtime_hooks=[],
|
||||||
|
excludes=[],
|
||||||
|
win_no_prefer_redirects=False,
|
||||||
|
win_private_assemblies=False,
|
||||||
|
cipher=block_cipher,
|
||||||
|
noarchive=False,
|
||||||
|
)
|
||||||
|
|
||||||
|
pyz = PYZ(a.pure, a.zipped_data, cipher=block_cipher)
|
||||||
|
|
||||||
|
exe = EXE(
|
||||||
|
pyz,
|
||||||
|
a.scripts,
|
||||||
|
a.binaries,
|
||||||
|
a.zipfiles,
|
||||||
|
a.datas,
|
||||||
|
[],
|
||||||
|
name='CursorTokenLogin',
|
||||||
|
debug=False,
|
||||||
|
bootloader_ignore_signals=False,
|
||||||
|
strip=False,
|
||||||
|
# UPX 压缩可能导致杀软误报或运行时无法加载 python3xx.dll,发布包建议关闭
|
||||||
|
upx=False,
|
||||||
|
upx_exclude=[],
|
||||||
|
# onefile 解压目录:%LOCALAPPDATA%\CursorTokenLogin\runtime\_MEI*(PyInstaller 在 Windows 上会展开环境变量)
|
||||||
|
runtime_tmpdir=r'%LOCALAPPDATA%\CursorTokenLogin\runtime',
|
||||||
|
console=False,
|
||||||
|
disable_windowed_traceback=False,
|
||||||
|
argv_emulation=False,
|
||||||
|
target_arch=None,
|
||||||
|
codesign_identity=None,
|
||||||
|
entitlements_file=None,
|
||||||
|
# 必须用绝对路径;资源管理器若仍显示旧图标多半是 Windows 图标缓存,可改 exe 文件名或清 IconCache
|
||||||
|
icon=_LOGO_ICO_ABS,
|
||||||
|
)
|
||||||
File diff suppressed because it is too large
Load Diff
Binary file not shown.
@@ -0,0 +1,821 @@
|
|||||||
|
('E:\\Demo\\Python\\CursorTokenLogin\\dist\\CursorTokenLogin.exe',
|
||||||
|
False,
|
||||||
|
False,
|
||||||
|
False,
|
||||||
|
['E:\\Demo\\Python\\CursorTokenLogin\\logo.ico'],
|
||||||
|
None,
|
||||||
|
False,
|
||||||
|
False,
|
||||||
|
b'<?xml version="1.0" encoding="UTF-8" standalone="yes"?>\n<assembly xmlns='
|
||||||
|
b'"urn:schemas-microsoft-com:asm.v1" manifestVersion="1.0">\n <trustInfo x'
|
||||||
|
b'mlns="urn:schemas-microsoft-com:asm.v3">\n <security>\n <requested'
|
||||||
|
b'Privileges>\n <requestedExecutionLevel level="asInvoker" uiAccess='
|
||||||
|
b'"false"/>\n </requestedPrivileges>\n </security>\n </trustInfo>\n '
|
||||||
|
b'<compatibility xmlns="urn:schemas-microsoft-com:compatibility.v1">\n <'
|
||||||
|
b'application>\n <supportedOS Id="{e2011457-1546-43c5-a5fe-008deee3d3f'
|
||||||
|
b'0}"/>\n <supportedOS Id="{35138b9a-5d96-4fbd-8e2d-a2440225f93a}"/>\n '
|
||||||
|
b' <supportedOS Id="{4a2f28e3-53b9-4441-ba9c-d69d4a4a6e38}"/>\n <s'
|
||||||
|
b'upportedOS Id="{1f676c76-80e1-4239-95bb-83d0f6d0da78}"/>\n <supporte'
|
||||||
|
b'dOS Id="{8e0f7a12-bfb3-4fe8-b9a5-48fd50a15a9a}"/>\n </application>\n <'
|
||||||
|
b'/compatibility>\n <application xmlns="urn:schemas-microsoft-com:asm.v3">'
|
||||||
|
b'\n <windowsSettings>\n <longPathAware xmlns="http://schemas.micros'
|
||||||
|
b'oft.com/SMI/2016/WindowsSettings">true</longPathAware>\n </windowsSett'
|
||||||
|
b'ings>\n </application>\n <dependency>\n <dependentAssembly>\n <ass'
|
||||||
|
b'emblyIdentity type="win32" name="Microsoft.Windows.Common-Controls" version='
|
||||||
|
b'"6.0.0.0" processorArchitecture="*" publicKeyToken="6595b64144ccf1df" langua'
|
||||||
|
b'ge="*"/>\n </dependentAssembly>\n </dependency>\n</assembly>',
|
||||||
|
True,
|
||||||
|
False,
|
||||||
|
None,
|
||||||
|
None,
|
||||||
|
None,
|
||||||
|
'E:\\Demo\\Python\\CursorTokenLogin\\build\\build\\CursorTokenLogin.pkg',
|
||||||
|
[('pyi-runtime-tmpdir %LOCALAPPDATA%\\CursorTokenLogin\\runtime',
|
||||||
|
'',
|
||||||
|
'OPTION'),
|
||||||
|
('pyi-contents-directory _internal', '', 'OPTION'),
|
||||||
|
('PYZ-00.pyz',
|
||||||
|
'E:\\Demo\\Python\\CursorTokenLogin\\build\\build\\PYZ-00.pyz',
|
||||||
|
'PYZ'),
|
||||||
|
('struct',
|
||||||
|
'E:\\Demo\\Python\\CursorTokenLogin\\build\\build\\localpycs\\struct.pyc',
|
||||||
|
'PYMODULE'),
|
||||||
|
('pyimod01_archive',
|
||||||
|
'E:\\Demo\\Python\\CursorTokenLogin\\build\\build\\localpycs\\pyimod01_archive.pyc',
|
||||||
|
'PYMODULE'),
|
||||||
|
('pyimod02_importers',
|
||||||
|
'E:\\Demo\\Python\\CursorTokenLogin\\build\\build\\localpycs\\pyimod02_importers.pyc',
|
||||||
|
'PYMODULE'),
|
||||||
|
('pyimod03_ctypes',
|
||||||
|
'E:\\Demo\\Python\\CursorTokenLogin\\build\\build\\localpycs\\pyimod03_ctypes.pyc',
|
||||||
|
'PYMODULE'),
|
||||||
|
('pyimod04_pywin32',
|
||||||
|
'E:\\Demo\\Python\\CursorTokenLogin\\build\\build\\localpycs\\pyimod04_pywin32.pyc',
|
||||||
|
'PYMODULE'),
|
||||||
|
('pyiboot01_bootstrap',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PyInstaller\\loader\\pyiboot01_bootstrap.py',
|
||||||
|
'PYSOURCE'),
|
||||||
|
('pyi_rth_inspect',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PyInstaller\\hooks\\rthooks\\pyi_rth_inspect.py',
|
||||||
|
'PYSOURCE'),
|
||||||
|
('pyi_rth_pyside6',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PyInstaller\\hooks\\rthooks\\pyi_rth_pyside6.py',
|
||||||
|
'PYSOURCE'),
|
||||||
|
('pyi_rth_pkgutil',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PyInstaller\\hooks\\rthooks\\pyi_rth_pkgutil.py',
|
||||||
|
'PYSOURCE'),
|
||||||
|
('pyi_rth_multiprocessing',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PyInstaller\\hooks\\rthooks\\pyi_rth_multiprocessing.py',
|
||||||
|
'PYSOURCE'),
|
||||||
|
('pyi_rth_setuptools',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PyInstaller\\hooks\\rthooks\\pyi_rth_setuptools.py',
|
||||||
|
'PYSOURCE'),
|
||||||
|
('pyi_rth_cryptography_openssl',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\_pyinstaller_hooks_contrib\\rthooks\\pyi_rth_cryptography_openssl.py',
|
||||||
|
'PYSOURCE'),
|
||||||
|
('main', 'E:\\Demo\\Python\\CursorTokenLogin\\main.py', 'PYSOURCE'),
|
||||||
|
('python314.dll',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\python314.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('PySide6\\plugins\\imageformats\\qwebp.dll',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\plugins\\imageformats\\qwebp.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('PySide6\\plugins\\platforminputcontexts\\qtvirtualkeyboardplugin.dll',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\plugins\\platforminputcontexts\\qtvirtualkeyboardplugin.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('PySide6\\plugins\\imageformats\\qico.dll',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\plugins\\imageformats\\qico.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('PySide6\\plugins\\platforms\\qoffscreen.dll',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\plugins\\platforms\\qoffscreen.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('PySide6\\plugins\\platforms\\qwindows.dll',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\plugins\\platforms\\qwindows.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('PySide6\\plugins\\imageformats\\qsvg.dll',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\plugins\\imageformats\\qsvg.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('PySide6\\plugins\\imageformats\\qtga.dll',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\plugins\\imageformats\\qtga.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('PySide6\\plugins\\platforms\\qminimal.dll',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\plugins\\platforms\\qminimal.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('PySide6\\plugins\\imageformats\\qpdf.dll',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\plugins\\imageformats\\qpdf.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('PySide6\\plugins\\imageformats\\qjpeg.dll',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\plugins\\imageformats\\qjpeg.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('PySide6\\plugins\\platforms\\qdirect2d.dll',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\plugins\\platforms\\qdirect2d.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('PySide6\\plugins\\generic\\qtuiotouchplugin.dll',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\plugins\\generic\\qtuiotouchplugin.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('PySide6\\plugins\\imageformats\\qwbmp.dll',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\plugins\\imageformats\\qwbmp.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('PySide6\\plugins\\imageformats\\qicns.dll',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\plugins\\imageformats\\qicns.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('PySide6\\plugins\\imageformats\\qtiff.dll',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\plugins\\imageformats\\qtiff.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('PySide6\\plugins\\iconengines\\qsvgicon.dll',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\plugins\\iconengines\\qsvgicon.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('PySide6\\plugins\\imageformats\\qgif.dll',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\plugins\\imageformats\\qgif.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('PySide6\\opengl32sw.dll',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\opengl32sw.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('PySide6\\plugins\\tls\\qcertonlybackend.dll',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\plugins\\tls\\qcertonlybackend.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('PySide6\\plugins\\tls\\qschannelbackend.dll',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\plugins\\tls\\qschannelbackend.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('libssl-3-x64.dll',
|
||||||
|
'C:\\Program Files\\MySQL\\MySQL Server 8.0\\bin\\libssl-3-x64.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('PySide6\\plugins\\networkinformation\\qnetworklistmanager.dll',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\plugins\\networkinformation\\qnetworklistmanager.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('PySide6\\plugins\\tls\\qopensslbackend.dll',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\plugins\\tls\\qopensslbackend.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('libcrypto-3-x64.dll',
|
||||||
|
'C:\\Program Files\\MySQL\\MySQL Server 8.0\\bin\\libcrypto-3-x64.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('PySide6\\plugins\\styles\\qmodernwindowsstyle.dll',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\plugins\\styles\\qmodernwindowsstyle.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('select.pyd',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\DLLs\\select.pyd',
|
||||||
|
'EXTENSION'),
|
||||||
|
('_socket.pyd',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\DLLs\\_socket.pyd',
|
||||||
|
'EXTENSION'),
|
||||||
|
('unicodedata.pyd',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\DLLs\\unicodedata.pyd',
|
||||||
|
'EXTENSION'),
|
||||||
|
('_zstd.pyd',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\DLLs\\_zstd.pyd',
|
||||||
|
'EXTENSION'),
|
||||||
|
('_lzma.pyd',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\DLLs\\_lzma.pyd',
|
||||||
|
'EXTENSION'),
|
||||||
|
('_bz2.pyd',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\DLLs\\_bz2.pyd',
|
||||||
|
'EXTENSION'),
|
||||||
|
('_overlapped.pyd',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\DLLs\\_overlapped.pyd',
|
||||||
|
'EXTENSION'),
|
||||||
|
('_asyncio.pyd',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\DLLs\\_asyncio.pyd',
|
||||||
|
'EXTENSION'),
|
||||||
|
('_queue.pyd',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\DLLs\\_queue.pyd',
|
||||||
|
'EXTENSION'),
|
||||||
|
('_ctypes.pyd',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\DLLs\\_ctypes.pyd',
|
||||||
|
'EXTENSION'),
|
||||||
|
('_hashlib.pyd',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\DLLs\\_hashlib.pyd',
|
||||||
|
'EXTENSION'),
|
||||||
|
('_multiprocessing.pyd',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\DLLs\\_multiprocessing.pyd',
|
||||||
|
'EXTENSION'),
|
||||||
|
('pyexpat.pyd',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\DLLs\\pyexpat.pyd',
|
||||||
|
'EXTENSION'),
|
||||||
|
('_ssl.pyd',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\DLLs\\_ssl.pyd',
|
||||||
|
'EXTENSION'),
|
||||||
|
('_decimal.pyd',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\DLLs\\_decimal.pyd',
|
||||||
|
'EXTENSION'),
|
||||||
|
('_wmi.pyd',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\DLLs\\_wmi.pyd',
|
||||||
|
'EXTENSION'),
|
||||||
|
('PySide6\\QtGui.pyd',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\QtGui.pyd',
|
||||||
|
'EXTENSION'),
|
||||||
|
('shiboken6\\Shiboken.pyd',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\shiboken6\\Shiboken.pyd',
|
||||||
|
'EXTENSION'),
|
||||||
|
('PySide6\\QtNetwork.pyd',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\QtNetwork.pyd',
|
||||||
|
'EXTENSION'),
|
||||||
|
('PySide6\\QtUiTools.pyd',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\QtUiTools.pyd',
|
||||||
|
'EXTENSION'),
|
||||||
|
('PySide6\\QtOpenGLWidgets.pyd',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\QtOpenGLWidgets.pyd',
|
||||||
|
'EXTENSION'),
|
||||||
|
('PySide6\\QtOpenGL.pyd',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\QtOpenGL.pyd',
|
||||||
|
'EXTENSION'),
|
||||||
|
('PySide6\\QtCore.pyd',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\QtCore.pyd',
|
||||||
|
'EXTENSION'),
|
||||||
|
('PySide6\\QtWidgets.pyd',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\QtWidgets.pyd',
|
||||||
|
'EXTENSION'),
|
||||||
|
('_cffi_backend.cp314-win_amd64.pyd',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\_cffi_backend.cp314-win_amd64.pyd',
|
||||||
|
'EXTENSION'),
|
||||||
|
('cryptography\\hazmat\\bindings\\_rust.pyd',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\cryptography\\hazmat\\bindings\\_rust.pyd',
|
||||||
|
'EXTENSION'),
|
||||||
|
('charset_normalizer\\md__mypyc.cp314-win_amd64.pyd',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\charset_normalizer\\md__mypyc.cp314-win_amd64.pyd',
|
||||||
|
'EXTENSION'),
|
||||||
|
('charset_normalizer\\md.cp314-win_amd64.pyd',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\charset_normalizer\\md.cp314-win_amd64.pyd',
|
||||||
|
'EXTENSION'),
|
||||||
|
('_sqlite3.pyd',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\DLLs\\_sqlite3.pyd',
|
||||||
|
'EXTENSION'),
|
||||||
|
('psutil\\_psutil_windows.pyd',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\psutil\\_psutil_windows.pyd',
|
||||||
|
'EXTENSION'),
|
||||||
|
('_uuid.pyd',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\DLLs\\_uuid.pyd',
|
||||||
|
'EXTENSION'),
|
||||||
|
('api-ms-win-crt-string-l1-1-0.dll',
|
||||||
|
'C:\\Users\\ADMINI~1\\AppData\\Local\\Temp\\_MEI171962\\api-ms-win-crt-string-l1-1-0.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('VCRUNTIME140.dll',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\VCRUNTIME140.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('api-ms-win-crt-environment-l1-1-0.dll',
|
||||||
|
'C:\\Users\\ADMINI~1\\AppData\\Local\\Temp\\_MEI171962\\api-ms-win-crt-environment-l1-1-0.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('api-ms-win-crt-filesystem-l1-1-0.dll',
|
||||||
|
'C:\\Users\\ADMINI~1\\AppData\\Local\\Temp\\_MEI171962\\api-ms-win-crt-filesystem-l1-1-0.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('api-ms-win-crt-conio-l1-1-0.dll',
|
||||||
|
'C:\\Users\\ADMINI~1\\AppData\\Local\\Temp\\_MEI171962\\api-ms-win-crt-conio-l1-1-0.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('api-ms-win-crt-heap-l1-1-0.dll',
|
||||||
|
'C:\\Users\\ADMINI~1\\AppData\\Local\\Temp\\_MEI171962\\api-ms-win-crt-heap-l1-1-0.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('api-ms-win-crt-runtime-l1-1-0.dll',
|
||||||
|
'C:\\Users\\ADMINI~1\\AppData\\Local\\Temp\\_MEI171962\\api-ms-win-crt-runtime-l1-1-0.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('api-ms-win-crt-convert-l1-1-0.dll',
|
||||||
|
'C:\\Users\\ADMINI~1\\AppData\\Local\\Temp\\_MEI171962\\api-ms-win-crt-convert-l1-1-0.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('api-ms-win-crt-process-l1-1-0.dll',
|
||||||
|
'C:\\Users\\ADMINI~1\\AppData\\Local\\Temp\\_MEI171962\\api-ms-win-crt-process-l1-1-0.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('api-ms-win-crt-time-l1-1-0.dll',
|
||||||
|
'C:\\Users\\ADMINI~1\\AppData\\Local\\Temp\\_MEI171962\\api-ms-win-crt-time-l1-1-0.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('api-ms-win-crt-stdio-l1-1-0.dll',
|
||||||
|
'C:\\Users\\ADMINI~1\\AppData\\Local\\Temp\\_MEI171962\\api-ms-win-crt-stdio-l1-1-0.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('api-ms-win-crt-math-l1-1-0.dll',
|
||||||
|
'C:\\Users\\ADMINI~1\\AppData\\Local\\Temp\\_MEI171962\\api-ms-win-crt-math-l1-1-0.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('api-ms-win-crt-locale-l1-1-0.dll',
|
||||||
|
'C:\\Users\\ADMINI~1\\AppData\\Local\\Temp\\_MEI171962\\api-ms-win-crt-locale-l1-1-0.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('PySide6\\Qt6Core.dll',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\Qt6Core.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('PySide6\\Qt6Gui.dll',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\Qt6Gui.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('api-ms-win-crt-utility-l1-1-0.dll',
|
||||||
|
'C:\\Users\\ADMINI~1\\AppData\\Local\\Temp\\_MEI171962\\api-ms-win-crt-utility-l1-1-0.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('PySide6\\Qt6VirtualKeyboard.dll',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\Qt6VirtualKeyboard.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('VCRUNTIME140_1.dll',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\VCRUNTIME140_1.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('shiboken6\\MSVCP140.dll',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\shiboken6\\MSVCP140.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('PySide6\\Qt6Svg.dll',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\Qt6Svg.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('PySide6\\Qt6Pdf.dll',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\Qt6Pdf.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('PySide6\\Qt6Network.dll',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\Qt6Network.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('PySide6\\Qt6Widgets.dll',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\Qt6Widgets.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('libffi-8.dll',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\DLLs\\libffi-8.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('libcrypto-3.dll',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\DLLs\\libcrypto-3.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('libssl-3.dll',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\DLLs\\libssl-3.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('PySide6\\VCRUNTIME140_1.dll',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\VCRUNTIME140_1.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('PySide6\\MSVCP140_2.dll',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\MSVCP140_2.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('PySide6\\pyside6.abi3.dll',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\pyside6.abi3.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('python3.dll',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\python3.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('PySide6\\VCRUNTIME140.dll',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\VCRUNTIME140.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('PySide6\\MSVCP140.dll',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\MSVCP140.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('shiboken6\\shiboken6.abi3.dll',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\shiboken6\\shiboken6.abi3.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('shiboken6\\VCRUNTIME140.dll',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\shiboken6\\VCRUNTIME140.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('shiboken6\\VCRUNTIME140_1.dll',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\shiboken6\\VCRUNTIME140_1.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('PySide6\\Qt6UiTools.dll',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\Qt6UiTools.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('PySide6\\Qt6OpenGLWidgets.dll',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\Qt6OpenGLWidgets.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('PySide6\\Qt6OpenGL.dll',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\Qt6OpenGL.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('api-ms-win-core-synch-l1-2-0.dll',
|
||||||
|
'C:\\Users\\ADMINI~1\\AppData\\Local\\Temp\\_MEI171962\\api-ms-win-core-synch-l1-2-0.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('sqlite3.dll',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\DLLs\\sqlite3.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('ucrtbase.dll',
|
||||||
|
'C:\\Users\\ADMINI~1\\AppData\\Local\\Temp\\_MEI171962\\ucrtbase.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('PySide6\\MSVCP140_1.dll',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\MSVCP140_1.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('PySide6\\Qt6Qml.dll',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\Qt6Qml.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('PySide6\\Qt6Quick.dll',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\Qt6Quick.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('api-ms-win-core-localization-l1-2-0.dll',
|
||||||
|
'C:\\Users\\ADMINI~1\\AppData\\Local\\Temp\\_MEI171962\\api-ms-win-core-localization-l1-2-0.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('api-ms-win-core-profile-l1-1-0.dll',
|
||||||
|
'C:\\Users\\ADMINI~1\\AppData\\Local\\Temp\\_MEI171962\\api-ms-win-core-profile-l1-1-0.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('api-ms-win-core-console-l1-1-0.dll',
|
||||||
|
'C:\\Users\\ADMINI~1\\AppData\\Local\\Temp\\_MEI171962\\api-ms-win-core-console-l1-1-0.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('api-ms-win-core-sysinfo-l1-1-0.dll',
|
||||||
|
'C:\\Users\\ADMINI~1\\AppData\\Local\\Temp\\_MEI171962\\api-ms-win-core-sysinfo-l1-1-0.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('api-ms-win-core-heap-l1-1-0.dll',
|
||||||
|
'C:\\Users\\ADMINI~1\\AppData\\Local\\Temp\\_MEI171962\\api-ms-win-core-heap-l1-1-0.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('api-ms-win-core-string-l1-1-0.dll',
|
||||||
|
'C:\\Users\\ADMINI~1\\AppData\\Local\\Temp\\_MEI171962\\api-ms-win-core-string-l1-1-0.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('api-ms-win-core-timezone-l1-1-0.dll',
|
||||||
|
'C:\\Users\\ADMINI~1\\AppData\\Local\\Temp\\_MEI171962\\api-ms-win-core-timezone-l1-1-0.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('api-ms-win-core-file-l1-1-0.dll',
|
||||||
|
'C:\\Users\\ADMINI~1\\AppData\\Local\\Temp\\_MEI171962\\api-ms-win-core-file-l1-1-0.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('api-ms-win-core-interlocked-l1-1-0.dll',
|
||||||
|
'C:\\Users\\ADMINI~1\\AppData\\Local\\Temp\\_MEI171962\\api-ms-win-core-interlocked-l1-1-0.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('api-ms-win-core-libraryloader-l1-1-0.dll',
|
||||||
|
'C:\\Users\\ADMINI~1\\AppData\\Local\\Temp\\_MEI171962\\api-ms-win-core-libraryloader-l1-1-0.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('api-ms-win-core-file-l1-2-0.dll',
|
||||||
|
'C:\\Users\\ADMINI~1\\AppData\\Local\\Temp\\_MEI171962\\api-ms-win-core-file-l1-2-0.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('api-ms-win-core-processenvironment-l1-1-0.dll',
|
||||||
|
'C:\\Users\\ADMINI~1\\AppData\\Local\\Temp\\_MEI171962\\api-ms-win-core-processenvironment-l1-1-0.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('api-ms-win-core-namedpipe-l1-1-0.dll',
|
||||||
|
'C:\\Users\\ADMINI~1\\AppData\\Local\\Temp\\_MEI171962\\api-ms-win-core-namedpipe-l1-1-0.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('api-ms-win-core-errorhandling-l1-1-0.dll',
|
||||||
|
'C:\\Users\\ADMINI~1\\AppData\\Local\\Temp\\_MEI171962\\api-ms-win-core-errorhandling-l1-1-0.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('api-ms-win-core-datetime-l1-1-0.dll',
|
||||||
|
'C:\\Users\\ADMINI~1\\AppData\\Local\\Temp\\_MEI171962\\api-ms-win-core-datetime-l1-1-0.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('api-ms-win-core-memory-l1-1-0.dll',
|
||||||
|
'C:\\Users\\ADMINI~1\\AppData\\Local\\Temp\\_MEI171962\\api-ms-win-core-memory-l1-1-0.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('api-ms-win-core-handle-l1-1-0.dll',
|
||||||
|
'C:\\Users\\ADMINI~1\\AppData\\Local\\Temp\\_MEI171962\\api-ms-win-core-handle-l1-1-0.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('api-ms-win-core-synch-l1-1-0.dll',
|
||||||
|
'C:\\Users\\ADMINI~1\\AppData\\Local\\Temp\\_MEI171962\\api-ms-win-core-synch-l1-1-0.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('api-ms-win-core-processthreads-l1-1-1.dll',
|
||||||
|
'C:\\Users\\ADMINI~1\\AppData\\Local\\Temp\\_MEI171962\\api-ms-win-core-processthreads-l1-1-1.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('api-ms-win-core-processthreads-l1-1-0.dll',
|
||||||
|
'C:\\Users\\ADMINI~1\\AppData\\Local\\Temp\\_MEI171962\\api-ms-win-core-processthreads-l1-1-0.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('api-ms-win-core-rtlsupport-l1-1-0.dll',
|
||||||
|
'C:\\Users\\ADMINI~1\\AppData\\Local\\Temp\\_MEI171962\\api-ms-win-core-rtlsupport-l1-1-0.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('api-ms-win-core-debug-l1-1-0.dll',
|
||||||
|
'C:\\Users\\ADMINI~1\\AppData\\Local\\Temp\\_MEI171962\\api-ms-win-core-debug-l1-1-0.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('api-ms-win-core-util-l1-1-0.dll',
|
||||||
|
'C:\\Users\\ADMINI~1\\AppData\\Local\\Temp\\_MEI171962\\api-ms-win-core-util-l1-1-0.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('api-ms-win-core-file-l2-1-0.dll',
|
||||||
|
'C:\\Users\\ADMINI~1\\AppData\\Local\\Temp\\_MEI171962\\api-ms-win-core-file-l2-1-0.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('PySide6\\Qt6QmlModels.dll',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\Qt6QmlModels.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('PySide6\\Qt6QmlMeta.dll',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\Qt6QmlMeta.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('PySide6\\Qt6QmlWorkerScript.dll',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\Qt6QmlWorkerScript.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('assets\\images\\donate\\wx.jpg',
|
||||||
|
'E:\\Demo\\Python\\CursorTokenLogin\\assets\\images\\donate\\wx.jpg',
|
||||||
|
'DATA'),
|
||||||
|
('assets\\images\\donate\\zfb.jpg',
|
||||||
|
'E:\\Demo\\Python\\CursorTokenLogin\\assets\\images\\donate\\zfb.jpg',
|
||||||
|
'DATA'),
|
||||||
|
('layout\\main.ui',
|
||||||
|
'E:\\Demo\\Python\\CursorTokenLogin\\layout\\main.ui',
|
||||||
|
'DATA'),
|
||||||
|
('logo.ico', 'E:\\Demo\\Python\\CursorTokenLogin\\logo.ico', 'DATA'),
|
||||||
|
('PySide6\\translations\\qtbase_hu.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qtbase_hu.qm',
|
||||||
|
'DATA'),
|
||||||
|
('PySide6\\translations\\qt_help_ko.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qt_help_ko.qm',
|
||||||
|
'DATA'),
|
||||||
|
('PySide6\\translations\\qtbase_nn.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qtbase_nn.qm',
|
||||||
|
'DATA'),
|
||||||
|
('PySide6\\translations\\qt_help_ka.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qt_help_ka.qm',
|
||||||
|
'DATA'),
|
||||||
|
('PySide6\\translations\\qt_help_uk.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qt_help_uk.qm',
|
||||||
|
'DATA'),
|
||||||
|
('PySide6\\translations\\qt_help_zh_CN.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qt_help_zh_CN.qm',
|
||||||
|
'DATA'),
|
||||||
|
('PySide6\\translations\\qtbase_ar.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qtbase_ar.qm',
|
||||||
|
'DATA'),
|
||||||
|
('PySide6\\translations\\qt_hr.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qt_hr.qm',
|
||||||
|
'DATA'),
|
||||||
|
('PySide6\\translations\\qtbase_da.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qtbase_da.qm',
|
||||||
|
'DATA'),
|
||||||
|
('PySide6\\translations\\qt_help_zh_TW.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qt_help_zh_TW.qm',
|
||||||
|
'DATA'),
|
||||||
|
('PySide6\\translations\\qt_fr.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qt_fr.qm',
|
||||||
|
'DATA'),
|
||||||
|
('PySide6\\translations\\qtbase_zh_CN.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qtbase_zh_CN.qm',
|
||||||
|
'DATA'),
|
||||||
|
('PySide6\\translations\\qt_lg.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qt_lg.qm',
|
||||||
|
'DATA'),
|
||||||
|
('PySide6\\translations\\qt_pt_PT.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qt_pt_PT.qm',
|
||||||
|
'DATA'),
|
||||||
|
('PySide6\\translations\\qtbase_lg.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qtbase_lg.qm',
|
||||||
|
'DATA'),
|
||||||
|
('PySide6\\translations\\qtbase_sv.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qtbase_sv.qm',
|
||||||
|
'DATA'),
|
||||||
|
('PySide6\\translations\\qtbase_fi.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qtbase_fi.qm',
|
||||||
|
'DATA'),
|
||||||
|
('PySide6\\translations\\qt_help_es.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qt_help_es.qm',
|
||||||
|
'DATA'),
|
||||||
|
('PySide6\\translations\\qt_nl.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qt_nl.qm',
|
||||||
|
'DATA'),
|
||||||
|
('PySide6\\translations\\qt_help_hr.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qt_help_hr.qm',
|
||||||
|
'DATA'),
|
||||||
|
('PySide6\\translations\\qt_ca.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qt_ca.qm',
|
||||||
|
'DATA'),
|
||||||
|
('PySide6\\translations\\qtbase_nl.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qtbase_nl.qm',
|
||||||
|
'DATA'),
|
||||||
|
('PySide6\\translations\\qt_help_bg.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qt_help_bg.qm',
|
||||||
|
'DATA'),
|
||||||
|
('PySide6\\translations\\qtbase_he.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qtbase_he.qm',
|
||||||
|
'DATA'),
|
||||||
|
('PySide6\\translations\\qt_help_da.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qt_help_da.qm',
|
||||||
|
'DATA'),
|
||||||
|
('PySide6\\translations\\qt_sl.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qt_sl.qm',
|
||||||
|
'DATA'),
|
||||||
|
('PySide6\\translations\\qtbase_gd.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qtbase_gd.qm',
|
||||||
|
'DATA'),
|
||||||
|
('PySide6\\translations\\qtbase_fr.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qtbase_fr.qm',
|
||||||
|
'DATA'),
|
||||||
|
('PySide6\\translations\\qt_fa.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qt_fa.qm',
|
||||||
|
'DATA'),
|
||||||
|
('PySide6\\translations\\qtbase_fa.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qtbase_fa.qm',
|
||||||
|
'DATA'),
|
||||||
|
('PySide6\\translations\\qtbase_it.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qtbase_it.qm',
|
||||||
|
'DATA'),
|
||||||
|
('PySide6\\translations\\qtbase_uk.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qtbase_uk.qm',
|
||||||
|
'DATA'),
|
||||||
|
('PySide6\\translations\\qt_es.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qt_es.qm',
|
||||||
|
'DATA'),
|
||||||
|
('PySide6\\translations\\qt_tr.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qt_tr.qm',
|
||||||
|
'DATA'),
|
||||||
|
('PySide6\\translations\\qt_help_fr.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qt_help_fr.qm',
|
||||||
|
'DATA'),
|
||||||
|
('PySide6\\translations\\qtbase_hr.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qtbase_hr.qm',
|
||||||
|
'DATA'),
|
||||||
|
('PySide6\\translations\\qt_help_hu.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qt_help_hu.qm',
|
||||||
|
'DATA'),
|
||||||
|
('PySide6\\translations\\qtbase_ca.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qtbase_ca.qm',
|
||||||
|
'DATA'),
|
||||||
|
('PySide6\\translations\\qtbase_sk.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qtbase_sk.qm',
|
||||||
|
'DATA'),
|
||||||
|
('PySide6\\translations\\qtbase_ru.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qtbase_ru.qm',
|
||||||
|
'DATA'),
|
||||||
|
('PySide6\\translations\\qt_help_en.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qt_help_en.qm',
|
||||||
|
'DATA'),
|
||||||
|
('PySide6\\translations\\qt_help_pl.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qt_help_pl.qm',
|
||||||
|
'DATA'),
|
||||||
|
('PySide6\\translations\\qt_zh_CN.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qt_zh_CN.qm',
|
||||||
|
'DATA'),
|
||||||
|
('PySide6\\translations\\qt_gl.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qt_gl.qm',
|
||||||
|
'DATA'),
|
||||||
|
('PySide6\\translations\\qt_en.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qt_en.qm',
|
||||||
|
'DATA'),
|
||||||
|
('PySide6\\translations\\qt_help_pt_BR.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qt_help_pt_BR.qm',
|
||||||
|
'DATA'),
|
||||||
|
('PySide6\\translations\\qt_ar.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qt_ar.qm',
|
||||||
|
'DATA'),
|
||||||
|
('PySide6\\translations\\qt_help_ru.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qt_help_ru.qm',
|
||||||
|
'DATA'),
|
||||||
|
('PySide6\\translations\\qt_pl.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qt_pl.qm',
|
||||||
|
'DATA'),
|
||||||
|
('PySide6\\translations\\qt_help_sk.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qt_help_sk.qm',
|
||||||
|
'DATA'),
|
||||||
|
('PySide6\\translations\\qtbase_es.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qtbase_es.qm',
|
||||||
|
'DATA'),
|
||||||
|
('PySide6\\translations\\qt_help_ca.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qt_help_ca.qm',
|
||||||
|
'DATA'),
|
||||||
|
('PySide6\\translations\\qt_pt_BR.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qt_pt_BR.qm',
|
||||||
|
'DATA'),
|
||||||
|
('PySide6\\translations\\qt_help_nn.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qt_help_nn.qm',
|
||||||
|
'DATA'),
|
||||||
|
('PySide6\\translations\\qtbase_zh_TW.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qtbase_zh_TW.qm',
|
||||||
|
'DATA'),
|
||||||
|
('PySide6\\translations\\qt_help_gl.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qt_help_gl.qm',
|
||||||
|
'DATA'),
|
||||||
|
('PySide6\\translations\\qt_help_sv.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qt_help_sv.qm',
|
||||||
|
'DATA'),
|
||||||
|
('PySide6\\translations\\qt_gd.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qt_gd.qm',
|
||||||
|
'DATA'),
|
||||||
|
('PySide6\\translations\\qt_help_tr.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qt_help_tr.qm',
|
||||||
|
'DATA'),
|
||||||
|
('PySide6\\translations\\qtbase_cs.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qtbase_cs.qm',
|
||||||
|
'DATA'),
|
||||||
|
('PySide6\\translations\\qtbase_lv.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qtbase_lv.qm',
|
||||||
|
'DATA'),
|
||||||
|
('PySide6\\translations\\qt_help_ar.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qt_help_ar.qm',
|
||||||
|
'DATA'),
|
||||||
|
('PySide6\\translations\\qtbase_tr.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qtbase_tr.qm',
|
||||||
|
'DATA'),
|
||||||
|
('PySide6\\translations\\qtbase_ko.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qtbase_ko.qm',
|
||||||
|
'DATA'),
|
||||||
|
('PySide6\\translations\\qt_zh_TW.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qt_zh_TW.qm',
|
||||||
|
'DATA'),
|
||||||
|
('PySide6\\translations\\qt_de.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qt_de.qm',
|
||||||
|
'DATA'),
|
||||||
|
('PySide6\\translations\\qt_ru.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qt_ru.qm',
|
||||||
|
'DATA'),
|
||||||
|
('PySide6\\translations\\qt_it.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qt_it.qm',
|
||||||
|
'DATA'),
|
||||||
|
('PySide6\\translations\\qt_help_it.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qt_help_it.qm',
|
||||||
|
'DATA'),
|
||||||
|
('PySide6\\translations\\qt_lv.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qt_lv.qm',
|
||||||
|
'DATA'),
|
||||||
|
('PySide6\\translations\\qtbase_bg.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qtbase_bg.qm',
|
||||||
|
'DATA'),
|
||||||
|
('PySide6\\translations\\qt_ka.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qt_ka.qm',
|
||||||
|
'DATA'),
|
||||||
|
('PySide6\\translations\\qt_he.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qt_he.qm',
|
||||||
|
'DATA'),
|
||||||
|
('PySide6\\translations\\qt_uk.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qt_uk.qm',
|
||||||
|
'DATA'),
|
||||||
|
('PySide6\\translations\\qt_help_cs.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qt_help_cs.qm',
|
||||||
|
'DATA'),
|
||||||
|
('PySide6\\translations\\qtbase_ja.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qtbase_ja.qm',
|
||||||
|
'DATA'),
|
||||||
|
('PySide6\\translations\\qt_fi.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qt_fi.qm',
|
||||||
|
'DATA'),
|
||||||
|
('PySide6\\translations\\qt_help_ja.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qt_help_ja.qm',
|
||||||
|
'DATA'),
|
||||||
|
('PySide6\\translations\\qtbase_en.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qtbase_en.qm',
|
||||||
|
'DATA'),
|
||||||
|
('PySide6\\translations\\qt_sk.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qt_sk.qm',
|
||||||
|
'DATA'),
|
||||||
|
('PySide6\\translations\\qt_lt.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qt_lt.qm',
|
||||||
|
'DATA'),
|
||||||
|
('PySide6\\translations\\qtbase_pl.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qtbase_pl.qm',
|
||||||
|
'DATA'),
|
||||||
|
('PySide6\\translations\\qt_sv.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qt_sv.qm',
|
||||||
|
'DATA'),
|
||||||
|
('PySide6\\translations\\qt_da.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qt_da.qm',
|
||||||
|
'DATA'),
|
||||||
|
('PySide6\\translations\\qt_help_de.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qt_help_de.qm',
|
||||||
|
'DATA'),
|
||||||
|
('PySide6\\translations\\qt_ko.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qt_ko.qm',
|
||||||
|
'DATA'),
|
||||||
|
('PySide6\\translations\\qt_nn.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qt_nn.qm',
|
||||||
|
'DATA'),
|
||||||
|
('PySide6\\translations\\qt_cs.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qt_cs.qm',
|
||||||
|
'DATA'),
|
||||||
|
('PySide6\\translations\\qt_help_sl.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qt_help_sl.qm',
|
||||||
|
'DATA'),
|
||||||
|
('PySide6\\translations\\qt_help_nl.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qt_help_nl.qm',
|
||||||
|
'DATA'),
|
||||||
|
('PySide6\\translations\\qt_bg.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qt_bg.qm',
|
||||||
|
'DATA'),
|
||||||
|
('PySide6\\translations\\qt_ja.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qt_ja.qm',
|
||||||
|
'DATA'),
|
||||||
|
('PySide6\\translations\\qt_hu.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qt_hu.qm',
|
||||||
|
'DATA'),
|
||||||
|
('PySide6\\translations\\qtbase_ka.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qtbase_ka.qm',
|
||||||
|
'DATA'),
|
||||||
|
('PySide6\\translations\\qtbase_pt_BR.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qtbase_pt_BR.qm',
|
||||||
|
'DATA'),
|
||||||
|
('PySide6\\translations\\qtbase_de.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qtbase_de.qm',
|
||||||
|
'DATA'),
|
||||||
|
('setuptools\\_vendor\\importlib_metadata-8.7.1.dist-info\\INSTALLER',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\setuptools\\_vendor\\importlib_metadata-8.7.1.dist-info\\INSTALLER',
|
||||||
|
'DATA'),
|
||||||
|
('setuptools\\_vendor\\importlib_metadata-8.7.1.dist-info\\licenses\\LICENSE',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\setuptools\\_vendor\\importlib_metadata-8.7.1.dist-info\\licenses\\LICENSE',
|
||||||
|
'DATA'),
|
||||||
|
('setuptools\\_vendor\\importlib_metadata-8.7.1.dist-info\\top_level.txt',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\setuptools\\_vendor\\importlib_metadata-8.7.1.dist-info\\top_level.txt',
|
||||||
|
'DATA'),
|
||||||
|
('setuptools\\_vendor\\importlib_metadata-8.7.1.dist-info\\RECORD',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\setuptools\\_vendor\\importlib_metadata-8.7.1.dist-info\\RECORD',
|
||||||
|
'DATA'),
|
||||||
|
('setuptools\\_vendor\\importlib_metadata-8.7.1.dist-info\\REQUESTED',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\setuptools\\_vendor\\importlib_metadata-8.7.1.dist-info\\REQUESTED',
|
||||||
|
'DATA'),
|
||||||
|
('setuptools\\_vendor\\importlib_metadata-8.7.1.dist-info\\METADATA',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\setuptools\\_vendor\\importlib_metadata-8.7.1.dist-info\\METADATA',
|
||||||
|
'DATA'),
|
||||||
|
('setuptools\\_vendor\\importlib_metadata-8.7.1.dist-info\\WHEEL',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\setuptools\\_vendor\\importlib_metadata-8.7.1.dist-info\\WHEEL',
|
||||||
|
'DATA'),
|
||||||
|
('setuptools\\_vendor\\jaraco\\text\\Lorem ipsum.txt',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\setuptools\\_vendor\\jaraco\\text\\Lorem '
|
||||||
|
'ipsum.txt',
|
||||||
|
'DATA'),
|
||||||
|
('certifi\\cacert.pem',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\certifi\\cacert.pem',
|
||||||
|
'DATA'),
|
||||||
|
('certifi\\py.typed',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\certifi\\py.typed',
|
||||||
|
'DATA'),
|
||||||
|
('cryptography-46.0.3.dist-info\\INSTALLER',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\cryptography-46.0.3.dist-info\\INSTALLER',
|
||||||
|
'DATA'),
|
||||||
|
('cryptography-46.0.3.dist-info\\licenses\\LICENSE.BSD',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\cryptography-46.0.3.dist-info\\licenses\\LICENSE.BSD',
|
||||||
|
'DATA'),
|
||||||
|
('cryptography-46.0.3.dist-info\\WHEEL',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\cryptography-46.0.3.dist-info\\WHEEL',
|
||||||
|
'DATA'),
|
||||||
|
('cryptography-46.0.3.dist-info\\METADATA',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\cryptography-46.0.3.dist-info\\METADATA',
|
||||||
|
'DATA'),
|
||||||
|
('cryptography-46.0.3.dist-info\\licenses\\LICENSE.APACHE',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\cryptography-46.0.3.dist-info\\licenses\\LICENSE.APACHE',
|
||||||
|
'DATA'),
|
||||||
|
('cryptography-46.0.3.dist-info\\RECORD',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\cryptography-46.0.3.dist-info\\RECORD',
|
||||||
|
'DATA'),
|
||||||
|
('cryptography-46.0.3.dist-info\\licenses\\LICENSE',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\cryptography-46.0.3.dist-info\\licenses\\LICENSE',
|
||||||
|
'DATA'),
|
||||||
|
('base_library.zip',
|
||||||
|
'E:\\Demo\\Python\\CursorTokenLogin\\build\\build\\base_library.zip',
|
||||||
|
'DATA')],
|
||||||
|
[],
|
||||||
|
False,
|
||||||
|
False,
|
||||||
|
1775322721,
|
||||||
|
[('runw.exe',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PyInstaller\\bootloader\\Windows-64bit-intel\\runw.exe',
|
||||||
|
'EXECUTABLE')],
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\python314.dll')
|
||||||
@@ -0,0 +1,799 @@
|
|||||||
|
('E:\\Demo\\Python\\CursorTokenLogin\\build\\build\\CursorTokenLogin.pkg',
|
||||||
|
{'BINARY': True,
|
||||||
|
'DATA': True,
|
||||||
|
'EXECUTABLE': True,
|
||||||
|
'EXTENSION': True,
|
||||||
|
'PYMODULE': True,
|
||||||
|
'PYSOURCE': True,
|
||||||
|
'PYZ': False,
|
||||||
|
'SPLASH': True,
|
||||||
|
'SYMLINK': False},
|
||||||
|
[('pyi-runtime-tmpdir %LOCALAPPDATA%\\CursorTokenLogin\\runtime',
|
||||||
|
'',
|
||||||
|
'OPTION'),
|
||||||
|
('pyi-contents-directory _internal', '', 'OPTION'),
|
||||||
|
('PYZ-00.pyz',
|
||||||
|
'E:\\Demo\\Python\\CursorTokenLogin\\build\\build\\PYZ-00.pyz',
|
||||||
|
'PYZ'),
|
||||||
|
('struct',
|
||||||
|
'E:\\Demo\\Python\\CursorTokenLogin\\build\\build\\localpycs\\struct.pyc',
|
||||||
|
'PYMODULE'),
|
||||||
|
('pyimod01_archive',
|
||||||
|
'E:\\Demo\\Python\\CursorTokenLogin\\build\\build\\localpycs\\pyimod01_archive.pyc',
|
||||||
|
'PYMODULE'),
|
||||||
|
('pyimod02_importers',
|
||||||
|
'E:\\Demo\\Python\\CursorTokenLogin\\build\\build\\localpycs\\pyimod02_importers.pyc',
|
||||||
|
'PYMODULE'),
|
||||||
|
('pyimod03_ctypes',
|
||||||
|
'E:\\Demo\\Python\\CursorTokenLogin\\build\\build\\localpycs\\pyimod03_ctypes.pyc',
|
||||||
|
'PYMODULE'),
|
||||||
|
('pyimod04_pywin32',
|
||||||
|
'E:\\Demo\\Python\\CursorTokenLogin\\build\\build\\localpycs\\pyimod04_pywin32.pyc',
|
||||||
|
'PYMODULE'),
|
||||||
|
('pyiboot01_bootstrap',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PyInstaller\\loader\\pyiboot01_bootstrap.py',
|
||||||
|
'PYSOURCE'),
|
||||||
|
('pyi_rth_inspect',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PyInstaller\\hooks\\rthooks\\pyi_rth_inspect.py',
|
||||||
|
'PYSOURCE'),
|
||||||
|
('pyi_rth_pyside6',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PyInstaller\\hooks\\rthooks\\pyi_rth_pyside6.py',
|
||||||
|
'PYSOURCE'),
|
||||||
|
('pyi_rth_pkgutil',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PyInstaller\\hooks\\rthooks\\pyi_rth_pkgutil.py',
|
||||||
|
'PYSOURCE'),
|
||||||
|
('pyi_rth_multiprocessing',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PyInstaller\\hooks\\rthooks\\pyi_rth_multiprocessing.py',
|
||||||
|
'PYSOURCE'),
|
||||||
|
('pyi_rth_setuptools',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PyInstaller\\hooks\\rthooks\\pyi_rth_setuptools.py',
|
||||||
|
'PYSOURCE'),
|
||||||
|
('pyi_rth_cryptography_openssl',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\_pyinstaller_hooks_contrib\\rthooks\\pyi_rth_cryptography_openssl.py',
|
||||||
|
'PYSOURCE'),
|
||||||
|
('main', 'E:\\Demo\\Python\\CursorTokenLogin\\main.py', 'PYSOURCE'),
|
||||||
|
('python314.dll',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\python314.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('PySide6\\plugins\\imageformats\\qwebp.dll',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\plugins\\imageformats\\qwebp.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('PySide6\\plugins\\platforminputcontexts\\qtvirtualkeyboardplugin.dll',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\plugins\\platforminputcontexts\\qtvirtualkeyboardplugin.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('PySide6\\plugins\\imageformats\\qico.dll',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\plugins\\imageformats\\qico.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('PySide6\\plugins\\platforms\\qoffscreen.dll',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\plugins\\platforms\\qoffscreen.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('PySide6\\plugins\\platforms\\qwindows.dll',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\plugins\\platforms\\qwindows.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('PySide6\\plugins\\imageformats\\qsvg.dll',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\plugins\\imageformats\\qsvg.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('PySide6\\plugins\\imageformats\\qtga.dll',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\plugins\\imageformats\\qtga.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('PySide6\\plugins\\platforms\\qminimal.dll',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\plugins\\platforms\\qminimal.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('PySide6\\plugins\\imageformats\\qpdf.dll',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\plugins\\imageformats\\qpdf.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('PySide6\\plugins\\imageformats\\qjpeg.dll',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\plugins\\imageformats\\qjpeg.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('PySide6\\plugins\\platforms\\qdirect2d.dll',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\plugins\\platforms\\qdirect2d.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('PySide6\\plugins\\generic\\qtuiotouchplugin.dll',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\plugins\\generic\\qtuiotouchplugin.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('PySide6\\plugins\\imageformats\\qwbmp.dll',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\plugins\\imageformats\\qwbmp.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('PySide6\\plugins\\imageformats\\qicns.dll',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\plugins\\imageformats\\qicns.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('PySide6\\plugins\\imageformats\\qtiff.dll',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\plugins\\imageformats\\qtiff.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('PySide6\\plugins\\iconengines\\qsvgicon.dll',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\plugins\\iconengines\\qsvgicon.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('PySide6\\plugins\\imageformats\\qgif.dll',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\plugins\\imageformats\\qgif.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('PySide6\\opengl32sw.dll',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\opengl32sw.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('PySide6\\plugins\\tls\\qcertonlybackend.dll',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\plugins\\tls\\qcertonlybackend.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('PySide6\\plugins\\tls\\qschannelbackend.dll',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\plugins\\tls\\qschannelbackend.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('libssl-3-x64.dll',
|
||||||
|
'C:\\Program Files\\MySQL\\MySQL Server 8.0\\bin\\libssl-3-x64.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('PySide6\\plugins\\networkinformation\\qnetworklistmanager.dll',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\plugins\\networkinformation\\qnetworklistmanager.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('PySide6\\plugins\\tls\\qopensslbackend.dll',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\plugins\\tls\\qopensslbackend.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('libcrypto-3-x64.dll',
|
||||||
|
'C:\\Program Files\\MySQL\\MySQL Server 8.0\\bin\\libcrypto-3-x64.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('PySide6\\plugins\\styles\\qmodernwindowsstyle.dll',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\plugins\\styles\\qmodernwindowsstyle.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('select.pyd',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\DLLs\\select.pyd',
|
||||||
|
'EXTENSION'),
|
||||||
|
('_socket.pyd',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\DLLs\\_socket.pyd',
|
||||||
|
'EXTENSION'),
|
||||||
|
('unicodedata.pyd',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\DLLs\\unicodedata.pyd',
|
||||||
|
'EXTENSION'),
|
||||||
|
('_zstd.pyd',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\DLLs\\_zstd.pyd',
|
||||||
|
'EXTENSION'),
|
||||||
|
('_lzma.pyd',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\DLLs\\_lzma.pyd',
|
||||||
|
'EXTENSION'),
|
||||||
|
('_bz2.pyd',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\DLLs\\_bz2.pyd',
|
||||||
|
'EXTENSION'),
|
||||||
|
('_overlapped.pyd',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\DLLs\\_overlapped.pyd',
|
||||||
|
'EXTENSION'),
|
||||||
|
('_asyncio.pyd',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\DLLs\\_asyncio.pyd',
|
||||||
|
'EXTENSION'),
|
||||||
|
('_queue.pyd',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\DLLs\\_queue.pyd',
|
||||||
|
'EXTENSION'),
|
||||||
|
('_ctypes.pyd',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\DLLs\\_ctypes.pyd',
|
||||||
|
'EXTENSION'),
|
||||||
|
('_hashlib.pyd',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\DLLs\\_hashlib.pyd',
|
||||||
|
'EXTENSION'),
|
||||||
|
('_multiprocessing.pyd',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\DLLs\\_multiprocessing.pyd',
|
||||||
|
'EXTENSION'),
|
||||||
|
('pyexpat.pyd',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\DLLs\\pyexpat.pyd',
|
||||||
|
'EXTENSION'),
|
||||||
|
('_ssl.pyd',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\DLLs\\_ssl.pyd',
|
||||||
|
'EXTENSION'),
|
||||||
|
('_decimal.pyd',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\DLLs\\_decimal.pyd',
|
||||||
|
'EXTENSION'),
|
||||||
|
('_wmi.pyd',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\DLLs\\_wmi.pyd',
|
||||||
|
'EXTENSION'),
|
||||||
|
('PySide6\\QtGui.pyd',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\QtGui.pyd',
|
||||||
|
'EXTENSION'),
|
||||||
|
('shiboken6\\Shiboken.pyd',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\shiboken6\\Shiboken.pyd',
|
||||||
|
'EXTENSION'),
|
||||||
|
('PySide6\\QtNetwork.pyd',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\QtNetwork.pyd',
|
||||||
|
'EXTENSION'),
|
||||||
|
('PySide6\\QtUiTools.pyd',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\QtUiTools.pyd',
|
||||||
|
'EXTENSION'),
|
||||||
|
('PySide6\\QtOpenGLWidgets.pyd',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\QtOpenGLWidgets.pyd',
|
||||||
|
'EXTENSION'),
|
||||||
|
('PySide6\\QtOpenGL.pyd',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\QtOpenGL.pyd',
|
||||||
|
'EXTENSION'),
|
||||||
|
('PySide6\\QtCore.pyd',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\QtCore.pyd',
|
||||||
|
'EXTENSION'),
|
||||||
|
('PySide6\\QtWidgets.pyd',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\QtWidgets.pyd',
|
||||||
|
'EXTENSION'),
|
||||||
|
('_cffi_backend.cp314-win_amd64.pyd',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\_cffi_backend.cp314-win_amd64.pyd',
|
||||||
|
'EXTENSION'),
|
||||||
|
('cryptography\\hazmat\\bindings\\_rust.pyd',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\cryptography\\hazmat\\bindings\\_rust.pyd',
|
||||||
|
'EXTENSION'),
|
||||||
|
('charset_normalizer\\md__mypyc.cp314-win_amd64.pyd',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\charset_normalizer\\md__mypyc.cp314-win_amd64.pyd',
|
||||||
|
'EXTENSION'),
|
||||||
|
('charset_normalizer\\md.cp314-win_amd64.pyd',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\charset_normalizer\\md.cp314-win_amd64.pyd',
|
||||||
|
'EXTENSION'),
|
||||||
|
('_sqlite3.pyd',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\DLLs\\_sqlite3.pyd',
|
||||||
|
'EXTENSION'),
|
||||||
|
('psutil\\_psutil_windows.pyd',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\psutil\\_psutil_windows.pyd',
|
||||||
|
'EXTENSION'),
|
||||||
|
('_uuid.pyd',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\DLLs\\_uuid.pyd',
|
||||||
|
'EXTENSION'),
|
||||||
|
('api-ms-win-crt-string-l1-1-0.dll',
|
||||||
|
'C:\\Users\\ADMINI~1\\AppData\\Local\\Temp\\_MEI171962\\api-ms-win-crt-string-l1-1-0.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('VCRUNTIME140.dll',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\VCRUNTIME140.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('api-ms-win-crt-environment-l1-1-0.dll',
|
||||||
|
'C:\\Users\\ADMINI~1\\AppData\\Local\\Temp\\_MEI171962\\api-ms-win-crt-environment-l1-1-0.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('api-ms-win-crt-filesystem-l1-1-0.dll',
|
||||||
|
'C:\\Users\\ADMINI~1\\AppData\\Local\\Temp\\_MEI171962\\api-ms-win-crt-filesystem-l1-1-0.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('api-ms-win-crt-conio-l1-1-0.dll',
|
||||||
|
'C:\\Users\\ADMINI~1\\AppData\\Local\\Temp\\_MEI171962\\api-ms-win-crt-conio-l1-1-0.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('api-ms-win-crt-heap-l1-1-0.dll',
|
||||||
|
'C:\\Users\\ADMINI~1\\AppData\\Local\\Temp\\_MEI171962\\api-ms-win-crt-heap-l1-1-0.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('api-ms-win-crt-runtime-l1-1-0.dll',
|
||||||
|
'C:\\Users\\ADMINI~1\\AppData\\Local\\Temp\\_MEI171962\\api-ms-win-crt-runtime-l1-1-0.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('api-ms-win-crt-convert-l1-1-0.dll',
|
||||||
|
'C:\\Users\\ADMINI~1\\AppData\\Local\\Temp\\_MEI171962\\api-ms-win-crt-convert-l1-1-0.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('api-ms-win-crt-process-l1-1-0.dll',
|
||||||
|
'C:\\Users\\ADMINI~1\\AppData\\Local\\Temp\\_MEI171962\\api-ms-win-crt-process-l1-1-0.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('api-ms-win-crt-time-l1-1-0.dll',
|
||||||
|
'C:\\Users\\ADMINI~1\\AppData\\Local\\Temp\\_MEI171962\\api-ms-win-crt-time-l1-1-0.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('api-ms-win-crt-stdio-l1-1-0.dll',
|
||||||
|
'C:\\Users\\ADMINI~1\\AppData\\Local\\Temp\\_MEI171962\\api-ms-win-crt-stdio-l1-1-0.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('api-ms-win-crt-math-l1-1-0.dll',
|
||||||
|
'C:\\Users\\ADMINI~1\\AppData\\Local\\Temp\\_MEI171962\\api-ms-win-crt-math-l1-1-0.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('api-ms-win-crt-locale-l1-1-0.dll',
|
||||||
|
'C:\\Users\\ADMINI~1\\AppData\\Local\\Temp\\_MEI171962\\api-ms-win-crt-locale-l1-1-0.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('PySide6\\Qt6Core.dll',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\Qt6Core.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('PySide6\\Qt6Gui.dll',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\Qt6Gui.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('api-ms-win-crt-utility-l1-1-0.dll',
|
||||||
|
'C:\\Users\\ADMINI~1\\AppData\\Local\\Temp\\_MEI171962\\api-ms-win-crt-utility-l1-1-0.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('PySide6\\Qt6VirtualKeyboard.dll',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\Qt6VirtualKeyboard.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('VCRUNTIME140_1.dll',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\VCRUNTIME140_1.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('shiboken6\\MSVCP140.dll',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\shiboken6\\MSVCP140.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('PySide6\\Qt6Svg.dll',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\Qt6Svg.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('PySide6\\Qt6Pdf.dll',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\Qt6Pdf.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('PySide6\\Qt6Network.dll',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\Qt6Network.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('PySide6\\Qt6Widgets.dll',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\Qt6Widgets.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('libffi-8.dll',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\DLLs\\libffi-8.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('libcrypto-3.dll',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\DLLs\\libcrypto-3.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('libssl-3.dll',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\DLLs\\libssl-3.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('PySide6\\VCRUNTIME140_1.dll',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\VCRUNTIME140_1.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('PySide6\\MSVCP140_2.dll',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\MSVCP140_2.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('PySide6\\pyside6.abi3.dll',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\pyside6.abi3.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('python3.dll',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\python3.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('PySide6\\VCRUNTIME140.dll',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\VCRUNTIME140.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('PySide6\\MSVCP140.dll',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\MSVCP140.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('shiboken6\\shiboken6.abi3.dll',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\shiboken6\\shiboken6.abi3.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('shiboken6\\VCRUNTIME140.dll',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\shiboken6\\VCRUNTIME140.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('shiboken6\\VCRUNTIME140_1.dll',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\shiboken6\\VCRUNTIME140_1.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('PySide6\\Qt6UiTools.dll',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\Qt6UiTools.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('PySide6\\Qt6OpenGLWidgets.dll',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\Qt6OpenGLWidgets.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('PySide6\\Qt6OpenGL.dll',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\Qt6OpenGL.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('api-ms-win-core-synch-l1-2-0.dll',
|
||||||
|
'C:\\Users\\ADMINI~1\\AppData\\Local\\Temp\\_MEI171962\\api-ms-win-core-synch-l1-2-0.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('sqlite3.dll',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\DLLs\\sqlite3.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('ucrtbase.dll',
|
||||||
|
'C:\\Users\\ADMINI~1\\AppData\\Local\\Temp\\_MEI171962\\ucrtbase.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('PySide6\\MSVCP140_1.dll',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\MSVCP140_1.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('PySide6\\Qt6Qml.dll',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\Qt6Qml.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('PySide6\\Qt6Quick.dll',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\Qt6Quick.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('api-ms-win-core-localization-l1-2-0.dll',
|
||||||
|
'C:\\Users\\ADMINI~1\\AppData\\Local\\Temp\\_MEI171962\\api-ms-win-core-localization-l1-2-0.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('api-ms-win-core-profile-l1-1-0.dll',
|
||||||
|
'C:\\Users\\ADMINI~1\\AppData\\Local\\Temp\\_MEI171962\\api-ms-win-core-profile-l1-1-0.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('api-ms-win-core-console-l1-1-0.dll',
|
||||||
|
'C:\\Users\\ADMINI~1\\AppData\\Local\\Temp\\_MEI171962\\api-ms-win-core-console-l1-1-0.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('api-ms-win-core-sysinfo-l1-1-0.dll',
|
||||||
|
'C:\\Users\\ADMINI~1\\AppData\\Local\\Temp\\_MEI171962\\api-ms-win-core-sysinfo-l1-1-0.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('api-ms-win-core-heap-l1-1-0.dll',
|
||||||
|
'C:\\Users\\ADMINI~1\\AppData\\Local\\Temp\\_MEI171962\\api-ms-win-core-heap-l1-1-0.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('api-ms-win-core-string-l1-1-0.dll',
|
||||||
|
'C:\\Users\\ADMINI~1\\AppData\\Local\\Temp\\_MEI171962\\api-ms-win-core-string-l1-1-0.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('api-ms-win-core-timezone-l1-1-0.dll',
|
||||||
|
'C:\\Users\\ADMINI~1\\AppData\\Local\\Temp\\_MEI171962\\api-ms-win-core-timezone-l1-1-0.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('api-ms-win-core-file-l1-1-0.dll',
|
||||||
|
'C:\\Users\\ADMINI~1\\AppData\\Local\\Temp\\_MEI171962\\api-ms-win-core-file-l1-1-0.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('api-ms-win-core-interlocked-l1-1-0.dll',
|
||||||
|
'C:\\Users\\ADMINI~1\\AppData\\Local\\Temp\\_MEI171962\\api-ms-win-core-interlocked-l1-1-0.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('api-ms-win-core-libraryloader-l1-1-0.dll',
|
||||||
|
'C:\\Users\\ADMINI~1\\AppData\\Local\\Temp\\_MEI171962\\api-ms-win-core-libraryloader-l1-1-0.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('api-ms-win-core-file-l1-2-0.dll',
|
||||||
|
'C:\\Users\\ADMINI~1\\AppData\\Local\\Temp\\_MEI171962\\api-ms-win-core-file-l1-2-0.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('api-ms-win-core-processenvironment-l1-1-0.dll',
|
||||||
|
'C:\\Users\\ADMINI~1\\AppData\\Local\\Temp\\_MEI171962\\api-ms-win-core-processenvironment-l1-1-0.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('api-ms-win-core-namedpipe-l1-1-0.dll',
|
||||||
|
'C:\\Users\\ADMINI~1\\AppData\\Local\\Temp\\_MEI171962\\api-ms-win-core-namedpipe-l1-1-0.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('api-ms-win-core-errorhandling-l1-1-0.dll',
|
||||||
|
'C:\\Users\\ADMINI~1\\AppData\\Local\\Temp\\_MEI171962\\api-ms-win-core-errorhandling-l1-1-0.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('api-ms-win-core-datetime-l1-1-0.dll',
|
||||||
|
'C:\\Users\\ADMINI~1\\AppData\\Local\\Temp\\_MEI171962\\api-ms-win-core-datetime-l1-1-0.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('api-ms-win-core-memory-l1-1-0.dll',
|
||||||
|
'C:\\Users\\ADMINI~1\\AppData\\Local\\Temp\\_MEI171962\\api-ms-win-core-memory-l1-1-0.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('api-ms-win-core-handle-l1-1-0.dll',
|
||||||
|
'C:\\Users\\ADMINI~1\\AppData\\Local\\Temp\\_MEI171962\\api-ms-win-core-handle-l1-1-0.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('api-ms-win-core-synch-l1-1-0.dll',
|
||||||
|
'C:\\Users\\ADMINI~1\\AppData\\Local\\Temp\\_MEI171962\\api-ms-win-core-synch-l1-1-0.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('api-ms-win-core-processthreads-l1-1-1.dll',
|
||||||
|
'C:\\Users\\ADMINI~1\\AppData\\Local\\Temp\\_MEI171962\\api-ms-win-core-processthreads-l1-1-1.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('api-ms-win-core-processthreads-l1-1-0.dll',
|
||||||
|
'C:\\Users\\ADMINI~1\\AppData\\Local\\Temp\\_MEI171962\\api-ms-win-core-processthreads-l1-1-0.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('api-ms-win-core-rtlsupport-l1-1-0.dll',
|
||||||
|
'C:\\Users\\ADMINI~1\\AppData\\Local\\Temp\\_MEI171962\\api-ms-win-core-rtlsupport-l1-1-0.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('api-ms-win-core-debug-l1-1-0.dll',
|
||||||
|
'C:\\Users\\ADMINI~1\\AppData\\Local\\Temp\\_MEI171962\\api-ms-win-core-debug-l1-1-0.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('api-ms-win-core-util-l1-1-0.dll',
|
||||||
|
'C:\\Users\\ADMINI~1\\AppData\\Local\\Temp\\_MEI171962\\api-ms-win-core-util-l1-1-0.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('api-ms-win-core-file-l2-1-0.dll',
|
||||||
|
'C:\\Users\\ADMINI~1\\AppData\\Local\\Temp\\_MEI171962\\api-ms-win-core-file-l2-1-0.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('PySide6\\Qt6QmlModels.dll',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\Qt6QmlModels.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('PySide6\\Qt6QmlMeta.dll',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\Qt6QmlMeta.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('PySide6\\Qt6QmlWorkerScript.dll',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\Qt6QmlWorkerScript.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('assets\\images\\donate\\wx.jpg',
|
||||||
|
'E:\\Demo\\Python\\CursorTokenLogin\\assets\\images\\donate\\wx.jpg',
|
||||||
|
'DATA'),
|
||||||
|
('assets\\images\\donate\\zfb.jpg',
|
||||||
|
'E:\\Demo\\Python\\CursorTokenLogin\\assets\\images\\donate\\zfb.jpg',
|
||||||
|
'DATA'),
|
||||||
|
('layout\\main.ui',
|
||||||
|
'E:\\Demo\\Python\\CursorTokenLogin\\layout\\main.ui',
|
||||||
|
'DATA'),
|
||||||
|
('logo.ico', 'E:\\Demo\\Python\\CursorTokenLogin\\logo.ico', 'DATA'),
|
||||||
|
('PySide6\\translations\\qtbase_hu.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qtbase_hu.qm',
|
||||||
|
'DATA'),
|
||||||
|
('PySide6\\translations\\qt_help_ko.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qt_help_ko.qm',
|
||||||
|
'DATA'),
|
||||||
|
('PySide6\\translations\\qtbase_nn.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qtbase_nn.qm',
|
||||||
|
'DATA'),
|
||||||
|
('PySide6\\translations\\qt_help_ka.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qt_help_ka.qm',
|
||||||
|
'DATA'),
|
||||||
|
('PySide6\\translations\\qt_help_uk.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qt_help_uk.qm',
|
||||||
|
'DATA'),
|
||||||
|
('PySide6\\translations\\qt_help_zh_CN.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qt_help_zh_CN.qm',
|
||||||
|
'DATA'),
|
||||||
|
('PySide6\\translations\\qtbase_ar.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qtbase_ar.qm',
|
||||||
|
'DATA'),
|
||||||
|
('PySide6\\translations\\qt_hr.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qt_hr.qm',
|
||||||
|
'DATA'),
|
||||||
|
('PySide6\\translations\\qtbase_da.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qtbase_da.qm',
|
||||||
|
'DATA'),
|
||||||
|
('PySide6\\translations\\qt_help_zh_TW.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qt_help_zh_TW.qm',
|
||||||
|
'DATA'),
|
||||||
|
('PySide6\\translations\\qt_fr.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qt_fr.qm',
|
||||||
|
'DATA'),
|
||||||
|
('PySide6\\translations\\qtbase_zh_CN.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qtbase_zh_CN.qm',
|
||||||
|
'DATA'),
|
||||||
|
('PySide6\\translations\\qt_lg.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qt_lg.qm',
|
||||||
|
'DATA'),
|
||||||
|
('PySide6\\translations\\qt_pt_PT.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qt_pt_PT.qm',
|
||||||
|
'DATA'),
|
||||||
|
('PySide6\\translations\\qtbase_lg.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qtbase_lg.qm',
|
||||||
|
'DATA'),
|
||||||
|
('PySide6\\translations\\qtbase_sv.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qtbase_sv.qm',
|
||||||
|
'DATA'),
|
||||||
|
('PySide6\\translations\\qtbase_fi.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qtbase_fi.qm',
|
||||||
|
'DATA'),
|
||||||
|
('PySide6\\translations\\qt_help_es.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qt_help_es.qm',
|
||||||
|
'DATA'),
|
||||||
|
('PySide6\\translations\\qt_nl.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qt_nl.qm',
|
||||||
|
'DATA'),
|
||||||
|
('PySide6\\translations\\qt_help_hr.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qt_help_hr.qm',
|
||||||
|
'DATA'),
|
||||||
|
('PySide6\\translations\\qt_ca.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qt_ca.qm',
|
||||||
|
'DATA'),
|
||||||
|
('PySide6\\translations\\qtbase_nl.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qtbase_nl.qm',
|
||||||
|
'DATA'),
|
||||||
|
('PySide6\\translations\\qt_help_bg.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qt_help_bg.qm',
|
||||||
|
'DATA'),
|
||||||
|
('PySide6\\translations\\qtbase_he.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qtbase_he.qm',
|
||||||
|
'DATA'),
|
||||||
|
('PySide6\\translations\\qt_help_da.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qt_help_da.qm',
|
||||||
|
'DATA'),
|
||||||
|
('PySide6\\translations\\qt_sl.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qt_sl.qm',
|
||||||
|
'DATA'),
|
||||||
|
('PySide6\\translations\\qtbase_gd.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qtbase_gd.qm',
|
||||||
|
'DATA'),
|
||||||
|
('PySide6\\translations\\qtbase_fr.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qtbase_fr.qm',
|
||||||
|
'DATA'),
|
||||||
|
('PySide6\\translations\\qt_fa.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qt_fa.qm',
|
||||||
|
'DATA'),
|
||||||
|
('PySide6\\translations\\qtbase_fa.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qtbase_fa.qm',
|
||||||
|
'DATA'),
|
||||||
|
('PySide6\\translations\\qtbase_it.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qtbase_it.qm',
|
||||||
|
'DATA'),
|
||||||
|
('PySide6\\translations\\qtbase_uk.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qtbase_uk.qm',
|
||||||
|
'DATA'),
|
||||||
|
('PySide6\\translations\\qt_es.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qt_es.qm',
|
||||||
|
'DATA'),
|
||||||
|
('PySide6\\translations\\qt_tr.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qt_tr.qm',
|
||||||
|
'DATA'),
|
||||||
|
('PySide6\\translations\\qt_help_fr.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qt_help_fr.qm',
|
||||||
|
'DATA'),
|
||||||
|
('PySide6\\translations\\qtbase_hr.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qtbase_hr.qm',
|
||||||
|
'DATA'),
|
||||||
|
('PySide6\\translations\\qt_help_hu.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qt_help_hu.qm',
|
||||||
|
'DATA'),
|
||||||
|
('PySide6\\translations\\qtbase_ca.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qtbase_ca.qm',
|
||||||
|
'DATA'),
|
||||||
|
('PySide6\\translations\\qtbase_sk.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qtbase_sk.qm',
|
||||||
|
'DATA'),
|
||||||
|
('PySide6\\translations\\qtbase_ru.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qtbase_ru.qm',
|
||||||
|
'DATA'),
|
||||||
|
('PySide6\\translations\\qt_help_en.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qt_help_en.qm',
|
||||||
|
'DATA'),
|
||||||
|
('PySide6\\translations\\qt_help_pl.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qt_help_pl.qm',
|
||||||
|
'DATA'),
|
||||||
|
('PySide6\\translations\\qt_zh_CN.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qt_zh_CN.qm',
|
||||||
|
'DATA'),
|
||||||
|
('PySide6\\translations\\qt_gl.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qt_gl.qm',
|
||||||
|
'DATA'),
|
||||||
|
('PySide6\\translations\\qt_en.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qt_en.qm',
|
||||||
|
'DATA'),
|
||||||
|
('PySide6\\translations\\qt_help_pt_BR.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qt_help_pt_BR.qm',
|
||||||
|
'DATA'),
|
||||||
|
('PySide6\\translations\\qt_ar.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qt_ar.qm',
|
||||||
|
'DATA'),
|
||||||
|
('PySide6\\translations\\qt_help_ru.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qt_help_ru.qm',
|
||||||
|
'DATA'),
|
||||||
|
('PySide6\\translations\\qt_pl.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qt_pl.qm',
|
||||||
|
'DATA'),
|
||||||
|
('PySide6\\translations\\qt_help_sk.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qt_help_sk.qm',
|
||||||
|
'DATA'),
|
||||||
|
('PySide6\\translations\\qtbase_es.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qtbase_es.qm',
|
||||||
|
'DATA'),
|
||||||
|
('PySide6\\translations\\qt_help_ca.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qt_help_ca.qm',
|
||||||
|
'DATA'),
|
||||||
|
('PySide6\\translations\\qt_pt_BR.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qt_pt_BR.qm',
|
||||||
|
'DATA'),
|
||||||
|
('PySide6\\translations\\qt_help_nn.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qt_help_nn.qm',
|
||||||
|
'DATA'),
|
||||||
|
('PySide6\\translations\\qtbase_zh_TW.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qtbase_zh_TW.qm',
|
||||||
|
'DATA'),
|
||||||
|
('PySide6\\translations\\qt_help_gl.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qt_help_gl.qm',
|
||||||
|
'DATA'),
|
||||||
|
('PySide6\\translations\\qt_help_sv.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qt_help_sv.qm',
|
||||||
|
'DATA'),
|
||||||
|
('PySide6\\translations\\qt_gd.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qt_gd.qm',
|
||||||
|
'DATA'),
|
||||||
|
('PySide6\\translations\\qt_help_tr.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qt_help_tr.qm',
|
||||||
|
'DATA'),
|
||||||
|
('PySide6\\translations\\qtbase_cs.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qtbase_cs.qm',
|
||||||
|
'DATA'),
|
||||||
|
('PySide6\\translations\\qtbase_lv.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qtbase_lv.qm',
|
||||||
|
'DATA'),
|
||||||
|
('PySide6\\translations\\qt_help_ar.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qt_help_ar.qm',
|
||||||
|
'DATA'),
|
||||||
|
('PySide6\\translations\\qtbase_tr.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qtbase_tr.qm',
|
||||||
|
'DATA'),
|
||||||
|
('PySide6\\translations\\qtbase_ko.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qtbase_ko.qm',
|
||||||
|
'DATA'),
|
||||||
|
('PySide6\\translations\\qt_zh_TW.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qt_zh_TW.qm',
|
||||||
|
'DATA'),
|
||||||
|
('PySide6\\translations\\qt_de.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qt_de.qm',
|
||||||
|
'DATA'),
|
||||||
|
('PySide6\\translations\\qt_ru.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qt_ru.qm',
|
||||||
|
'DATA'),
|
||||||
|
('PySide6\\translations\\qt_it.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qt_it.qm',
|
||||||
|
'DATA'),
|
||||||
|
('PySide6\\translations\\qt_help_it.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qt_help_it.qm',
|
||||||
|
'DATA'),
|
||||||
|
('PySide6\\translations\\qt_lv.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qt_lv.qm',
|
||||||
|
'DATA'),
|
||||||
|
('PySide6\\translations\\qtbase_bg.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qtbase_bg.qm',
|
||||||
|
'DATA'),
|
||||||
|
('PySide6\\translations\\qt_ka.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qt_ka.qm',
|
||||||
|
'DATA'),
|
||||||
|
('PySide6\\translations\\qt_he.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qt_he.qm',
|
||||||
|
'DATA'),
|
||||||
|
('PySide6\\translations\\qt_uk.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qt_uk.qm',
|
||||||
|
'DATA'),
|
||||||
|
('PySide6\\translations\\qt_help_cs.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qt_help_cs.qm',
|
||||||
|
'DATA'),
|
||||||
|
('PySide6\\translations\\qtbase_ja.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qtbase_ja.qm',
|
||||||
|
'DATA'),
|
||||||
|
('PySide6\\translations\\qt_fi.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qt_fi.qm',
|
||||||
|
'DATA'),
|
||||||
|
('PySide6\\translations\\qt_help_ja.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qt_help_ja.qm',
|
||||||
|
'DATA'),
|
||||||
|
('PySide6\\translations\\qtbase_en.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qtbase_en.qm',
|
||||||
|
'DATA'),
|
||||||
|
('PySide6\\translations\\qt_sk.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qt_sk.qm',
|
||||||
|
'DATA'),
|
||||||
|
('PySide6\\translations\\qt_lt.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qt_lt.qm',
|
||||||
|
'DATA'),
|
||||||
|
('PySide6\\translations\\qtbase_pl.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qtbase_pl.qm',
|
||||||
|
'DATA'),
|
||||||
|
('PySide6\\translations\\qt_sv.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qt_sv.qm',
|
||||||
|
'DATA'),
|
||||||
|
('PySide6\\translations\\qt_da.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qt_da.qm',
|
||||||
|
'DATA'),
|
||||||
|
('PySide6\\translations\\qt_help_de.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qt_help_de.qm',
|
||||||
|
'DATA'),
|
||||||
|
('PySide6\\translations\\qt_ko.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qt_ko.qm',
|
||||||
|
'DATA'),
|
||||||
|
('PySide6\\translations\\qt_nn.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qt_nn.qm',
|
||||||
|
'DATA'),
|
||||||
|
('PySide6\\translations\\qt_cs.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qt_cs.qm',
|
||||||
|
'DATA'),
|
||||||
|
('PySide6\\translations\\qt_help_sl.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qt_help_sl.qm',
|
||||||
|
'DATA'),
|
||||||
|
('PySide6\\translations\\qt_help_nl.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qt_help_nl.qm',
|
||||||
|
'DATA'),
|
||||||
|
('PySide6\\translations\\qt_bg.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qt_bg.qm',
|
||||||
|
'DATA'),
|
||||||
|
('PySide6\\translations\\qt_ja.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qt_ja.qm',
|
||||||
|
'DATA'),
|
||||||
|
('PySide6\\translations\\qt_hu.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qt_hu.qm',
|
||||||
|
'DATA'),
|
||||||
|
('PySide6\\translations\\qtbase_ka.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qtbase_ka.qm',
|
||||||
|
'DATA'),
|
||||||
|
('PySide6\\translations\\qtbase_pt_BR.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qtbase_pt_BR.qm',
|
||||||
|
'DATA'),
|
||||||
|
('PySide6\\translations\\qtbase_de.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qtbase_de.qm',
|
||||||
|
'DATA'),
|
||||||
|
('setuptools\\_vendor\\importlib_metadata-8.7.1.dist-info\\INSTALLER',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\setuptools\\_vendor\\importlib_metadata-8.7.1.dist-info\\INSTALLER',
|
||||||
|
'DATA'),
|
||||||
|
('setuptools\\_vendor\\importlib_metadata-8.7.1.dist-info\\licenses\\LICENSE',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\setuptools\\_vendor\\importlib_metadata-8.7.1.dist-info\\licenses\\LICENSE',
|
||||||
|
'DATA'),
|
||||||
|
('setuptools\\_vendor\\importlib_metadata-8.7.1.dist-info\\top_level.txt',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\setuptools\\_vendor\\importlib_metadata-8.7.1.dist-info\\top_level.txt',
|
||||||
|
'DATA'),
|
||||||
|
('setuptools\\_vendor\\importlib_metadata-8.7.1.dist-info\\RECORD',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\setuptools\\_vendor\\importlib_metadata-8.7.1.dist-info\\RECORD',
|
||||||
|
'DATA'),
|
||||||
|
('setuptools\\_vendor\\importlib_metadata-8.7.1.dist-info\\REQUESTED',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\setuptools\\_vendor\\importlib_metadata-8.7.1.dist-info\\REQUESTED',
|
||||||
|
'DATA'),
|
||||||
|
('setuptools\\_vendor\\importlib_metadata-8.7.1.dist-info\\METADATA',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\setuptools\\_vendor\\importlib_metadata-8.7.1.dist-info\\METADATA',
|
||||||
|
'DATA'),
|
||||||
|
('setuptools\\_vendor\\importlib_metadata-8.7.1.dist-info\\WHEEL',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\setuptools\\_vendor\\importlib_metadata-8.7.1.dist-info\\WHEEL',
|
||||||
|
'DATA'),
|
||||||
|
('setuptools\\_vendor\\jaraco\\text\\Lorem ipsum.txt',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\setuptools\\_vendor\\jaraco\\text\\Lorem '
|
||||||
|
'ipsum.txt',
|
||||||
|
'DATA'),
|
||||||
|
('certifi\\cacert.pem',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\certifi\\cacert.pem',
|
||||||
|
'DATA'),
|
||||||
|
('certifi\\py.typed',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\certifi\\py.typed',
|
||||||
|
'DATA'),
|
||||||
|
('cryptography-46.0.3.dist-info\\INSTALLER',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\cryptography-46.0.3.dist-info\\INSTALLER',
|
||||||
|
'DATA'),
|
||||||
|
('cryptography-46.0.3.dist-info\\licenses\\LICENSE.BSD',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\cryptography-46.0.3.dist-info\\licenses\\LICENSE.BSD',
|
||||||
|
'DATA'),
|
||||||
|
('cryptography-46.0.3.dist-info\\WHEEL',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\cryptography-46.0.3.dist-info\\WHEEL',
|
||||||
|
'DATA'),
|
||||||
|
('cryptography-46.0.3.dist-info\\METADATA',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\cryptography-46.0.3.dist-info\\METADATA',
|
||||||
|
'DATA'),
|
||||||
|
('cryptography-46.0.3.dist-info\\licenses\\LICENSE.APACHE',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\cryptography-46.0.3.dist-info\\licenses\\LICENSE.APACHE',
|
||||||
|
'DATA'),
|
||||||
|
('cryptography-46.0.3.dist-info\\RECORD',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\cryptography-46.0.3.dist-info\\RECORD',
|
||||||
|
'DATA'),
|
||||||
|
('cryptography-46.0.3.dist-info\\licenses\\LICENSE',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\cryptography-46.0.3.dist-info\\licenses\\LICENSE',
|
||||||
|
'DATA'),
|
||||||
|
('base_library.zip',
|
||||||
|
'E:\\Demo\\Python\\CursorTokenLogin\\build\\build\\base_library.zip',
|
||||||
|
'DATA')],
|
||||||
|
'python314.dll',
|
||||||
|
False,
|
||||||
|
False,
|
||||||
|
False,
|
||||||
|
[],
|
||||||
|
None,
|
||||||
|
None,
|
||||||
|
None)
|
||||||
Binary file not shown.
File diff suppressed because it is too large
Load Diff
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@@ -0,0 +1,62 @@
|
|||||||
|
|
||||||
|
This file lists modules PyInstaller was not able to find. This does not
|
||||||
|
necessarily mean these modules are required for running your program. Both
|
||||||
|
Python's standard library and 3rd-party Python packages often conditionally
|
||||||
|
import optional modules, some of which may be available only on certain
|
||||||
|
platforms.
|
||||||
|
|
||||||
|
Types of import:
|
||||||
|
* top-level: imported at the top-level - look at these first
|
||||||
|
* conditional: imported within an if-statement
|
||||||
|
* delayed: imported within a function
|
||||||
|
* optional: imported within a try-except-statement
|
||||||
|
|
||||||
|
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 'collections.abc' - imported by tracemalloc (top-level), typing (top-level), traceback (top-level), _colorize (top-level), logging (top-level), selectors (top-level), http.client (top-level), importlib.resources.readers (top-level), inspect (top-level), sqlite3.dbapi2 (top-level), setuptools (top-level), setuptools._distutils.filelist (top-level), setuptools._distutils.util (top-level), setuptools._vendor.jaraco.functools (top-level), setuptools._vendor.more_itertools.more (top-level), setuptools._distutils._modified (top-level), setuptools._distutils.compat (top-level), setuptools._distutils.spawn (top-level), typing_extensions (top-level), asyncio.base_events (top-level), multiprocessing.managers (top-level), asyncio.coroutines (top-level), setuptools._distutils.compilers.C.base (top-level), setuptools._distutils.fancy_getopt (top-level), setuptools._reqs (top-level), setuptools._vendor.jaraco.context (top-level), setuptools.discovery (top-level), setuptools.dist (top-level), setuptools._vendor.importlib_metadata (top-level), setuptools._vendor.importlib_metadata._meta (top-level), setuptools._distutils.command.bdist (top-level), setuptools._distutils.core (top-level), setuptools._distutils.cmd (top-level), setuptools._distutils.dist (top-level), configparser (top-level), setuptools._distutils.extension (top-level), setuptools.config.setupcfg (top-level), setuptools.config.expand (top-level), setuptools.config.pyprojecttoml (top-level), setuptools.config._apply_pyprojecttoml (top-level), setuptools.extension (top-level), tomllib._parser (conditional), setuptools._vendor.tomli._parser (conditional), setuptools.wheel (top-level), setuptools.command.egg_info (top-level), setuptools.command.bdist_egg (top-level), setuptools.command.sdist (top-level), setuptools._distutils.command.build (top-level), setuptools._distutils.command.sdist (top-level), setuptools.glob (top-level), setuptools.command._requirestxt (top-level), setuptools.command.bdist_wheel (top-level), requests.compat (top-level), cryptography.utils (top-level), cryptography.x509.name (top-level), cryptography.x509.base (top-level), cryptography.hazmat.bindings.openssl.binding (top-level), cryptography.x509.extensions (top-level), PySide6.QtCore (top-level), PySide6.QtNetwork (top-level), PySide6.QtGui (top-level), PySide6.QtWidgets (top-level), setuptools._distutils.command.build_ext (top-level), _pyrepl.types (top-level), _pyrepl.readline (top-level), setuptools._distutils.compilers.C.msvc (top-level), PySide6.QtOpenGL (top-level)
|
||||||
|
missing module named posix - imported by os (conditional, optional), posixpath (optional), shutil (conditional), importlib._bootstrap_external (conditional), pathlib._os (optional), _pyrepl.trace (conditional), _pyrepl.unix_console (optional)
|
||||||
|
missing module named resource - imported by posix (top-level)
|
||||||
|
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 _posixshmem - imported by multiprocessing.resource_tracker (conditional), multiprocessing.shared_memory (conditional)
|
||||||
|
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 multiprocessing.AuthenticationError - imported by multiprocessing (top-level), multiprocessing.forkserver (top-level), multiprocessing.connection (top-level)
|
||||||
|
missing module named _posixsubprocess - imported by subprocess (conditional), multiprocessing.util (delayed)
|
||||||
|
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 _scproxy - imported by urllib.request (conditional)
|
||||||
|
missing module named pwd - imported by posixpath (delayed, conditional, optional), shutil (delayed, optional), tarfile (optional), pathlib (optional), netrc (delayed, optional), subprocess (delayed, conditional, optional), psutil (optional), setuptools._distutils.util (delayed, conditional, optional), setuptools._vendor.backports.tarfile (optional), setuptools._distutils.archive_util (optional), http.server (delayed, optional)
|
||||||
|
missing module named multiprocessing.BufferTooShort - imported by multiprocessing (top-level), multiprocessing.connection (top-level)
|
||||||
|
missing module named grp - imported by shutil (delayed, optional), tarfile (optional), pathlib (optional), subprocess (delayed, conditional, optional), setuptools._vendor.backports.tarfile (optional), setuptools._distutils.archive_util (optional)
|
||||||
|
missing module named _typeshed - imported by setuptools._distutils.dist (conditional), setuptools.command.bdist_egg (conditional), setuptools.glob (conditional), setuptools._vendor.wheel.wheelfile (conditional), setuptools.compat.py311 (conditional)
|
||||||
|
missing module named vms_lib - imported by platform (delayed, optional)
|
||||||
|
missing module named 'java.lang' - imported by platform (delayed, optional)
|
||||||
|
missing module named java - imported by platform (delayed)
|
||||||
|
missing module named usercustomize - imported by site (delayed, optional)
|
||||||
|
missing module named sitecustomize - imported by site (delayed, optional)
|
||||||
|
missing module named termios - imported by tty (top-level), _pyrepl.pager (delayed, optional), _pyrepl.unix_console (top-level), _pyrepl.fancy_termios (top-level), _pyrepl.unix_eventqueue (top-level)
|
||||||
|
missing module named fcntl - imported by pathlib._os (optional), subprocess (optional), _pyrepl.unix_console (top-level)
|
||||||
|
missing module named readline - imported by site (delayed, optional), rlcompleter (optional), code (delayed, conditional, optional), sqlite3.__main__ (delayed, conditional, optional)
|
||||||
|
missing module named _manylinux - imported by packaging._manylinux (delayed, optional), setuptools._vendor.packaging._manylinux (delayed, optional)
|
||||||
|
missing module named setuptools._vendor.backports.zstd - imported by setuptools._vendor.backports (top-level), urllib3.util.request (conditional, optional), urllib3.response (conditional, optional)
|
||||||
|
missing module named importlib_resources - imported by setuptools._vendor.jaraco.text (optional)
|
||||||
|
missing module named trove_classifiers - imported by setuptools.config._validate_pyproject.formats (optional)
|
||||||
|
missing module named pyimod02_importers - imported by C:\Users\Administrator\AppData\Local\Python\pythoncore-3.14-64\Lib\site-packages\PyInstaller\hooks\rthooks\pyi_rth_pkgutil.py (delayed)
|
||||||
|
missing module named simplejson - imported by requests.compat (conditional, optional)
|
||||||
|
missing module named dummy_threading - imported by requests.cookies (optional)
|
||||||
|
missing module named 'h2.events' - imported by urllib3.http2.connection (top-level)
|
||||||
|
missing module named 'h2.connection' - imported by urllib3.http2.connection (top-level)
|
||||||
|
missing module named h2 - imported by urllib3.http2.connection (top-level)
|
||||||
|
missing module named brotli - imported by urllib3.util.request (optional), urllib3.response (optional)
|
||||||
|
missing module named brotlicffi - imported by urllib3.util.request (optional), urllib3.response (optional)
|
||||||
|
missing module named socks - imported by urllib3.contrib.socks (optional)
|
||||||
|
missing module named bcrypt - imported by cryptography.hazmat.primitives.serialization.ssh (optional)
|
||||||
|
missing module named cryptography.x509.UnsupportedExtension - imported by cryptography.x509 (optional), urllib3.contrib.pyopenssl (optional)
|
||||||
|
missing module named 'OpenSSL.crypto' - imported by urllib3.contrib.pyopenssl (delayed, conditional)
|
||||||
|
missing module named OpenSSL - imported by urllib3.contrib.pyopenssl (top-level)
|
||||||
|
missing module named chardet - imported by requests.compat (optional), requests (optional), requests.packages (optional)
|
||||||
|
missing module named 'pyodide.ffi' - imported by urllib3.contrib.emscripten.fetch (delayed, optional)
|
||||||
|
missing module named pyodide - imported by urllib3.contrib.emscripten.fetch (top-level)
|
||||||
|
missing module named js - imported by urllib3.contrib.emscripten.fetch (top-level)
|
||||||
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,737 @@
|
|||||||
|
([('CursorTokenLogin.exe',
|
||||||
|
'E:\\Demo\\Python\\CursorTokenLogin\\build\\build_onedir\\CursorTokenLogin.exe',
|
||||||
|
'EXECUTABLE'),
|
||||||
|
('python314.dll',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\python314.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('PySide6\\plugins\\imageformats\\qjpeg.dll',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\plugins\\imageformats\\qjpeg.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('PySide6\\plugins\\iconengines\\qsvgicon.dll',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\plugins\\iconengines\\qsvgicon.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('PySide6\\plugins\\platforms\\qdirect2d.dll',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\plugins\\platforms\\qdirect2d.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('PySide6\\plugins\\imageformats\\qgif.dll',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\plugins\\imageformats\\qgif.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('PySide6\\plugins\\imageformats\\qpdf.dll',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\plugins\\imageformats\\qpdf.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('PySide6\\plugins\\imageformats\\qtiff.dll',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\plugins\\imageformats\\qtiff.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('PySide6\\plugins\\platforminputcontexts\\qtvirtualkeyboardplugin.dll',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\plugins\\platforminputcontexts\\qtvirtualkeyboardplugin.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('PySide6\\plugins\\platforms\\qoffscreen.dll',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\plugins\\platforms\\qoffscreen.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('PySide6\\plugins\\imageformats\\qwebp.dll',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\plugins\\imageformats\\qwebp.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('PySide6\\plugins\\platforms\\qwindows.dll',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\plugins\\platforms\\qwindows.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('PySide6\\plugins\\imageformats\\qtga.dll',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\plugins\\imageformats\\qtga.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('PySide6\\plugins\\imageformats\\qwbmp.dll',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\plugins\\imageformats\\qwbmp.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('PySide6\\plugins\\generic\\qtuiotouchplugin.dll',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\plugins\\generic\\qtuiotouchplugin.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('PySide6\\plugins\\imageformats\\qsvg.dll',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\plugins\\imageformats\\qsvg.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('PySide6\\plugins\\platforms\\qminimal.dll',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\plugins\\platforms\\qminimal.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('PySide6\\plugins\\imageformats\\qicns.dll',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\plugins\\imageformats\\qicns.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('PySide6\\plugins\\imageformats\\qico.dll',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\plugins\\imageformats\\qico.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('PySide6\\opengl32sw.dll',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\opengl32sw.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('PySide6\\plugins\\tls\\qopensslbackend.dll',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\plugins\\tls\\qopensslbackend.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('libcrypto-3-x64.dll',
|
||||||
|
'C:\\Program Files\\MySQL\\MySQL Server 8.0\\bin\\libcrypto-3-x64.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('PySide6\\plugins\\networkinformation\\qnetworklistmanager.dll',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\plugins\\networkinformation\\qnetworklistmanager.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('PySide6\\plugins\\tls\\qcertonlybackend.dll',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\plugins\\tls\\qcertonlybackend.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('PySide6\\plugins\\tls\\qschannelbackend.dll',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\plugins\\tls\\qschannelbackend.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('libssl-3-x64.dll',
|
||||||
|
'C:\\Program Files\\MySQL\\MySQL Server 8.0\\bin\\libssl-3-x64.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('PySide6\\plugins\\styles\\qmodernwindowsstyle.dll',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\plugins\\styles\\qmodernwindowsstyle.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('select.pyd',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\DLLs\\select.pyd',
|
||||||
|
'EXTENSION'),
|
||||||
|
('_socket.pyd',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\DLLs\\_socket.pyd',
|
||||||
|
'EXTENSION'),
|
||||||
|
('unicodedata.pyd',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\DLLs\\unicodedata.pyd',
|
||||||
|
'EXTENSION'),
|
||||||
|
('_zstd.pyd',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\DLLs\\_zstd.pyd',
|
||||||
|
'EXTENSION'),
|
||||||
|
('_lzma.pyd',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\DLLs\\_lzma.pyd',
|
||||||
|
'EXTENSION'),
|
||||||
|
('_bz2.pyd',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\DLLs\\_bz2.pyd',
|
||||||
|
'EXTENSION'),
|
||||||
|
('_overlapped.pyd',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\DLLs\\_overlapped.pyd',
|
||||||
|
'EXTENSION'),
|
||||||
|
('_asyncio.pyd',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\DLLs\\_asyncio.pyd',
|
||||||
|
'EXTENSION'),
|
||||||
|
('_queue.pyd',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\DLLs\\_queue.pyd',
|
||||||
|
'EXTENSION'),
|
||||||
|
('_ctypes.pyd',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\DLLs\\_ctypes.pyd',
|
||||||
|
'EXTENSION'),
|
||||||
|
('_hashlib.pyd',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\DLLs\\_hashlib.pyd',
|
||||||
|
'EXTENSION'),
|
||||||
|
('_multiprocessing.pyd',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\DLLs\\_multiprocessing.pyd',
|
||||||
|
'EXTENSION'),
|
||||||
|
('pyexpat.pyd',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\DLLs\\pyexpat.pyd',
|
||||||
|
'EXTENSION'),
|
||||||
|
('_ssl.pyd',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\DLLs\\_ssl.pyd',
|
||||||
|
'EXTENSION'),
|
||||||
|
('_decimal.pyd',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\DLLs\\_decimal.pyd',
|
||||||
|
'EXTENSION'),
|
||||||
|
('_wmi.pyd',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\DLLs\\_wmi.pyd',
|
||||||
|
'EXTENSION'),
|
||||||
|
('PySide6\\QtGui.pyd',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\QtGui.pyd',
|
||||||
|
'EXTENSION'),
|
||||||
|
('shiboken6\\Shiboken.pyd',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\shiboken6\\Shiboken.pyd',
|
||||||
|
'EXTENSION'),
|
||||||
|
('PySide6\\QtNetwork.pyd',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\QtNetwork.pyd',
|
||||||
|
'EXTENSION'),
|
||||||
|
('PySide6\\QtUiTools.pyd',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\QtUiTools.pyd',
|
||||||
|
'EXTENSION'),
|
||||||
|
('PySide6\\QtOpenGLWidgets.pyd',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\QtOpenGLWidgets.pyd',
|
||||||
|
'EXTENSION'),
|
||||||
|
('PySide6\\QtOpenGL.pyd',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\QtOpenGL.pyd',
|
||||||
|
'EXTENSION'),
|
||||||
|
('PySide6\\QtCore.pyd',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\QtCore.pyd',
|
||||||
|
'EXTENSION'),
|
||||||
|
('PySide6\\QtWidgets.pyd',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\QtWidgets.pyd',
|
||||||
|
'EXTENSION'),
|
||||||
|
('_cffi_backend.cp314-win_amd64.pyd',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\_cffi_backend.cp314-win_amd64.pyd',
|
||||||
|
'EXTENSION'),
|
||||||
|
('cryptography\\hazmat\\bindings\\_rust.pyd',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\cryptography\\hazmat\\bindings\\_rust.pyd',
|
||||||
|
'EXTENSION'),
|
||||||
|
('charset_normalizer\\md__mypyc.cp314-win_amd64.pyd',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\charset_normalizer\\md__mypyc.cp314-win_amd64.pyd',
|
||||||
|
'EXTENSION'),
|
||||||
|
('charset_normalizer\\md.cp314-win_amd64.pyd',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\charset_normalizer\\md.cp314-win_amd64.pyd',
|
||||||
|
'EXTENSION'),
|
||||||
|
('_sqlite3.pyd',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\DLLs\\_sqlite3.pyd',
|
||||||
|
'EXTENSION'),
|
||||||
|
('psutil\\_psutil_windows.pyd',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\psutil\\_psutil_windows.pyd',
|
||||||
|
'EXTENSION'),
|
||||||
|
('_uuid.pyd',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\DLLs\\_uuid.pyd',
|
||||||
|
'EXTENSION'),
|
||||||
|
('api-ms-win-crt-convert-l1-1-0.dll',
|
||||||
|
'C:\\Windows\\system32\\api-ms-win-crt-convert-l1-1-0.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('api-ms-win-crt-time-l1-1-0.dll',
|
||||||
|
'C:\\Windows\\system32\\api-ms-win-crt-time-l1-1-0.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('api-ms-win-crt-runtime-l1-1-0.dll',
|
||||||
|
'C:\\Windows\\system32\\api-ms-win-crt-runtime-l1-1-0.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('api-ms-win-crt-locale-l1-1-0.dll',
|
||||||
|
'C:\\Windows\\system32\\api-ms-win-crt-locale-l1-1-0.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('api-ms-win-crt-heap-l1-1-0.dll',
|
||||||
|
'C:\\Windows\\system32\\api-ms-win-crt-heap-l1-1-0.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('api-ms-win-crt-stdio-l1-1-0.dll',
|
||||||
|
'C:\\Windows\\system32\\api-ms-win-crt-stdio-l1-1-0.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('api-ms-win-crt-filesystem-l1-1-0.dll',
|
||||||
|
'C:\\Windows\\system32\\api-ms-win-crt-filesystem-l1-1-0.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('api-ms-win-crt-process-l1-1-0.dll',
|
||||||
|
'C:\\Windows\\system32\\api-ms-win-crt-process-l1-1-0.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('api-ms-win-crt-environment-l1-1-0.dll',
|
||||||
|
'C:\\Windows\\system32\\api-ms-win-crt-environment-l1-1-0.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('VCRUNTIME140.dll',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\VCRUNTIME140.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('api-ms-win-crt-conio-l1-1-0.dll',
|
||||||
|
'C:\\Windows\\system32\\api-ms-win-crt-conio-l1-1-0.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('api-ms-win-crt-math-l1-1-0.dll',
|
||||||
|
'C:\\Windows\\system32\\api-ms-win-crt-math-l1-1-0.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('api-ms-win-crt-string-l1-1-0.dll',
|
||||||
|
'C:\\Windows\\system32\\api-ms-win-crt-string-l1-1-0.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('PySide6\\Qt6Core.dll',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\Qt6Core.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('PySide6\\Qt6Gui.dll',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\Qt6Gui.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('PySide6\\Qt6Svg.dll',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\Qt6Svg.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('VCRUNTIME140_1.dll',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\VCRUNTIME140_1.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('shiboken6\\MSVCP140.dll',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\shiboken6\\MSVCP140.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('PySide6\\Qt6Pdf.dll',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\Qt6Pdf.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('api-ms-win-crt-utility-l1-1-0.dll',
|
||||||
|
'C:\\Windows\\system32\\api-ms-win-crt-utility-l1-1-0.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('PySide6\\Qt6VirtualKeyboard.dll',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\Qt6VirtualKeyboard.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('PySide6\\Qt6Network.dll',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\Qt6Network.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('PySide6\\Qt6Widgets.dll',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\Qt6Widgets.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('libffi-8.dll',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\DLLs\\libffi-8.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('libcrypto-3.dll',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\DLLs\\libcrypto-3.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('libssl-3.dll',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\DLLs\\libssl-3.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('shiboken6\\shiboken6.abi3.dll',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\shiboken6\\shiboken6.abi3.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('PySide6\\pyside6.abi3.dll',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\pyside6.abi3.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('python3.dll',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\python3.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('PySide6\\VCRUNTIME140_1.dll',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\VCRUNTIME140_1.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('PySide6\\MSVCP140.dll',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\MSVCP140.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('PySide6\\MSVCP140_2.dll',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\MSVCP140_2.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('PySide6\\VCRUNTIME140.dll',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\VCRUNTIME140.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('shiboken6\\VCRUNTIME140_1.dll',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\shiboken6\\VCRUNTIME140_1.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('shiboken6\\VCRUNTIME140.dll',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\shiboken6\\VCRUNTIME140.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('PySide6\\Qt6UiTools.dll',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\Qt6UiTools.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('PySide6\\Qt6OpenGLWidgets.dll',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\Qt6OpenGLWidgets.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('PySide6\\Qt6OpenGL.dll',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\Qt6OpenGL.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('api-ms-win-core-synch-l1-2-0.dll',
|
||||||
|
'C:\\Windows\\system32\\api-ms-win-core-synch-l1-2-0.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('sqlite3.dll',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\DLLs\\sqlite3.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('ucrtbase.dll', 'C:\\Windows\\system32\\ucrtbase.dll', 'BINARY'),
|
||||||
|
('PySide6\\MSVCP140_1.dll',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\MSVCP140_1.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('PySide6\\Qt6Quick.dll',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\Qt6Quick.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('PySide6\\Qt6Qml.dll',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\Qt6Qml.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('api-ms-win-core-localization-l1-2-0.dll',
|
||||||
|
'C:\\Windows\\system32\\api-ms-win-core-localization-l1-2-0.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('api-ms-win-core-rtlsupport-l1-1-0.dll',
|
||||||
|
'C:\\Windows\\system32\\api-ms-win-core-rtlsupport-l1-1-0.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('api-ms-win-core-timezone-l1-1-0.dll',
|
||||||
|
'C:\\Windows\\system32\\api-ms-win-core-timezone-l1-1-0.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('api-ms-win-core-console-l1-1-0.dll',
|
||||||
|
'C:\\Windows\\system32\\api-ms-win-core-console-l1-1-0.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('api-ms-win-core-sysinfo-l1-1-0.dll',
|
||||||
|
'C:\\Windows\\system32\\api-ms-win-core-sysinfo-l1-1-0.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('api-ms-win-core-processenvironment-l1-1-0.dll',
|
||||||
|
'C:\\Windows\\system32\\api-ms-win-core-processenvironment-l1-1-0.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('api-ms-win-core-file-l2-1-0.dll',
|
||||||
|
'C:\\Windows\\system32\\api-ms-win-core-file-l2-1-0.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('api-ms-win-core-file-l1-2-0.dll',
|
||||||
|
'C:\\Windows\\system32\\api-ms-win-core-file-l1-2-0.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('api-ms-win-core-file-l1-1-0.dll',
|
||||||
|
'C:\\Windows\\system32\\api-ms-win-core-file-l1-1-0.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('api-ms-win-core-errorhandling-l1-1-0.dll',
|
||||||
|
'C:\\Windows\\system32\\api-ms-win-core-errorhandling-l1-1-0.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('api-ms-win-core-synch-l1-1-0.dll',
|
||||||
|
'C:\\Windows\\system32\\api-ms-win-core-synch-l1-1-0.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('api-ms-win-core-interlocked-l1-1-0.dll',
|
||||||
|
'C:\\Windows\\system32\\api-ms-win-core-interlocked-l1-1-0.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('api-ms-win-core-libraryloader-l1-1-0.dll',
|
||||||
|
'C:\\Windows\\system32\\api-ms-win-core-libraryloader-l1-1-0.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('api-ms-win-core-handle-l1-1-0.dll',
|
||||||
|
'C:\\Windows\\system32\\api-ms-win-core-handle-l1-1-0.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('api-ms-win-core-processthreads-l1-1-1.dll',
|
||||||
|
'C:\\Windows\\system32\\api-ms-win-core-processthreads-l1-1-1.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('api-ms-win-core-profile-l1-1-0.dll',
|
||||||
|
'C:\\Windows\\system32\\api-ms-win-core-profile-l1-1-0.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('api-ms-win-core-datetime-l1-1-0.dll',
|
||||||
|
'C:\\Windows\\system32\\api-ms-win-core-datetime-l1-1-0.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('api-ms-win-core-namedpipe-l1-1-0.dll',
|
||||||
|
'C:\\Windows\\system32\\api-ms-win-core-namedpipe-l1-1-0.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('api-ms-win-core-memory-l1-1-0.dll',
|
||||||
|
'C:\\Windows\\system32\\api-ms-win-core-memory-l1-1-0.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('api-ms-win-core-string-l1-1-0.dll',
|
||||||
|
'C:\\Windows\\system32\\api-ms-win-core-string-l1-1-0.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('api-ms-win-core-heap-l1-1-0.dll',
|
||||||
|
'C:\\Windows\\system32\\api-ms-win-core-heap-l1-1-0.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('api-ms-win-core-util-l1-1-0.dll',
|
||||||
|
'C:\\Windows\\system32\\api-ms-win-core-util-l1-1-0.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('api-ms-win-core-debug-l1-1-0.dll',
|
||||||
|
'C:\\Windows\\system32\\api-ms-win-core-debug-l1-1-0.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('api-ms-win-core-processthreads-l1-1-0.dll',
|
||||||
|
'C:\\Windows\\system32\\api-ms-win-core-processthreads-l1-1-0.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('PySide6\\Qt6QmlModels.dll',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\Qt6QmlModels.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('PySide6\\Qt6QmlMeta.dll',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\Qt6QmlMeta.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('PySide6\\Qt6QmlWorkerScript.dll',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\Qt6QmlWorkerScript.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('assets\\images\\donate\\wx.jpg',
|
||||||
|
'E:\\Demo\\Python\\CursorTokenLogin\\assets\\images\\donate\\wx.jpg',
|
||||||
|
'DATA'),
|
||||||
|
('assets\\images\\donate\\zfb.jpg',
|
||||||
|
'E:\\Demo\\Python\\CursorTokenLogin\\assets\\images\\donate\\zfb.jpg',
|
||||||
|
'DATA'),
|
||||||
|
('layout\\main.ui',
|
||||||
|
'E:\\Demo\\Python\\CursorTokenLogin\\layout\\main.ui',
|
||||||
|
'DATA'),
|
||||||
|
('PySide6\\translations\\qt_lg.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qt_lg.qm',
|
||||||
|
'DATA'),
|
||||||
|
('PySide6\\translations\\qt_help_es.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qt_help_es.qm',
|
||||||
|
'DATA'),
|
||||||
|
('PySide6\\translations\\qt_help_ka.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qt_help_ka.qm',
|
||||||
|
'DATA'),
|
||||||
|
('PySide6\\translations\\qt_help_it.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qt_help_it.qm',
|
||||||
|
'DATA'),
|
||||||
|
('PySide6\\translations\\qt_zh_TW.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qt_zh_TW.qm',
|
||||||
|
'DATA'),
|
||||||
|
('PySide6\\translations\\qt_fr.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qt_fr.qm',
|
||||||
|
'DATA'),
|
||||||
|
('PySide6\\translations\\qt_cs.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qt_cs.qm',
|
||||||
|
'DATA'),
|
||||||
|
('PySide6\\translations\\qt_help_ru.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qt_help_ru.qm',
|
||||||
|
'DATA'),
|
||||||
|
('PySide6\\translations\\qtbase_tr.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qtbase_tr.qm',
|
||||||
|
'DATA'),
|
||||||
|
('PySide6\\translations\\qt_tr.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qt_tr.qm',
|
||||||
|
'DATA'),
|
||||||
|
('PySide6\\translations\\qt_hu.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qt_hu.qm',
|
||||||
|
'DATA'),
|
||||||
|
('PySide6\\translations\\qtbase_ko.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qtbase_ko.qm',
|
||||||
|
'DATA'),
|
||||||
|
('PySide6\\translations\\qtbase_lg.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qtbase_lg.qm',
|
||||||
|
'DATA'),
|
||||||
|
('PySide6\\translations\\qtbase_de.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qtbase_de.qm',
|
||||||
|
'DATA'),
|
||||||
|
('PySide6\\translations\\qt_help_pt_BR.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qt_help_pt_BR.qm',
|
||||||
|
'DATA'),
|
||||||
|
('PySide6\\translations\\qt_help_tr.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qt_help_tr.qm',
|
||||||
|
'DATA'),
|
||||||
|
('PySide6\\translations\\qt_it.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qt_it.qm',
|
||||||
|
'DATA'),
|
||||||
|
('PySide6\\translations\\qt_help_de.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qt_help_de.qm',
|
||||||
|
'DATA'),
|
||||||
|
('PySide6\\translations\\qt_pl.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qt_pl.qm',
|
||||||
|
'DATA'),
|
||||||
|
('PySide6\\translations\\qtbase_ar.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qtbase_ar.qm',
|
||||||
|
'DATA'),
|
||||||
|
('PySide6\\translations\\qt_help_cs.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qt_help_cs.qm',
|
||||||
|
'DATA'),
|
||||||
|
('PySide6\\translations\\qt_ru.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qt_ru.qm',
|
||||||
|
'DATA'),
|
||||||
|
('PySide6\\translations\\qt_help_zh_TW.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qt_help_zh_TW.qm',
|
||||||
|
'DATA'),
|
||||||
|
('PySide6\\translations\\qt_help_hu.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qt_help_hu.qm',
|
||||||
|
'DATA'),
|
||||||
|
('PySide6\\translations\\qt_sl.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qt_sl.qm',
|
||||||
|
'DATA'),
|
||||||
|
('PySide6\\translations\\qt_pt_PT.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qt_pt_PT.qm',
|
||||||
|
'DATA'),
|
||||||
|
('PySide6\\translations\\qtbase_nl.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qtbase_nl.qm',
|
||||||
|
'DATA'),
|
||||||
|
('PySide6\\translations\\qtbase_it.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qtbase_it.qm',
|
||||||
|
'DATA'),
|
||||||
|
('PySide6\\translations\\qt_de.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qt_de.qm',
|
||||||
|
'DATA'),
|
||||||
|
('PySide6\\translations\\qtbase_da.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qtbase_da.qm',
|
||||||
|
'DATA'),
|
||||||
|
('PySide6\\translations\\qt_sv.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qt_sv.qm',
|
||||||
|
'DATA'),
|
||||||
|
('PySide6\\translations\\qt_ko.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qt_ko.qm',
|
||||||
|
'DATA'),
|
||||||
|
('PySide6\\translations\\qtbase_he.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qtbase_he.qm',
|
||||||
|
'DATA'),
|
||||||
|
('PySide6\\translations\\qt_bg.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qt_bg.qm',
|
||||||
|
'DATA'),
|
||||||
|
('PySide6\\translations\\qt_help_pl.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qt_help_pl.qm',
|
||||||
|
'DATA'),
|
||||||
|
('PySide6\\translations\\qtbase_hr.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qtbase_hr.qm',
|
||||||
|
'DATA'),
|
||||||
|
('PySide6\\translations\\qtbase_fi.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qtbase_fi.qm',
|
||||||
|
'DATA'),
|
||||||
|
('PySide6\\translations\\qt_help_da.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qt_help_da.qm',
|
||||||
|
'DATA'),
|
||||||
|
('PySide6\\translations\\qt_help_en.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qt_help_en.qm',
|
||||||
|
'DATA'),
|
||||||
|
('PySide6\\translations\\qt_help_hr.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qt_help_hr.qm',
|
||||||
|
'DATA'),
|
||||||
|
('PySide6\\translations\\qt_ka.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qt_ka.qm',
|
||||||
|
'DATA'),
|
||||||
|
('PySide6\\translations\\qt_ca.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qt_ca.qm',
|
||||||
|
'DATA'),
|
||||||
|
('PySide6\\translations\\qtbase_fa.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qtbase_fa.qm',
|
||||||
|
'DATA'),
|
||||||
|
('PySide6\\translations\\qt_gd.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qt_gd.qm',
|
||||||
|
'DATA'),
|
||||||
|
('PySide6\\translations\\qt_uk.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qt_uk.qm',
|
||||||
|
'DATA'),
|
||||||
|
('PySide6\\translations\\qt_help_ko.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qt_help_ko.qm',
|
||||||
|
'DATA'),
|
||||||
|
('PySide6\\translations\\qtbase_pl.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qtbase_pl.qm',
|
||||||
|
'DATA'),
|
||||||
|
('PySide6\\translations\\qt_fi.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qt_fi.qm',
|
||||||
|
'DATA'),
|
||||||
|
('PySide6\\translations\\qtbase_lv.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qtbase_lv.qm',
|
||||||
|
'DATA'),
|
||||||
|
('PySide6\\translations\\qt_help_sl.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qt_help_sl.qm',
|
||||||
|
'DATA'),
|
||||||
|
('PySide6\\translations\\qtbase_ka.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qtbase_ka.qm',
|
||||||
|
'DATA'),
|
||||||
|
('PySide6\\translations\\qt_help_nn.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qt_help_nn.qm',
|
||||||
|
'DATA'),
|
||||||
|
('PySide6\\translations\\qtbase_sv.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qtbase_sv.qm',
|
||||||
|
'DATA'),
|
||||||
|
('PySide6\\translations\\qt_help_ja.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qt_help_ja.qm',
|
||||||
|
'DATA'),
|
||||||
|
('PySide6\\translations\\qt_help_uk.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qt_help_uk.qm',
|
||||||
|
'DATA'),
|
||||||
|
('PySide6\\translations\\qt_fa.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qt_fa.qm',
|
||||||
|
'DATA'),
|
||||||
|
('PySide6\\translations\\qt_help_sv.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qt_help_sv.qm',
|
||||||
|
'DATA'),
|
||||||
|
('PySide6\\translations\\qt_pt_BR.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qt_pt_BR.qm',
|
||||||
|
'DATA'),
|
||||||
|
('PySide6\\translations\\qt_lt.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qt_lt.qm',
|
||||||
|
'DATA'),
|
||||||
|
('PySide6\\translations\\qt_ar.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qt_ar.qm',
|
||||||
|
'DATA'),
|
||||||
|
('PySide6\\translations\\qt_gl.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qt_gl.qm',
|
||||||
|
'DATA'),
|
||||||
|
('PySide6\\translations\\qt_nn.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qt_nn.qm',
|
||||||
|
'DATA'),
|
||||||
|
('PySide6\\translations\\qtbase_fr.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qtbase_fr.qm',
|
||||||
|
'DATA'),
|
||||||
|
('PySide6\\translations\\qtbase_en.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qtbase_en.qm',
|
||||||
|
'DATA'),
|
||||||
|
('PySide6\\translations\\qt_help_ca.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qt_help_ca.qm',
|
||||||
|
'DATA'),
|
||||||
|
('PySide6\\translations\\qt_es.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qt_es.qm',
|
||||||
|
'DATA'),
|
||||||
|
('PySide6\\translations\\qt_help_fr.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qt_help_fr.qm',
|
||||||
|
'DATA'),
|
||||||
|
('PySide6\\translations\\qtbase_bg.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qtbase_bg.qm',
|
||||||
|
'DATA'),
|
||||||
|
('PySide6\\translations\\qt_help_bg.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qt_help_bg.qm',
|
||||||
|
'DATA'),
|
||||||
|
('PySide6\\translations\\qtbase_sk.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qtbase_sk.qm',
|
||||||
|
'DATA'),
|
||||||
|
('PySide6\\translations\\qt_en.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qt_en.qm',
|
||||||
|
'DATA'),
|
||||||
|
('PySide6\\translations\\qtbase_gd.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qtbase_gd.qm',
|
||||||
|
'DATA'),
|
||||||
|
('PySide6\\translations\\qt_help_sk.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qt_help_sk.qm',
|
||||||
|
'DATA'),
|
||||||
|
('PySide6\\translations\\qt_sk.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qt_sk.qm',
|
||||||
|
'DATA'),
|
||||||
|
('PySide6\\translations\\qt_hr.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qt_hr.qm',
|
||||||
|
'DATA'),
|
||||||
|
('PySide6\\translations\\qtbase_pt_BR.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qtbase_pt_BR.qm',
|
||||||
|
'DATA'),
|
||||||
|
('PySide6\\translations\\qt_help_zh_CN.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qt_help_zh_CN.qm',
|
||||||
|
'DATA'),
|
||||||
|
('PySide6\\translations\\qtbase_cs.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qtbase_cs.qm',
|
||||||
|
'DATA'),
|
||||||
|
('PySide6\\translations\\qt_zh_CN.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qt_zh_CN.qm',
|
||||||
|
'DATA'),
|
||||||
|
('PySide6\\translations\\qt_da.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qt_da.qm',
|
||||||
|
'DATA'),
|
||||||
|
('PySide6\\translations\\qtbase_hu.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qtbase_hu.qm',
|
||||||
|
'DATA'),
|
||||||
|
('PySide6\\translations\\qt_ja.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qt_ja.qm',
|
||||||
|
'DATA'),
|
||||||
|
('PySide6\\translations\\qt_help_gl.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qt_help_gl.qm',
|
||||||
|
'DATA'),
|
||||||
|
('PySide6\\translations\\qtbase_ru.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qtbase_ru.qm',
|
||||||
|
'DATA'),
|
||||||
|
('PySide6\\translations\\qt_lv.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qt_lv.qm',
|
||||||
|
'DATA'),
|
||||||
|
('PySide6\\translations\\qtbase_ja.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qtbase_ja.qm',
|
||||||
|
'DATA'),
|
||||||
|
('PySide6\\translations\\qtbase_es.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qtbase_es.qm',
|
||||||
|
'DATA'),
|
||||||
|
('PySide6\\translations\\qtbase_uk.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qtbase_uk.qm',
|
||||||
|
'DATA'),
|
||||||
|
('PySide6\\translations\\qtbase_zh_TW.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qtbase_zh_TW.qm',
|
||||||
|
'DATA'),
|
||||||
|
('PySide6\\translations\\qt_help_ar.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qt_help_ar.qm',
|
||||||
|
'DATA'),
|
||||||
|
('PySide6\\translations\\qt_he.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qt_he.qm',
|
||||||
|
'DATA'),
|
||||||
|
('PySide6\\translations\\qt_help_nl.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qt_help_nl.qm',
|
||||||
|
'DATA'),
|
||||||
|
('PySide6\\translations\\qt_nl.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qt_nl.qm',
|
||||||
|
'DATA'),
|
||||||
|
('PySide6\\translations\\qtbase_ca.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qtbase_ca.qm',
|
||||||
|
'DATA'),
|
||||||
|
('PySide6\\translations\\qtbase_nn.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qtbase_nn.qm',
|
||||||
|
'DATA'),
|
||||||
|
('PySide6\\translations\\qtbase_zh_CN.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qtbase_zh_CN.qm',
|
||||||
|
'DATA'),
|
||||||
|
('setuptools\\_vendor\\importlib_metadata-8.7.1.dist-info\\INSTALLER',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\setuptools\\_vendor\\importlib_metadata-8.7.1.dist-info\\INSTALLER',
|
||||||
|
'DATA'),
|
||||||
|
('setuptools\\_vendor\\importlib_metadata-8.7.1.dist-info\\REQUESTED',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\setuptools\\_vendor\\importlib_metadata-8.7.1.dist-info\\REQUESTED',
|
||||||
|
'DATA'),
|
||||||
|
('setuptools\\_vendor\\importlib_metadata-8.7.1.dist-info\\METADATA',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\setuptools\\_vendor\\importlib_metadata-8.7.1.dist-info\\METADATA',
|
||||||
|
'DATA'),
|
||||||
|
('setuptools\\_vendor\\importlib_metadata-8.7.1.dist-info\\WHEEL',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\setuptools\\_vendor\\importlib_metadata-8.7.1.dist-info\\WHEEL',
|
||||||
|
'DATA'),
|
||||||
|
('setuptools\\_vendor\\importlib_metadata-8.7.1.dist-info\\RECORD',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\setuptools\\_vendor\\importlib_metadata-8.7.1.dist-info\\RECORD',
|
||||||
|
'DATA'),
|
||||||
|
('setuptools\\_vendor\\importlib_metadata-8.7.1.dist-info\\top_level.txt',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\setuptools\\_vendor\\importlib_metadata-8.7.1.dist-info\\top_level.txt',
|
||||||
|
'DATA'),
|
||||||
|
('setuptools\\_vendor\\importlib_metadata-8.7.1.dist-info\\licenses\\LICENSE',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\setuptools\\_vendor\\importlib_metadata-8.7.1.dist-info\\licenses\\LICENSE',
|
||||||
|
'DATA'),
|
||||||
|
('setuptools\\_vendor\\jaraco\\text\\Lorem ipsum.txt',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\setuptools\\_vendor\\jaraco\\text\\Lorem '
|
||||||
|
'ipsum.txt',
|
||||||
|
'DATA'),
|
||||||
|
('certifi\\py.typed',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\certifi\\py.typed',
|
||||||
|
'DATA'),
|
||||||
|
('certifi\\cacert.pem',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\certifi\\cacert.pem',
|
||||||
|
'DATA'),
|
||||||
|
('cryptography-46.0.3.dist-info\\RECORD',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\cryptography-46.0.3.dist-info\\RECORD',
|
||||||
|
'DATA'),
|
||||||
|
('cryptography-46.0.3.dist-info\\licenses\\LICENSE.BSD',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\cryptography-46.0.3.dist-info\\licenses\\LICENSE.BSD',
|
||||||
|
'DATA'),
|
||||||
|
('cryptography-46.0.3.dist-info\\WHEEL',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\cryptography-46.0.3.dist-info\\WHEEL',
|
||||||
|
'DATA'),
|
||||||
|
('cryptography-46.0.3.dist-info\\INSTALLER',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\cryptography-46.0.3.dist-info\\INSTALLER',
|
||||||
|
'DATA'),
|
||||||
|
('cryptography-46.0.3.dist-info\\licenses\\LICENSE.APACHE',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\cryptography-46.0.3.dist-info\\licenses\\LICENSE.APACHE',
|
||||||
|
'DATA'),
|
||||||
|
('cryptography-46.0.3.dist-info\\licenses\\LICENSE',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\cryptography-46.0.3.dist-info\\licenses\\LICENSE',
|
||||||
|
'DATA'),
|
||||||
|
('cryptography-46.0.3.dist-info\\METADATA',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\cryptography-46.0.3.dist-info\\METADATA',
|
||||||
|
'DATA'),
|
||||||
|
('base_library.zip',
|
||||||
|
'E:\\Demo\\Python\\CursorTokenLogin\\build\\build_onedir\\base_library.zip',
|
||||||
|
'DATA')],)
|
||||||
Binary file not shown.
Binary file not shown.
@@ -0,0 +1,81 @@
|
|||||||
|
('E:\\Demo\\Python\\CursorTokenLogin\\build\\build_onedir\\CursorTokenLogin.exe',
|
||||||
|
False,
|
||||||
|
False,
|
||||||
|
True,
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PyInstaller\\bootloader\\images\\icon-windowed.ico',
|
||||||
|
None,
|
||||||
|
False,
|
||||||
|
False,
|
||||||
|
b'<?xml version="1.0" encoding="UTF-8" standalone="yes"?>\n<assembly xmlns='
|
||||||
|
b'"urn:schemas-microsoft-com:asm.v1" manifestVersion="1.0">\n <trustInfo x'
|
||||||
|
b'mlns="urn:schemas-microsoft-com:asm.v3">\n <security>\n <requested'
|
||||||
|
b'Privileges>\n <requestedExecutionLevel level="asInvoker" uiAccess='
|
||||||
|
b'"false"/>\n </requestedPrivileges>\n </security>\n </trustInfo>\n '
|
||||||
|
b'<compatibility xmlns="urn:schemas-microsoft-com:compatibility.v1">\n <'
|
||||||
|
b'application>\n <supportedOS Id="{e2011457-1546-43c5-a5fe-008deee3d3f'
|
||||||
|
b'0}"/>\n <supportedOS Id="{35138b9a-5d96-4fbd-8e2d-a2440225f93a}"/>\n '
|
||||||
|
b' <supportedOS Id="{4a2f28e3-53b9-4441-ba9c-d69d4a4a6e38}"/>\n <s'
|
||||||
|
b'upportedOS Id="{1f676c76-80e1-4239-95bb-83d0f6d0da78}"/>\n <supporte'
|
||||||
|
b'dOS Id="{8e0f7a12-bfb3-4fe8-b9a5-48fd50a15a9a}"/>\n </application>\n <'
|
||||||
|
b'/compatibility>\n <application xmlns="urn:schemas-microsoft-com:asm.v3">'
|
||||||
|
b'\n <windowsSettings>\n <longPathAware xmlns="http://schemas.micros'
|
||||||
|
b'oft.com/SMI/2016/WindowsSettings">true</longPathAware>\n </windowsSett'
|
||||||
|
b'ings>\n </application>\n <dependency>\n <dependentAssembly>\n <ass'
|
||||||
|
b'emblyIdentity type="win32" name="Microsoft.Windows.Common-Controls" version='
|
||||||
|
b'"6.0.0.0" processorArchitecture="*" publicKeyToken="6595b64144ccf1df" langua'
|
||||||
|
b'ge="*"/>\n </dependentAssembly>\n </dependency>\n</assembly>',
|
||||||
|
True,
|
||||||
|
False,
|
||||||
|
None,
|
||||||
|
None,
|
||||||
|
None,
|
||||||
|
'E:\\Demo\\Python\\CursorTokenLogin\\build\\build_onedir\\CursorTokenLogin.pkg',
|
||||||
|
[('pyi-contents-directory _internal', '', 'OPTION'),
|
||||||
|
('PYZ-00.pyz',
|
||||||
|
'E:\\Demo\\Python\\CursorTokenLogin\\build\\build_onedir\\PYZ-00.pyz',
|
||||||
|
'PYZ'),
|
||||||
|
('struct',
|
||||||
|
'E:\\Demo\\Python\\CursorTokenLogin\\build\\build_onedir\\localpycs\\struct.pyc',
|
||||||
|
'PYMODULE'),
|
||||||
|
('pyimod01_archive',
|
||||||
|
'E:\\Demo\\Python\\CursorTokenLogin\\build\\build_onedir\\localpycs\\pyimod01_archive.pyc',
|
||||||
|
'PYMODULE'),
|
||||||
|
('pyimod02_importers',
|
||||||
|
'E:\\Demo\\Python\\CursorTokenLogin\\build\\build_onedir\\localpycs\\pyimod02_importers.pyc',
|
||||||
|
'PYMODULE'),
|
||||||
|
('pyimod03_ctypes',
|
||||||
|
'E:\\Demo\\Python\\CursorTokenLogin\\build\\build_onedir\\localpycs\\pyimod03_ctypes.pyc',
|
||||||
|
'PYMODULE'),
|
||||||
|
('pyimod04_pywin32',
|
||||||
|
'E:\\Demo\\Python\\CursorTokenLogin\\build\\build_onedir\\localpycs\\pyimod04_pywin32.pyc',
|
||||||
|
'PYMODULE'),
|
||||||
|
('pyiboot01_bootstrap',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PyInstaller\\loader\\pyiboot01_bootstrap.py',
|
||||||
|
'PYSOURCE'),
|
||||||
|
('pyi_rth_inspect',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PyInstaller\\hooks\\rthooks\\pyi_rth_inspect.py',
|
||||||
|
'PYSOURCE'),
|
||||||
|
('pyi_rth_pyside6',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PyInstaller\\hooks\\rthooks\\pyi_rth_pyside6.py',
|
||||||
|
'PYSOURCE'),
|
||||||
|
('pyi_rth_pkgutil',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PyInstaller\\hooks\\rthooks\\pyi_rth_pkgutil.py',
|
||||||
|
'PYSOURCE'),
|
||||||
|
('pyi_rth_multiprocessing',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PyInstaller\\hooks\\rthooks\\pyi_rth_multiprocessing.py',
|
||||||
|
'PYSOURCE'),
|
||||||
|
('pyi_rth_setuptools',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PyInstaller\\hooks\\rthooks\\pyi_rth_setuptools.py',
|
||||||
|
'PYSOURCE'),
|
||||||
|
('pyi_rth_cryptography_openssl',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\_pyinstaller_hooks_contrib\\rthooks\\pyi_rth_cryptography_openssl.py',
|
||||||
|
'PYSOURCE'),
|
||||||
|
('main', 'E:\\Demo\\Python\\CursorTokenLogin\\main.py', 'PYSOURCE')],
|
||||||
|
[],
|
||||||
|
False,
|
||||||
|
False,
|
||||||
|
1775319824,
|
||||||
|
[('runw.exe',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PyInstaller\\bootloader\\Windows-64bit-intel\\runw.exe',
|
||||||
|
'EXECUTABLE')],
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\python314.dll')
|
||||||
@@ -0,0 +1,59 @@
|
|||||||
|
('E:\\Demo\\Python\\CursorTokenLogin\\build\\build_onedir\\CursorTokenLogin.pkg',
|
||||||
|
{'BINARY': True,
|
||||||
|
'DATA': True,
|
||||||
|
'EXECUTABLE': True,
|
||||||
|
'EXTENSION': True,
|
||||||
|
'PYMODULE': True,
|
||||||
|
'PYSOURCE': True,
|
||||||
|
'PYZ': False,
|
||||||
|
'SPLASH': True,
|
||||||
|
'SYMLINK': False},
|
||||||
|
[('pyi-contents-directory _internal', '', 'OPTION'),
|
||||||
|
('PYZ-00.pyz',
|
||||||
|
'E:\\Demo\\Python\\CursorTokenLogin\\build\\build_onedir\\PYZ-00.pyz',
|
||||||
|
'PYZ'),
|
||||||
|
('struct',
|
||||||
|
'E:\\Demo\\Python\\CursorTokenLogin\\build\\build_onedir\\localpycs\\struct.pyc',
|
||||||
|
'PYMODULE'),
|
||||||
|
('pyimod01_archive',
|
||||||
|
'E:\\Demo\\Python\\CursorTokenLogin\\build\\build_onedir\\localpycs\\pyimod01_archive.pyc',
|
||||||
|
'PYMODULE'),
|
||||||
|
('pyimod02_importers',
|
||||||
|
'E:\\Demo\\Python\\CursorTokenLogin\\build\\build_onedir\\localpycs\\pyimod02_importers.pyc',
|
||||||
|
'PYMODULE'),
|
||||||
|
('pyimod03_ctypes',
|
||||||
|
'E:\\Demo\\Python\\CursorTokenLogin\\build\\build_onedir\\localpycs\\pyimod03_ctypes.pyc',
|
||||||
|
'PYMODULE'),
|
||||||
|
('pyimod04_pywin32',
|
||||||
|
'E:\\Demo\\Python\\CursorTokenLogin\\build\\build_onedir\\localpycs\\pyimod04_pywin32.pyc',
|
||||||
|
'PYMODULE'),
|
||||||
|
('pyiboot01_bootstrap',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PyInstaller\\loader\\pyiboot01_bootstrap.py',
|
||||||
|
'PYSOURCE'),
|
||||||
|
('pyi_rth_inspect',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PyInstaller\\hooks\\rthooks\\pyi_rth_inspect.py',
|
||||||
|
'PYSOURCE'),
|
||||||
|
('pyi_rth_pyside6',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PyInstaller\\hooks\\rthooks\\pyi_rth_pyside6.py',
|
||||||
|
'PYSOURCE'),
|
||||||
|
('pyi_rth_pkgutil',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PyInstaller\\hooks\\rthooks\\pyi_rth_pkgutil.py',
|
||||||
|
'PYSOURCE'),
|
||||||
|
('pyi_rth_multiprocessing',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PyInstaller\\hooks\\rthooks\\pyi_rth_multiprocessing.py',
|
||||||
|
'PYSOURCE'),
|
||||||
|
('pyi_rth_setuptools',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PyInstaller\\hooks\\rthooks\\pyi_rth_setuptools.py',
|
||||||
|
'PYSOURCE'),
|
||||||
|
('pyi_rth_cryptography_openssl',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\_pyinstaller_hooks_contrib\\rthooks\\pyi_rth_cryptography_openssl.py',
|
||||||
|
'PYSOURCE'),
|
||||||
|
('main', 'E:\\Demo\\Python\\CursorTokenLogin\\main.py', 'PYSOURCE')],
|
||||||
|
'python314.dll',
|
||||||
|
True,
|
||||||
|
False,
|
||||||
|
False,
|
||||||
|
[],
|
||||||
|
None,
|
||||||
|
None,
|
||||||
|
None)
|
||||||
Binary file not shown.
File diff suppressed because it is too large
Load Diff
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@@ -0,0 +1,62 @@
|
|||||||
|
|
||||||
|
This file lists modules PyInstaller was not able to find. This does not
|
||||||
|
necessarily mean these modules are required for running your program. Both
|
||||||
|
Python's standard library and 3rd-party Python packages often conditionally
|
||||||
|
import optional modules, some of which may be available only on certain
|
||||||
|
platforms.
|
||||||
|
|
||||||
|
Types of import:
|
||||||
|
* top-level: imported at the top-level - look at these first
|
||||||
|
* conditional: imported within an if-statement
|
||||||
|
* delayed: imported within a function
|
||||||
|
* optional: imported within a try-except-statement
|
||||||
|
|
||||||
|
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 'collections.abc' - imported by typing (top-level), tracemalloc (top-level), _colorize (top-level), selectors (top-level), logging (top-level), http.client (top-level), importlib.resources.readers (top-level), inspect (top-level), traceback (top-level), sqlite3.dbapi2 (top-level), setuptools (top-level), setuptools._distutils.filelist (top-level), setuptools._distutils.util (top-level), setuptools._vendor.jaraco.functools (top-level), setuptools._vendor.more_itertools.more (top-level), setuptools._distutils._modified (top-level), setuptools._distutils.compat (top-level), setuptools._distutils.spawn (top-level), typing_extensions (top-level), asyncio.base_events (top-level), multiprocessing.managers (top-level), asyncio.coroutines (top-level), setuptools._distutils.compilers.C.base (top-level), setuptools._distutils.fancy_getopt (top-level), setuptools._reqs (top-level), setuptools._vendor.jaraco.context (top-level), setuptools.discovery (top-level), setuptools.dist (top-level), setuptools._vendor.importlib_metadata (top-level), setuptools._vendor.importlib_metadata._meta (top-level), setuptools._distutils.command.bdist (top-level), setuptools._distutils.core (top-level), setuptools._distutils.cmd (top-level), setuptools._distutils.dist (top-level), configparser (top-level), setuptools._distutils.extension (top-level), setuptools.config.setupcfg (top-level), setuptools.config.expand (top-level), setuptools.config.pyprojecttoml (top-level), setuptools.config._apply_pyprojecttoml (top-level), setuptools.extension (top-level), tomllib._parser (conditional), setuptools._vendor.tomli._parser (conditional), setuptools.wheel (top-level), setuptools.command.egg_info (top-level), setuptools.command.bdist_egg (top-level), setuptools.command.sdist (top-level), setuptools._distutils.command.build (top-level), setuptools._distutils.command.sdist (top-level), setuptools.glob (top-level), setuptools.command._requirestxt (top-level), setuptools.command.bdist_wheel (top-level), requests.compat (top-level), cryptography.utils (top-level), cryptography.x509.name (top-level), cryptography.x509.base (top-level), cryptography.hazmat.bindings.openssl.binding (top-level), cryptography.x509.extensions (top-level), PySide6.QtCore (top-level), PySide6.QtNetwork (top-level), PySide6.QtGui (top-level), PySide6.QtWidgets (top-level), setuptools._distutils.command.build_ext (top-level), _pyrepl.types (top-level), _pyrepl.readline (top-level), setuptools._distutils.compilers.C.msvc (top-level), PySide6.QtOpenGL (top-level)
|
||||||
|
missing module named posix - imported by os (conditional, optional), posixpath (optional), shutil (conditional), importlib._bootstrap_external (conditional), pathlib._os (optional), _pyrepl.trace (conditional), _pyrepl.unix_console (optional)
|
||||||
|
missing module named resource - imported by posix (top-level)
|
||||||
|
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 _posixshmem - imported by multiprocessing.resource_tracker (conditional), multiprocessing.shared_memory (conditional)
|
||||||
|
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 multiprocessing.AuthenticationError - imported by multiprocessing (top-level), multiprocessing.forkserver (top-level), multiprocessing.connection (top-level)
|
||||||
|
missing module named _posixsubprocess - imported by subprocess (conditional), multiprocessing.util (delayed)
|
||||||
|
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 _scproxy - imported by urllib.request (conditional)
|
||||||
|
missing module named pwd - imported by posixpath (delayed, conditional, optional), subprocess (delayed, conditional, optional), shutil (delayed, optional), tarfile (optional), pathlib (optional), netrc (delayed, optional), psutil (optional), setuptools._distutils.util (delayed, conditional, optional), setuptools._vendor.backports.tarfile (optional), setuptools._distutils.archive_util (optional), http.server (delayed, optional)
|
||||||
|
missing module named multiprocessing.BufferTooShort - imported by multiprocessing (top-level), multiprocessing.connection (top-level)
|
||||||
|
missing module named grp - imported by subprocess (delayed, conditional, optional), shutil (delayed, optional), tarfile (optional), pathlib (optional), setuptools._vendor.backports.tarfile (optional), setuptools._distutils.archive_util (optional)
|
||||||
|
missing module named _typeshed - imported by setuptools._distutils.dist (conditional), setuptools.command.bdist_egg (conditional), setuptools.glob (conditional), setuptools._vendor.wheel.wheelfile (conditional), setuptools.compat.py311 (conditional)
|
||||||
|
missing module named vms_lib - imported by platform (delayed, optional)
|
||||||
|
missing module named 'java.lang' - imported by platform (delayed, optional)
|
||||||
|
missing module named java - imported by platform (delayed)
|
||||||
|
missing module named usercustomize - imported by site (delayed, optional)
|
||||||
|
missing module named sitecustomize - imported by site (delayed, optional)
|
||||||
|
missing module named termios - imported by tty (top-level), _pyrepl.pager (delayed, optional), _pyrepl.unix_console (top-level), _pyrepl.fancy_termios (top-level), _pyrepl.unix_eventqueue (top-level)
|
||||||
|
missing module named fcntl - imported by subprocess (optional), pathlib._os (optional), _pyrepl.unix_console (top-level)
|
||||||
|
missing module named readline - imported by site (delayed, optional), rlcompleter (optional), code (delayed, conditional, optional), sqlite3.__main__ (delayed, conditional, optional)
|
||||||
|
missing module named _manylinux - imported by packaging._manylinux (delayed, optional), setuptools._vendor.packaging._manylinux (delayed, optional)
|
||||||
|
missing module named setuptools._vendor.backports.zstd - imported by setuptools._vendor.backports (top-level), urllib3.util.request (conditional, optional), urllib3.response (conditional, optional)
|
||||||
|
missing module named importlib_resources - imported by setuptools._vendor.jaraco.text (optional)
|
||||||
|
missing module named trove_classifiers - imported by setuptools.config._validate_pyproject.formats (optional)
|
||||||
|
missing module named pyimod02_importers - imported by C:\Users\Administrator\AppData\Local\Python\pythoncore-3.14-64\Lib\site-packages\PyInstaller\hooks\rthooks\pyi_rth_pkgutil.py (delayed)
|
||||||
|
missing module named simplejson - imported by requests.compat (conditional, optional)
|
||||||
|
missing module named dummy_threading - imported by requests.cookies (optional)
|
||||||
|
missing module named 'h2.events' - imported by urllib3.http2.connection (top-level)
|
||||||
|
missing module named 'h2.connection' - imported by urllib3.http2.connection (top-level)
|
||||||
|
missing module named h2 - imported by urllib3.http2.connection (top-level)
|
||||||
|
missing module named brotli - imported by urllib3.util.request (optional), urllib3.response (optional)
|
||||||
|
missing module named brotlicffi - imported by urllib3.util.request (optional), urllib3.response (optional)
|
||||||
|
missing module named socks - imported by urllib3.contrib.socks (optional)
|
||||||
|
missing module named bcrypt - imported by cryptography.hazmat.primitives.serialization.ssh (optional)
|
||||||
|
missing module named cryptography.x509.UnsupportedExtension - imported by cryptography.x509 (optional), urllib3.contrib.pyopenssl (optional)
|
||||||
|
missing module named 'OpenSSL.crypto' - imported by urllib3.contrib.pyopenssl (delayed, conditional)
|
||||||
|
missing module named OpenSSL - imported by urllib3.contrib.pyopenssl (top-level)
|
||||||
|
missing module named chardet - imported by requests.compat (optional), requests (optional), requests.packages (optional)
|
||||||
|
missing module named 'pyodide.ffi' - imported by urllib3.contrib.emscripten.fetch (delayed, optional)
|
||||||
|
missing module named pyodide - imported by urllib3.contrib.emscripten.fetch (top-level)
|
||||||
|
missing module named js - imported by urllib3.contrib.emscripten.fetch (top-level)
|
||||||
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,808 @@
|
|||||||
|
('E:\\Demo\\Python\\CursorTokenLogin\\dist\\main.exe',
|
||||||
|
False,
|
||||||
|
False,
|
||||||
|
False,
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PyInstaller\\bootloader\\images\\icon-windowed.ico',
|
||||||
|
None,
|
||||||
|
False,
|
||||||
|
False,
|
||||||
|
b'<?xml version="1.0" encoding="UTF-8" standalone="yes"?>\n<assembly xmlns='
|
||||||
|
b'"urn:schemas-microsoft-com:asm.v1" manifestVersion="1.0">\n <trustInfo x'
|
||||||
|
b'mlns="urn:schemas-microsoft-com:asm.v3">\n <security>\n <requested'
|
||||||
|
b'Privileges>\n <requestedExecutionLevel level="asInvoker" uiAccess='
|
||||||
|
b'"false"/>\n </requestedPrivileges>\n </security>\n </trustInfo>\n '
|
||||||
|
b'<compatibility xmlns="urn:schemas-microsoft-com:compatibility.v1">\n <'
|
||||||
|
b'application>\n <supportedOS Id="{e2011457-1546-43c5-a5fe-008deee3d3f'
|
||||||
|
b'0}"/>\n <supportedOS Id="{35138b9a-5d96-4fbd-8e2d-a2440225f93a}"/>\n '
|
||||||
|
b' <supportedOS Id="{4a2f28e3-53b9-4441-ba9c-d69d4a4a6e38}"/>\n <s'
|
||||||
|
b'upportedOS Id="{1f676c76-80e1-4239-95bb-83d0f6d0da78}"/>\n <supporte'
|
||||||
|
b'dOS Id="{8e0f7a12-bfb3-4fe8-b9a5-48fd50a15a9a}"/>\n </application>\n <'
|
||||||
|
b'/compatibility>\n <application xmlns="urn:schemas-microsoft-com:asm.v3">'
|
||||||
|
b'\n <windowsSettings>\n <longPathAware xmlns="http://schemas.micros'
|
||||||
|
b'oft.com/SMI/2016/WindowsSettings">true</longPathAware>\n </windowsSett'
|
||||||
|
b'ings>\n </application>\n <dependency>\n <dependentAssembly>\n <ass'
|
||||||
|
b'emblyIdentity type="win32" name="Microsoft.Windows.Common-Controls" version='
|
||||||
|
b'"6.0.0.0" processorArchitecture="*" publicKeyToken="6595b64144ccf1df" langua'
|
||||||
|
b'ge="*"/>\n </dependentAssembly>\n </dependency>\n</assembly>',
|
||||||
|
True,
|
||||||
|
False,
|
||||||
|
None,
|
||||||
|
None,
|
||||||
|
None,
|
||||||
|
'E:\\Demo\\Python\\CursorTokenLogin\\build\\main\\main.pkg',
|
||||||
|
[('pyi-contents-directory _internal', '', 'OPTION'),
|
||||||
|
('PYZ-00.pyz',
|
||||||
|
'E:\\Demo\\Python\\CursorTokenLogin\\build\\main\\PYZ-00.pyz',
|
||||||
|
'PYZ'),
|
||||||
|
('struct',
|
||||||
|
'E:\\Demo\\Python\\CursorTokenLogin\\build\\main\\localpycs\\struct.pyc',
|
||||||
|
'PYMODULE'),
|
||||||
|
('pyimod01_archive',
|
||||||
|
'E:\\Demo\\Python\\CursorTokenLogin\\build\\main\\localpycs\\pyimod01_archive.pyc',
|
||||||
|
'PYMODULE'),
|
||||||
|
('pyimod02_importers',
|
||||||
|
'E:\\Demo\\Python\\CursorTokenLogin\\build\\main\\localpycs\\pyimod02_importers.pyc',
|
||||||
|
'PYMODULE'),
|
||||||
|
('pyimod03_ctypes',
|
||||||
|
'E:\\Demo\\Python\\CursorTokenLogin\\build\\main\\localpycs\\pyimod03_ctypes.pyc',
|
||||||
|
'PYMODULE'),
|
||||||
|
('pyimod04_pywin32',
|
||||||
|
'E:\\Demo\\Python\\CursorTokenLogin\\build\\main\\localpycs\\pyimod04_pywin32.pyc',
|
||||||
|
'PYMODULE'),
|
||||||
|
('pyiboot01_bootstrap',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PyInstaller\\loader\\pyiboot01_bootstrap.py',
|
||||||
|
'PYSOURCE'),
|
||||||
|
('pyi_rth_inspect',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PyInstaller\\hooks\\rthooks\\pyi_rth_inspect.py',
|
||||||
|
'PYSOURCE'),
|
||||||
|
('pyi_rth_pyside6',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PyInstaller\\hooks\\rthooks\\pyi_rth_pyside6.py',
|
||||||
|
'PYSOURCE'),
|
||||||
|
('pyi_rth_pkgutil',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PyInstaller\\hooks\\rthooks\\pyi_rth_pkgutil.py',
|
||||||
|
'PYSOURCE'),
|
||||||
|
('pyi_rth_multiprocessing',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PyInstaller\\hooks\\rthooks\\pyi_rth_multiprocessing.py',
|
||||||
|
'PYSOURCE'),
|
||||||
|
('pyi_rth_setuptools',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PyInstaller\\hooks\\rthooks\\pyi_rth_setuptools.py',
|
||||||
|
'PYSOURCE'),
|
||||||
|
('pyi_rth_cryptography_openssl',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\_pyinstaller_hooks_contrib\\rthooks\\pyi_rth_cryptography_openssl.py',
|
||||||
|
'PYSOURCE'),
|
||||||
|
('main', 'E:\\Demo\\Python\\CursorTokenLogin\\main.py', 'PYSOURCE'),
|
||||||
|
('python314.dll',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\python314.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('PySide6\\plugins\\imageformats\\qwebp.dll',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\plugins\\imageformats\\qwebp.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('PySide6\\plugins\\imageformats\\qpdf.dll',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\plugins\\imageformats\\qpdf.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('PySide6\\plugins\\imageformats\\qtiff.dll',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\plugins\\imageformats\\qtiff.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('PySide6\\plugins\\imageformats\\qsvg.dll',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\plugins\\imageformats\\qsvg.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('PySide6\\plugins\\imageformats\\qtga.dll',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\plugins\\imageformats\\qtga.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('PySide6\\plugins\\generic\\qtuiotouchplugin.dll',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\plugins\\generic\\qtuiotouchplugin.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('PySide6\\plugins\\imageformats\\qjpeg.dll',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\plugins\\imageformats\\qjpeg.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('PySide6\\plugins\\iconengines\\qsvgicon.dll',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\plugins\\iconengines\\qsvgicon.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('PySide6\\plugins\\imageformats\\qwbmp.dll',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\plugins\\imageformats\\qwbmp.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('PySide6\\plugins\\platforms\\qoffscreen.dll',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\plugins\\platforms\\qoffscreen.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('PySide6\\plugins\\platforminputcontexts\\qtvirtualkeyboardplugin.dll',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\plugins\\platforminputcontexts\\qtvirtualkeyboardplugin.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('PySide6\\plugins\\imageformats\\qgif.dll',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\plugins\\imageformats\\qgif.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('PySide6\\plugins\\platforms\\qwindows.dll',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\plugins\\platforms\\qwindows.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('PySide6\\plugins\\platforms\\qdirect2d.dll',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\plugins\\platforms\\qdirect2d.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('PySide6\\plugins\\imageformats\\qicns.dll',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\plugins\\imageformats\\qicns.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('PySide6\\plugins\\platforms\\qminimal.dll',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\plugins\\platforms\\qminimal.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('PySide6\\plugins\\imageformats\\qico.dll',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\plugins\\imageformats\\qico.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('PySide6\\opengl32sw.dll',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\opengl32sw.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('libssl-3-x64.dll',
|
||||||
|
'C:\\Program Files\\MySQL\\MySQL Server 8.0\\bin\\libssl-3-x64.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('PySide6\\plugins\\networkinformation\\qnetworklistmanager.dll',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\plugins\\networkinformation\\qnetworklistmanager.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('PySide6\\plugins\\tls\\qcertonlybackend.dll',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\plugins\\tls\\qcertonlybackend.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('libcrypto-3-x64.dll',
|
||||||
|
'C:\\Program Files\\MySQL\\MySQL Server 8.0\\bin\\libcrypto-3-x64.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('PySide6\\plugins\\tls\\qopensslbackend.dll',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\plugins\\tls\\qopensslbackend.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('PySide6\\plugins\\tls\\qschannelbackend.dll',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\plugins\\tls\\qschannelbackend.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('PySide6\\plugins\\styles\\qmodernwindowsstyle.dll',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\plugins\\styles\\qmodernwindowsstyle.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('select.pyd',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\DLLs\\select.pyd',
|
||||||
|
'EXTENSION'),
|
||||||
|
('_socket.pyd',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\DLLs\\_socket.pyd',
|
||||||
|
'EXTENSION'),
|
||||||
|
('unicodedata.pyd',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\DLLs\\unicodedata.pyd',
|
||||||
|
'EXTENSION'),
|
||||||
|
('_zstd.pyd',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\DLLs\\_zstd.pyd',
|
||||||
|
'EXTENSION'),
|
||||||
|
('_lzma.pyd',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\DLLs\\_lzma.pyd',
|
||||||
|
'EXTENSION'),
|
||||||
|
('_bz2.pyd',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\DLLs\\_bz2.pyd',
|
||||||
|
'EXTENSION'),
|
||||||
|
('_overlapped.pyd',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\DLLs\\_overlapped.pyd',
|
||||||
|
'EXTENSION'),
|
||||||
|
('_asyncio.pyd',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\DLLs\\_asyncio.pyd',
|
||||||
|
'EXTENSION'),
|
||||||
|
('_queue.pyd',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\DLLs\\_queue.pyd',
|
||||||
|
'EXTENSION'),
|
||||||
|
('_ctypes.pyd',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\DLLs\\_ctypes.pyd',
|
||||||
|
'EXTENSION'),
|
||||||
|
('_hashlib.pyd',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\DLLs\\_hashlib.pyd',
|
||||||
|
'EXTENSION'),
|
||||||
|
('_multiprocessing.pyd',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\DLLs\\_multiprocessing.pyd',
|
||||||
|
'EXTENSION'),
|
||||||
|
('pyexpat.pyd',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\DLLs\\pyexpat.pyd',
|
||||||
|
'EXTENSION'),
|
||||||
|
('_ssl.pyd',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\DLLs\\_ssl.pyd',
|
||||||
|
'EXTENSION'),
|
||||||
|
('_decimal.pyd',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\DLLs\\_decimal.pyd',
|
||||||
|
'EXTENSION'),
|
||||||
|
('_wmi.pyd',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\DLLs\\_wmi.pyd',
|
||||||
|
'EXTENSION'),
|
||||||
|
('PySide6\\QtGui.pyd',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\QtGui.pyd',
|
||||||
|
'EXTENSION'),
|
||||||
|
('shiboken6\\Shiboken.pyd',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\shiboken6\\Shiboken.pyd',
|
||||||
|
'EXTENSION'),
|
||||||
|
('PySide6\\QtNetwork.pyd',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\QtNetwork.pyd',
|
||||||
|
'EXTENSION'),
|
||||||
|
('PySide6\\QtUiTools.pyd',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\QtUiTools.pyd',
|
||||||
|
'EXTENSION'),
|
||||||
|
('PySide6\\QtOpenGLWidgets.pyd',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\QtOpenGLWidgets.pyd',
|
||||||
|
'EXTENSION'),
|
||||||
|
('PySide6\\QtOpenGL.pyd',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\QtOpenGL.pyd',
|
||||||
|
'EXTENSION'),
|
||||||
|
('PySide6\\QtCore.pyd',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\QtCore.pyd',
|
||||||
|
'EXTENSION'),
|
||||||
|
('PySide6\\QtWidgets.pyd',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\QtWidgets.pyd',
|
||||||
|
'EXTENSION'),
|
||||||
|
('_cffi_backend.cp314-win_amd64.pyd',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\_cffi_backend.cp314-win_amd64.pyd',
|
||||||
|
'EXTENSION'),
|
||||||
|
('cryptography\\hazmat\\bindings\\_rust.pyd',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\cryptography\\hazmat\\bindings\\_rust.pyd',
|
||||||
|
'EXTENSION'),
|
||||||
|
('charset_normalizer\\md__mypyc.cp314-win_amd64.pyd',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\charset_normalizer\\md__mypyc.cp314-win_amd64.pyd',
|
||||||
|
'EXTENSION'),
|
||||||
|
('charset_normalizer\\md.cp314-win_amd64.pyd',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\charset_normalizer\\md.cp314-win_amd64.pyd',
|
||||||
|
'EXTENSION'),
|
||||||
|
('_sqlite3.pyd',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\DLLs\\_sqlite3.pyd',
|
||||||
|
'EXTENSION'),
|
||||||
|
('psutil\\_psutil_windows.pyd',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\psutil\\_psutil_windows.pyd',
|
||||||
|
'EXTENSION'),
|
||||||
|
('_uuid.pyd',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\DLLs\\_uuid.pyd',
|
||||||
|
'EXTENSION'),
|
||||||
|
('api-ms-win-crt-filesystem-l1-1-0.dll',
|
||||||
|
'C:\\Users\\ADMINI~1\\AppData\\Local\\Temp\\_MEI171962\\api-ms-win-crt-filesystem-l1-1-0.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('api-ms-win-crt-environment-l1-1-0.dll',
|
||||||
|
'C:\\Users\\ADMINI~1\\AppData\\Local\\Temp\\_MEI171962\\api-ms-win-crt-environment-l1-1-0.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('api-ms-win-crt-runtime-l1-1-0.dll',
|
||||||
|
'C:\\Users\\ADMINI~1\\AppData\\Local\\Temp\\_MEI171962\\api-ms-win-crt-runtime-l1-1-0.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('VCRUNTIME140.dll',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\VCRUNTIME140.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('api-ms-win-crt-convert-l1-1-0.dll',
|
||||||
|
'C:\\Users\\ADMINI~1\\AppData\\Local\\Temp\\_MEI171962\\api-ms-win-crt-convert-l1-1-0.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('api-ms-win-crt-string-l1-1-0.dll',
|
||||||
|
'C:\\Users\\ADMINI~1\\AppData\\Local\\Temp\\_MEI171962\\api-ms-win-crt-string-l1-1-0.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('api-ms-win-crt-stdio-l1-1-0.dll',
|
||||||
|
'C:\\Users\\ADMINI~1\\AppData\\Local\\Temp\\_MEI171962\\api-ms-win-crt-stdio-l1-1-0.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('api-ms-win-crt-math-l1-1-0.dll',
|
||||||
|
'C:\\Users\\ADMINI~1\\AppData\\Local\\Temp\\_MEI171962\\api-ms-win-crt-math-l1-1-0.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('api-ms-win-crt-locale-l1-1-0.dll',
|
||||||
|
'C:\\Users\\ADMINI~1\\AppData\\Local\\Temp\\_MEI171962\\api-ms-win-crt-locale-l1-1-0.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('api-ms-win-crt-conio-l1-1-0.dll',
|
||||||
|
'C:\\Users\\ADMINI~1\\AppData\\Local\\Temp\\_MEI171962\\api-ms-win-crt-conio-l1-1-0.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('api-ms-win-crt-time-l1-1-0.dll',
|
||||||
|
'C:\\Users\\ADMINI~1\\AppData\\Local\\Temp\\_MEI171962\\api-ms-win-crt-time-l1-1-0.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('api-ms-win-crt-process-l1-1-0.dll',
|
||||||
|
'C:\\Users\\ADMINI~1\\AppData\\Local\\Temp\\_MEI171962\\api-ms-win-crt-process-l1-1-0.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('api-ms-win-crt-heap-l1-1-0.dll',
|
||||||
|
'C:\\Users\\ADMINI~1\\AppData\\Local\\Temp\\_MEI171962\\api-ms-win-crt-heap-l1-1-0.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('api-ms-win-crt-utility-l1-1-0.dll',
|
||||||
|
'C:\\Users\\ADMINI~1\\AppData\\Local\\Temp\\_MEI171962\\api-ms-win-crt-utility-l1-1-0.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('PySide6\\Qt6Gui.dll',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\Qt6Gui.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('PySide6\\Qt6Core.dll',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\Qt6Core.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('PySide6\\Qt6Pdf.dll',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\Qt6Pdf.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('PySide6\\Qt6Svg.dll',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\Qt6Svg.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('shiboken6\\MSVCP140.dll',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\shiboken6\\MSVCP140.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('VCRUNTIME140_1.dll',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\VCRUNTIME140_1.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('PySide6\\Qt6Network.dll',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\Qt6Network.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('PySide6\\Qt6VirtualKeyboard.dll',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\Qt6VirtualKeyboard.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('PySide6\\Qt6Widgets.dll',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\Qt6Widgets.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('libffi-8.dll',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\DLLs\\libffi-8.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('libcrypto-3.dll',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\DLLs\\libcrypto-3.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('libssl-3.dll',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\DLLs\\libssl-3.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('PySide6\\pyside6.abi3.dll',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\pyside6.abi3.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('python3.dll',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\python3.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('PySide6\\VCRUNTIME140.dll',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\VCRUNTIME140.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('PySide6\\MSVCP140_2.dll',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\MSVCP140_2.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('PySide6\\VCRUNTIME140_1.dll',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\VCRUNTIME140_1.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('shiboken6\\shiboken6.abi3.dll',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\shiboken6\\shiboken6.abi3.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('PySide6\\MSVCP140.dll',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\MSVCP140.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('shiboken6\\VCRUNTIME140_1.dll',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\shiboken6\\VCRUNTIME140_1.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('shiboken6\\VCRUNTIME140.dll',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\shiboken6\\VCRUNTIME140.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('PySide6\\Qt6UiTools.dll',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\Qt6UiTools.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('PySide6\\Qt6OpenGLWidgets.dll',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\Qt6OpenGLWidgets.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('PySide6\\Qt6OpenGL.dll',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\Qt6OpenGL.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('api-ms-win-core-synch-l1-2-0.dll',
|
||||||
|
'C:\\Users\\ADMINI~1\\AppData\\Local\\Temp\\_MEI171962\\api-ms-win-core-synch-l1-2-0.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('sqlite3.dll',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\DLLs\\sqlite3.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('ucrtbase.dll',
|
||||||
|
'C:\\Users\\ADMINI~1\\AppData\\Local\\Temp\\_MEI171962\\ucrtbase.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('PySide6\\MSVCP140_1.dll',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\MSVCP140_1.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('PySide6\\Qt6Qml.dll',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\Qt6Qml.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('PySide6\\Qt6Quick.dll',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\Qt6Quick.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('api-ms-win-core-timezone-l1-1-0.dll',
|
||||||
|
'C:\\Users\\ADMINI~1\\AppData\\Local\\Temp\\_MEI171962\\api-ms-win-core-timezone-l1-1-0.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('api-ms-win-core-processenvironment-l1-1-0.dll',
|
||||||
|
'C:\\Users\\ADMINI~1\\AppData\\Local\\Temp\\_MEI171962\\api-ms-win-core-processenvironment-l1-1-0.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('api-ms-win-core-file-l1-1-0.dll',
|
||||||
|
'C:\\Users\\ADMINI~1\\AppData\\Local\\Temp\\_MEI171962\\api-ms-win-core-file-l1-1-0.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('api-ms-win-core-console-l1-1-0.dll',
|
||||||
|
'C:\\Users\\ADMINI~1\\AppData\\Local\\Temp\\_MEI171962\\api-ms-win-core-console-l1-1-0.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('api-ms-win-core-sysinfo-l1-1-0.dll',
|
||||||
|
'C:\\Users\\ADMINI~1\\AppData\\Local\\Temp\\_MEI171962\\api-ms-win-core-sysinfo-l1-1-0.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('api-ms-win-core-synch-l1-1-0.dll',
|
||||||
|
'C:\\Users\\ADMINI~1\\AppData\\Local\\Temp\\_MEI171962\\api-ms-win-core-synch-l1-1-0.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('api-ms-win-core-file-l2-1-0.dll',
|
||||||
|
'C:\\Users\\ADMINI~1\\AppData\\Local\\Temp\\_MEI171962\\api-ms-win-core-file-l2-1-0.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('api-ms-win-core-libraryloader-l1-1-0.dll',
|
||||||
|
'C:\\Users\\ADMINI~1\\AppData\\Local\\Temp\\_MEI171962\\api-ms-win-core-libraryloader-l1-1-0.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('api-ms-win-core-file-l1-2-0.dll',
|
||||||
|
'C:\\Users\\ADMINI~1\\AppData\\Local\\Temp\\_MEI171962\\api-ms-win-core-file-l1-2-0.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('api-ms-win-core-interlocked-l1-1-0.dll',
|
||||||
|
'C:\\Users\\ADMINI~1\\AppData\\Local\\Temp\\_MEI171962\\api-ms-win-core-interlocked-l1-1-0.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('api-ms-win-core-handle-l1-1-0.dll',
|
||||||
|
'C:\\Users\\ADMINI~1\\AppData\\Local\\Temp\\_MEI171962\\api-ms-win-core-handle-l1-1-0.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('api-ms-win-core-rtlsupport-l1-1-0.dll',
|
||||||
|
'C:\\Users\\ADMINI~1\\AppData\\Local\\Temp\\_MEI171962\\api-ms-win-core-rtlsupport-l1-1-0.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('api-ms-win-core-heap-l1-1-0.dll',
|
||||||
|
'C:\\Users\\ADMINI~1\\AppData\\Local\\Temp\\_MEI171962\\api-ms-win-core-heap-l1-1-0.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('api-ms-win-core-util-l1-1-0.dll',
|
||||||
|
'C:\\Users\\ADMINI~1\\AppData\\Local\\Temp\\_MEI171962\\api-ms-win-core-util-l1-1-0.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('api-ms-win-core-processthreads-l1-1-1.dll',
|
||||||
|
'C:\\Users\\ADMINI~1\\AppData\\Local\\Temp\\_MEI171962\\api-ms-win-core-processthreads-l1-1-1.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('api-ms-win-core-localization-l1-2-0.dll',
|
||||||
|
'C:\\Users\\ADMINI~1\\AppData\\Local\\Temp\\_MEI171962\\api-ms-win-core-localization-l1-2-0.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('api-ms-win-core-profile-l1-1-0.dll',
|
||||||
|
'C:\\Users\\ADMINI~1\\AppData\\Local\\Temp\\_MEI171962\\api-ms-win-core-profile-l1-1-0.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('api-ms-win-core-memory-l1-1-0.dll',
|
||||||
|
'C:\\Users\\ADMINI~1\\AppData\\Local\\Temp\\_MEI171962\\api-ms-win-core-memory-l1-1-0.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('api-ms-win-core-processthreads-l1-1-0.dll',
|
||||||
|
'C:\\Users\\ADMINI~1\\AppData\\Local\\Temp\\_MEI171962\\api-ms-win-core-processthreads-l1-1-0.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('api-ms-win-core-datetime-l1-1-0.dll',
|
||||||
|
'C:\\Users\\ADMINI~1\\AppData\\Local\\Temp\\_MEI171962\\api-ms-win-core-datetime-l1-1-0.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('api-ms-win-core-debug-l1-1-0.dll',
|
||||||
|
'C:\\Users\\ADMINI~1\\AppData\\Local\\Temp\\_MEI171962\\api-ms-win-core-debug-l1-1-0.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('api-ms-win-core-namedpipe-l1-1-0.dll',
|
||||||
|
'C:\\Users\\ADMINI~1\\AppData\\Local\\Temp\\_MEI171962\\api-ms-win-core-namedpipe-l1-1-0.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('api-ms-win-core-errorhandling-l1-1-0.dll',
|
||||||
|
'C:\\Users\\ADMINI~1\\AppData\\Local\\Temp\\_MEI171962\\api-ms-win-core-errorhandling-l1-1-0.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('api-ms-win-core-string-l1-1-0.dll',
|
||||||
|
'C:\\Users\\ADMINI~1\\AppData\\Local\\Temp\\_MEI171962\\api-ms-win-core-string-l1-1-0.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('PySide6\\Qt6QmlModels.dll',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\Qt6QmlModels.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('PySide6\\Qt6QmlMeta.dll',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\Qt6QmlMeta.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('PySide6\\Qt6QmlWorkerScript.dll',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\Qt6QmlWorkerScript.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('PySide6\\translations\\qtbase_ja.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qtbase_ja.qm',
|
||||||
|
'DATA'),
|
||||||
|
('PySide6\\translations\\qt_da.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qt_da.qm',
|
||||||
|
'DATA'),
|
||||||
|
('PySide6\\translations\\qt_en.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qt_en.qm',
|
||||||
|
'DATA'),
|
||||||
|
('PySide6\\translations\\qtbase_bg.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qtbase_bg.qm',
|
||||||
|
'DATA'),
|
||||||
|
('PySide6\\translations\\qt_help_en.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qt_help_en.qm',
|
||||||
|
'DATA'),
|
||||||
|
('PySide6\\translations\\qt_help_fr.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qt_help_fr.qm',
|
||||||
|
'DATA'),
|
||||||
|
('PySide6\\translations\\qt_uk.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qt_uk.qm',
|
||||||
|
'DATA'),
|
||||||
|
('PySide6\\translations\\qt_help_ko.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qt_help_ko.qm',
|
||||||
|
'DATA'),
|
||||||
|
('PySide6\\translations\\qt_tr.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qt_tr.qm',
|
||||||
|
'DATA'),
|
||||||
|
('PySide6\\translations\\qtbase_es.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qtbase_es.qm',
|
||||||
|
'DATA'),
|
||||||
|
('PySide6\\translations\\qtbase_tr.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qtbase_tr.qm',
|
||||||
|
'DATA'),
|
||||||
|
('PySide6\\translations\\qtbase_sk.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qtbase_sk.qm',
|
||||||
|
'DATA'),
|
||||||
|
('PySide6\\translations\\qt_fa.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qt_fa.qm',
|
||||||
|
'DATA'),
|
||||||
|
('PySide6\\translations\\qtbase_zh_CN.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qtbase_zh_CN.qm',
|
||||||
|
'DATA'),
|
||||||
|
('PySide6\\translations\\qt_help_de.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qt_help_de.qm',
|
||||||
|
'DATA'),
|
||||||
|
('PySide6\\translations\\qt_help_ja.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qt_help_ja.qm',
|
||||||
|
'DATA'),
|
||||||
|
('PySide6\\translations\\qt_help_uk.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qt_help_uk.qm',
|
||||||
|
'DATA'),
|
||||||
|
('PySide6\\translations\\qt_help_pt_BR.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qt_help_pt_BR.qm',
|
||||||
|
'DATA'),
|
||||||
|
('PySide6\\translations\\qtbase_zh_TW.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qtbase_zh_TW.qm',
|
||||||
|
'DATA'),
|
||||||
|
('PySide6\\translations\\qt_help_hu.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qt_help_hu.qm',
|
||||||
|
'DATA'),
|
||||||
|
('PySide6\\translations\\qtbase_ru.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qtbase_ru.qm',
|
||||||
|
'DATA'),
|
||||||
|
('PySide6\\translations\\qt_help_es.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qt_help_es.qm',
|
||||||
|
'DATA'),
|
||||||
|
('PySide6\\translations\\qt_it.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qt_it.qm',
|
||||||
|
'DATA'),
|
||||||
|
('PySide6\\translations\\qt_help_ka.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qt_help_ka.qm',
|
||||||
|
'DATA'),
|
||||||
|
('PySide6\\translations\\qt_help_bg.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qt_help_bg.qm',
|
||||||
|
'DATA'),
|
||||||
|
('PySide6\\translations\\qtbase_de.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qtbase_de.qm',
|
||||||
|
'DATA'),
|
||||||
|
('PySide6\\translations\\qtbase_pt_BR.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qtbase_pt_BR.qm',
|
||||||
|
'DATA'),
|
||||||
|
('PySide6\\translations\\qt_sl.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qt_sl.qm',
|
||||||
|
'DATA'),
|
||||||
|
('PySide6\\translations\\qt_ka.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qt_ka.qm',
|
||||||
|
'DATA'),
|
||||||
|
('PySide6\\translations\\qt_sk.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qt_sk.qm',
|
||||||
|
'DATA'),
|
||||||
|
('PySide6\\translations\\qtbase_ar.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qtbase_ar.qm',
|
||||||
|
'DATA'),
|
||||||
|
('PySide6\\translations\\qt_help_cs.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qt_help_cs.qm',
|
||||||
|
'DATA'),
|
||||||
|
('PySide6\\translations\\qt_sv.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qt_sv.qm',
|
||||||
|
'DATA'),
|
||||||
|
('PySide6\\translations\\qt_ja.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qt_ja.qm',
|
||||||
|
'DATA'),
|
||||||
|
('PySide6\\translations\\qtbase_pl.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qtbase_pl.qm',
|
||||||
|
'DATA'),
|
||||||
|
('PySide6\\translations\\qt_help_zh_CN.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qt_help_zh_CN.qm',
|
||||||
|
'DATA'),
|
||||||
|
('PySide6\\translations\\qtbase_nn.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qtbase_nn.qm',
|
||||||
|
'DATA'),
|
||||||
|
('PySide6\\translations\\qtbase_hr.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qtbase_hr.qm',
|
||||||
|
'DATA'),
|
||||||
|
('PySide6\\translations\\qt_help_ca.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qt_help_ca.qm',
|
||||||
|
'DATA'),
|
||||||
|
('PySide6\\translations\\qtbase_uk.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qtbase_uk.qm',
|
||||||
|
'DATA'),
|
||||||
|
('PySide6\\translations\\qt_help_da.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qt_help_da.qm',
|
||||||
|
'DATA'),
|
||||||
|
('PySide6\\translations\\qt_help_sl.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qt_help_sl.qm',
|
||||||
|
'DATA'),
|
||||||
|
('PySide6\\translations\\qt_help_sk.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qt_help_sk.qm',
|
||||||
|
'DATA'),
|
||||||
|
('PySide6\\translations\\qt_help_gl.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qt_help_gl.qm',
|
||||||
|
'DATA'),
|
||||||
|
('PySide6\\translations\\qtbase_lg.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qtbase_lg.qm',
|
||||||
|
'DATA'),
|
||||||
|
('PySide6\\translations\\qt_hr.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qt_hr.qm',
|
||||||
|
'DATA'),
|
||||||
|
('PySide6\\translations\\qt_zh_CN.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qt_zh_CN.qm',
|
||||||
|
'DATA'),
|
||||||
|
('PySide6\\translations\\qt_ko.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qt_ko.qm',
|
||||||
|
'DATA'),
|
||||||
|
('PySide6\\translations\\qtbase_cs.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qtbase_cs.qm',
|
||||||
|
'DATA'),
|
||||||
|
('PySide6\\translations\\qt_ar.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qt_ar.qm',
|
||||||
|
'DATA'),
|
||||||
|
('PySide6\\translations\\qt_he.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qt_he.qm',
|
||||||
|
'DATA'),
|
||||||
|
('PySide6\\translations\\qt_lt.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qt_lt.qm',
|
||||||
|
'DATA'),
|
||||||
|
('PySide6\\translations\\qtbase_en.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qtbase_en.qm',
|
||||||
|
'DATA'),
|
||||||
|
('PySide6\\translations\\qt_help_tr.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qt_help_tr.qm',
|
||||||
|
'DATA'),
|
||||||
|
('PySide6\\translations\\qt_help_hr.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qt_help_hr.qm',
|
||||||
|
'DATA'),
|
||||||
|
('PySide6\\translations\\qt_es.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qt_es.qm',
|
||||||
|
'DATA'),
|
||||||
|
('PySide6\\translations\\qt_gd.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qt_gd.qm',
|
||||||
|
'DATA'),
|
||||||
|
('PySide6\\translations\\qt_ru.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qt_ru.qm',
|
||||||
|
'DATA'),
|
||||||
|
('PySide6\\translations\\qt_help_ru.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qt_help_ru.qm',
|
||||||
|
'DATA'),
|
||||||
|
('PySide6\\translations\\qt_cs.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qt_cs.qm',
|
||||||
|
'DATA'),
|
||||||
|
('PySide6\\translations\\qtbase_ca.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qtbase_ca.qm',
|
||||||
|
'DATA'),
|
||||||
|
('PySide6\\translations\\qtbase_lv.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qtbase_lv.qm',
|
||||||
|
'DATA'),
|
||||||
|
('PySide6\\translations\\qt_help_zh_TW.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qt_help_zh_TW.qm',
|
||||||
|
'DATA'),
|
||||||
|
('PySide6\\translations\\qt_ca.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qt_ca.qm',
|
||||||
|
'DATA'),
|
||||||
|
('PySide6\\translations\\qt_pt_PT.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qt_pt_PT.qm',
|
||||||
|
'DATA'),
|
||||||
|
('PySide6\\translations\\qtbase_sv.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qtbase_sv.qm',
|
||||||
|
'DATA'),
|
||||||
|
('PySide6\\translations\\qt_hu.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qt_hu.qm',
|
||||||
|
'DATA'),
|
||||||
|
('PySide6\\translations\\qt_help_sv.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qt_help_sv.qm',
|
||||||
|
'DATA'),
|
||||||
|
('PySide6\\translations\\qt_nn.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qt_nn.qm',
|
||||||
|
'DATA'),
|
||||||
|
('PySide6\\translations\\qtbase_gd.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qtbase_gd.qm',
|
||||||
|
'DATA'),
|
||||||
|
('PySide6\\translations\\qtbase_fa.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qtbase_fa.qm',
|
||||||
|
'DATA'),
|
||||||
|
('PySide6\\translations\\qt_fr.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qt_fr.qm',
|
||||||
|
'DATA'),
|
||||||
|
('PySide6\\translations\\qt_de.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qt_de.qm',
|
||||||
|
'DATA'),
|
||||||
|
('PySide6\\translations\\qt_bg.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qt_bg.qm',
|
||||||
|
'DATA'),
|
||||||
|
('PySide6\\translations\\qt_lg.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qt_lg.qm',
|
||||||
|
'DATA'),
|
||||||
|
('PySide6\\translations\\qtbase_it.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qtbase_it.qm',
|
||||||
|
'DATA'),
|
||||||
|
('PySide6\\translations\\qt_gl.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qt_gl.qm',
|
||||||
|
'DATA'),
|
||||||
|
('PySide6\\translations\\qt_help_pl.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qt_help_pl.qm',
|
||||||
|
'DATA'),
|
||||||
|
('PySide6\\translations\\qtbase_fr.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qtbase_fr.qm',
|
||||||
|
'DATA'),
|
||||||
|
('PySide6\\translations\\qtbase_hu.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qtbase_hu.qm',
|
||||||
|
'DATA'),
|
||||||
|
('PySide6\\translations\\qt_fi.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qt_fi.qm',
|
||||||
|
'DATA'),
|
||||||
|
('PySide6\\translations\\qtbase_nl.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qtbase_nl.qm',
|
||||||
|
'DATA'),
|
||||||
|
('PySide6\\translations\\qt_lv.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qt_lv.qm',
|
||||||
|
'DATA'),
|
||||||
|
('PySide6\\translations\\qtbase_da.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qtbase_da.qm',
|
||||||
|
'DATA'),
|
||||||
|
('PySide6\\translations\\qtbase_he.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qtbase_he.qm',
|
||||||
|
'DATA'),
|
||||||
|
('PySide6\\translations\\qt_help_it.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qt_help_it.qm',
|
||||||
|
'DATA'),
|
||||||
|
('PySide6\\translations\\qt_help_nn.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qt_help_nn.qm',
|
||||||
|
'DATA'),
|
||||||
|
('PySide6\\translations\\qt_help_nl.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qt_help_nl.qm',
|
||||||
|
'DATA'),
|
||||||
|
('PySide6\\translations\\qtbase_fi.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qtbase_fi.qm',
|
||||||
|
'DATA'),
|
||||||
|
('PySide6\\translations\\qt_zh_TW.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qt_zh_TW.qm',
|
||||||
|
'DATA'),
|
||||||
|
('PySide6\\translations\\qt_help_ar.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qt_help_ar.qm',
|
||||||
|
'DATA'),
|
||||||
|
('PySide6\\translations\\qtbase_ka.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qtbase_ka.qm',
|
||||||
|
'DATA'),
|
||||||
|
('PySide6\\translations\\qt_nl.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qt_nl.qm',
|
||||||
|
'DATA'),
|
||||||
|
('PySide6\\translations\\qt_pt_BR.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qt_pt_BR.qm',
|
||||||
|
'DATA'),
|
||||||
|
('PySide6\\translations\\qtbase_ko.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qtbase_ko.qm',
|
||||||
|
'DATA'),
|
||||||
|
('PySide6\\translations\\qt_pl.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qt_pl.qm',
|
||||||
|
'DATA'),
|
||||||
|
('setuptools\\_vendor\\importlib_metadata-8.7.1.dist-info\\METADATA',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\setuptools\\_vendor\\importlib_metadata-8.7.1.dist-info\\METADATA',
|
||||||
|
'DATA'),
|
||||||
|
('setuptools\\_vendor\\importlib_metadata-8.7.1.dist-info\\top_level.txt',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\setuptools\\_vendor\\importlib_metadata-8.7.1.dist-info\\top_level.txt',
|
||||||
|
'DATA'),
|
||||||
|
('setuptools\\_vendor\\importlib_metadata-8.7.1.dist-info\\RECORD',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\setuptools\\_vendor\\importlib_metadata-8.7.1.dist-info\\RECORD',
|
||||||
|
'DATA'),
|
||||||
|
('setuptools\\_vendor\\importlib_metadata-8.7.1.dist-info\\INSTALLER',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\setuptools\\_vendor\\importlib_metadata-8.7.1.dist-info\\INSTALLER',
|
||||||
|
'DATA'),
|
||||||
|
('setuptools\\_vendor\\importlib_metadata-8.7.1.dist-info\\licenses\\LICENSE',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\setuptools\\_vendor\\importlib_metadata-8.7.1.dist-info\\licenses\\LICENSE',
|
||||||
|
'DATA'),
|
||||||
|
('setuptools\\_vendor\\importlib_metadata-8.7.1.dist-info\\REQUESTED',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\setuptools\\_vendor\\importlib_metadata-8.7.1.dist-info\\REQUESTED',
|
||||||
|
'DATA'),
|
||||||
|
('setuptools\\_vendor\\importlib_metadata-8.7.1.dist-info\\WHEEL',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\setuptools\\_vendor\\importlib_metadata-8.7.1.dist-info\\WHEEL',
|
||||||
|
'DATA'),
|
||||||
|
('setuptools\\_vendor\\jaraco\\text\\Lorem ipsum.txt',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\setuptools\\_vendor\\jaraco\\text\\Lorem '
|
||||||
|
'ipsum.txt',
|
||||||
|
'DATA'),
|
||||||
|
('certifi\\py.typed',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\certifi\\py.typed',
|
||||||
|
'DATA'),
|
||||||
|
('certifi\\cacert.pem',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\certifi\\cacert.pem',
|
||||||
|
'DATA'),
|
||||||
|
('cryptography-46.0.3.dist-info\\INSTALLER',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\cryptography-46.0.3.dist-info\\INSTALLER',
|
||||||
|
'DATA'),
|
||||||
|
('cryptography-46.0.3.dist-info\\licenses\\LICENSE.APACHE',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\cryptography-46.0.3.dist-info\\licenses\\LICENSE.APACHE',
|
||||||
|
'DATA'),
|
||||||
|
('cryptography-46.0.3.dist-info\\METADATA',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\cryptography-46.0.3.dist-info\\METADATA',
|
||||||
|
'DATA'),
|
||||||
|
('cryptography-46.0.3.dist-info\\licenses\\LICENSE',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\cryptography-46.0.3.dist-info\\licenses\\LICENSE',
|
||||||
|
'DATA'),
|
||||||
|
('cryptography-46.0.3.dist-info\\licenses\\LICENSE.BSD',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\cryptography-46.0.3.dist-info\\licenses\\LICENSE.BSD',
|
||||||
|
'DATA'),
|
||||||
|
('cryptography-46.0.3.dist-info\\RECORD',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\cryptography-46.0.3.dist-info\\RECORD',
|
||||||
|
'DATA'),
|
||||||
|
('cryptography-46.0.3.dist-info\\WHEEL',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\cryptography-46.0.3.dist-info\\WHEEL',
|
||||||
|
'DATA'),
|
||||||
|
('base_library.zip',
|
||||||
|
'E:\\Demo\\Python\\CursorTokenLogin\\build\\main\\base_library.zip',
|
||||||
|
'DATA')],
|
||||||
|
[],
|
||||||
|
False,
|
||||||
|
False,
|
||||||
|
1775316513,
|
||||||
|
[('runw.exe',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PyInstaller\\bootloader\\Windows-64bit-intel\\runw.exe',
|
||||||
|
'EXECUTABLE')],
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\python314.dll')
|
||||||
@@ -0,0 +1,786 @@
|
|||||||
|
('E:\\Demo\\Python\\CursorTokenLogin\\build\\main\\main.pkg',
|
||||||
|
{'BINARY': True,
|
||||||
|
'DATA': True,
|
||||||
|
'EXECUTABLE': True,
|
||||||
|
'EXTENSION': True,
|
||||||
|
'PYMODULE': True,
|
||||||
|
'PYSOURCE': True,
|
||||||
|
'PYZ': False,
|
||||||
|
'SPLASH': True,
|
||||||
|
'SYMLINK': False},
|
||||||
|
[('pyi-contents-directory _internal', '', 'OPTION'),
|
||||||
|
('PYZ-00.pyz',
|
||||||
|
'E:\\Demo\\Python\\CursorTokenLogin\\build\\main\\PYZ-00.pyz',
|
||||||
|
'PYZ'),
|
||||||
|
('struct',
|
||||||
|
'E:\\Demo\\Python\\CursorTokenLogin\\build\\main\\localpycs\\struct.pyc',
|
||||||
|
'PYMODULE'),
|
||||||
|
('pyimod01_archive',
|
||||||
|
'E:\\Demo\\Python\\CursorTokenLogin\\build\\main\\localpycs\\pyimod01_archive.pyc',
|
||||||
|
'PYMODULE'),
|
||||||
|
('pyimod02_importers',
|
||||||
|
'E:\\Demo\\Python\\CursorTokenLogin\\build\\main\\localpycs\\pyimod02_importers.pyc',
|
||||||
|
'PYMODULE'),
|
||||||
|
('pyimod03_ctypes',
|
||||||
|
'E:\\Demo\\Python\\CursorTokenLogin\\build\\main\\localpycs\\pyimod03_ctypes.pyc',
|
||||||
|
'PYMODULE'),
|
||||||
|
('pyimod04_pywin32',
|
||||||
|
'E:\\Demo\\Python\\CursorTokenLogin\\build\\main\\localpycs\\pyimod04_pywin32.pyc',
|
||||||
|
'PYMODULE'),
|
||||||
|
('pyiboot01_bootstrap',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PyInstaller\\loader\\pyiboot01_bootstrap.py',
|
||||||
|
'PYSOURCE'),
|
||||||
|
('pyi_rth_inspect',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PyInstaller\\hooks\\rthooks\\pyi_rth_inspect.py',
|
||||||
|
'PYSOURCE'),
|
||||||
|
('pyi_rth_pyside6',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PyInstaller\\hooks\\rthooks\\pyi_rth_pyside6.py',
|
||||||
|
'PYSOURCE'),
|
||||||
|
('pyi_rth_pkgutil',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PyInstaller\\hooks\\rthooks\\pyi_rth_pkgutil.py',
|
||||||
|
'PYSOURCE'),
|
||||||
|
('pyi_rth_multiprocessing',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PyInstaller\\hooks\\rthooks\\pyi_rth_multiprocessing.py',
|
||||||
|
'PYSOURCE'),
|
||||||
|
('pyi_rth_setuptools',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PyInstaller\\hooks\\rthooks\\pyi_rth_setuptools.py',
|
||||||
|
'PYSOURCE'),
|
||||||
|
('pyi_rth_cryptography_openssl',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\_pyinstaller_hooks_contrib\\rthooks\\pyi_rth_cryptography_openssl.py',
|
||||||
|
'PYSOURCE'),
|
||||||
|
('main', 'E:\\Demo\\Python\\CursorTokenLogin\\main.py', 'PYSOURCE'),
|
||||||
|
('python314.dll',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\python314.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('PySide6\\plugins\\imageformats\\qwebp.dll',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\plugins\\imageformats\\qwebp.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('PySide6\\plugins\\imageformats\\qpdf.dll',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\plugins\\imageformats\\qpdf.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('PySide6\\plugins\\imageformats\\qtiff.dll',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\plugins\\imageformats\\qtiff.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('PySide6\\plugins\\imageformats\\qsvg.dll',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\plugins\\imageformats\\qsvg.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('PySide6\\plugins\\imageformats\\qtga.dll',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\plugins\\imageformats\\qtga.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('PySide6\\plugins\\generic\\qtuiotouchplugin.dll',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\plugins\\generic\\qtuiotouchplugin.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('PySide6\\plugins\\imageformats\\qjpeg.dll',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\plugins\\imageformats\\qjpeg.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('PySide6\\plugins\\iconengines\\qsvgicon.dll',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\plugins\\iconengines\\qsvgicon.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('PySide6\\plugins\\imageformats\\qwbmp.dll',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\plugins\\imageformats\\qwbmp.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('PySide6\\plugins\\platforms\\qoffscreen.dll',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\plugins\\platforms\\qoffscreen.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('PySide6\\plugins\\platforminputcontexts\\qtvirtualkeyboardplugin.dll',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\plugins\\platforminputcontexts\\qtvirtualkeyboardplugin.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('PySide6\\plugins\\imageformats\\qgif.dll',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\plugins\\imageformats\\qgif.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('PySide6\\plugins\\platforms\\qwindows.dll',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\plugins\\platforms\\qwindows.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('PySide6\\plugins\\platforms\\qdirect2d.dll',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\plugins\\platforms\\qdirect2d.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('PySide6\\plugins\\imageformats\\qicns.dll',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\plugins\\imageformats\\qicns.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('PySide6\\plugins\\platforms\\qminimal.dll',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\plugins\\platforms\\qminimal.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('PySide6\\plugins\\imageformats\\qico.dll',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\plugins\\imageformats\\qico.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('PySide6\\opengl32sw.dll',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\opengl32sw.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('libssl-3-x64.dll',
|
||||||
|
'C:\\Program Files\\MySQL\\MySQL Server 8.0\\bin\\libssl-3-x64.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('PySide6\\plugins\\networkinformation\\qnetworklistmanager.dll',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\plugins\\networkinformation\\qnetworklistmanager.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('PySide6\\plugins\\tls\\qcertonlybackend.dll',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\plugins\\tls\\qcertonlybackend.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('libcrypto-3-x64.dll',
|
||||||
|
'C:\\Program Files\\MySQL\\MySQL Server 8.0\\bin\\libcrypto-3-x64.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('PySide6\\plugins\\tls\\qopensslbackend.dll',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\plugins\\tls\\qopensslbackend.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('PySide6\\plugins\\tls\\qschannelbackend.dll',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\plugins\\tls\\qschannelbackend.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('PySide6\\plugins\\styles\\qmodernwindowsstyle.dll',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\plugins\\styles\\qmodernwindowsstyle.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('select.pyd',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\DLLs\\select.pyd',
|
||||||
|
'EXTENSION'),
|
||||||
|
('_socket.pyd',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\DLLs\\_socket.pyd',
|
||||||
|
'EXTENSION'),
|
||||||
|
('unicodedata.pyd',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\DLLs\\unicodedata.pyd',
|
||||||
|
'EXTENSION'),
|
||||||
|
('_zstd.pyd',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\DLLs\\_zstd.pyd',
|
||||||
|
'EXTENSION'),
|
||||||
|
('_lzma.pyd',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\DLLs\\_lzma.pyd',
|
||||||
|
'EXTENSION'),
|
||||||
|
('_bz2.pyd',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\DLLs\\_bz2.pyd',
|
||||||
|
'EXTENSION'),
|
||||||
|
('_overlapped.pyd',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\DLLs\\_overlapped.pyd',
|
||||||
|
'EXTENSION'),
|
||||||
|
('_asyncio.pyd',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\DLLs\\_asyncio.pyd',
|
||||||
|
'EXTENSION'),
|
||||||
|
('_queue.pyd',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\DLLs\\_queue.pyd',
|
||||||
|
'EXTENSION'),
|
||||||
|
('_ctypes.pyd',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\DLLs\\_ctypes.pyd',
|
||||||
|
'EXTENSION'),
|
||||||
|
('_hashlib.pyd',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\DLLs\\_hashlib.pyd',
|
||||||
|
'EXTENSION'),
|
||||||
|
('_multiprocessing.pyd',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\DLLs\\_multiprocessing.pyd',
|
||||||
|
'EXTENSION'),
|
||||||
|
('pyexpat.pyd',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\DLLs\\pyexpat.pyd',
|
||||||
|
'EXTENSION'),
|
||||||
|
('_ssl.pyd',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\DLLs\\_ssl.pyd',
|
||||||
|
'EXTENSION'),
|
||||||
|
('_decimal.pyd',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\DLLs\\_decimal.pyd',
|
||||||
|
'EXTENSION'),
|
||||||
|
('_wmi.pyd',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\DLLs\\_wmi.pyd',
|
||||||
|
'EXTENSION'),
|
||||||
|
('PySide6\\QtGui.pyd',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\QtGui.pyd',
|
||||||
|
'EXTENSION'),
|
||||||
|
('shiboken6\\Shiboken.pyd',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\shiboken6\\Shiboken.pyd',
|
||||||
|
'EXTENSION'),
|
||||||
|
('PySide6\\QtNetwork.pyd',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\QtNetwork.pyd',
|
||||||
|
'EXTENSION'),
|
||||||
|
('PySide6\\QtUiTools.pyd',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\QtUiTools.pyd',
|
||||||
|
'EXTENSION'),
|
||||||
|
('PySide6\\QtOpenGLWidgets.pyd',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\QtOpenGLWidgets.pyd',
|
||||||
|
'EXTENSION'),
|
||||||
|
('PySide6\\QtOpenGL.pyd',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\QtOpenGL.pyd',
|
||||||
|
'EXTENSION'),
|
||||||
|
('PySide6\\QtCore.pyd',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\QtCore.pyd',
|
||||||
|
'EXTENSION'),
|
||||||
|
('PySide6\\QtWidgets.pyd',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\QtWidgets.pyd',
|
||||||
|
'EXTENSION'),
|
||||||
|
('_cffi_backend.cp314-win_amd64.pyd',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\_cffi_backend.cp314-win_amd64.pyd',
|
||||||
|
'EXTENSION'),
|
||||||
|
('cryptography\\hazmat\\bindings\\_rust.pyd',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\cryptography\\hazmat\\bindings\\_rust.pyd',
|
||||||
|
'EXTENSION'),
|
||||||
|
('charset_normalizer\\md__mypyc.cp314-win_amd64.pyd',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\charset_normalizer\\md__mypyc.cp314-win_amd64.pyd',
|
||||||
|
'EXTENSION'),
|
||||||
|
('charset_normalizer\\md.cp314-win_amd64.pyd',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\charset_normalizer\\md.cp314-win_amd64.pyd',
|
||||||
|
'EXTENSION'),
|
||||||
|
('_sqlite3.pyd',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\DLLs\\_sqlite3.pyd',
|
||||||
|
'EXTENSION'),
|
||||||
|
('psutil\\_psutil_windows.pyd',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\psutil\\_psutil_windows.pyd',
|
||||||
|
'EXTENSION'),
|
||||||
|
('_uuid.pyd',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\DLLs\\_uuid.pyd',
|
||||||
|
'EXTENSION'),
|
||||||
|
('api-ms-win-crt-filesystem-l1-1-0.dll',
|
||||||
|
'C:\\Users\\ADMINI~1\\AppData\\Local\\Temp\\_MEI171962\\api-ms-win-crt-filesystem-l1-1-0.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('api-ms-win-crt-environment-l1-1-0.dll',
|
||||||
|
'C:\\Users\\ADMINI~1\\AppData\\Local\\Temp\\_MEI171962\\api-ms-win-crt-environment-l1-1-0.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('api-ms-win-crt-runtime-l1-1-0.dll',
|
||||||
|
'C:\\Users\\ADMINI~1\\AppData\\Local\\Temp\\_MEI171962\\api-ms-win-crt-runtime-l1-1-0.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('VCRUNTIME140.dll',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\VCRUNTIME140.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('api-ms-win-crt-convert-l1-1-0.dll',
|
||||||
|
'C:\\Users\\ADMINI~1\\AppData\\Local\\Temp\\_MEI171962\\api-ms-win-crt-convert-l1-1-0.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('api-ms-win-crt-string-l1-1-0.dll',
|
||||||
|
'C:\\Users\\ADMINI~1\\AppData\\Local\\Temp\\_MEI171962\\api-ms-win-crt-string-l1-1-0.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('api-ms-win-crt-stdio-l1-1-0.dll',
|
||||||
|
'C:\\Users\\ADMINI~1\\AppData\\Local\\Temp\\_MEI171962\\api-ms-win-crt-stdio-l1-1-0.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('api-ms-win-crt-math-l1-1-0.dll',
|
||||||
|
'C:\\Users\\ADMINI~1\\AppData\\Local\\Temp\\_MEI171962\\api-ms-win-crt-math-l1-1-0.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('api-ms-win-crt-locale-l1-1-0.dll',
|
||||||
|
'C:\\Users\\ADMINI~1\\AppData\\Local\\Temp\\_MEI171962\\api-ms-win-crt-locale-l1-1-0.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('api-ms-win-crt-conio-l1-1-0.dll',
|
||||||
|
'C:\\Users\\ADMINI~1\\AppData\\Local\\Temp\\_MEI171962\\api-ms-win-crt-conio-l1-1-0.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('api-ms-win-crt-time-l1-1-0.dll',
|
||||||
|
'C:\\Users\\ADMINI~1\\AppData\\Local\\Temp\\_MEI171962\\api-ms-win-crt-time-l1-1-0.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('api-ms-win-crt-process-l1-1-0.dll',
|
||||||
|
'C:\\Users\\ADMINI~1\\AppData\\Local\\Temp\\_MEI171962\\api-ms-win-crt-process-l1-1-0.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('api-ms-win-crt-heap-l1-1-0.dll',
|
||||||
|
'C:\\Users\\ADMINI~1\\AppData\\Local\\Temp\\_MEI171962\\api-ms-win-crt-heap-l1-1-0.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('api-ms-win-crt-utility-l1-1-0.dll',
|
||||||
|
'C:\\Users\\ADMINI~1\\AppData\\Local\\Temp\\_MEI171962\\api-ms-win-crt-utility-l1-1-0.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('PySide6\\Qt6Gui.dll',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\Qt6Gui.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('PySide6\\Qt6Core.dll',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\Qt6Core.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('PySide6\\Qt6Pdf.dll',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\Qt6Pdf.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('PySide6\\Qt6Svg.dll',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\Qt6Svg.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('shiboken6\\MSVCP140.dll',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\shiboken6\\MSVCP140.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('VCRUNTIME140_1.dll',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\VCRUNTIME140_1.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('PySide6\\Qt6Network.dll',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\Qt6Network.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('PySide6\\Qt6VirtualKeyboard.dll',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\Qt6VirtualKeyboard.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('PySide6\\Qt6Widgets.dll',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\Qt6Widgets.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('libffi-8.dll',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\DLLs\\libffi-8.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('libcrypto-3.dll',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\DLLs\\libcrypto-3.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('libssl-3.dll',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\DLLs\\libssl-3.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('PySide6\\pyside6.abi3.dll',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\pyside6.abi3.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('python3.dll',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\python3.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('PySide6\\VCRUNTIME140.dll',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\VCRUNTIME140.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('PySide6\\MSVCP140_2.dll',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\MSVCP140_2.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('PySide6\\VCRUNTIME140_1.dll',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\VCRUNTIME140_1.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('shiboken6\\shiboken6.abi3.dll',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\shiboken6\\shiboken6.abi3.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('PySide6\\MSVCP140.dll',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\MSVCP140.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('shiboken6\\VCRUNTIME140_1.dll',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\shiboken6\\VCRUNTIME140_1.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('shiboken6\\VCRUNTIME140.dll',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\shiboken6\\VCRUNTIME140.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('PySide6\\Qt6UiTools.dll',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\Qt6UiTools.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('PySide6\\Qt6OpenGLWidgets.dll',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\Qt6OpenGLWidgets.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('PySide6\\Qt6OpenGL.dll',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\Qt6OpenGL.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('api-ms-win-core-synch-l1-2-0.dll',
|
||||||
|
'C:\\Users\\ADMINI~1\\AppData\\Local\\Temp\\_MEI171962\\api-ms-win-core-synch-l1-2-0.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('sqlite3.dll',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\DLLs\\sqlite3.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('ucrtbase.dll',
|
||||||
|
'C:\\Users\\ADMINI~1\\AppData\\Local\\Temp\\_MEI171962\\ucrtbase.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('PySide6\\MSVCP140_1.dll',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\MSVCP140_1.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('PySide6\\Qt6Qml.dll',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\Qt6Qml.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('PySide6\\Qt6Quick.dll',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\Qt6Quick.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('api-ms-win-core-timezone-l1-1-0.dll',
|
||||||
|
'C:\\Users\\ADMINI~1\\AppData\\Local\\Temp\\_MEI171962\\api-ms-win-core-timezone-l1-1-0.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('api-ms-win-core-processenvironment-l1-1-0.dll',
|
||||||
|
'C:\\Users\\ADMINI~1\\AppData\\Local\\Temp\\_MEI171962\\api-ms-win-core-processenvironment-l1-1-0.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('api-ms-win-core-file-l1-1-0.dll',
|
||||||
|
'C:\\Users\\ADMINI~1\\AppData\\Local\\Temp\\_MEI171962\\api-ms-win-core-file-l1-1-0.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('api-ms-win-core-console-l1-1-0.dll',
|
||||||
|
'C:\\Users\\ADMINI~1\\AppData\\Local\\Temp\\_MEI171962\\api-ms-win-core-console-l1-1-0.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('api-ms-win-core-sysinfo-l1-1-0.dll',
|
||||||
|
'C:\\Users\\ADMINI~1\\AppData\\Local\\Temp\\_MEI171962\\api-ms-win-core-sysinfo-l1-1-0.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('api-ms-win-core-synch-l1-1-0.dll',
|
||||||
|
'C:\\Users\\ADMINI~1\\AppData\\Local\\Temp\\_MEI171962\\api-ms-win-core-synch-l1-1-0.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('api-ms-win-core-file-l2-1-0.dll',
|
||||||
|
'C:\\Users\\ADMINI~1\\AppData\\Local\\Temp\\_MEI171962\\api-ms-win-core-file-l2-1-0.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('api-ms-win-core-libraryloader-l1-1-0.dll',
|
||||||
|
'C:\\Users\\ADMINI~1\\AppData\\Local\\Temp\\_MEI171962\\api-ms-win-core-libraryloader-l1-1-0.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('api-ms-win-core-file-l1-2-0.dll',
|
||||||
|
'C:\\Users\\ADMINI~1\\AppData\\Local\\Temp\\_MEI171962\\api-ms-win-core-file-l1-2-0.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('api-ms-win-core-interlocked-l1-1-0.dll',
|
||||||
|
'C:\\Users\\ADMINI~1\\AppData\\Local\\Temp\\_MEI171962\\api-ms-win-core-interlocked-l1-1-0.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('api-ms-win-core-handle-l1-1-0.dll',
|
||||||
|
'C:\\Users\\ADMINI~1\\AppData\\Local\\Temp\\_MEI171962\\api-ms-win-core-handle-l1-1-0.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('api-ms-win-core-rtlsupport-l1-1-0.dll',
|
||||||
|
'C:\\Users\\ADMINI~1\\AppData\\Local\\Temp\\_MEI171962\\api-ms-win-core-rtlsupport-l1-1-0.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('api-ms-win-core-heap-l1-1-0.dll',
|
||||||
|
'C:\\Users\\ADMINI~1\\AppData\\Local\\Temp\\_MEI171962\\api-ms-win-core-heap-l1-1-0.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('api-ms-win-core-util-l1-1-0.dll',
|
||||||
|
'C:\\Users\\ADMINI~1\\AppData\\Local\\Temp\\_MEI171962\\api-ms-win-core-util-l1-1-0.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('api-ms-win-core-processthreads-l1-1-1.dll',
|
||||||
|
'C:\\Users\\ADMINI~1\\AppData\\Local\\Temp\\_MEI171962\\api-ms-win-core-processthreads-l1-1-1.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('api-ms-win-core-localization-l1-2-0.dll',
|
||||||
|
'C:\\Users\\ADMINI~1\\AppData\\Local\\Temp\\_MEI171962\\api-ms-win-core-localization-l1-2-0.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('api-ms-win-core-profile-l1-1-0.dll',
|
||||||
|
'C:\\Users\\ADMINI~1\\AppData\\Local\\Temp\\_MEI171962\\api-ms-win-core-profile-l1-1-0.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('api-ms-win-core-memory-l1-1-0.dll',
|
||||||
|
'C:\\Users\\ADMINI~1\\AppData\\Local\\Temp\\_MEI171962\\api-ms-win-core-memory-l1-1-0.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('api-ms-win-core-processthreads-l1-1-0.dll',
|
||||||
|
'C:\\Users\\ADMINI~1\\AppData\\Local\\Temp\\_MEI171962\\api-ms-win-core-processthreads-l1-1-0.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('api-ms-win-core-datetime-l1-1-0.dll',
|
||||||
|
'C:\\Users\\ADMINI~1\\AppData\\Local\\Temp\\_MEI171962\\api-ms-win-core-datetime-l1-1-0.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('api-ms-win-core-debug-l1-1-0.dll',
|
||||||
|
'C:\\Users\\ADMINI~1\\AppData\\Local\\Temp\\_MEI171962\\api-ms-win-core-debug-l1-1-0.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('api-ms-win-core-namedpipe-l1-1-0.dll',
|
||||||
|
'C:\\Users\\ADMINI~1\\AppData\\Local\\Temp\\_MEI171962\\api-ms-win-core-namedpipe-l1-1-0.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('api-ms-win-core-errorhandling-l1-1-0.dll',
|
||||||
|
'C:\\Users\\ADMINI~1\\AppData\\Local\\Temp\\_MEI171962\\api-ms-win-core-errorhandling-l1-1-0.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('api-ms-win-core-string-l1-1-0.dll',
|
||||||
|
'C:\\Users\\ADMINI~1\\AppData\\Local\\Temp\\_MEI171962\\api-ms-win-core-string-l1-1-0.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('PySide6\\Qt6QmlModels.dll',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\Qt6QmlModels.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('PySide6\\Qt6QmlMeta.dll',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\Qt6QmlMeta.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('PySide6\\Qt6QmlWorkerScript.dll',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\Qt6QmlWorkerScript.dll',
|
||||||
|
'BINARY'),
|
||||||
|
('PySide6\\translations\\qtbase_ja.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qtbase_ja.qm',
|
||||||
|
'DATA'),
|
||||||
|
('PySide6\\translations\\qt_da.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qt_da.qm',
|
||||||
|
'DATA'),
|
||||||
|
('PySide6\\translations\\qt_en.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qt_en.qm',
|
||||||
|
'DATA'),
|
||||||
|
('PySide6\\translations\\qtbase_bg.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qtbase_bg.qm',
|
||||||
|
'DATA'),
|
||||||
|
('PySide6\\translations\\qt_help_en.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qt_help_en.qm',
|
||||||
|
'DATA'),
|
||||||
|
('PySide6\\translations\\qt_help_fr.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qt_help_fr.qm',
|
||||||
|
'DATA'),
|
||||||
|
('PySide6\\translations\\qt_uk.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qt_uk.qm',
|
||||||
|
'DATA'),
|
||||||
|
('PySide6\\translations\\qt_help_ko.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qt_help_ko.qm',
|
||||||
|
'DATA'),
|
||||||
|
('PySide6\\translations\\qt_tr.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qt_tr.qm',
|
||||||
|
'DATA'),
|
||||||
|
('PySide6\\translations\\qtbase_es.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qtbase_es.qm',
|
||||||
|
'DATA'),
|
||||||
|
('PySide6\\translations\\qtbase_tr.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qtbase_tr.qm',
|
||||||
|
'DATA'),
|
||||||
|
('PySide6\\translations\\qtbase_sk.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qtbase_sk.qm',
|
||||||
|
'DATA'),
|
||||||
|
('PySide6\\translations\\qt_fa.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qt_fa.qm',
|
||||||
|
'DATA'),
|
||||||
|
('PySide6\\translations\\qtbase_zh_CN.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qtbase_zh_CN.qm',
|
||||||
|
'DATA'),
|
||||||
|
('PySide6\\translations\\qt_help_de.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qt_help_de.qm',
|
||||||
|
'DATA'),
|
||||||
|
('PySide6\\translations\\qt_help_ja.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qt_help_ja.qm',
|
||||||
|
'DATA'),
|
||||||
|
('PySide6\\translations\\qt_help_uk.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qt_help_uk.qm',
|
||||||
|
'DATA'),
|
||||||
|
('PySide6\\translations\\qt_help_pt_BR.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qt_help_pt_BR.qm',
|
||||||
|
'DATA'),
|
||||||
|
('PySide6\\translations\\qtbase_zh_TW.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qtbase_zh_TW.qm',
|
||||||
|
'DATA'),
|
||||||
|
('PySide6\\translations\\qt_help_hu.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qt_help_hu.qm',
|
||||||
|
'DATA'),
|
||||||
|
('PySide6\\translations\\qtbase_ru.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qtbase_ru.qm',
|
||||||
|
'DATA'),
|
||||||
|
('PySide6\\translations\\qt_help_es.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qt_help_es.qm',
|
||||||
|
'DATA'),
|
||||||
|
('PySide6\\translations\\qt_it.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qt_it.qm',
|
||||||
|
'DATA'),
|
||||||
|
('PySide6\\translations\\qt_help_ka.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qt_help_ka.qm',
|
||||||
|
'DATA'),
|
||||||
|
('PySide6\\translations\\qt_help_bg.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qt_help_bg.qm',
|
||||||
|
'DATA'),
|
||||||
|
('PySide6\\translations\\qtbase_de.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qtbase_de.qm',
|
||||||
|
'DATA'),
|
||||||
|
('PySide6\\translations\\qtbase_pt_BR.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qtbase_pt_BR.qm',
|
||||||
|
'DATA'),
|
||||||
|
('PySide6\\translations\\qt_sl.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qt_sl.qm',
|
||||||
|
'DATA'),
|
||||||
|
('PySide6\\translations\\qt_ka.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qt_ka.qm',
|
||||||
|
'DATA'),
|
||||||
|
('PySide6\\translations\\qt_sk.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qt_sk.qm',
|
||||||
|
'DATA'),
|
||||||
|
('PySide6\\translations\\qtbase_ar.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qtbase_ar.qm',
|
||||||
|
'DATA'),
|
||||||
|
('PySide6\\translations\\qt_help_cs.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qt_help_cs.qm',
|
||||||
|
'DATA'),
|
||||||
|
('PySide6\\translations\\qt_sv.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qt_sv.qm',
|
||||||
|
'DATA'),
|
||||||
|
('PySide6\\translations\\qt_ja.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qt_ja.qm',
|
||||||
|
'DATA'),
|
||||||
|
('PySide6\\translations\\qtbase_pl.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qtbase_pl.qm',
|
||||||
|
'DATA'),
|
||||||
|
('PySide6\\translations\\qt_help_zh_CN.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qt_help_zh_CN.qm',
|
||||||
|
'DATA'),
|
||||||
|
('PySide6\\translations\\qtbase_nn.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qtbase_nn.qm',
|
||||||
|
'DATA'),
|
||||||
|
('PySide6\\translations\\qtbase_hr.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qtbase_hr.qm',
|
||||||
|
'DATA'),
|
||||||
|
('PySide6\\translations\\qt_help_ca.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qt_help_ca.qm',
|
||||||
|
'DATA'),
|
||||||
|
('PySide6\\translations\\qtbase_uk.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qtbase_uk.qm',
|
||||||
|
'DATA'),
|
||||||
|
('PySide6\\translations\\qt_help_da.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qt_help_da.qm',
|
||||||
|
'DATA'),
|
||||||
|
('PySide6\\translations\\qt_help_sl.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qt_help_sl.qm',
|
||||||
|
'DATA'),
|
||||||
|
('PySide6\\translations\\qt_help_sk.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qt_help_sk.qm',
|
||||||
|
'DATA'),
|
||||||
|
('PySide6\\translations\\qt_help_gl.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qt_help_gl.qm',
|
||||||
|
'DATA'),
|
||||||
|
('PySide6\\translations\\qtbase_lg.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qtbase_lg.qm',
|
||||||
|
'DATA'),
|
||||||
|
('PySide6\\translations\\qt_hr.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qt_hr.qm',
|
||||||
|
'DATA'),
|
||||||
|
('PySide6\\translations\\qt_zh_CN.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qt_zh_CN.qm',
|
||||||
|
'DATA'),
|
||||||
|
('PySide6\\translations\\qt_ko.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qt_ko.qm',
|
||||||
|
'DATA'),
|
||||||
|
('PySide6\\translations\\qtbase_cs.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qtbase_cs.qm',
|
||||||
|
'DATA'),
|
||||||
|
('PySide6\\translations\\qt_ar.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qt_ar.qm',
|
||||||
|
'DATA'),
|
||||||
|
('PySide6\\translations\\qt_he.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qt_he.qm',
|
||||||
|
'DATA'),
|
||||||
|
('PySide6\\translations\\qt_lt.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qt_lt.qm',
|
||||||
|
'DATA'),
|
||||||
|
('PySide6\\translations\\qtbase_en.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qtbase_en.qm',
|
||||||
|
'DATA'),
|
||||||
|
('PySide6\\translations\\qt_help_tr.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qt_help_tr.qm',
|
||||||
|
'DATA'),
|
||||||
|
('PySide6\\translations\\qt_help_hr.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qt_help_hr.qm',
|
||||||
|
'DATA'),
|
||||||
|
('PySide6\\translations\\qt_es.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qt_es.qm',
|
||||||
|
'DATA'),
|
||||||
|
('PySide6\\translations\\qt_gd.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qt_gd.qm',
|
||||||
|
'DATA'),
|
||||||
|
('PySide6\\translations\\qt_ru.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qt_ru.qm',
|
||||||
|
'DATA'),
|
||||||
|
('PySide6\\translations\\qt_help_ru.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qt_help_ru.qm',
|
||||||
|
'DATA'),
|
||||||
|
('PySide6\\translations\\qt_cs.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qt_cs.qm',
|
||||||
|
'DATA'),
|
||||||
|
('PySide6\\translations\\qtbase_ca.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qtbase_ca.qm',
|
||||||
|
'DATA'),
|
||||||
|
('PySide6\\translations\\qtbase_lv.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qtbase_lv.qm',
|
||||||
|
'DATA'),
|
||||||
|
('PySide6\\translations\\qt_help_zh_TW.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qt_help_zh_TW.qm',
|
||||||
|
'DATA'),
|
||||||
|
('PySide6\\translations\\qt_ca.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qt_ca.qm',
|
||||||
|
'DATA'),
|
||||||
|
('PySide6\\translations\\qt_pt_PT.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qt_pt_PT.qm',
|
||||||
|
'DATA'),
|
||||||
|
('PySide6\\translations\\qtbase_sv.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qtbase_sv.qm',
|
||||||
|
'DATA'),
|
||||||
|
('PySide6\\translations\\qt_hu.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qt_hu.qm',
|
||||||
|
'DATA'),
|
||||||
|
('PySide6\\translations\\qt_help_sv.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qt_help_sv.qm',
|
||||||
|
'DATA'),
|
||||||
|
('PySide6\\translations\\qt_nn.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qt_nn.qm',
|
||||||
|
'DATA'),
|
||||||
|
('PySide6\\translations\\qtbase_gd.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qtbase_gd.qm',
|
||||||
|
'DATA'),
|
||||||
|
('PySide6\\translations\\qtbase_fa.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qtbase_fa.qm',
|
||||||
|
'DATA'),
|
||||||
|
('PySide6\\translations\\qt_fr.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qt_fr.qm',
|
||||||
|
'DATA'),
|
||||||
|
('PySide6\\translations\\qt_de.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qt_de.qm',
|
||||||
|
'DATA'),
|
||||||
|
('PySide6\\translations\\qt_bg.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qt_bg.qm',
|
||||||
|
'DATA'),
|
||||||
|
('PySide6\\translations\\qt_lg.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qt_lg.qm',
|
||||||
|
'DATA'),
|
||||||
|
('PySide6\\translations\\qtbase_it.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qtbase_it.qm',
|
||||||
|
'DATA'),
|
||||||
|
('PySide6\\translations\\qt_gl.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qt_gl.qm',
|
||||||
|
'DATA'),
|
||||||
|
('PySide6\\translations\\qt_help_pl.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qt_help_pl.qm',
|
||||||
|
'DATA'),
|
||||||
|
('PySide6\\translations\\qtbase_fr.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qtbase_fr.qm',
|
||||||
|
'DATA'),
|
||||||
|
('PySide6\\translations\\qtbase_hu.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qtbase_hu.qm',
|
||||||
|
'DATA'),
|
||||||
|
('PySide6\\translations\\qt_fi.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qt_fi.qm',
|
||||||
|
'DATA'),
|
||||||
|
('PySide6\\translations\\qtbase_nl.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qtbase_nl.qm',
|
||||||
|
'DATA'),
|
||||||
|
('PySide6\\translations\\qt_lv.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qt_lv.qm',
|
||||||
|
'DATA'),
|
||||||
|
('PySide6\\translations\\qtbase_da.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qtbase_da.qm',
|
||||||
|
'DATA'),
|
||||||
|
('PySide6\\translations\\qtbase_he.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qtbase_he.qm',
|
||||||
|
'DATA'),
|
||||||
|
('PySide6\\translations\\qt_help_it.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qt_help_it.qm',
|
||||||
|
'DATA'),
|
||||||
|
('PySide6\\translations\\qt_help_nn.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qt_help_nn.qm',
|
||||||
|
'DATA'),
|
||||||
|
('PySide6\\translations\\qt_help_nl.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qt_help_nl.qm',
|
||||||
|
'DATA'),
|
||||||
|
('PySide6\\translations\\qtbase_fi.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qtbase_fi.qm',
|
||||||
|
'DATA'),
|
||||||
|
('PySide6\\translations\\qt_zh_TW.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qt_zh_TW.qm',
|
||||||
|
'DATA'),
|
||||||
|
('PySide6\\translations\\qt_help_ar.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qt_help_ar.qm',
|
||||||
|
'DATA'),
|
||||||
|
('PySide6\\translations\\qtbase_ka.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qtbase_ka.qm',
|
||||||
|
'DATA'),
|
||||||
|
('PySide6\\translations\\qt_nl.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qt_nl.qm',
|
||||||
|
'DATA'),
|
||||||
|
('PySide6\\translations\\qt_pt_BR.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qt_pt_BR.qm',
|
||||||
|
'DATA'),
|
||||||
|
('PySide6\\translations\\qtbase_ko.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qtbase_ko.qm',
|
||||||
|
'DATA'),
|
||||||
|
('PySide6\\translations\\qt_pl.qm',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\PySide6\\translations\\qt_pl.qm',
|
||||||
|
'DATA'),
|
||||||
|
('setuptools\\_vendor\\importlib_metadata-8.7.1.dist-info\\METADATA',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\setuptools\\_vendor\\importlib_metadata-8.7.1.dist-info\\METADATA',
|
||||||
|
'DATA'),
|
||||||
|
('setuptools\\_vendor\\importlib_metadata-8.7.1.dist-info\\top_level.txt',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\setuptools\\_vendor\\importlib_metadata-8.7.1.dist-info\\top_level.txt',
|
||||||
|
'DATA'),
|
||||||
|
('setuptools\\_vendor\\importlib_metadata-8.7.1.dist-info\\RECORD',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\setuptools\\_vendor\\importlib_metadata-8.7.1.dist-info\\RECORD',
|
||||||
|
'DATA'),
|
||||||
|
('setuptools\\_vendor\\importlib_metadata-8.7.1.dist-info\\INSTALLER',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\setuptools\\_vendor\\importlib_metadata-8.7.1.dist-info\\INSTALLER',
|
||||||
|
'DATA'),
|
||||||
|
('setuptools\\_vendor\\importlib_metadata-8.7.1.dist-info\\licenses\\LICENSE',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\setuptools\\_vendor\\importlib_metadata-8.7.1.dist-info\\licenses\\LICENSE',
|
||||||
|
'DATA'),
|
||||||
|
('setuptools\\_vendor\\importlib_metadata-8.7.1.dist-info\\REQUESTED',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\setuptools\\_vendor\\importlib_metadata-8.7.1.dist-info\\REQUESTED',
|
||||||
|
'DATA'),
|
||||||
|
('setuptools\\_vendor\\importlib_metadata-8.7.1.dist-info\\WHEEL',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\setuptools\\_vendor\\importlib_metadata-8.7.1.dist-info\\WHEEL',
|
||||||
|
'DATA'),
|
||||||
|
('setuptools\\_vendor\\jaraco\\text\\Lorem ipsum.txt',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\setuptools\\_vendor\\jaraco\\text\\Lorem '
|
||||||
|
'ipsum.txt',
|
||||||
|
'DATA'),
|
||||||
|
('certifi\\py.typed',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\certifi\\py.typed',
|
||||||
|
'DATA'),
|
||||||
|
('certifi\\cacert.pem',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\certifi\\cacert.pem',
|
||||||
|
'DATA'),
|
||||||
|
('cryptography-46.0.3.dist-info\\INSTALLER',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\cryptography-46.0.3.dist-info\\INSTALLER',
|
||||||
|
'DATA'),
|
||||||
|
('cryptography-46.0.3.dist-info\\licenses\\LICENSE.APACHE',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\cryptography-46.0.3.dist-info\\licenses\\LICENSE.APACHE',
|
||||||
|
'DATA'),
|
||||||
|
('cryptography-46.0.3.dist-info\\METADATA',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\cryptography-46.0.3.dist-info\\METADATA',
|
||||||
|
'DATA'),
|
||||||
|
('cryptography-46.0.3.dist-info\\licenses\\LICENSE',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\cryptography-46.0.3.dist-info\\licenses\\LICENSE',
|
||||||
|
'DATA'),
|
||||||
|
('cryptography-46.0.3.dist-info\\licenses\\LICENSE.BSD',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\cryptography-46.0.3.dist-info\\licenses\\LICENSE.BSD',
|
||||||
|
'DATA'),
|
||||||
|
('cryptography-46.0.3.dist-info\\RECORD',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\cryptography-46.0.3.dist-info\\RECORD',
|
||||||
|
'DATA'),
|
||||||
|
('cryptography-46.0.3.dist-info\\WHEEL',
|
||||||
|
'C:\\Users\\Administrator\\AppData\\Local\\Python\\pythoncore-3.14-64\\Lib\\site-packages\\cryptography-46.0.3.dist-info\\WHEEL',
|
||||||
|
'DATA'),
|
||||||
|
('base_library.zip',
|
||||||
|
'E:\\Demo\\Python\\CursorTokenLogin\\build\\main\\base_library.zip',
|
||||||
|
'DATA')],
|
||||||
|
'python314.dll',
|
||||||
|
False,
|
||||||
|
False,
|
||||||
|
False,
|
||||||
|
[],
|
||||||
|
None,
|
||||||
|
None,
|
||||||
|
None)
|
||||||
Binary file not shown.
File diff suppressed because it is too large
Load Diff
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@@ -0,0 +1,62 @@
|
|||||||
|
|
||||||
|
This file lists modules PyInstaller was not able to find. This does not
|
||||||
|
necessarily mean these modules are required for running your program. Both
|
||||||
|
Python's standard library and 3rd-party Python packages often conditionally
|
||||||
|
import optional modules, some of which may be available only on certain
|
||||||
|
platforms.
|
||||||
|
|
||||||
|
Types of import:
|
||||||
|
* top-level: imported at the top-level - look at these first
|
||||||
|
* conditional: imported within an if-statement
|
||||||
|
* delayed: imported within a function
|
||||||
|
* optional: imported within a try-except-statement
|
||||||
|
|
||||||
|
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 'collections.abc' - imported by tracemalloc (top-level), typing (top-level), traceback (top-level), _colorize (top-level), selectors (top-level), logging (top-level), http.client (top-level), importlib.resources.readers (top-level), inspect (top-level), sqlite3.dbapi2 (top-level), setuptools (top-level), setuptools._distutils.filelist (top-level), setuptools._distutils.util (top-level), setuptools._vendor.jaraco.functools (top-level), setuptools._vendor.more_itertools.more (top-level), setuptools._distutils._modified (top-level), setuptools._distutils.compat (top-level), setuptools._distutils.spawn (top-level), typing_extensions (top-level), asyncio.base_events (top-level), multiprocessing.managers (top-level), asyncio.coroutines (top-level), setuptools._distutils.compilers.C.base (top-level), setuptools._distutils.fancy_getopt (top-level), setuptools._reqs (top-level), setuptools._vendor.jaraco.context (top-level), setuptools.discovery (top-level), setuptools.dist (top-level), setuptools._vendor.importlib_metadata (top-level), setuptools._vendor.importlib_metadata._meta (top-level), setuptools._distutils.command.bdist (top-level), setuptools._distutils.core (top-level), setuptools._distutils.cmd (top-level), setuptools._distutils.dist (top-level), configparser (top-level), setuptools._distutils.extension (top-level), setuptools.config.setupcfg (top-level), setuptools.config.expand (top-level), setuptools.config.pyprojecttoml (top-level), setuptools.config._apply_pyprojecttoml (top-level), setuptools.extension (top-level), tomllib._parser (conditional), setuptools._vendor.tomli._parser (conditional), setuptools.wheel (top-level), setuptools.command.egg_info (top-level), setuptools.command.bdist_egg (top-level), setuptools.command.sdist (top-level), setuptools._distutils.command.build (top-level), setuptools._distutils.command.sdist (top-level), setuptools.glob (top-level), setuptools.command._requirestxt (top-level), setuptools.command.bdist_wheel (top-level), requests.compat (top-level), cryptography.utils (top-level), cryptography.x509.name (top-level), cryptography.x509.base (top-level), cryptography.hazmat.bindings.openssl.binding (top-level), cryptography.x509.extensions (top-level), PySide6.QtCore (top-level), PySide6.QtNetwork (top-level), PySide6.QtGui (top-level), PySide6.QtWidgets (top-level), setuptools._distutils.command.build_ext (top-level), _pyrepl.types (top-level), _pyrepl.readline (top-level), setuptools._distutils.compilers.C.msvc (top-level), PySide6.QtOpenGL (top-level)
|
||||||
|
missing module named posix - imported by os (conditional, optional), posixpath (optional), shutil (conditional), importlib._bootstrap_external (conditional), pathlib._os (optional), _pyrepl.trace (conditional), _pyrepl.unix_console (optional)
|
||||||
|
missing module named resource - imported by posix (top-level)
|
||||||
|
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 _posixshmem - imported by multiprocessing.resource_tracker (conditional), multiprocessing.shared_memory (conditional)
|
||||||
|
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 multiprocessing.AuthenticationError - imported by multiprocessing (top-level), multiprocessing.forkserver (top-level), multiprocessing.connection (top-level)
|
||||||
|
missing module named _posixsubprocess - imported by subprocess (conditional), multiprocessing.util (delayed)
|
||||||
|
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 _scproxy - imported by urllib.request (conditional)
|
||||||
|
missing module named pwd - imported by posixpath (delayed, conditional, optional), subprocess (delayed, conditional, optional), shutil (delayed, optional), tarfile (optional), pathlib (optional), netrc (delayed, optional), psutil (optional), setuptools._distutils.util (delayed, conditional, optional), setuptools._vendor.backports.tarfile (optional), setuptools._distutils.archive_util (optional), http.server (delayed, optional)
|
||||||
|
missing module named multiprocessing.BufferTooShort - imported by multiprocessing (top-level), multiprocessing.connection (top-level)
|
||||||
|
missing module named grp - imported by subprocess (delayed, conditional, optional), shutil (delayed, optional), tarfile (optional), pathlib (optional), setuptools._vendor.backports.tarfile (optional), setuptools._distutils.archive_util (optional)
|
||||||
|
missing module named _typeshed - imported by setuptools._distutils.dist (conditional), setuptools.command.bdist_egg (conditional), setuptools.glob (conditional), setuptools._vendor.wheel.wheelfile (conditional), setuptools.compat.py311 (conditional)
|
||||||
|
missing module named vms_lib - imported by platform (delayed, optional)
|
||||||
|
missing module named 'java.lang' - imported by platform (delayed, optional)
|
||||||
|
missing module named java - imported by platform (delayed)
|
||||||
|
missing module named usercustomize - imported by site (delayed, optional)
|
||||||
|
missing module named sitecustomize - imported by site (delayed, optional)
|
||||||
|
missing module named termios - imported by tty (top-level), _pyrepl.pager (delayed, optional), _pyrepl.unix_console (top-level), _pyrepl.fancy_termios (top-level), _pyrepl.unix_eventqueue (top-level)
|
||||||
|
missing module named fcntl - imported by subprocess (optional), pathlib._os (optional), _pyrepl.unix_console (top-level)
|
||||||
|
missing module named readline - imported by site (delayed, optional), rlcompleter (optional), code (delayed, conditional, optional), sqlite3.__main__ (delayed, conditional, optional)
|
||||||
|
missing module named _manylinux - imported by packaging._manylinux (delayed, optional), setuptools._vendor.packaging._manylinux (delayed, optional)
|
||||||
|
missing module named setuptools._vendor.backports.zstd - imported by setuptools._vendor.backports (top-level), urllib3.util.request (conditional, optional), urllib3.response (conditional, optional)
|
||||||
|
missing module named importlib_resources - imported by setuptools._vendor.jaraco.text (optional)
|
||||||
|
missing module named trove_classifiers - imported by setuptools.config._validate_pyproject.formats (optional)
|
||||||
|
missing module named pyimod02_importers - imported by C:\Users\Administrator\AppData\Local\Python\pythoncore-3.14-64\Lib\site-packages\PyInstaller\hooks\rthooks\pyi_rth_pkgutil.py (delayed)
|
||||||
|
missing module named simplejson - imported by requests.compat (conditional, optional)
|
||||||
|
missing module named dummy_threading - imported by requests.cookies (optional)
|
||||||
|
missing module named 'h2.events' - imported by urllib3.http2.connection (top-level)
|
||||||
|
missing module named 'h2.connection' - imported by urllib3.http2.connection (top-level)
|
||||||
|
missing module named h2 - imported by urllib3.http2.connection (top-level)
|
||||||
|
missing module named brotli - imported by urllib3.util.request (optional), urllib3.response (optional)
|
||||||
|
missing module named brotlicffi - imported by urllib3.util.request (optional), urllib3.response (optional)
|
||||||
|
missing module named socks - imported by urllib3.contrib.socks (optional)
|
||||||
|
missing module named bcrypt - imported by cryptography.hazmat.primitives.serialization.ssh (optional)
|
||||||
|
missing module named cryptography.x509.UnsupportedExtension - imported by cryptography.x509 (optional), urllib3.contrib.pyopenssl (optional)
|
||||||
|
missing module named 'OpenSSL.crypto' - imported by urllib3.contrib.pyopenssl (delayed, conditional)
|
||||||
|
missing module named OpenSSL - imported by urllib3.contrib.pyopenssl (top-level)
|
||||||
|
missing module named chardet - imported by requests.compat (optional), requests (optional), requests.packages (optional)
|
||||||
|
missing module named 'pyodide.ffi' - imported by urllib3.contrib.emscripten.fetch (delayed, optional)
|
||||||
|
missing module named pyodide - imported by urllib3.contrib.emscripten.fetch (top-level)
|
||||||
|
missing module named js - imported by urllib3.contrib.emscripten.fetch (top-level)
|
||||||
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,73 @@
|
|||||||
|
# -*- mode: python ; coding: utf-8 -*-
|
||||||
|
# 目录版:无 onefile 解压、无 exe 旁 runtime 文件夹,DLL 与主程序同发行目录,可避免
|
||||||
|
# 「Failed to load Python DLL / 找不到指定的模块」(onefile 在 %TEMP%/_MEI 下偶发)。
|
||||||
|
# 构建: pyinstaller build_onedir.spec
|
||||||
|
# 发布: 将 dist/CursorTokenLogin/ 整夹打包 zip;用户解压后运行 CursorTokenLogin.exe
|
||||||
|
import os
|
||||||
|
|
||||||
|
try:
|
||||||
|
_SPEC_ROOT = os.path.dirname(os.path.abspath(SPEC))
|
||||||
|
except NameError:
|
||||||
|
_SPEC_ROOT = os.getcwd()
|
||||||
|
_LOGO_ICO = os.path.normpath(os.path.join(_SPEC_ROOT, "logo.ico"))
|
||||||
|
if not os.path.isfile(_LOGO_ICO):
|
||||||
|
raise FileNotFoundError(
|
||||||
|
"找不到图标文件: %s\n请将 logo.ico 放在与 build_onedir.spec 同一目录后重新打包。" % _LOGO_ICO
|
||||||
|
)
|
||||||
|
_LOGO_ICO_ABS = os.path.abspath(_LOGO_ICO)
|
||||||
|
|
||||||
|
block_cipher = None
|
||||||
|
|
||||||
|
_datas = [
|
||||||
|
(os.path.join(os.getcwd(), 'layout'), 'layout'),
|
||||||
|
(os.path.join(os.getcwd(), 'assets'), 'assets'),
|
||||||
|
(_LOGO_ICO_ABS, "."),
|
||||||
|
]
|
||||||
|
|
||||||
|
a = Analysis(
|
||||||
|
['main.py'],
|
||||||
|
pathex=[os.getcwd()],
|
||||||
|
binaries=[],
|
||||||
|
datas=_datas,
|
||||||
|
hiddenimports=[],
|
||||||
|
hookspath=[],
|
||||||
|
hooksconfig={},
|
||||||
|
runtime_hooks=[],
|
||||||
|
excludes=[],
|
||||||
|
win_no_prefer_redirects=False,
|
||||||
|
win_private_assemblies=False,
|
||||||
|
cipher=block_cipher,
|
||||||
|
noarchive=False,
|
||||||
|
)
|
||||||
|
|
||||||
|
pyz = PYZ(a.pure, a.zipped_data, cipher=block_cipher)
|
||||||
|
|
||||||
|
exe = EXE(
|
||||||
|
pyz,
|
||||||
|
a.scripts,
|
||||||
|
[],
|
||||||
|
exclude_binaries=True,
|
||||||
|
name='CursorTokenLogin',
|
||||||
|
debug=False,
|
||||||
|
bootloader_ignore_signals=False,
|
||||||
|
strip=False,
|
||||||
|
upx=False,
|
||||||
|
console=False,
|
||||||
|
disable_windowed_traceback=False,
|
||||||
|
argv_emulation=False,
|
||||||
|
target_arch=None,
|
||||||
|
codesign_identity=None,
|
||||||
|
entitlements_file=None,
|
||||||
|
icon=_LOGO_ICO_ABS,
|
||||||
|
)
|
||||||
|
|
||||||
|
coll = COLLECT(
|
||||||
|
exe,
|
||||||
|
a.binaries,
|
||||||
|
a.zipfiles,
|
||||||
|
a.datas,
|
||||||
|
strip=False,
|
||||||
|
upx=False,
|
||||||
|
upx_exclude=[],
|
||||||
|
name='CursorTokenLogin',
|
||||||
|
)
|
||||||
@@ -0,0 +1,14 @@
|
|||||||
|
from pathlib import Path
|
||||||
|
import os
|
||||||
|
|
||||||
|
home = Path.home()
|
||||||
|
config_dir = home / "AppData" / "Roaming" / "Cursor" / "User" / "globalStorage"
|
||||||
|
print(f"配置目录: {config_dir}")
|
||||||
|
print(f"存在: {config_dir.exists()}")
|
||||||
|
|
||||||
|
if config_dir.exists():
|
||||||
|
print("\n文件列表:")
|
||||||
|
for f in config_dir.iterdir():
|
||||||
|
print(f" {f.name}")
|
||||||
|
if f.suffix in ['.db', '.sqlite', '.sqlite3']:
|
||||||
|
print(f" -> 数据库文件")
|
||||||
+34
@@ -0,0 +1,34 @@
|
|||||||
|
import sqlite3
|
||||||
|
from pathlib import Path
|
||||||
|
|
||||||
|
home = Path.home()
|
||||||
|
db_path = home / "AppData" / "Roaming" / "Cursor" / "User" / "globalStorage" / "state.vscdb"
|
||||||
|
|
||||||
|
print(f"数据库路径: {db_path}")
|
||||||
|
print(f"存在: {db_path.exists()}\n")
|
||||||
|
|
||||||
|
conn = sqlite3.connect(db_path)
|
||||||
|
cursor = conn.cursor()
|
||||||
|
|
||||||
|
# 查看所有表
|
||||||
|
cursor.execute("SELECT name FROM sqlite_master WHERE type='table';")
|
||||||
|
tables = cursor.fetchall()
|
||||||
|
print("表列表:")
|
||||||
|
for table in tables:
|
||||||
|
print(f" - {table[0]}")
|
||||||
|
|
||||||
|
# 查看itemTable的结构
|
||||||
|
print("\nitemTable 结构:")
|
||||||
|
cursor.execute("PRAGMA table_info(itemTable);")
|
||||||
|
columns = cursor.fetchall()
|
||||||
|
for col in columns:
|
||||||
|
print(f" {col[1]} ({col[2]})")
|
||||||
|
|
||||||
|
# 查看itemTable的前几行数据
|
||||||
|
print("\nitemTable 数据示例:")
|
||||||
|
cursor.execute("SELECT * FROM itemTable LIMIT 20;")
|
||||||
|
rows = cursor.fetchall()
|
||||||
|
for row in rows:
|
||||||
|
print(f" {row[0]}: {row[1][:100] if row[1] else 'None'}...")
|
||||||
|
|
||||||
|
conn.close()
|
||||||
Vendored
BIN
Binary file not shown.
BIN
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
BIN
Binary file not shown.
Vendored
BIN
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user