Compare commits
No commits in common. "main" and "1.0" have entirely different histories.
@ -1,52 +0,0 @@
|
|||||||
# -*- mode: python ; coding: utf-8 -*-
|
|
||||||
|
|
||||||
import os
|
|
||||||
|
|
||||||
block_cipher = None
|
|
||||||
|
|
||||||
a = Analysis(
|
|
||||||
['server.py'],
|
|
||||||
pathex=[],
|
|
||||||
binaries=[],
|
|
||||||
datas=[
|
|
||||||
('chat.html', '.'),
|
|
||||||
('LiquidTempLab.html', '.'),
|
|
||||||
('logo.webp', '.'),
|
|
||||||
('Show.png', '.'),
|
|
||||||
('deepseek.ico', '.')
|
|
||||||
],
|
|
||||||
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='LiquidTempLab',
|
|
||||||
debug=False,
|
|
||||||
bootloader_ignore_signals=False,
|
|
||||||
strip=False,
|
|
||||||
upx=True,
|
|
||||||
upx_exclude=[],
|
|
||||||
runtime_tmpdir=None,
|
|
||||||
console=True,
|
|
||||||
disable_windowed_traceback=False,
|
|
||||||
argv_emulation=False,
|
|
||||||
target_arch=None,
|
|
||||||
codesign_identity=None,
|
|
||||||
entitlements_file=None,
|
|
||||||
icon=os.path.abspath('deepseek.ico')
|
|
||||||
)
|
|
||||||
Binary file not shown.
77
README.md
77
README.md
@ -1,38 +1,63 @@
|
|||||||
# 液体温度实验模拟系统 (LiquidTempLab)
|
# 热水和冷牛奶温度变化实验记录工具
|
||||||
|
|
||||||
这是一个用于物理实验教学的综合性工具,集成了温度记录、AI 辅助学习和编程实践功能。该工具旨在帮助学生通过实验记录、AI 对话和编程实践,深入理解物理实验原理。
|
这是一个用于记录和可视化热水与冷牛奶温度变化的网页工具。该工具主要用于物理实验中记录和分析两种液体随时间的温度变化情况。
|
||||||
|
|
||||||
## 使用方式
|
|
||||||
|
|
||||||
### 在线体验
|
|
||||||
|
|
||||||
您可以直接访问在线版本:[LiquidTempLab在线演示](https://ai.ysht.me/class/chat.html)
|
|
||||||
|
|
||||||
### 本地运行
|
|
||||||
|
|
||||||
如果您需要离线使用,可以下载我们提供的打包版本:
|
|
||||||
|
|
||||||
1. 从 [Release](https://git.ysht.me/yshtcn/LiquidTempLab/releases) 页面下载最新版本的二进制文件
|
|
||||||
2. 解压后直接运行可执行文件即可
|
|
||||||
|
|
||||||
## 功能特点
|
## 功能特点
|
||||||
|
|
||||||
- 提供智能对话功能,帮助学生理解物理实验原理
|
- 实时温度数据记录
|
||||||
- 展示AI编写的温度模拟程序,作为编程实践参考
|
- 动态折线图显示
|
||||||
- 支持交互式操作和实验数据展示
|
- 可调节的坐标轴范围
|
||||||
- 提供完整的实验过程分析
|
- 支持数据的添加和删除
|
||||||
|
- 自动排序的数据记录列表
|
||||||
## 提示词说明
|
- 响应式设计,支持各种屏幕尺寸
|
||||||
|
|
||||||
系统预设的演示提示词存储在 `prompt.txt` 文件中,您可以根据需要修改这些提示词来自定义对话内容。
|
|
||||||
|
|
||||||
## 技术栈
|
## 技术栈
|
||||||
|
|
||||||
- HTML5
|
- HTML5
|
||||||
- JavaScript
|
|
||||||
- CSS3
|
- CSS3
|
||||||
- Chart.js (图表展示)
|
- JavaScript
|
||||||
|
- Chart.js (v3.9.1) - 用于图表绘制
|
||||||
|
|
||||||
|
## 使用说明
|
||||||
|
|
||||||
|
### 安装
|
||||||
|
|
||||||
|
1. 克隆或下载本项目到本地
|
||||||
|
2. 直接在浏览器中打开 `LiquidTempLab.html` 文件即可使用
|
||||||
|
|
||||||
|
### 数据记录
|
||||||
|
|
||||||
|
1. 在右侧控制面板中输入:
|
||||||
|
- 时间(分钟)
|
||||||
|
- 热水温度(℃)
|
||||||
|
- 冷牛奶温度(℃)
|
||||||
|
2. 点击"添加数据"按钮记录数据点
|
||||||
|
3. 数据会自动按时间顺序排序并显示在列表中
|
||||||
|
|
||||||
|
### 图表调整
|
||||||
|
|
||||||
|
1. 点击"坐标轴设置"展开设置面板
|
||||||
|
2. 可以设置:
|
||||||
|
- X轴范围(时间轴)
|
||||||
|
- Y轴范围(温度轴)
|
||||||
|
3. 设置会实时反映在图表上
|
||||||
|
|
||||||
|
### 数据管理
|
||||||
|
|
||||||
|
- 点击已记录的数据条目可以删除该条数据
|
||||||
|
- 使用"清空数据"按钮可以删除所有记录
|
||||||
|
- 所有数据操作都会实时更新图表显示
|
||||||
|
|
||||||
|
## 注意事项
|
||||||
|
|
||||||
|
- 时间值必须为非负整数
|
||||||
|
- 温度值支持小数点后一位
|
||||||
|
- 建议使用现代浏览器(Chrome、Firefox、Edge等)以获得最佳体验
|
||||||
|
|
||||||
|
## 作者
|
||||||
|
|
||||||
|
[在此添加作者信息]
|
||||||
|
|
||||||
## 许可证
|
## 许可证
|
||||||
|
|
||||||
MIT License
|
[在此添加许可证信息]
|
||||||
@ -1,479 +0,0 @@
|
|||||||
(['D:\\Users\\yshtcn\\Documents\\Git\\LiquidTempLab\\server.py'],
|
|
||||||
['D:\\Users\\yshtcn\\Documents\\Git\\LiquidTempLab'],
|
|
||||||
['codecs'],
|
|
||||||
['C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\site-packages\\numpy\\_pyinstaller',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\site-packages\\_pyinstaller_hooks_contrib\\hooks\\stdhooks',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\site-packages\\_pyinstaller_hooks_contrib\\hooks\\stdhooks\\__pycache__',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\site-packages\\_pyinstaller_hooks_contrib\\hooks\\rthooks',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\site-packages\\_pyinstaller_hooks_contrib\\hooks\\rthooks\\__pycache__',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\site-packages\\_pyinstaller_hooks_contrib\\hooks'],
|
|
||||||
{},
|
|
||||||
[],
|
|
||||||
[],
|
|
||||||
False,
|
|
||||||
False,
|
|
||||||
False,
|
|
||||||
{},
|
|
||||||
[],
|
|
||||||
[('LiquidTempLab.html',
|
|
||||||
'D:\\Users\\yshtcn\\Documents\\Git\\LiquidTempLab\\LiquidTempLab.html',
|
|
||||||
'DATA'),
|
|
||||||
('Show.png',
|
|
||||||
'D:\\Users\\yshtcn\\Documents\\Git\\LiquidTempLab\\Show.png',
|
|
||||||
'DATA'),
|
|
||||||
('chat.html',
|
|
||||||
'D:\\Users\\yshtcn\\Documents\\Git\\LiquidTempLab\\chat.html',
|
|
||||||
'DATA'),
|
|
||||||
('deepseek.ico',
|
|
||||||
'D:\\Users\\yshtcn\\Documents\\Git\\LiquidTempLab\\deepseek.ico',
|
|
||||||
'DATA'),
|
|
||||||
('logo.webp',
|
|
||||||
'D:\\Users\\yshtcn\\Documents\\Git\\LiquidTempLab\\logo.webp',
|
|
||||||
'DATA')],
|
|
||||||
'3.11.4 (tags/v3.11.4:d2340ef, Jun 7 2023, 05:45:37) [MSC v.1934 64 bit '
|
|
||||||
'(AMD64)]',
|
|
||||||
[('pyi_rth_inspect',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\site-packages\\PyInstaller\\hooks\\rthooks\\pyi_rth_inspect.py',
|
|
||||||
'PYSOURCE'),
|
|
||||||
('server',
|
|
||||||
'D:\\Users\\yshtcn\\Documents\\Git\\LiquidTempLab\\server.py',
|
|
||||||
'PYSOURCE')],
|
|
||||||
[('inspect',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\inspect.py',
|
|
||||||
'PYMODULE'),
|
|
||||||
('importlib',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\importlib\\__init__.py',
|
|
||||||
'PYMODULE'),
|
|
||||||
('importlib._bootstrap_external',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\importlib\\_bootstrap_external.py',
|
|
||||||
'PYMODULE'),
|
|
||||||
('importlib.metadata',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\importlib\\metadata\\__init__.py',
|
|
||||||
'PYMODULE'),
|
|
||||||
('typing',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\typing.py',
|
|
||||||
'PYMODULE'),
|
|
||||||
('importlib.abc',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\importlib\\abc.py',
|
|
||||||
'PYMODULE'),
|
|
||||||
('importlib.resources.abc',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\importlib\\resources\\abc.py',
|
|
||||||
'PYMODULE'),
|
|
||||||
('importlib.resources',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\importlib\\resources\\__init__.py',
|
|
||||||
'PYMODULE'),
|
|
||||||
('importlib.resources._legacy',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\importlib\\resources\\_legacy.py',
|
|
||||||
'PYMODULE'),
|
|
||||||
('importlib.resources._common',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\importlib\\resources\\_common.py',
|
|
||||||
'PYMODULE'),
|
|
||||||
('importlib.resources._adapters',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\importlib\\resources\\_adapters.py',
|
|
||||||
'PYMODULE'),
|
|
||||||
('tempfile',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\tempfile.py',
|
|
||||||
'PYMODULE'),
|
|
||||||
('random',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\random.py',
|
|
||||||
'PYMODULE'),
|
|
||||||
('statistics',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\statistics.py',
|
|
||||||
'PYMODULE'),
|
|
||||||
('decimal',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\decimal.py',
|
|
||||||
'PYMODULE'),
|
|
||||||
('_pydecimal',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\_pydecimal.py',
|
|
||||||
'PYMODULE'),
|
|
||||||
('contextvars',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\contextvars.py',
|
|
||||||
'PYMODULE'),
|
|
||||||
('fractions',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\fractions.py',
|
|
||||||
'PYMODULE'),
|
|
||||||
('numbers',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\numbers.py',
|
|
||||||
'PYMODULE'),
|
|
||||||
('hashlib',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\hashlib.py',
|
|
||||||
'PYMODULE'),
|
|
||||||
('logging',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\logging\\__init__.py',
|
|
||||||
'PYMODULE'),
|
|
||||||
('pickle',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\pickle.py',
|
|
||||||
'PYMODULE'),
|
|
||||||
('pprint',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\pprint.py',
|
|
||||||
'PYMODULE'),
|
|
||||||
('dataclasses',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\dataclasses.py',
|
|
||||||
'PYMODULE'),
|
|
||||||
('copy',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\copy.py',
|
|
||||||
'PYMODULE'),
|
|
||||||
('_compat_pickle',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\_compat_pickle.py',
|
|
||||||
'PYMODULE'),
|
|
||||||
('struct',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\struct.py',
|
|
||||||
'PYMODULE'),
|
|
||||||
('string',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\string.py',
|
|
||||||
'PYMODULE'),
|
|
||||||
('bisect',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\bisect.py',
|
|
||||||
'PYMODULE'),
|
|
||||||
('shutil',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\shutil.py',
|
|
||||||
'PYMODULE'),
|
|
||||||
('tarfile',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\tarfile.py',
|
|
||||||
'PYMODULE'),
|
|
||||||
('gzip',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\gzip.py',
|
|
||||||
'PYMODULE'),
|
|
||||||
('_compression',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\_compression.py',
|
|
||||||
'PYMODULE'),
|
|
||||||
('lzma',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\lzma.py',
|
|
||||||
'PYMODULE'),
|
|
||||||
('bz2',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\bz2.py',
|
|
||||||
'PYMODULE'),
|
|
||||||
('importlib._abc',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\importlib\\_abc.py',
|
|
||||||
'PYMODULE'),
|
|
||||||
('contextlib',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\contextlib.py',
|
|
||||||
'PYMODULE'),
|
|
||||||
('importlib.metadata._itertools',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\importlib\\metadata\\_itertools.py',
|
|
||||||
'PYMODULE'),
|
|
||||||
('importlib.metadata._functools',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\importlib\\metadata\\_functools.py',
|
|
||||||
'PYMODULE'),
|
|
||||||
('importlib.metadata._collections',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\importlib\\metadata\\_collections.py',
|
|
||||||
'PYMODULE'),
|
|
||||||
('importlib.metadata._meta',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\importlib\\metadata\\_meta.py',
|
|
||||||
'PYMODULE'),
|
|
||||||
('importlib.metadata._adapters',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\importlib\\metadata\\_adapters.py',
|
|
||||||
'PYMODULE'),
|
|
||||||
('importlib.metadata._text',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\importlib\\metadata\\_text.py',
|
|
||||||
'PYMODULE'),
|
|
||||||
('email.message',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\email\\message.py',
|
|
||||||
'PYMODULE'),
|
|
||||||
('email.policy',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\email\\policy.py',
|
|
||||||
'PYMODULE'),
|
|
||||||
('email.contentmanager',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\email\\contentmanager.py',
|
|
||||||
'PYMODULE'),
|
|
||||||
('email.quoprimime',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\email\\quoprimime.py',
|
|
||||||
'PYMODULE'),
|
|
||||||
('email.headerregistry',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\email\\headerregistry.py',
|
|
||||||
'PYMODULE'),
|
|
||||||
('email._header_value_parser',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\email\\_header_value_parser.py',
|
|
||||||
'PYMODULE'),
|
|
||||||
('email.iterators',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\email\\iterators.py',
|
|
||||||
'PYMODULE'),
|
|
||||||
('email.generator',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\email\\generator.py',
|
|
||||||
'PYMODULE'),
|
|
||||||
('email._encoded_words',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\email\\_encoded_words.py',
|
|
||||||
'PYMODULE'),
|
|
||||||
('base64',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\base64.py',
|
|
||||||
'PYMODULE'),
|
|
||||||
('getopt',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\getopt.py',
|
|
||||||
'PYMODULE'),
|
|
||||||
('gettext',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\gettext.py',
|
|
||||||
'PYMODULE'),
|
|
||||||
('email.charset',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\email\\charset.py',
|
|
||||||
'PYMODULE'),
|
|
||||||
('email.encoders',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\email\\encoders.py',
|
|
||||||
'PYMODULE'),
|
|
||||||
('email.base64mime',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\email\\base64mime.py',
|
|
||||||
'PYMODULE'),
|
|
||||||
('email._policybase',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\email\\_policybase.py',
|
|
||||||
'PYMODULE'),
|
|
||||||
('email.header',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\email\\header.py',
|
|
||||||
'PYMODULE'),
|
|
||||||
('email.errors',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\email\\errors.py',
|
|
||||||
'PYMODULE'),
|
|
||||||
('email.utils',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\email\\utils.py',
|
|
||||||
'PYMODULE'),
|
|
||||||
('email._parseaddr',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\email\\_parseaddr.py',
|
|
||||||
'PYMODULE'),
|
|
||||||
('calendar',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\calendar.py',
|
|
||||||
'PYMODULE'),
|
|
||||||
('datetime',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\datetime.py',
|
|
||||||
'PYMODULE'),
|
|
||||||
('_strptime',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\_strptime.py',
|
|
||||||
'PYMODULE'),
|
|
||||||
('quopri',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\quopri.py',
|
|
||||||
'PYMODULE'),
|
|
||||||
('textwrap',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\textwrap.py',
|
|
||||||
'PYMODULE'),
|
|
||||||
('zipfile',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\zipfile.py',
|
|
||||||
'PYMODULE'),
|
|
||||||
('py_compile',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\py_compile.py',
|
|
||||||
'PYMODULE'),
|
|
||||||
('importlib.util',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\importlib\\util.py',
|
|
||||||
'PYMODULE'),
|
|
||||||
('email',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\email\\__init__.py',
|
|
||||||
'PYMODULE'),
|
|
||||||
('email.parser',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\email\\parser.py',
|
|
||||||
'PYMODULE'),
|
|
||||||
('email.feedparser',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\email\\feedparser.py',
|
|
||||||
'PYMODULE'),
|
|
||||||
('csv',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\csv.py',
|
|
||||||
'PYMODULE'),
|
|
||||||
('importlib.readers',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\importlib\\readers.py',
|
|
||||||
'PYMODULE'),
|
|
||||||
('importlib.resources.readers',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\importlib\\resources\\readers.py',
|
|
||||||
'PYMODULE'),
|
|
||||||
('importlib.resources._itertools',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\importlib\\resources\\_itertools.py',
|
|
||||||
'PYMODULE'),
|
|
||||||
('importlib._bootstrap',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\importlib\\_bootstrap.py',
|
|
||||||
'PYMODULE'),
|
|
||||||
('argparse',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\argparse.py',
|
|
||||||
'PYMODULE'),
|
|
||||||
('importlib.machinery',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\importlib\\machinery.py',
|
|
||||||
'PYMODULE'),
|
|
||||||
('dis',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\dis.py',
|
|
||||||
'PYMODULE'),
|
|
||||||
('opcode',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\opcode.py',
|
|
||||||
'PYMODULE'),
|
|
||||||
('ast',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\ast.py',
|
|
||||||
'PYMODULE'),
|
|
||||||
('getpass',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\getpass.py',
|
|
||||||
'PYMODULE'),
|
|
||||||
('nturl2path',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\nturl2path.py',
|
|
||||||
'PYMODULE'),
|
|
||||||
('ftplib',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\ftplib.py',
|
|
||||||
'PYMODULE'),
|
|
||||||
('netrc',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\netrc.py',
|
|
||||||
'PYMODULE'),
|
|
||||||
('shlex',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\shlex.py',
|
|
||||||
'PYMODULE'),
|
|
||||||
('mimetypes',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\mimetypes.py',
|
|
||||||
'PYMODULE'),
|
|
||||||
('http.cookiejar',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\http\\cookiejar.py',
|
|
||||||
'PYMODULE'),
|
|
||||||
('http',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\http\\__init__.py',
|
|
||||||
'PYMODULE'),
|
|
||||||
('ssl',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\ssl.py',
|
|
||||||
'PYMODULE'),
|
|
||||||
('http.client',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\http\\client.py',
|
|
||||||
'PYMODULE'),
|
|
||||||
('_py_abc',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\_py_abc.py',
|
|
||||||
'PYMODULE'),
|
|
||||||
('tracemalloc',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\tracemalloc.py',
|
|
||||||
'PYMODULE'),
|
|
||||||
('stringprep',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\stringprep.py',
|
|
||||||
'PYMODULE'),
|
|
||||||
('socket',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\socket.py',
|
|
||||||
'PYMODULE'),
|
|
||||||
('selectors',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\selectors.py',
|
|
||||||
'PYMODULE'),
|
|
||||||
('signal',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\signal.py',
|
|
||||||
'PYMODULE'),
|
|
||||||
('threading',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\threading.py',
|
|
||||||
'PYMODULE'),
|
|
||||||
('_threading_local',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\_threading_local.py',
|
|
||||||
'PYMODULE'),
|
|
||||||
('subprocess',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\subprocess.py',
|
|
||||||
'PYMODULE'),
|
|
||||||
('webbrowser',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\webbrowser.py',
|
|
||||||
'PYMODULE'),
|
|
||||||
('glob',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\glob.py',
|
|
||||||
'PYMODULE'),
|
|
||||||
('socketserver',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\socketserver.py',
|
|
||||||
'PYMODULE'),
|
|
||||||
('http.server',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\http\\server.py',
|
|
||||||
'PYMODULE'),
|
|
||||||
('html',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\html\\__init__.py',
|
|
||||||
'PYMODULE'),
|
|
||||||
('html.entities',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\html\\entities.py',
|
|
||||||
'PYMODULE')],
|
|
||||||
[('api-ms-win-crt-locale-l1-1-0.dll',
|
|
||||||
'C:\\shangate\\shangate-server\\api-ms-win-crt-locale-l1-1-0.dll',
|
|
||||||
'BINARY'),
|
|
||||||
('python311.dll',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\python311.dll',
|
|
||||||
'BINARY'),
|
|
||||||
('VCRUNTIME140.dll',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\VCRUNTIME140.dll',
|
|
||||||
'BINARY'),
|
|
||||||
('api-ms-win-crt-runtime-l1-1-0.dll',
|
|
||||||
'C:\\shangate\\shangate-server\\api-ms-win-crt-runtime-l1-1-0.dll',
|
|
||||||
'BINARY'),
|
|
||||||
('api-ms-win-crt-stdio-l1-1-0.dll',
|
|
||||||
'C:\\shangate\\shangate-server\\api-ms-win-crt-stdio-l1-1-0.dll',
|
|
||||||
'BINARY'),
|
|
||||||
('api-ms-win-crt-math-l1-1-0.dll',
|
|
||||||
'C:\\shangate\\shangate-server\\api-ms-win-crt-math-l1-1-0.dll',
|
|
||||||
'BINARY'),
|
|
||||||
('api-ms-win-crt-heap-l1-1-0.dll',
|
|
||||||
'C:\\shangate\\shangate-server\\api-ms-win-crt-heap-l1-1-0.dll',
|
|
||||||
'BINARY'),
|
|
||||||
('ucrtbase.dll', 'C:\\WINDOWS\\system32\\ucrtbase.dll', 'BINARY'),
|
|
||||||
('api-ms-win-crt-string-l1-1-0.dll',
|
|
||||||
'C:\\shangate\\shangate-server\\api-ms-win-crt-string-l1-1-0.dll',
|
|
||||||
'BINARY'),
|
|
||||||
('api-ms-win-crt-time-l1-1-0.dll',
|
|
||||||
'C:\\shangate\\shangate-server\\api-ms-win-crt-time-l1-1-0.dll',
|
|
||||||
'BINARY'),
|
|
||||||
('api-ms-win-crt-environment-l1-1-0.dll',
|
|
||||||
'C:\\shangate\\shangate-server\\api-ms-win-crt-environment-l1-1-0.dll',
|
|
||||||
'BINARY'),
|
|
||||||
('api-ms-win-crt-convert-l1-1-0.dll',
|
|
||||||
'C:\\shangate\\shangate-server\\api-ms-win-crt-convert-l1-1-0.dll',
|
|
||||||
'BINARY'),
|
|
||||||
('api-ms-win-crt-filesystem-l1-1-0.dll',
|
|
||||||
'C:\\shangate\\shangate-server\\api-ms-win-crt-filesystem-l1-1-0.dll',
|
|
||||||
'BINARY'),
|
|
||||||
('api-ms-win-core-synch-l1-2-0.dll',
|
|
||||||
'C:\\shangate\\shangate-server\\api-ms-win-core-synch-l1-2-0.dll',
|
|
||||||
'BINARY'),
|
|
||||||
('api-ms-win-core-file-l1-2-0.dll',
|
|
||||||
'C:\\shangate\\shangate-server\\api-ms-win-core-file-l1-2-0.dll',
|
|
||||||
'BINARY'),
|
|
||||||
('api-ms-win-core-file-l2-1-0.dll',
|
|
||||||
'C:\\shangate\\shangate-server\\api-ms-win-core-file-l2-1-0.dll',
|
|
||||||
'BINARY'),
|
|
||||||
('api-ms-win-core-localization-l1-2-0.dll',
|
|
||||||
'C:\\shangate\\shangate-server\\api-ms-win-core-localization-l1-2-0.dll',
|
|
||||||
'BINARY'),
|
|
||||||
('api-ms-win-core-timezone-l1-1-0.dll',
|
|
||||||
'C:\\shangate\\shangate-server\\api-ms-win-core-timezone-l1-1-0.dll',
|
|
||||||
'BINARY'),
|
|
||||||
('api-ms-win-core-processthreads-l1-1-1.dll',
|
|
||||||
'C:\\shangate\\shangate-server\\api-ms-win-core-processthreads-l1-1-1.dll',
|
|
||||||
'BINARY'),
|
|
||||||
('api-ms-win-core-synch-l1-1-0.dll',
|
|
||||||
'C:\\shangate\\shangate-server\\api-ms-win-core-synch-l1-1-0.dll',
|
|
||||||
'BINARY'),
|
|
||||||
('_decimal.pyd',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\DLLs\\_decimal.pyd',
|
|
||||||
'EXTENSION'),
|
|
||||||
('_hashlib.pyd',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\DLLs\\_hashlib.pyd',
|
|
||||||
'EXTENSION'),
|
|
||||||
('_lzma.pyd',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\DLLs\\_lzma.pyd',
|
|
||||||
'EXTENSION'),
|
|
||||||
('_bz2.pyd',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\DLLs\\_bz2.pyd',
|
|
||||||
'EXTENSION'),
|
|
||||||
('_ssl.pyd',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\DLLs\\_ssl.pyd',
|
|
||||||
'EXTENSION'),
|
|
||||||
('unicodedata.pyd',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\DLLs\\unicodedata.pyd',
|
|
||||||
'EXTENSION'),
|
|
||||||
('select.pyd',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\DLLs\\select.pyd',
|
|
||||||
'EXTENSION'),
|
|
||||||
('_socket.pyd',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\DLLs\\_socket.pyd',
|
|
||||||
'EXTENSION'),
|
|
||||||
('libcrypto-1_1.dll',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\DLLs\\libcrypto-1_1.dll',
|
|
||||||
'BINARY'),
|
|
||||||
('libssl-1_1.dll',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\DLLs\\libssl-1_1.dll',
|
|
||||||
'BINARY'),
|
|
||||||
('api-ms-win-crt-utility-l1-1-0.dll',
|
|
||||||
'C:\\shangate\\shangate-server\\api-ms-win-crt-utility-l1-1-0.dll',
|
|
||||||
'BINARY')],
|
|
||||||
[],
|
|
||||||
[],
|
|
||||||
[('LiquidTempLab.html',
|
|
||||||
'D:\\Users\\yshtcn\\Documents\\Git\\LiquidTempLab\\LiquidTempLab.html',
|
|
||||||
'DATA'),
|
|
||||||
('Show.png',
|
|
||||||
'D:\\Users\\yshtcn\\Documents\\Git\\LiquidTempLab\\Show.png',
|
|
||||||
'DATA'),
|
|
||||||
('chat.html',
|
|
||||||
'D:\\Users\\yshtcn\\Documents\\Git\\LiquidTempLab\\chat.html',
|
|
||||||
'DATA'),
|
|
||||||
('deepseek.ico',
|
|
||||||
'D:\\Users\\yshtcn\\Documents\\Git\\LiquidTempLab\\deepseek.ico',
|
|
||||||
'DATA'),
|
|
||||||
('logo.webp',
|
|
||||||
'D:\\Users\\yshtcn\\Documents\\Git\\LiquidTempLab\\logo.webp',
|
|
||||||
'DATA'),
|
|
||||||
('base_library.zip',
|
|
||||||
'D:\\Users\\yshtcn\\Documents\\Git\\LiquidTempLab\\build\\LiquidTempLab\\base_library.zip',
|
|
||||||
'DATA')],
|
|
||||||
[])
|
|
||||||
@ -1,159 +0,0 @@
|
|||||||
('D:\\Users\\yshtcn\\Documents\\Git\\LiquidTempLab\\dist\\LiquidTempLab.exe',
|
|
||||||
True,
|
|
||||||
False,
|
|
||||||
False,
|
|
||||||
['D:\\Users\\yshtcn\\Documents\\Git\\LiquidTempLab\\deepseek.ico'],
|
|
||||||
None,
|
|
||||||
False,
|
|
||||||
False,
|
|
||||||
'<?xml version="1.0" encoding="UTF-8" standalone="yes"?><assembly xmlns="urn:schemas-microsoft-com:asm.v1" manifestVersion="1.0"><assemblyIdentity type="win32" name="LiquidTempLab" processorArchitecture="amd64" version="1.0.0.0"/><trustInfo xmlns="urn:schemas-microsoft-com:asm.v3"><security><requestedPrivileges><requestedExecutionLevel level="asInvoker" uiAccess="false"/></requestedPrivileges></security></trustInfo><dependency><dependentAssembly><assemblyIdentity type="win32" name="Microsoft.Windows.Common-Controls" language="*" processorArchitecture="*" version="6.0.0.0" publicKeyToken="6595b64144ccf1df"/></dependentAssembly></dependency><compatibility xmlns="urn:schemas-microsoft-com:compatibility.v1"><application><supportedOS Id="{e2011457-1546-43c5-a5fe-008deee3d3f0}"/><supportedOS Id="{35138b9a-5d96-4fbd-8e2d-a2440225f93a}"/><supportedOS Id="{4a2f28e3-53b9-4441-ba9c-d69d4a4a6e38}"/><supportedOS Id="{1f676c76-80e1-4239-95bb-83d0f6d0da78}"/><supportedOS Id="{8e0f7a12-bfb3-4fe8-b9a5-48fd50a15a9a}"/></application></compatibility><application xmlns="urn:schemas-microsoft-com:asm.v3"><windowsSettings><longPathAware xmlns="http://schemas.microsoft.com/SMI/2016/WindowsSettings">true</longPathAware></windowsSettings></application></assembly>',
|
|
||||||
True,
|
|
||||||
True,
|
|
||||||
False,
|
|
||||||
None,
|
|
||||||
None,
|
|
||||||
None,
|
|
||||||
'D:\\Users\\yshtcn\\Documents\\Git\\LiquidTempLab\\build\\LiquidTempLab\\LiquidTempLab.pkg',
|
|
||||||
[('PYZ-00.pyz',
|
|
||||||
'D:\\Users\\yshtcn\\Documents\\Git\\LiquidTempLab\\build\\LiquidTempLab\\PYZ-00.pyz',
|
|
||||||
'PYZ'),
|
|
||||||
('struct',
|
|
||||||
'D:\\Users\\yshtcn\\Documents\\Git\\LiquidTempLab\\build\\LiquidTempLab\\localpycs\\struct.pyc',
|
|
||||||
'PYMODULE'),
|
|
||||||
('pyimod01_archive',
|
|
||||||
'D:\\Users\\yshtcn\\Documents\\Git\\LiquidTempLab\\build\\LiquidTempLab\\localpycs\\pyimod01_archive.pyc',
|
|
||||||
'PYMODULE'),
|
|
||||||
('pyimod02_importers',
|
|
||||||
'D:\\Users\\yshtcn\\Documents\\Git\\LiquidTempLab\\build\\LiquidTempLab\\localpycs\\pyimod02_importers.pyc',
|
|
||||||
'PYMODULE'),
|
|
||||||
('pyimod03_ctypes',
|
|
||||||
'D:\\Users\\yshtcn\\Documents\\Git\\LiquidTempLab\\build\\LiquidTempLab\\localpycs\\pyimod03_ctypes.pyc',
|
|
||||||
'PYMODULE'),
|
|
||||||
('pyimod04_pywin32',
|
|
||||||
'D:\\Users\\yshtcn\\Documents\\Git\\LiquidTempLab\\build\\LiquidTempLab\\localpycs\\pyimod04_pywin32.pyc',
|
|
||||||
'PYMODULE'),
|
|
||||||
('pyiboot01_bootstrap',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\site-packages\\PyInstaller\\loader\\pyiboot01_bootstrap.py',
|
|
||||||
'PYSOURCE'),
|
|
||||||
('pyi_rth_inspect',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\site-packages\\PyInstaller\\hooks\\rthooks\\pyi_rth_inspect.py',
|
|
||||||
'PYSOURCE'),
|
|
||||||
('server',
|
|
||||||
'D:\\Users\\yshtcn\\Documents\\Git\\LiquidTempLab\\server.py',
|
|
||||||
'PYSOURCE'),
|
|
||||||
('api-ms-win-crt-locale-l1-1-0.dll',
|
|
||||||
'C:\\shangate\\shangate-server\\api-ms-win-crt-locale-l1-1-0.dll',
|
|
||||||
'BINARY'),
|
|
||||||
('python311.dll',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\python311.dll',
|
|
||||||
'BINARY'),
|
|
||||||
('VCRUNTIME140.dll',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\VCRUNTIME140.dll',
|
|
||||||
'BINARY'),
|
|
||||||
('api-ms-win-crt-runtime-l1-1-0.dll',
|
|
||||||
'C:\\shangate\\shangate-server\\api-ms-win-crt-runtime-l1-1-0.dll',
|
|
||||||
'BINARY'),
|
|
||||||
('api-ms-win-crt-stdio-l1-1-0.dll',
|
|
||||||
'C:\\shangate\\shangate-server\\api-ms-win-crt-stdio-l1-1-0.dll',
|
|
||||||
'BINARY'),
|
|
||||||
('api-ms-win-crt-math-l1-1-0.dll',
|
|
||||||
'C:\\shangate\\shangate-server\\api-ms-win-crt-math-l1-1-0.dll',
|
|
||||||
'BINARY'),
|
|
||||||
('api-ms-win-crt-heap-l1-1-0.dll',
|
|
||||||
'C:\\shangate\\shangate-server\\api-ms-win-crt-heap-l1-1-0.dll',
|
|
||||||
'BINARY'),
|
|
||||||
('ucrtbase.dll', 'C:\\WINDOWS\\system32\\ucrtbase.dll', 'BINARY'),
|
|
||||||
('api-ms-win-crt-string-l1-1-0.dll',
|
|
||||||
'C:\\shangate\\shangate-server\\api-ms-win-crt-string-l1-1-0.dll',
|
|
||||||
'BINARY'),
|
|
||||||
('api-ms-win-crt-time-l1-1-0.dll',
|
|
||||||
'C:\\shangate\\shangate-server\\api-ms-win-crt-time-l1-1-0.dll',
|
|
||||||
'BINARY'),
|
|
||||||
('api-ms-win-crt-environment-l1-1-0.dll',
|
|
||||||
'C:\\shangate\\shangate-server\\api-ms-win-crt-environment-l1-1-0.dll',
|
|
||||||
'BINARY'),
|
|
||||||
('api-ms-win-crt-convert-l1-1-0.dll',
|
|
||||||
'C:\\shangate\\shangate-server\\api-ms-win-crt-convert-l1-1-0.dll',
|
|
||||||
'BINARY'),
|
|
||||||
('api-ms-win-crt-filesystem-l1-1-0.dll',
|
|
||||||
'C:\\shangate\\shangate-server\\api-ms-win-crt-filesystem-l1-1-0.dll',
|
|
||||||
'BINARY'),
|
|
||||||
('api-ms-win-core-synch-l1-2-0.dll',
|
|
||||||
'C:\\shangate\\shangate-server\\api-ms-win-core-synch-l1-2-0.dll',
|
|
||||||
'BINARY'),
|
|
||||||
('api-ms-win-core-file-l1-2-0.dll',
|
|
||||||
'C:\\shangate\\shangate-server\\api-ms-win-core-file-l1-2-0.dll',
|
|
||||||
'BINARY'),
|
|
||||||
('api-ms-win-core-file-l2-1-0.dll',
|
|
||||||
'C:\\shangate\\shangate-server\\api-ms-win-core-file-l2-1-0.dll',
|
|
||||||
'BINARY'),
|
|
||||||
('api-ms-win-core-localization-l1-2-0.dll',
|
|
||||||
'C:\\shangate\\shangate-server\\api-ms-win-core-localization-l1-2-0.dll',
|
|
||||||
'BINARY'),
|
|
||||||
('api-ms-win-core-timezone-l1-1-0.dll',
|
|
||||||
'C:\\shangate\\shangate-server\\api-ms-win-core-timezone-l1-1-0.dll',
|
|
||||||
'BINARY'),
|
|
||||||
('api-ms-win-core-processthreads-l1-1-1.dll',
|
|
||||||
'C:\\shangate\\shangate-server\\api-ms-win-core-processthreads-l1-1-1.dll',
|
|
||||||
'BINARY'),
|
|
||||||
('api-ms-win-core-synch-l1-1-0.dll',
|
|
||||||
'C:\\shangate\\shangate-server\\api-ms-win-core-synch-l1-1-0.dll',
|
|
||||||
'BINARY'),
|
|
||||||
('_decimal.pyd',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\DLLs\\_decimal.pyd',
|
|
||||||
'EXTENSION'),
|
|
||||||
('_hashlib.pyd',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\DLLs\\_hashlib.pyd',
|
|
||||||
'EXTENSION'),
|
|
||||||
('_lzma.pyd',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\DLLs\\_lzma.pyd',
|
|
||||||
'EXTENSION'),
|
|
||||||
('_bz2.pyd',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\DLLs\\_bz2.pyd',
|
|
||||||
'EXTENSION'),
|
|
||||||
('_ssl.pyd',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\DLLs\\_ssl.pyd',
|
|
||||||
'EXTENSION'),
|
|
||||||
('unicodedata.pyd',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\DLLs\\unicodedata.pyd',
|
|
||||||
'EXTENSION'),
|
|
||||||
('select.pyd',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\DLLs\\select.pyd',
|
|
||||||
'EXTENSION'),
|
|
||||||
('_socket.pyd',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\DLLs\\_socket.pyd',
|
|
||||||
'EXTENSION'),
|
|
||||||
('libcrypto-1_1.dll',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\DLLs\\libcrypto-1_1.dll',
|
|
||||||
'BINARY'),
|
|
||||||
('libssl-1_1.dll',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\DLLs\\libssl-1_1.dll',
|
|
||||||
'BINARY'),
|
|
||||||
('api-ms-win-crt-utility-l1-1-0.dll',
|
|
||||||
'C:\\shangate\\shangate-server\\api-ms-win-crt-utility-l1-1-0.dll',
|
|
||||||
'BINARY'),
|
|
||||||
('LiquidTempLab.html',
|
|
||||||
'D:\\Users\\yshtcn\\Documents\\Git\\LiquidTempLab\\LiquidTempLab.html',
|
|
||||||
'DATA'),
|
|
||||||
('Show.png',
|
|
||||||
'D:\\Users\\yshtcn\\Documents\\Git\\LiquidTempLab\\Show.png',
|
|
||||||
'DATA'),
|
|
||||||
('chat.html',
|
|
||||||
'D:\\Users\\yshtcn\\Documents\\Git\\LiquidTempLab\\chat.html',
|
|
||||||
'DATA'),
|
|
||||||
('deepseek.ico',
|
|
||||||
'D:\\Users\\yshtcn\\Documents\\Git\\LiquidTempLab\\deepseek.ico',
|
|
||||||
'DATA'),
|
|
||||||
('logo.webp',
|
|
||||||
'D:\\Users\\yshtcn\\Documents\\Git\\LiquidTempLab\\logo.webp',
|
|
||||||
'DATA'),
|
|
||||||
('base_library.zip',
|
|
||||||
'D:\\Users\\yshtcn\\Documents\\Git\\LiquidTempLab\\build\\LiquidTempLab\\base_library.zip',
|
|
||||||
'DATA')],
|
|
||||||
[],
|
|
||||||
False,
|
|
||||||
False,
|
|
||||||
1741099375,
|
|
||||||
[('run.exe',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\site-packages\\PyInstaller\\bootloader\\Windows-64bit-intel\\run.exe',
|
|
||||||
'EXECUTABLE')])
|
|
||||||
@ -1,30 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
|
|
||||||
<assembly xmlns="urn:schemas-microsoft-com:asm.v1" manifestVersion="1.0">
|
|
||||||
<assemblyIdentity type="win32" name="LiquidTempLab" processorArchitecture="amd64" version="1.0.0.0"/>
|
|
||||||
<trustInfo xmlns="urn:schemas-microsoft-com:asm.v3">
|
|
||||||
<security>
|
|
||||||
<requestedPrivileges>
|
|
||||||
<requestedExecutionLevel level="asInvoker" uiAccess="false"/>
|
|
||||||
</requestedPrivileges>
|
|
||||||
</security>
|
|
||||||
</trustInfo>
|
|
||||||
<dependency>
|
|
||||||
<dependentAssembly>
|
|
||||||
<assemblyIdentity type="win32" name="Microsoft.Windows.Common-Controls" language="*" processorArchitecture="*" version="6.0.0.0" publicKeyToken="6595b64144ccf1df"/>
|
|
||||||
</dependentAssembly>
|
|
||||||
</dependency>
|
|
||||||
<compatibility xmlns="urn:schemas-microsoft-com:compatibility.v1">
|
|
||||||
<application>
|
|
||||||
<supportedOS Id="{e2011457-1546-43c5-a5fe-008deee3d3f0}"/>
|
|
||||||
<supportedOS Id="{35138b9a-5d96-4fbd-8e2d-a2440225f93a}"/>
|
|
||||||
<supportedOS Id="{4a2f28e3-53b9-4441-ba9c-d69d4a4a6e38}"/>
|
|
||||||
<supportedOS Id="{1f676c76-80e1-4239-95bb-83d0f6d0da78}"/>
|
|
||||||
<supportedOS Id="{8e0f7a12-bfb3-4fe8-b9a5-48fd50a15a9a}"/>
|
|
||||||
</application>
|
|
||||||
</compatibility>
|
|
||||||
<application xmlns="urn:schemas-microsoft-com:asm.v3">
|
|
||||||
<windowsSettings>
|
|
||||||
<longPathAware xmlns="http://schemas.microsoft.com/SMI/2016/WindowsSettings">true</longPathAware>
|
|
||||||
</windowsSettings>
|
|
||||||
</application>
|
|
||||||
</assembly>
|
|
||||||
Binary file not shown.
@ -1,152 +0,0 @@
|
|||||||
('D:\\Users\\yshtcn\\Documents\\Git\\LiquidTempLab\\build\\LiquidTempLab\\LiquidTempLab.pkg',
|
|
||||||
{'BINARY': True,
|
|
||||||
'DATA': True,
|
|
||||||
'EXECUTABLE': True,
|
|
||||||
'EXTENSION': True,
|
|
||||||
'PYMODULE': True,
|
|
||||||
'PYSOURCE': True,
|
|
||||||
'PYZ': False,
|
|
||||||
'SPLASH': True},
|
|
||||||
[('PYZ-00.pyz',
|
|
||||||
'D:\\Users\\yshtcn\\Documents\\Git\\LiquidTempLab\\build\\LiquidTempLab\\PYZ-00.pyz',
|
|
||||||
'PYZ'),
|
|
||||||
('struct',
|
|
||||||
'D:\\Users\\yshtcn\\Documents\\Git\\LiquidTempLab\\build\\LiquidTempLab\\localpycs\\struct.pyc',
|
|
||||||
'PYMODULE'),
|
|
||||||
('pyimod01_archive',
|
|
||||||
'D:\\Users\\yshtcn\\Documents\\Git\\LiquidTempLab\\build\\LiquidTempLab\\localpycs\\pyimod01_archive.pyc',
|
|
||||||
'PYMODULE'),
|
|
||||||
('pyimod02_importers',
|
|
||||||
'D:\\Users\\yshtcn\\Documents\\Git\\LiquidTempLab\\build\\LiquidTempLab\\localpycs\\pyimod02_importers.pyc',
|
|
||||||
'PYMODULE'),
|
|
||||||
('pyimod03_ctypes',
|
|
||||||
'D:\\Users\\yshtcn\\Documents\\Git\\LiquidTempLab\\build\\LiquidTempLab\\localpycs\\pyimod03_ctypes.pyc',
|
|
||||||
'PYMODULE'),
|
|
||||||
('pyimod04_pywin32',
|
|
||||||
'D:\\Users\\yshtcn\\Documents\\Git\\LiquidTempLab\\build\\LiquidTempLab\\localpycs\\pyimod04_pywin32.pyc',
|
|
||||||
'PYMODULE'),
|
|
||||||
('pyiboot01_bootstrap',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\site-packages\\PyInstaller\\loader\\pyiboot01_bootstrap.py',
|
|
||||||
'PYSOURCE'),
|
|
||||||
('pyi_rth_inspect',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\site-packages\\PyInstaller\\hooks\\rthooks\\pyi_rth_inspect.py',
|
|
||||||
'PYSOURCE'),
|
|
||||||
('server',
|
|
||||||
'D:\\Users\\yshtcn\\Documents\\Git\\LiquidTempLab\\server.py',
|
|
||||||
'PYSOURCE'),
|
|
||||||
('api-ms-win-crt-locale-l1-1-0.dll',
|
|
||||||
'C:\\shangate\\shangate-server\\api-ms-win-crt-locale-l1-1-0.dll',
|
|
||||||
'BINARY'),
|
|
||||||
('python311.dll',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\python311.dll',
|
|
||||||
'BINARY'),
|
|
||||||
('VCRUNTIME140.dll',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\VCRUNTIME140.dll',
|
|
||||||
'BINARY'),
|
|
||||||
('api-ms-win-crt-runtime-l1-1-0.dll',
|
|
||||||
'C:\\shangate\\shangate-server\\api-ms-win-crt-runtime-l1-1-0.dll',
|
|
||||||
'BINARY'),
|
|
||||||
('api-ms-win-crt-stdio-l1-1-0.dll',
|
|
||||||
'C:\\shangate\\shangate-server\\api-ms-win-crt-stdio-l1-1-0.dll',
|
|
||||||
'BINARY'),
|
|
||||||
('api-ms-win-crt-math-l1-1-0.dll',
|
|
||||||
'C:\\shangate\\shangate-server\\api-ms-win-crt-math-l1-1-0.dll',
|
|
||||||
'BINARY'),
|
|
||||||
('api-ms-win-crt-heap-l1-1-0.dll',
|
|
||||||
'C:\\shangate\\shangate-server\\api-ms-win-crt-heap-l1-1-0.dll',
|
|
||||||
'BINARY'),
|
|
||||||
('ucrtbase.dll', 'C:\\WINDOWS\\system32\\ucrtbase.dll', 'BINARY'),
|
|
||||||
('api-ms-win-crt-string-l1-1-0.dll',
|
|
||||||
'C:\\shangate\\shangate-server\\api-ms-win-crt-string-l1-1-0.dll',
|
|
||||||
'BINARY'),
|
|
||||||
('api-ms-win-crt-time-l1-1-0.dll',
|
|
||||||
'C:\\shangate\\shangate-server\\api-ms-win-crt-time-l1-1-0.dll',
|
|
||||||
'BINARY'),
|
|
||||||
('api-ms-win-crt-environment-l1-1-0.dll',
|
|
||||||
'C:\\shangate\\shangate-server\\api-ms-win-crt-environment-l1-1-0.dll',
|
|
||||||
'BINARY'),
|
|
||||||
('api-ms-win-crt-convert-l1-1-0.dll',
|
|
||||||
'C:\\shangate\\shangate-server\\api-ms-win-crt-convert-l1-1-0.dll',
|
|
||||||
'BINARY'),
|
|
||||||
('api-ms-win-crt-filesystem-l1-1-0.dll',
|
|
||||||
'C:\\shangate\\shangate-server\\api-ms-win-crt-filesystem-l1-1-0.dll',
|
|
||||||
'BINARY'),
|
|
||||||
('api-ms-win-core-synch-l1-2-0.dll',
|
|
||||||
'C:\\shangate\\shangate-server\\api-ms-win-core-synch-l1-2-0.dll',
|
|
||||||
'BINARY'),
|
|
||||||
('api-ms-win-core-file-l1-2-0.dll',
|
|
||||||
'C:\\shangate\\shangate-server\\api-ms-win-core-file-l1-2-0.dll',
|
|
||||||
'BINARY'),
|
|
||||||
('api-ms-win-core-file-l2-1-0.dll',
|
|
||||||
'C:\\shangate\\shangate-server\\api-ms-win-core-file-l2-1-0.dll',
|
|
||||||
'BINARY'),
|
|
||||||
('api-ms-win-core-localization-l1-2-0.dll',
|
|
||||||
'C:\\shangate\\shangate-server\\api-ms-win-core-localization-l1-2-0.dll',
|
|
||||||
'BINARY'),
|
|
||||||
('api-ms-win-core-timezone-l1-1-0.dll',
|
|
||||||
'C:\\shangate\\shangate-server\\api-ms-win-core-timezone-l1-1-0.dll',
|
|
||||||
'BINARY'),
|
|
||||||
('api-ms-win-core-processthreads-l1-1-1.dll',
|
|
||||||
'C:\\shangate\\shangate-server\\api-ms-win-core-processthreads-l1-1-1.dll',
|
|
||||||
'BINARY'),
|
|
||||||
('api-ms-win-core-synch-l1-1-0.dll',
|
|
||||||
'C:\\shangate\\shangate-server\\api-ms-win-core-synch-l1-1-0.dll',
|
|
||||||
'BINARY'),
|
|
||||||
('_decimal.pyd',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\DLLs\\_decimal.pyd',
|
|
||||||
'EXTENSION'),
|
|
||||||
('_hashlib.pyd',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\DLLs\\_hashlib.pyd',
|
|
||||||
'EXTENSION'),
|
|
||||||
('_lzma.pyd',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\DLLs\\_lzma.pyd',
|
|
||||||
'EXTENSION'),
|
|
||||||
('_bz2.pyd',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\DLLs\\_bz2.pyd',
|
|
||||||
'EXTENSION'),
|
|
||||||
('_ssl.pyd',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\DLLs\\_ssl.pyd',
|
|
||||||
'EXTENSION'),
|
|
||||||
('unicodedata.pyd',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\DLLs\\unicodedata.pyd',
|
|
||||||
'EXTENSION'),
|
|
||||||
('select.pyd',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\DLLs\\select.pyd',
|
|
||||||
'EXTENSION'),
|
|
||||||
('_socket.pyd',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\DLLs\\_socket.pyd',
|
|
||||||
'EXTENSION'),
|
|
||||||
('libcrypto-1_1.dll',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\DLLs\\libcrypto-1_1.dll',
|
|
||||||
'BINARY'),
|
|
||||||
('libssl-1_1.dll',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\DLLs\\libssl-1_1.dll',
|
|
||||||
'BINARY'),
|
|
||||||
('api-ms-win-crt-utility-l1-1-0.dll',
|
|
||||||
'C:\\shangate\\shangate-server\\api-ms-win-crt-utility-l1-1-0.dll',
|
|
||||||
'BINARY'),
|
|
||||||
('LiquidTempLab.html',
|
|
||||||
'D:\\Users\\yshtcn\\Documents\\Git\\LiquidTempLab\\LiquidTempLab.html',
|
|
||||||
'DATA'),
|
|
||||||
('Show.png',
|
|
||||||
'D:\\Users\\yshtcn\\Documents\\Git\\LiquidTempLab\\Show.png',
|
|
||||||
'DATA'),
|
|
||||||
('chat.html',
|
|
||||||
'D:\\Users\\yshtcn\\Documents\\Git\\LiquidTempLab\\chat.html',
|
|
||||||
'DATA'),
|
|
||||||
('deepseek.ico',
|
|
||||||
'D:\\Users\\yshtcn\\Documents\\Git\\LiquidTempLab\\deepseek.ico',
|
|
||||||
'DATA'),
|
|
||||||
('logo.webp',
|
|
||||||
'D:\\Users\\yshtcn\\Documents\\Git\\LiquidTempLab\\logo.webp',
|
|
||||||
'DATA'),
|
|
||||||
('base_library.zip',
|
|
||||||
'D:\\Users\\yshtcn\\Documents\\Git\\LiquidTempLab\\build\\LiquidTempLab\\base_library.zip',
|
|
||||||
'DATA')],
|
|
||||||
False,
|
|
||||||
False,
|
|
||||||
False,
|
|
||||||
[],
|
|
||||||
None,
|
|
||||||
None,
|
|
||||||
None)
|
|
||||||
Binary file not shown.
@ -1,325 +0,0 @@
|
|||||||
('D:\\Users\\yshtcn\\Documents\\Git\\LiquidTempLab\\build\\LiquidTempLab\\PYZ-00.pyz',
|
|
||||||
[('_compat_pickle',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\_compat_pickle.py',
|
|
||||||
'PYMODULE'),
|
|
||||||
('_compression',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\_compression.py',
|
|
||||||
'PYMODULE'),
|
|
||||||
('_py_abc',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\_py_abc.py',
|
|
||||||
'PYMODULE'),
|
|
||||||
('_pydecimal',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\_pydecimal.py',
|
|
||||||
'PYMODULE'),
|
|
||||||
('_strptime',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\_strptime.py',
|
|
||||||
'PYMODULE'),
|
|
||||||
('_threading_local',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\_threading_local.py',
|
|
||||||
'PYMODULE'),
|
|
||||||
('argparse',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\argparse.py',
|
|
||||||
'PYMODULE'),
|
|
||||||
('ast',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\ast.py',
|
|
||||||
'PYMODULE'),
|
|
||||||
('base64',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\base64.py',
|
|
||||||
'PYMODULE'),
|
|
||||||
('bisect',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\bisect.py',
|
|
||||||
'PYMODULE'),
|
|
||||||
('bz2',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\bz2.py',
|
|
||||||
'PYMODULE'),
|
|
||||||
('calendar',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\calendar.py',
|
|
||||||
'PYMODULE'),
|
|
||||||
('contextlib',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\contextlib.py',
|
|
||||||
'PYMODULE'),
|
|
||||||
('contextvars',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\contextvars.py',
|
|
||||||
'PYMODULE'),
|
|
||||||
('copy',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\copy.py',
|
|
||||||
'PYMODULE'),
|
|
||||||
('csv',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\csv.py',
|
|
||||||
'PYMODULE'),
|
|
||||||
('dataclasses',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\dataclasses.py',
|
|
||||||
'PYMODULE'),
|
|
||||||
('datetime',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\datetime.py',
|
|
||||||
'PYMODULE'),
|
|
||||||
('decimal',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\decimal.py',
|
|
||||||
'PYMODULE'),
|
|
||||||
('dis',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\dis.py',
|
|
||||||
'PYMODULE'),
|
|
||||||
('email',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\email\\__init__.py',
|
|
||||||
'PYMODULE'),
|
|
||||||
('email._encoded_words',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\email\\_encoded_words.py',
|
|
||||||
'PYMODULE'),
|
|
||||||
('email._header_value_parser',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\email\\_header_value_parser.py',
|
|
||||||
'PYMODULE'),
|
|
||||||
('email._parseaddr',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\email\\_parseaddr.py',
|
|
||||||
'PYMODULE'),
|
|
||||||
('email._policybase',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\email\\_policybase.py',
|
|
||||||
'PYMODULE'),
|
|
||||||
('email.base64mime',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\email\\base64mime.py',
|
|
||||||
'PYMODULE'),
|
|
||||||
('email.charset',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\email\\charset.py',
|
|
||||||
'PYMODULE'),
|
|
||||||
('email.contentmanager',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\email\\contentmanager.py',
|
|
||||||
'PYMODULE'),
|
|
||||||
('email.encoders',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\email\\encoders.py',
|
|
||||||
'PYMODULE'),
|
|
||||||
('email.errors',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\email\\errors.py',
|
|
||||||
'PYMODULE'),
|
|
||||||
('email.feedparser',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\email\\feedparser.py',
|
|
||||||
'PYMODULE'),
|
|
||||||
('email.generator',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\email\\generator.py',
|
|
||||||
'PYMODULE'),
|
|
||||||
('email.header',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\email\\header.py',
|
|
||||||
'PYMODULE'),
|
|
||||||
('email.headerregistry',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\email\\headerregistry.py',
|
|
||||||
'PYMODULE'),
|
|
||||||
('email.iterators',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\email\\iterators.py',
|
|
||||||
'PYMODULE'),
|
|
||||||
('email.message',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\email\\message.py',
|
|
||||||
'PYMODULE'),
|
|
||||||
('email.parser',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\email\\parser.py',
|
|
||||||
'PYMODULE'),
|
|
||||||
('email.policy',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\email\\policy.py',
|
|
||||||
'PYMODULE'),
|
|
||||||
('email.quoprimime',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\email\\quoprimime.py',
|
|
||||||
'PYMODULE'),
|
|
||||||
('email.utils',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\email\\utils.py',
|
|
||||||
'PYMODULE'),
|
|
||||||
('fractions',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\fractions.py',
|
|
||||||
'PYMODULE'),
|
|
||||||
('ftplib',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\ftplib.py',
|
|
||||||
'PYMODULE'),
|
|
||||||
('getopt',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\getopt.py',
|
|
||||||
'PYMODULE'),
|
|
||||||
('getpass',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\getpass.py',
|
|
||||||
'PYMODULE'),
|
|
||||||
('gettext',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\gettext.py',
|
|
||||||
'PYMODULE'),
|
|
||||||
('glob',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\glob.py',
|
|
||||||
'PYMODULE'),
|
|
||||||
('gzip',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\gzip.py',
|
|
||||||
'PYMODULE'),
|
|
||||||
('hashlib',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\hashlib.py',
|
|
||||||
'PYMODULE'),
|
|
||||||
('html',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\html\\__init__.py',
|
|
||||||
'PYMODULE'),
|
|
||||||
('html.entities',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\html\\entities.py',
|
|
||||||
'PYMODULE'),
|
|
||||||
('http',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\http\\__init__.py',
|
|
||||||
'PYMODULE'),
|
|
||||||
('http.client',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\http\\client.py',
|
|
||||||
'PYMODULE'),
|
|
||||||
('http.cookiejar',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\http\\cookiejar.py',
|
|
||||||
'PYMODULE'),
|
|
||||||
('http.server',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\http\\server.py',
|
|
||||||
'PYMODULE'),
|
|
||||||
('importlib',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\importlib\\__init__.py',
|
|
||||||
'PYMODULE'),
|
|
||||||
('importlib._abc',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\importlib\\_abc.py',
|
|
||||||
'PYMODULE'),
|
|
||||||
('importlib._bootstrap',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\importlib\\_bootstrap.py',
|
|
||||||
'PYMODULE'),
|
|
||||||
('importlib._bootstrap_external',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\importlib\\_bootstrap_external.py',
|
|
||||||
'PYMODULE'),
|
|
||||||
('importlib.abc',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\importlib\\abc.py',
|
|
||||||
'PYMODULE'),
|
|
||||||
('importlib.machinery',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\importlib\\machinery.py',
|
|
||||||
'PYMODULE'),
|
|
||||||
('importlib.metadata',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\importlib\\metadata\\__init__.py',
|
|
||||||
'PYMODULE'),
|
|
||||||
('importlib.metadata._adapters',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\importlib\\metadata\\_adapters.py',
|
|
||||||
'PYMODULE'),
|
|
||||||
('importlib.metadata._collections',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\importlib\\metadata\\_collections.py',
|
|
||||||
'PYMODULE'),
|
|
||||||
('importlib.metadata._functools',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\importlib\\metadata\\_functools.py',
|
|
||||||
'PYMODULE'),
|
|
||||||
('importlib.metadata._itertools',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\importlib\\metadata\\_itertools.py',
|
|
||||||
'PYMODULE'),
|
|
||||||
('importlib.metadata._meta',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\importlib\\metadata\\_meta.py',
|
|
||||||
'PYMODULE'),
|
|
||||||
('importlib.metadata._text',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\importlib\\metadata\\_text.py',
|
|
||||||
'PYMODULE'),
|
|
||||||
('importlib.readers',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\importlib\\readers.py',
|
|
||||||
'PYMODULE'),
|
|
||||||
('importlib.resources',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\importlib\\resources\\__init__.py',
|
|
||||||
'PYMODULE'),
|
|
||||||
('importlib.resources._adapters',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\importlib\\resources\\_adapters.py',
|
|
||||||
'PYMODULE'),
|
|
||||||
('importlib.resources._common',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\importlib\\resources\\_common.py',
|
|
||||||
'PYMODULE'),
|
|
||||||
('importlib.resources._itertools',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\importlib\\resources\\_itertools.py',
|
|
||||||
'PYMODULE'),
|
|
||||||
('importlib.resources._legacy',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\importlib\\resources\\_legacy.py',
|
|
||||||
'PYMODULE'),
|
|
||||||
('importlib.resources.abc',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\importlib\\resources\\abc.py',
|
|
||||||
'PYMODULE'),
|
|
||||||
('importlib.resources.readers',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\importlib\\resources\\readers.py',
|
|
||||||
'PYMODULE'),
|
|
||||||
('importlib.util',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\importlib\\util.py',
|
|
||||||
'PYMODULE'),
|
|
||||||
('inspect',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\inspect.py',
|
|
||||||
'PYMODULE'),
|
|
||||||
('logging',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\logging\\__init__.py',
|
|
||||||
'PYMODULE'),
|
|
||||||
('lzma',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\lzma.py',
|
|
||||||
'PYMODULE'),
|
|
||||||
('mimetypes',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\mimetypes.py',
|
|
||||||
'PYMODULE'),
|
|
||||||
('netrc',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\netrc.py',
|
|
||||||
'PYMODULE'),
|
|
||||||
('nturl2path',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\nturl2path.py',
|
|
||||||
'PYMODULE'),
|
|
||||||
('numbers',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\numbers.py',
|
|
||||||
'PYMODULE'),
|
|
||||||
('opcode',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\opcode.py',
|
|
||||||
'PYMODULE'),
|
|
||||||
('pickle',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\pickle.py',
|
|
||||||
'PYMODULE'),
|
|
||||||
('pprint',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\pprint.py',
|
|
||||||
'PYMODULE'),
|
|
||||||
('py_compile',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\py_compile.py',
|
|
||||||
'PYMODULE'),
|
|
||||||
('quopri',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\quopri.py',
|
|
||||||
'PYMODULE'),
|
|
||||||
('random',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\random.py',
|
|
||||||
'PYMODULE'),
|
|
||||||
('selectors',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\selectors.py',
|
|
||||||
'PYMODULE'),
|
|
||||||
('shlex',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\shlex.py',
|
|
||||||
'PYMODULE'),
|
|
||||||
('shutil',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\shutil.py',
|
|
||||||
'PYMODULE'),
|
|
||||||
('signal',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\signal.py',
|
|
||||||
'PYMODULE'),
|
|
||||||
('socket',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\socket.py',
|
|
||||||
'PYMODULE'),
|
|
||||||
('socketserver',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\socketserver.py',
|
|
||||||
'PYMODULE'),
|
|
||||||
('ssl',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\ssl.py',
|
|
||||||
'PYMODULE'),
|
|
||||||
('statistics',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\statistics.py',
|
|
||||||
'PYMODULE'),
|
|
||||||
('string',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\string.py',
|
|
||||||
'PYMODULE'),
|
|
||||||
('stringprep',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\stringprep.py',
|
|
||||||
'PYMODULE'),
|
|
||||||
('subprocess',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\subprocess.py',
|
|
||||||
'PYMODULE'),
|
|
||||||
('tarfile',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\tarfile.py',
|
|
||||||
'PYMODULE'),
|
|
||||||
('tempfile',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\tempfile.py',
|
|
||||||
'PYMODULE'),
|
|
||||||
('textwrap',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\textwrap.py',
|
|
||||||
'PYMODULE'),
|
|
||||||
('threading',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\threading.py',
|
|
||||||
'PYMODULE'),
|
|
||||||
('tracemalloc',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\tracemalloc.py',
|
|
||||||
'PYMODULE'),
|
|
||||||
('typing',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\typing.py',
|
|
||||||
'PYMODULE'),
|
|
||||||
('webbrowser',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\webbrowser.py',
|
|
||||||
'PYMODULE'),
|
|
||||||
('zipfile',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\zipfile.py',
|
|
||||||
'PYMODULE')])
|
|
||||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@ -1,28 +0,0 @@
|
|||||||
|
|
||||||
This file lists modules PyInstaller was not able to find. This does not
|
|
||||||
necessarily mean this module is required for running your program. Python and
|
|
||||||
Python 3rd-party packages include a lot of conditional or optional modules. For
|
|
||||||
example the module 'ntpath' only exists on Windows, whereas the module
|
|
||||||
'posixpath' only exists on Posix systems.
|
|
||||||
|
|
||||||
Types if 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 'org.python' - imported by copy (optional)
|
|
||||||
missing module named org - imported by pickle (optional)
|
|
||||||
missing module named pwd - imported by posixpath (delayed, conditional, optional), shutil (delayed, optional), tarfile (optional), pathlib (delayed, optional), subprocess (delayed, conditional, optional), netrc (delayed, conditional), getpass (delayed), http.server (delayed, optional), webbrowser (delayed)
|
|
||||||
missing module named grp - imported by shutil (delayed, optional), tarfile (optional), pathlib (delayed, optional), subprocess (delayed, conditional, optional)
|
|
||||||
missing module named posix - imported by os (conditional, optional), posixpath (optional), shutil (conditional), importlib._bootstrap_external (conditional)
|
|
||||||
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)
|
|
||||||
excluded module named _frozen_importlib - imported by importlib (optional), importlib.abc (optional)
|
|
||||||
missing module named _scproxy - imported by urllib.request (conditional)
|
|
||||||
missing module named termios - imported by getpass (optional)
|
|
||||||
missing module named _posixsubprocess - imported by subprocess (conditional)
|
|
||||||
missing module named fcntl - imported by subprocess (optional)
|
|
||||||
File diff suppressed because it is too large
Load Diff
@ -1,450 +0,0 @@
|
|||||||
(['D:\\Users\\yshtcn\\Documents\\Git\\LiquidTempLab\\server.py'],
|
|
||||||
['D:\\Users\\yshtcn\\Documents\\Git\\LiquidTempLab'],
|
|
||||||
['codecs'],
|
|
||||||
['C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\site-packages\\numpy\\_pyinstaller',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\site-packages\\_pyinstaller_hooks_contrib\\hooks\\stdhooks',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\site-packages\\_pyinstaller_hooks_contrib\\hooks\\stdhooks\\__pycache__',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\site-packages\\_pyinstaller_hooks_contrib\\hooks\\rthooks',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\site-packages\\_pyinstaller_hooks_contrib\\hooks\\rthooks\\__pycache__',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\site-packages\\_pyinstaller_hooks_contrib\\hooks'],
|
|
||||||
{},
|
|
||||||
[],
|
|
||||||
[],
|
|
||||||
False,
|
|
||||||
False,
|
|
||||||
False,
|
|
||||||
{},
|
|
||||||
[],
|
|
||||||
[],
|
|
||||||
'3.11.4 (tags/v3.11.4:d2340ef, Jun 7 2023, 05:45:37) [MSC v.1934 64 bit '
|
|
||||||
'(AMD64)]',
|
|
||||||
[('pyi_rth_inspect',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\site-packages\\PyInstaller\\hooks\\rthooks\\pyi_rth_inspect.py',
|
|
||||||
'PYSOURCE'),
|
|
||||||
('server',
|
|
||||||
'D:\\Users\\yshtcn\\Documents\\Git\\LiquidTempLab\\server.py',
|
|
||||||
'PYSOURCE')],
|
|
||||||
[('inspect',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\inspect.py',
|
|
||||||
'PYMODULE'),
|
|
||||||
('importlib',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\importlib\\__init__.py',
|
|
||||||
'PYMODULE'),
|
|
||||||
('importlib._bootstrap_external',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\importlib\\_bootstrap_external.py',
|
|
||||||
'PYMODULE'),
|
|
||||||
('importlib.metadata',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\importlib\\metadata\\__init__.py',
|
|
||||||
'PYMODULE'),
|
|
||||||
('typing',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\typing.py',
|
|
||||||
'PYMODULE'),
|
|
||||||
('importlib.abc',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\importlib\\abc.py',
|
|
||||||
'PYMODULE'),
|
|
||||||
('importlib.resources.abc',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\importlib\\resources\\abc.py',
|
|
||||||
'PYMODULE'),
|
|
||||||
('importlib.resources',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\importlib\\resources\\__init__.py',
|
|
||||||
'PYMODULE'),
|
|
||||||
('importlib.resources._legacy',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\importlib\\resources\\_legacy.py',
|
|
||||||
'PYMODULE'),
|
|
||||||
('importlib.resources._common',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\importlib\\resources\\_common.py',
|
|
||||||
'PYMODULE'),
|
|
||||||
('importlib.resources._adapters',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\importlib\\resources\\_adapters.py',
|
|
||||||
'PYMODULE'),
|
|
||||||
('tempfile',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\tempfile.py',
|
|
||||||
'PYMODULE'),
|
|
||||||
('random',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\random.py',
|
|
||||||
'PYMODULE'),
|
|
||||||
('statistics',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\statistics.py',
|
|
||||||
'PYMODULE'),
|
|
||||||
('decimal',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\decimal.py',
|
|
||||||
'PYMODULE'),
|
|
||||||
('_pydecimal',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\_pydecimal.py',
|
|
||||||
'PYMODULE'),
|
|
||||||
('contextvars',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\contextvars.py',
|
|
||||||
'PYMODULE'),
|
|
||||||
('fractions',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\fractions.py',
|
|
||||||
'PYMODULE'),
|
|
||||||
('numbers',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\numbers.py',
|
|
||||||
'PYMODULE'),
|
|
||||||
('hashlib',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\hashlib.py',
|
|
||||||
'PYMODULE'),
|
|
||||||
('logging',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\logging\\__init__.py',
|
|
||||||
'PYMODULE'),
|
|
||||||
('pickle',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\pickle.py',
|
|
||||||
'PYMODULE'),
|
|
||||||
('pprint',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\pprint.py',
|
|
||||||
'PYMODULE'),
|
|
||||||
('dataclasses',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\dataclasses.py',
|
|
||||||
'PYMODULE'),
|
|
||||||
('copy',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\copy.py',
|
|
||||||
'PYMODULE'),
|
|
||||||
('_compat_pickle',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\_compat_pickle.py',
|
|
||||||
'PYMODULE'),
|
|
||||||
('struct',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\struct.py',
|
|
||||||
'PYMODULE'),
|
|
||||||
('string',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\string.py',
|
|
||||||
'PYMODULE'),
|
|
||||||
('bisect',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\bisect.py',
|
|
||||||
'PYMODULE'),
|
|
||||||
('shutil',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\shutil.py',
|
|
||||||
'PYMODULE'),
|
|
||||||
('tarfile',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\tarfile.py',
|
|
||||||
'PYMODULE'),
|
|
||||||
('gzip',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\gzip.py',
|
|
||||||
'PYMODULE'),
|
|
||||||
('_compression',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\_compression.py',
|
|
||||||
'PYMODULE'),
|
|
||||||
('lzma',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\lzma.py',
|
|
||||||
'PYMODULE'),
|
|
||||||
('bz2',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\bz2.py',
|
|
||||||
'PYMODULE'),
|
|
||||||
('importlib._abc',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\importlib\\_abc.py',
|
|
||||||
'PYMODULE'),
|
|
||||||
('contextlib',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\contextlib.py',
|
|
||||||
'PYMODULE'),
|
|
||||||
('importlib.metadata._itertools',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\importlib\\metadata\\_itertools.py',
|
|
||||||
'PYMODULE'),
|
|
||||||
('importlib.metadata._functools',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\importlib\\metadata\\_functools.py',
|
|
||||||
'PYMODULE'),
|
|
||||||
('importlib.metadata._collections',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\importlib\\metadata\\_collections.py',
|
|
||||||
'PYMODULE'),
|
|
||||||
('importlib.metadata._meta',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\importlib\\metadata\\_meta.py',
|
|
||||||
'PYMODULE'),
|
|
||||||
('importlib.metadata._adapters',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\importlib\\metadata\\_adapters.py',
|
|
||||||
'PYMODULE'),
|
|
||||||
('importlib.metadata._text',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\importlib\\metadata\\_text.py',
|
|
||||||
'PYMODULE'),
|
|
||||||
('email.message',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\email\\message.py',
|
|
||||||
'PYMODULE'),
|
|
||||||
('email.policy',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\email\\policy.py',
|
|
||||||
'PYMODULE'),
|
|
||||||
('email.contentmanager',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\email\\contentmanager.py',
|
|
||||||
'PYMODULE'),
|
|
||||||
('email.quoprimime',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\email\\quoprimime.py',
|
|
||||||
'PYMODULE'),
|
|
||||||
('email.headerregistry',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\email\\headerregistry.py',
|
|
||||||
'PYMODULE'),
|
|
||||||
('email._header_value_parser',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\email\\_header_value_parser.py',
|
|
||||||
'PYMODULE'),
|
|
||||||
('email.iterators',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\email\\iterators.py',
|
|
||||||
'PYMODULE'),
|
|
||||||
('email.generator',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\email\\generator.py',
|
|
||||||
'PYMODULE'),
|
|
||||||
('email._encoded_words',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\email\\_encoded_words.py',
|
|
||||||
'PYMODULE'),
|
|
||||||
('base64',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\base64.py',
|
|
||||||
'PYMODULE'),
|
|
||||||
('getopt',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\getopt.py',
|
|
||||||
'PYMODULE'),
|
|
||||||
('gettext',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\gettext.py',
|
|
||||||
'PYMODULE'),
|
|
||||||
('email.charset',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\email\\charset.py',
|
|
||||||
'PYMODULE'),
|
|
||||||
('email.encoders',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\email\\encoders.py',
|
|
||||||
'PYMODULE'),
|
|
||||||
('email.base64mime',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\email\\base64mime.py',
|
|
||||||
'PYMODULE'),
|
|
||||||
('email._policybase',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\email\\_policybase.py',
|
|
||||||
'PYMODULE'),
|
|
||||||
('email.header',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\email\\header.py',
|
|
||||||
'PYMODULE'),
|
|
||||||
('email.errors',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\email\\errors.py',
|
|
||||||
'PYMODULE'),
|
|
||||||
('email.utils',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\email\\utils.py',
|
|
||||||
'PYMODULE'),
|
|
||||||
('email._parseaddr',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\email\\_parseaddr.py',
|
|
||||||
'PYMODULE'),
|
|
||||||
('calendar',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\calendar.py',
|
|
||||||
'PYMODULE'),
|
|
||||||
('datetime',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\datetime.py',
|
|
||||||
'PYMODULE'),
|
|
||||||
('_strptime',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\_strptime.py',
|
|
||||||
'PYMODULE'),
|
|
||||||
('quopri',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\quopri.py',
|
|
||||||
'PYMODULE'),
|
|
||||||
('textwrap',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\textwrap.py',
|
|
||||||
'PYMODULE'),
|
|
||||||
('zipfile',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\zipfile.py',
|
|
||||||
'PYMODULE'),
|
|
||||||
('py_compile',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\py_compile.py',
|
|
||||||
'PYMODULE'),
|
|
||||||
('importlib.util',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\importlib\\util.py',
|
|
||||||
'PYMODULE'),
|
|
||||||
('email',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\email\\__init__.py',
|
|
||||||
'PYMODULE'),
|
|
||||||
('email.parser',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\email\\parser.py',
|
|
||||||
'PYMODULE'),
|
|
||||||
('email.feedparser',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\email\\feedparser.py',
|
|
||||||
'PYMODULE'),
|
|
||||||
('csv',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\csv.py',
|
|
||||||
'PYMODULE'),
|
|
||||||
('importlib.readers',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\importlib\\readers.py',
|
|
||||||
'PYMODULE'),
|
|
||||||
('importlib.resources.readers',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\importlib\\resources\\readers.py',
|
|
||||||
'PYMODULE'),
|
|
||||||
('importlib.resources._itertools',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\importlib\\resources\\_itertools.py',
|
|
||||||
'PYMODULE'),
|
|
||||||
('importlib._bootstrap',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\importlib\\_bootstrap.py',
|
|
||||||
'PYMODULE'),
|
|
||||||
('argparse',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\argparse.py',
|
|
||||||
'PYMODULE'),
|
|
||||||
('importlib.machinery',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\importlib\\machinery.py',
|
|
||||||
'PYMODULE'),
|
|
||||||
('dis',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\dis.py',
|
|
||||||
'PYMODULE'),
|
|
||||||
('opcode',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\opcode.py',
|
|
||||||
'PYMODULE'),
|
|
||||||
('ast',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\ast.py',
|
|
||||||
'PYMODULE'),
|
|
||||||
('_py_abc',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\_py_abc.py',
|
|
||||||
'PYMODULE'),
|
|
||||||
('stringprep',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\stringprep.py',
|
|
||||||
'PYMODULE'),
|
|
||||||
('tracemalloc',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\tracemalloc.py',
|
|
||||||
'PYMODULE'),
|
|
||||||
('getpass',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\getpass.py',
|
|
||||||
'PYMODULE'),
|
|
||||||
('nturl2path',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\nturl2path.py',
|
|
||||||
'PYMODULE'),
|
|
||||||
('ftplib',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\ftplib.py',
|
|
||||||
'PYMODULE'),
|
|
||||||
('netrc',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\netrc.py',
|
|
||||||
'PYMODULE'),
|
|
||||||
('shlex',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\shlex.py',
|
|
||||||
'PYMODULE'),
|
|
||||||
('mimetypes',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\mimetypes.py',
|
|
||||||
'PYMODULE'),
|
|
||||||
('http.cookiejar',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\http\\cookiejar.py',
|
|
||||||
'PYMODULE'),
|
|
||||||
('http',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\http\\__init__.py',
|
|
||||||
'PYMODULE'),
|
|
||||||
('ssl',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\ssl.py',
|
|
||||||
'PYMODULE'),
|
|
||||||
('http.client',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\http\\client.py',
|
|
||||||
'PYMODULE'),
|
|
||||||
('socket',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\socket.py',
|
|
||||||
'PYMODULE'),
|
|
||||||
('selectors',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\selectors.py',
|
|
||||||
'PYMODULE'),
|
|
||||||
('signal',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\signal.py',
|
|
||||||
'PYMODULE'),
|
|
||||||
('threading',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\threading.py',
|
|
||||||
'PYMODULE'),
|
|
||||||
('_threading_local',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\_threading_local.py',
|
|
||||||
'PYMODULE'),
|
|
||||||
('subprocess',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\subprocess.py',
|
|
||||||
'PYMODULE'),
|
|
||||||
('webbrowser',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\webbrowser.py',
|
|
||||||
'PYMODULE'),
|
|
||||||
('glob',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\glob.py',
|
|
||||||
'PYMODULE'),
|
|
||||||
('socketserver',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\socketserver.py',
|
|
||||||
'PYMODULE'),
|
|
||||||
('http.server',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\http\\server.py',
|
|
||||||
'PYMODULE'),
|
|
||||||
('html',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\html\\__init__.py',
|
|
||||||
'PYMODULE'),
|
|
||||||
('html.entities',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\html\\entities.py',
|
|
||||||
'PYMODULE')],
|
|
||||||
[('api-ms-win-crt-stdio-l1-1-0.dll',
|
|
||||||
'C:\\shangate\\shangate-server\\api-ms-win-crt-stdio-l1-1-0.dll',
|
|
||||||
'BINARY'),
|
|
||||||
('api-ms-win-crt-math-l1-1-0.dll',
|
|
||||||
'C:\\shangate\\shangate-server\\api-ms-win-crt-math-l1-1-0.dll',
|
|
||||||
'BINARY'),
|
|
||||||
('api-ms-win-crt-runtime-l1-1-0.dll',
|
|
||||||
'C:\\shangate\\shangate-server\\api-ms-win-crt-runtime-l1-1-0.dll',
|
|
||||||
'BINARY'),
|
|
||||||
('python311.dll',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\python311.dll',
|
|
||||||
'BINARY'),
|
|
||||||
('api-ms-win-crt-locale-l1-1-0.dll',
|
|
||||||
'C:\\shangate\\shangate-server\\api-ms-win-crt-locale-l1-1-0.dll',
|
|
||||||
'BINARY'),
|
|
||||||
('api-ms-win-crt-heap-l1-1-0.dll',
|
|
||||||
'C:\\shangate\\shangate-server\\api-ms-win-crt-heap-l1-1-0.dll',
|
|
||||||
'BINARY'),
|
|
||||||
('VCRUNTIME140.dll',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\VCRUNTIME140.dll',
|
|
||||||
'BINARY'),
|
|
||||||
('ucrtbase.dll', 'C:\\WINDOWS\\system32\\ucrtbase.dll', 'BINARY'),
|
|
||||||
('api-ms-win-crt-filesystem-l1-1-0.dll',
|
|
||||||
'C:\\shangate\\shangate-server\\api-ms-win-crt-filesystem-l1-1-0.dll',
|
|
||||||
'BINARY'),
|
|
||||||
('api-ms-win-crt-convert-l1-1-0.dll',
|
|
||||||
'C:\\shangate\\shangate-server\\api-ms-win-crt-convert-l1-1-0.dll',
|
|
||||||
'BINARY'),
|
|
||||||
('api-ms-win-crt-time-l1-1-0.dll',
|
|
||||||
'C:\\shangate\\shangate-server\\api-ms-win-crt-time-l1-1-0.dll',
|
|
||||||
'BINARY'),
|
|
||||||
('api-ms-win-crt-string-l1-1-0.dll',
|
|
||||||
'C:\\shangate\\shangate-server\\api-ms-win-crt-string-l1-1-0.dll',
|
|
||||||
'BINARY'),
|
|
||||||
('api-ms-win-crt-environment-l1-1-0.dll',
|
|
||||||
'C:\\shangate\\shangate-server\\api-ms-win-crt-environment-l1-1-0.dll',
|
|
||||||
'BINARY'),
|
|
||||||
('api-ms-win-core-synch-l1-2-0.dll',
|
|
||||||
'C:\\shangate\\shangate-server\\api-ms-win-core-synch-l1-2-0.dll',
|
|
||||||
'BINARY'),
|
|
||||||
('api-ms-win-core-timezone-l1-1-0.dll',
|
|
||||||
'C:\\shangate\\shangate-server\\api-ms-win-core-timezone-l1-1-0.dll',
|
|
||||||
'BINARY'),
|
|
||||||
('api-ms-win-core-file-l2-1-0.dll',
|
|
||||||
'C:\\shangate\\shangate-server\\api-ms-win-core-file-l2-1-0.dll',
|
|
||||||
'BINARY'),
|
|
||||||
('api-ms-win-core-file-l1-2-0.dll',
|
|
||||||
'C:\\shangate\\shangate-server\\api-ms-win-core-file-l1-2-0.dll',
|
|
||||||
'BINARY'),
|
|
||||||
('api-ms-win-core-localization-l1-2-0.dll',
|
|
||||||
'C:\\shangate\\shangate-server\\api-ms-win-core-localization-l1-2-0.dll',
|
|
||||||
'BINARY'),
|
|
||||||
('api-ms-win-core-processthreads-l1-1-1.dll',
|
|
||||||
'C:\\shangate\\shangate-server\\api-ms-win-core-processthreads-l1-1-1.dll',
|
|
||||||
'BINARY'),
|
|
||||||
('api-ms-win-core-synch-l1-1-0.dll',
|
|
||||||
'C:\\shangate\\shangate-server\\api-ms-win-core-synch-l1-1-0.dll',
|
|
||||||
'BINARY'),
|
|
||||||
('_decimal.pyd',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\DLLs\\_decimal.pyd',
|
|
||||||
'EXTENSION'),
|
|
||||||
('_hashlib.pyd',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\DLLs\\_hashlib.pyd',
|
|
||||||
'EXTENSION'),
|
|
||||||
('_lzma.pyd',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\DLLs\\_lzma.pyd',
|
|
||||||
'EXTENSION'),
|
|
||||||
('_bz2.pyd',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\DLLs\\_bz2.pyd',
|
|
||||||
'EXTENSION'),
|
|
||||||
('unicodedata.pyd',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\DLLs\\unicodedata.pyd',
|
|
||||||
'EXTENSION'),
|
|
||||||
('_ssl.pyd',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\DLLs\\_ssl.pyd',
|
|
||||||
'EXTENSION'),
|
|
||||||
('select.pyd',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\DLLs\\select.pyd',
|
|
||||||
'EXTENSION'),
|
|
||||||
('_socket.pyd',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\DLLs\\_socket.pyd',
|
|
||||||
'EXTENSION'),
|
|
||||||
('libcrypto-1_1.dll',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\DLLs\\libcrypto-1_1.dll',
|
|
||||||
'BINARY'),
|
|
||||||
('libssl-1_1.dll',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\DLLs\\libssl-1_1.dll',
|
|
||||||
'BINARY'),
|
|
||||||
('api-ms-win-crt-utility-l1-1-0.dll',
|
|
||||||
'C:\\shangate\\shangate-server\\api-ms-win-crt-utility-l1-1-0.dll',
|
|
||||||
'BINARY')],
|
|
||||||
[],
|
|
||||||
[],
|
|
||||||
[('base_library.zip',
|
|
||||||
'D:\\Users\\yshtcn\\Documents\\Git\\LiquidTempLab\\build\\server\\base_library.zip',
|
|
||||||
'DATA')],
|
|
||||||
[])
|
|
||||||
@ -1,144 +0,0 @@
|
|||||||
('D:\\Users\\yshtcn\\Documents\\Git\\LiquidTempLab\\dist\\server.exe',
|
|
||||||
False,
|
|
||||||
False,
|
|
||||||
False,
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\site-packages\\PyInstaller\\bootloader\\images\\icon-windowed.ico',
|
|
||||||
None,
|
|
||||||
False,
|
|
||||||
False,
|
|
||||||
'<?xml version="1.0" encoding="UTF-8" standalone="yes"?><assembly xmlns="urn:schemas-microsoft-com:asm.v1" manifestVersion="1.0"><assemblyIdentity type="win32" name="server" processorArchitecture="amd64" version="1.0.0.0"/><trustInfo xmlns="urn:schemas-microsoft-com:asm.v3"><security><requestedPrivileges><requestedExecutionLevel level="asInvoker" uiAccess="false"/></requestedPrivileges></security></trustInfo><dependency><dependentAssembly><assemblyIdentity type="win32" name="Microsoft.Windows.Common-Controls" language="*" processorArchitecture="*" version="6.0.0.0" publicKeyToken="6595b64144ccf1df"/></dependentAssembly></dependency><compatibility xmlns="urn:schemas-microsoft-com:compatibility.v1"><application><supportedOS Id="{e2011457-1546-43c5-a5fe-008deee3d3f0}"/><supportedOS Id="{35138b9a-5d96-4fbd-8e2d-a2440225f93a}"/><supportedOS Id="{4a2f28e3-53b9-4441-ba9c-d69d4a4a6e38}"/><supportedOS Id="{1f676c76-80e1-4239-95bb-83d0f6d0da78}"/><supportedOS Id="{8e0f7a12-bfb3-4fe8-b9a5-48fd50a15a9a}"/></application></compatibility><application xmlns="urn:schemas-microsoft-com:asm.v3"><windowsSettings><longPathAware xmlns="http://schemas.microsoft.com/SMI/2016/WindowsSettings">true</longPathAware></windowsSettings></application></assembly>',
|
|
||||||
True,
|
|
||||||
True,
|
|
||||||
False,
|
|
||||||
None,
|
|
||||||
None,
|
|
||||||
None,
|
|
||||||
'D:\\Users\\yshtcn\\Documents\\Git\\LiquidTempLab\\build\\server\\server.pkg',
|
|
||||||
[('PYZ-00.pyz',
|
|
||||||
'D:\\Users\\yshtcn\\Documents\\Git\\LiquidTempLab\\build\\server\\PYZ-00.pyz',
|
|
||||||
'PYZ'),
|
|
||||||
('struct',
|
|
||||||
'D:\\Users\\yshtcn\\Documents\\Git\\LiquidTempLab\\build\\server\\localpycs\\struct.pyc',
|
|
||||||
'PYMODULE'),
|
|
||||||
('pyimod01_archive',
|
|
||||||
'D:\\Users\\yshtcn\\Documents\\Git\\LiquidTempLab\\build\\server\\localpycs\\pyimod01_archive.pyc',
|
|
||||||
'PYMODULE'),
|
|
||||||
('pyimod02_importers',
|
|
||||||
'D:\\Users\\yshtcn\\Documents\\Git\\LiquidTempLab\\build\\server\\localpycs\\pyimod02_importers.pyc',
|
|
||||||
'PYMODULE'),
|
|
||||||
('pyimod03_ctypes',
|
|
||||||
'D:\\Users\\yshtcn\\Documents\\Git\\LiquidTempLab\\build\\server\\localpycs\\pyimod03_ctypes.pyc',
|
|
||||||
'PYMODULE'),
|
|
||||||
('pyimod04_pywin32',
|
|
||||||
'D:\\Users\\yshtcn\\Documents\\Git\\LiquidTempLab\\build\\server\\localpycs\\pyimod04_pywin32.pyc',
|
|
||||||
'PYMODULE'),
|
|
||||||
('pyiboot01_bootstrap',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\site-packages\\PyInstaller\\loader\\pyiboot01_bootstrap.py',
|
|
||||||
'PYSOURCE'),
|
|
||||||
('pyi_rth_inspect',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\site-packages\\PyInstaller\\hooks\\rthooks\\pyi_rth_inspect.py',
|
|
||||||
'PYSOURCE'),
|
|
||||||
('server',
|
|
||||||
'D:\\Users\\yshtcn\\Documents\\Git\\LiquidTempLab\\server.py',
|
|
||||||
'PYSOURCE'),
|
|
||||||
('api-ms-win-crt-stdio-l1-1-0.dll',
|
|
||||||
'C:\\shangate\\shangate-server\\api-ms-win-crt-stdio-l1-1-0.dll',
|
|
||||||
'BINARY'),
|
|
||||||
('api-ms-win-crt-math-l1-1-0.dll',
|
|
||||||
'C:\\shangate\\shangate-server\\api-ms-win-crt-math-l1-1-0.dll',
|
|
||||||
'BINARY'),
|
|
||||||
('api-ms-win-crt-runtime-l1-1-0.dll',
|
|
||||||
'C:\\shangate\\shangate-server\\api-ms-win-crt-runtime-l1-1-0.dll',
|
|
||||||
'BINARY'),
|
|
||||||
('python311.dll',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\python311.dll',
|
|
||||||
'BINARY'),
|
|
||||||
('api-ms-win-crt-locale-l1-1-0.dll',
|
|
||||||
'C:\\shangate\\shangate-server\\api-ms-win-crt-locale-l1-1-0.dll',
|
|
||||||
'BINARY'),
|
|
||||||
('api-ms-win-crt-heap-l1-1-0.dll',
|
|
||||||
'C:\\shangate\\shangate-server\\api-ms-win-crt-heap-l1-1-0.dll',
|
|
||||||
'BINARY'),
|
|
||||||
('VCRUNTIME140.dll',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\VCRUNTIME140.dll',
|
|
||||||
'BINARY'),
|
|
||||||
('ucrtbase.dll', 'C:\\WINDOWS\\system32\\ucrtbase.dll', 'BINARY'),
|
|
||||||
('api-ms-win-crt-filesystem-l1-1-0.dll',
|
|
||||||
'C:\\shangate\\shangate-server\\api-ms-win-crt-filesystem-l1-1-0.dll',
|
|
||||||
'BINARY'),
|
|
||||||
('api-ms-win-crt-convert-l1-1-0.dll',
|
|
||||||
'C:\\shangate\\shangate-server\\api-ms-win-crt-convert-l1-1-0.dll',
|
|
||||||
'BINARY'),
|
|
||||||
('api-ms-win-crt-time-l1-1-0.dll',
|
|
||||||
'C:\\shangate\\shangate-server\\api-ms-win-crt-time-l1-1-0.dll',
|
|
||||||
'BINARY'),
|
|
||||||
('api-ms-win-crt-string-l1-1-0.dll',
|
|
||||||
'C:\\shangate\\shangate-server\\api-ms-win-crt-string-l1-1-0.dll',
|
|
||||||
'BINARY'),
|
|
||||||
('api-ms-win-crt-environment-l1-1-0.dll',
|
|
||||||
'C:\\shangate\\shangate-server\\api-ms-win-crt-environment-l1-1-0.dll',
|
|
||||||
'BINARY'),
|
|
||||||
('api-ms-win-core-synch-l1-2-0.dll',
|
|
||||||
'C:\\shangate\\shangate-server\\api-ms-win-core-synch-l1-2-0.dll',
|
|
||||||
'BINARY'),
|
|
||||||
('api-ms-win-core-timezone-l1-1-0.dll',
|
|
||||||
'C:\\shangate\\shangate-server\\api-ms-win-core-timezone-l1-1-0.dll',
|
|
||||||
'BINARY'),
|
|
||||||
('api-ms-win-core-file-l2-1-0.dll',
|
|
||||||
'C:\\shangate\\shangate-server\\api-ms-win-core-file-l2-1-0.dll',
|
|
||||||
'BINARY'),
|
|
||||||
('api-ms-win-core-file-l1-2-0.dll',
|
|
||||||
'C:\\shangate\\shangate-server\\api-ms-win-core-file-l1-2-0.dll',
|
|
||||||
'BINARY'),
|
|
||||||
('api-ms-win-core-localization-l1-2-0.dll',
|
|
||||||
'C:\\shangate\\shangate-server\\api-ms-win-core-localization-l1-2-0.dll',
|
|
||||||
'BINARY'),
|
|
||||||
('api-ms-win-core-processthreads-l1-1-1.dll',
|
|
||||||
'C:\\shangate\\shangate-server\\api-ms-win-core-processthreads-l1-1-1.dll',
|
|
||||||
'BINARY'),
|
|
||||||
('api-ms-win-core-synch-l1-1-0.dll',
|
|
||||||
'C:\\shangate\\shangate-server\\api-ms-win-core-synch-l1-1-0.dll',
|
|
||||||
'BINARY'),
|
|
||||||
('_decimal.pyd',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\DLLs\\_decimal.pyd',
|
|
||||||
'EXTENSION'),
|
|
||||||
('_hashlib.pyd',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\DLLs\\_hashlib.pyd',
|
|
||||||
'EXTENSION'),
|
|
||||||
('_lzma.pyd',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\DLLs\\_lzma.pyd',
|
|
||||||
'EXTENSION'),
|
|
||||||
('_bz2.pyd',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\DLLs\\_bz2.pyd',
|
|
||||||
'EXTENSION'),
|
|
||||||
('unicodedata.pyd',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\DLLs\\unicodedata.pyd',
|
|
||||||
'EXTENSION'),
|
|
||||||
('_ssl.pyd',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\DLLs\\_ssl.pyd',
|
|
||||||
'EXTENSION'),
|
|
||||||
('select.pyd',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\DLLs\\select.pyd',
|
|
||||||
'EXTENSION'),
|
|
||||||
('_socket.pyd',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\DLLs\\_socket.pyd',
|
|
||||||
'EXTENSION'),
|
|
||||||
('libcrypto-1_1.dll',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\DLLs\\libcrypto-1_1.dll',
|
|
||||||
'BINARY'),
|
|
||||||
('libssl-1_1.dll',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\DLLs\\libssl-1_1.dll',
|
|
||||||
'BINARY'),
|
|
||||||
('api-ms-win-crt-utility-l1-1-0.dll',
|
|
||||||
'C:\\shangate\\shangate-server\\api-ms-win-crt-utility-l1-1-0.dll',
|
|
||||||
'BINARY'),
|
|
||||||
('base_library.zip',
|
|
||||||
'D:\\Users\\yshtcn\\Documents\\Git\\LiquidTempLab\\build\\server\\base_library.zip',
|
|
||||||
'DATA')],
|
|
||||||
[],
|
|
||||||
False,
|
|
||||||
False,
|
|
||||||
1741095943,
|
|
||||||
[('runw.exe',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\site-packages\\PyInstaller\\bootloader\\Windows-64bit-intel\\runw.exe',
|
|
||||||
'EXECUTABLE')])
|
|
||||||
@ -1,137 +0,0 @@
|
|||||||
('D:\\Users\\yshtcn\\Documents\\Git\\LiquidTempLab\\build\\server\\server.pkg',
|
|
||||||
{'BINARY': True,
|
|
||||||
'DATA': True,
|
|
||||||
'EXECUTABLE': True,
|
|
||||||
'EXTENSION': True,
|
|
||||||
'PYMODULE': True,
|
|
||||||
'PYSOURCE': True,
|
|
||||||
'PYZ': False,
|
|
||||||
'SPLASH': True},
|
|
||||||
[('PYZ-00.pyz',
|
|
||||||
'D:\\Users\\yshtcn\\Documents\\Git\\LiquidTempLab\\build\\server\\PYZ-00.pyz',
|
|
||||||
'PYZ'),
|
|
||||||
('struct',
|
|
||||||
'D:\\Users\\yshtcn\\Documents\\Git\\LiquidTempLab\\build\\server\\localpycs\\struct.pyc',
|
|
||||||
'PYMODULE'),
|
|
||||||
('pyimod01_archive',
|
|
||||||
'D:\\Users\\yshtcn\\Documents\\Git\\LiquidTempLab\\build\\server\\localpycs\\pyimod01_archive.pyc',
|
|
||||||
'PYMODULE'),
|
|
||||||
('pyimod02_importers',
|
|
||||||
'D:\\Users\\yshtcn\\Documents\\Git\\LiquidTempLab\\build\\server\\localpycs\\pyimod02_importers.pyc',
|
|
||||||
'PYMODULE'),
|
|
||||||
('pyimod03_ctypes',
|
|
||||||
'D:\\Users\\yshtcn\\Documents\\Git\\LiquidTempLab\\build\\server\\localpycs\\pyimod03_ctypes.pyc',
|
|
||||||
'PYMODULE'),
|
|
||||||
('pyimod04_pywin32',
|
|
||||||
'D:\\Users\\yshtcn\\Documents\\Git\\LiquidTempLab\\build\\server\\localpycs\\pyimod04_pywin32.pyc',
|
|
||||||
'PYMODULE'),
|
|
||||||
('pyiboot01_bootstrap',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\site-packages\\PyInstaller\\loader\\pyiboot01_bootstrap.py',
|
|
||||||
'PYSOURCE'),
|
|
||||||
('pyi_rth_inspect',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\site-packages\\PyInstaller\\hooks\\rthooks\\pyi_rth_inspect.py',
|
|
||||||
'PYSOURCE'),
|
|
||||||
('server',
|
|
||||||
'D:\\Users\\yshtcn\\Documents\\Git\\LiquidTempLab\\server.py',
|
|
||||||
'PYSOURCE'),
|
|
||||||
('api-ms-win-crt-stdio-l1-1-0.dll',
|
|
||||||
'C:\\shangate\\shangate-server\\api-ms-win-crt-stdio-l1-1-0.dll',
|
|
||||||
'BINARY'),
|
|
||||||
('api-ms-win-crt-math-l1-1-0.dll',
|
|
||||||
'C:\\shangate\\shangate-server\\api-ms-win-crt-math-l1-1-0.dll',
|
|
||||||
'BINARY'),
|
|
||||||
('api-ms-win-crt-runtime-l1-1-0.dll',
|
|
||||||
'C:\\shangate\\shangate-server\\api-ms-win-crt-runtime-l1-1-0.dll',
|
|
||||||
'BINARY'),
|
|
||||||
('python311.dll',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\python311.dll',
|
|
||||||
'BINARY'),
|
|
||||||
('api-ms-win-crt-locale-l1-1-0.dll',
|
|
||||||
'C:\\shangate\\shangate-server\\api-ms-win-crt-locale-l1-1-0.dll',
|
|
||||||
'BINARY'),
|
|
||||||
('api-ms-win-crt-heap-l1-1-0.dll',
|
|
||||||
'C:\\shangate\\shangate-server\\api-ms-win-crt-heap-l1-1-0.dll',
|
|
||||||
'BINARY'),
|
|
||||||
('VCRUNTIME140.dll',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\VCRUNTIME140.dll',
|
|
||||||
'BINARY'),
|
|
||||||
('ucrtbase.dll', 'C:\\WINDOWS\\system32\\ucrtbase.dll', 'BINARY'),
|
|
||||||
('api-ms-win-crt-filesystem-l1-1-0.dll',
|
|
||||||
'C:\\shangate\\shangate-server\\api-ms-win-crt-filesystem-l1-1-0.dll',
|
|
||||||
'BINARY'),
|
|
||||||
('api-ms-win-crt-convert-l1-1-0.dll',
|
|
||||||
'C:\\shangate\\shangate-server\\api-ms-win-crt-convert-l1-1-0.dll',
|
|
||||||
'BINARY'),
|
|
||||||
('api-ms-win-crt-time-l1-1-0.dll',
|
|
||||||
'C:\\shangate\\shangate-server\\api-ms-win-crt-time-l1-1-0.dll',
|
|
||||||
'BINARY'),
|
|
||||||
('api-ms-win-crt-string-l1-1-0.dll',
|
|
||||||
'C:\\shangate\\shangate-server\\api-ms-win-crt-string-l1-1-0.dll',
|
|
||||||
'BINARY'),
|
|
||||||
('api-ms-win-crt-environment-l1-1-0.dll',
|
|
||||||
'C:\\shangate\\shangate-server\\api-ms-win-crt-environment-l1-1-0.dll',
|
|
||||||
'BINARY'),
|
|
||||||
('api-ms-win-core-synch-l1-2-0.dll',
|
|
||||||
'C:\\shangate\\shangate-server\\api-ms-win-core-synch-l1-2-0.dll',
|
|
||||||
'BINARY'),
|
|
||||||
('api-ms-win-core-timezone-l1-1-0.dll',
|
|
||||||
'C:\\shangate\\shangate-server\\api-ms-win-core-timezone-l1-1-0.dll',
|
|
||||||
'BINARY'),
|
|
||||||
('api-ms-win-core-file-l2-1-0.dll',
|
|
||||||
'C:\\shangate\\shangate-server\\api-ms-win-core-file-l2-1-0.dll',
|
|
||||||
'BINARY'),
|
|
||||||
('api-ms-win-core-file-l1-2-0.dll',
|
|
||||||
'C:\\shangate\\shangate-server\\api-ms-win-core-file-l1-2-0.dll',
|
|
||||||
'BINARY'),
|
|
||||||
('api-ms-win-core-localization-l1-2-0.dll',
|
|
||||||
'C:\\shangate\\shangate-server\\api-ms-win-core-localization-l1-2-0.dll',
|
|
||||||
'BINARY'),
|
|
||||||
('api-ms-win-core-processthreads-l1-1-1.dll',
|
|
||||||
'C:\\shangate\\shangate-server\\api-ms-win-core-processthreads-l1-1-1.dll',
|
|
||||||
'BINARY'),
|
|
||||||
('api-ms-win-core-synch-l1-1-0.dll',
|
|
||||||
'C:\\shangate\\shangate-server\\api-ms-win-core-synch-l1-1-0.dll',
|
|
||||||
'BINARY'),
|
|
||||||
('_decimal.pyd',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\DLLs\\_decimal.pyd',
|
|
||||||
'EXTENSION'),
|
|
||||||
('_hashlib.pyd',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\DLLs\\_hashlib.pyd',
|
|
||||||
'EXTENSION'),
|
|
||||||
('_lzma.pyd',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\DLLs\\_lzma.pyd',
|
|
||||||
'EXTENSION'),
|
|
||||||
('_bz2.pyd',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\DLLs\\_bz2.pyd',
|
|
||||||
'EXTENSION'),
|
|
||||||
('unicodedata.pyd',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\DLLs\\unicodedata.pyd',
|
|
||||||
'EXTENSION'),
|
|
||||||
('_ssl.pyd',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\DLLs\\_ssl.pyd',
|
|
||||||
'EXTENSION'),
|
|
||||||
('select.pyd',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\DLLs\\select.pyd',
|
|
||||||
'EXTENSION'),
|
|
||||||
('_socket.pyd',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\DLLs\\_socket.pyd',
|
|
||||||
'EXTENSION'),
|
|
||||||
('libcrypto-1_1.dll',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\DLLs\\libcrypto-1_1.dll',
|
|
||||||
'BINARY'),
|
|
||||||
('libssl-1_1.dll',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\DLLs\\libssl-1_1.dll',
|
|
||||||
'BINARY'),
|
|
||||||
('api-ms-win-crt-utility-l1-1-0.dll',
|
|
||||||
'C:\\shangate\\shangate-server\\api-ms-win-crt-utility-l1-1-0.dll',
|
|
||||||
'BINARY'),
|
|
||||||
('base_library.zip',
|
|
||||||
'D:\\Users\\yshtcn\\Documents\\Git\\LiquidTempLab\\build\\server\\base_library.zip',
|
|
||||||
'DATA')],
|
|
||||||
False,
|
|
||||||
False,
|
|
||||||
False,
|
|
||||||
[],
|
|
||||||
None,
|
|
||||||
None,
|
|
||||||
None)
|
|
||||||
Binary file not shown.
@ -1,325 +0,0 @@
|
|||||||
('D:\\Users\\yshtcn\\Documents\\Git\\LiquidTempLab\\build\\server\\PYZ-00.pyz',
|
|
||||||
[('_compat_pickle',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\_compat_pickle.py',
|
|
||||||
'PYMODULE'),
|
|
||||||
('_compression',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\_compression.py',
|
|
||||||
'PYMODULE'),
|
|
||||||
('_py_abc',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\_py_abc.py',
|
|
||||||
'PYMODULE'),
|
|
||||||
('_pydecimal',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\_pydecimal.py',
|
|
||||||
'PYMODULE'),
|
|
||||||
('_strptime',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\_strptime.py',
|
|
||||||
'PYMODULE'),
|
|
||||||
('_threading_local',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\_threading_local.py',
|
|
||||||
'PYMODULE'),
|
|
||||||
('argparse',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\argparse.py',
|
|
||||||
'PYMODULE'),
|
|
||||||
('ast',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\ast.py',
|
|
||||||
'PYMODULE'),
|
|
||||||
('base64',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\base64.py',
|
|
||||||
'PYMODULE'),
|
|
||||||
('bisect',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\bisect.py',
|
|
||||||
'PYMODULE'),
|
|
||||||
('bz2',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\bz2.py',
|
|
||||||
'PYMODULE'),
|
|
||||||
('calendar',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\calendar.py',
|
|
||||||
'PYMODULE'),
|
|
||||||
('contextlib',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\contextlib.py',
|
|
||||||
'PYMODULE'),
|
|
||||||
('contextvars',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\contextvars.py',
|
|
||||||
'PYMODULE'),
|
|
||||||
('copy',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\copy.py',
|
|
||||||
'PYMODULE'),
|
|
||||||
('csv',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\csv.py',
|
|
||||||
'PYMODULE'),
|
|
||||||
('dataclasses',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\dataclasses.py',
|
|
||||||
'PYMODULE'),
|
|
||||||
('datetime',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\datetime.py',
|
|
||||||
'PYMODULE'),
|
|
||||||
('decimal',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\decimal.py',
|
|
||||||
'PYMODULE'),
|
|
||||||
('dis',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\dis.py',
|
|
||||||
'PYMODULE'),
|
|
||||||
('email',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\email\\__init__.py',
|
|
||||||
'PYMODULE'),
|
|
||||||
('email._encoded_words',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\email\\_encoded_words.py',
|
|
||||||
'PYMODULE'),
|
|
||||||
('email._header_value_parser',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\email\\_header_value_parser.py',
|
|
||||||
'PYMODULE'),
|
|
||||||
('email._parseaddr',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\email\\_parseaddr.py',
|
|
||||||
'PYMODULE'),
|
|
||||||
('email._policybase',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\email\\_policybase.py',
|
|
||||||
'PYMODULE'),
|
|
||||||
('email.base64mime',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\email\\base64mime.py',
|
|
||||||
'PYMODULE'),
|
|
||||||
('email.charset',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\email\\charset.py',
|
|
||||||
'PYMODULE'),
|
|
||||||
('email.contentmanager',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\email\\contentmanager.py',
|
|
||||||
'PYMODULE'),
|
|
||||||
('email.encoders',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\email\\encoders.py',
|
|
||||||
'PYMODULE'),
|
|
||||||
('email.errors',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\email\\errors.py',
|
|
||||||
'PYMODULE'),
|
|
||||||
('email.feedparser',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\email\\feedparser.py',
|
|
||||||
'PYMODULE'),
|
|
||||||
('email.generator',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\email\\generator.py',
|
|
||||||
'PYMODULE'),
|
|
||||||
('email.header',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\email\\header.py',
|
|
||||||
'PYMODULE'),
|
|
||||||
('email.headerregistry',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\email\\headerregistry.py',
|
|
||||||
'PYMODULE'),
|
|
||||||
('email.iterators',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\email\\iterators.py',
|
|
||||||
'PYMODULE'),
|
|
||||||
('email.message',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\email\\message.py',
|
|
||||||
'PYMODULE'),
|
|
||||||
('email.parser',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\email\\parser.py',
|
|
||||||
'PYMODULE'),
|
|
||||||
('email.policy',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\email\\policy.py',
|
|
||||||
'PYMODULE'),
|
|
||||||
('email.quoprimime',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\email\\quoprimime.py',
|
|
||||||
'PYMODULE'),
|
|
||||||
('email.utils',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\email\\utils.py',
|
|
||||||
'PYMODULE'),
|
|
||||||
('fractions',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\fractions.py',
|
|
||||||
'PYMODULE'),
|
|
||||||
('ftplib',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\ftplib.py',
|
|
||||||
'PYMODULE'),
|
|
||||||
('getopt',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\getopt.py',
|
|
||||||
'PYMODULE'),
|
|
||||||
('getpass',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\getpass.py',
|
|
||||||
'PYMODULE'),
|
|
||||||
('gettext',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\gettext.py',
|
|
||||||
'PYMODULE'),
|
|
||||||
('glob',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\glob.py',
|
|
||||||
'PYMODULE'),
|
|
||||||
('gzip',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\gzip.py',
|
|
||||||
'PYMODULE'),
|
|
||||||
('hashlib',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\hashlib.py',
|
|
||||||
'PYMODULE'),
|
|
||||||
('html',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\html\\__init__.py',
|
|
||||||
'PYMODULE'),
|
|
||||||
('html.entities',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\html\\entities.py',
|
|
||||||
'PYMODULE'),
|
|
||||||
('http',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\http\\__init__.py',
|
|
||||||
'PYMODULE'),
|
|
||||||
('http.client',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\http\\client.py',
|
|
||||||
'PYMODULE'),
|
|
||||||
('http.cookiejar',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\http\\cookiejar.py',
|
|
||||||
'PYMODULE'),
|
|
||||||
('http.server',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\http\\server.py',
|
|
||||||
'PYMODULE'),
|
|
||||||
('importlib',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\importlib\\__init__.py',
|
|
||||||
'PYMODULE'),
|
|
||||||
('importlib._abc',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\importlib\\_abc.py',
|
|
||||||
'PYMODULE'),
|
|
||||||
('importlib._bootstrap',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\importlib\\_bootstrap.py',
|
|
||||||
'PYMODULE'),
|
|
||||||
('importlib._bootstrap_external',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\importlib\\_bootstrap_external.py',
|
|
||||||
'PYMODULE'),
|
|
||||||
('importlib.abc',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\importlib\\abc.py',
|
|
||||||
'PYMODULE'),
|
|
||||||
('importlib.machinery',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\importlib\\machinery.py',
|
|
||||||
'PYMODULE'),
|
|
||||||
('importlib.metadata',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\importlib\\metadata\\__init__.py',
|
|
||||||
'PYMODULE'),
|
|
||||||
('importlib.metadata._adapters',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\importlib\\metadata\\_adapters.py',
|
|
||||||
'PYMODULE'),
|
|
||||||
('importlib.metadata._collections',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\importlib\\metadata\\_collections.py',
|
|
||||||
'PYMODULE'),
|
|
||||||
('importlib.metadata._functools',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\importlib\\metadata\\_functools.py',
|
|
||||||
'PYMODULE'),
|
|
||||||
('importlib.metadata._itertools',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\importlib\\metadata\\_itertools.py',
|
|
||||||
'PYMODULE'),
|
|
||||||
('importlib.metadata._meta',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\importlib\\metadata\\_meta.py',
|
|
||||||
'PYMODULE'),
|
|
||||||
('importlib.metadata._text',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\importlib\\metadata\\_text.py',
|
|
||||||
'PYMODULE'),
|
|
||||||
('importlib.readers',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\importlib\\readers.py',
|
|
||||||
'PYMODULE'),
|
|
||||||
('importlib.resources',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\importlib\\resources\\__init__.py',
|
|
||||||
'PYMODULE'),
|
|
||||||
('importlib.resources._adapters',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\importlib\\resources\\_adapters.py',
|
|
||||||
'PYMODULE'),
|
|
||||||
('importlib.resources._common',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\importlib\\resources\\_common.py',
|
|
||||||
'PYMODULE'),
|
|
||||||
('importlib.resources._itertools',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\importlib\\resources\\_itertools.py',
|
|
||||||
'PYMODULE'),
|
|
||||||
('importlib.resources._legacy',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\importlib\\resources\\_legacy.py',
|
|
||||||
'PYMODULE'),
|
|
||||||
('importlib.resources.abc',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\importlib\\resources\\abc.py',
|
|
||||||
'PYMODULE'),
|
|
||||||
('importlib.resources.readers',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\importlib\\resources\\readers.py',
|
|
||||||
'PYMODULE'),
|
|
||||||
('importlib.util',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\importlib\\util.py',
|
|
||||||
'PYMODULE'),
|
|
||||||
('inspect',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\inspect.py',
|
|
||||||
'PYMODULE'),
|
|
||||||
('logging',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\logging\\__init__.py',
|
|
||||||
'PYMODULE'),
|
|
||||||
('lzma',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\lzma.py',
|
|
||||||
'PYMODULE'),
|
|
||||||
('mimetypes',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\mimetypes.py',
|
|
||||||
'PYMODULE'),
|
|
||||||
('netrc',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\netrc.py',
|
|
||||||
'PYMODULE'),
|
|
||||||
('nturl2path',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\nturl2path.py',
|
|
||||||
'PYMODULE'),
|
|
||||||
('numbers',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\numbers.py',
|
|
||||||
'PYMODULE'),
|
|
||||||
('opcode',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\opcode.py',
|
|
||||||
'PYMODULE'),
|
|
||||||
('pickle',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\pickle.py',
|
|
||||||
'PYMODULE'),
|
|
||||||
('pprint',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\pprint.py',
|
|
||||||
'PYMODULE'),
|
|
||||||
('py_compile',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\py_compile.py',
|
|
||||||
'PYMODULE'),
|
|
||||||
('quopri',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\quopri.py',
|
|
||||||
'PYMODULE'),
|
|
||||||
('random',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\random.py',
|
|
||||||
'PYMODULE'),
|
|
||||||
('selectors',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\selectors.py',
|
|
||||||
'PYMODULE'),
|
|
||||||
('shlex',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\shlex.py',
|
|
||||||
'PYMODULE'),
|
|
||||||
('shutil',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\shutil.py',
|
|
||||||
'PYMODULE'),
|
|
||||||
('signal',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\signal.py',
|
|
||||||
'PYMODULE'),
|
|
||||||
('socket',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\socket.py',
|
|
||||||
'PYMODULE'),
|
|
||||||
('socketserver',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\socketserver.py',
|
|
||||||
'PYMODULE'),
|
|
||||||
('ssl',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\ssl.py',
|
|
||||||
'PYMODULE'),
|
|
||||||
('statistics',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\statistics.py',
|
|
||||||
'PYMODULE'),
|
|
||||||
('string',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\string.py',
|
|
||||||
'PYMODULE'),
|
|
||||||
('stringprep',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\stringprep.py',
|
|
||||||
'PYMODULE'),
|
|
||||||
('subprocess',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\subprocess.py',
|
|
||||||
'PYMODULE'),
|
|
||||||
('tarfile',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\tarfile.py',
|
|
||||||
'PYMODULE'),
|
|
||||||
('tempfile',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\tempfile.py',
|
|
||||||
'PYMODULE'),
|
|
||||||
('textwrap',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\textwrap.py',
|
|
||||||
'PYMODULE'),
|
|
||||||
('threading',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\threading.py',
|
|
||||||
'PYMODULE'),
|
|
||||||
('tracemalloc',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\tracemalloc.py',
|
|
||||||
'PYMODULE'),
|
|
||||||
('typing',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\typing.py',
|
|
||||||
'PYMODULE'),
|
|
||||||
('webbrowser',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\webbrowser.py',
|
|
||||||
'PYMODULE'),
|
|
||||||
('zipfile',
|
|
||||||
'C:\\Users\\yshtcn\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\zipfile.py',
|
|
||||||
'PYMODULE')])
|
|
||||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@ -1,30 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
|
|
||||||
<assembly xmlns="urn:schemas-microsoft-com:asm.v1" manifestVersion="1.0">
|
|
||||||
<assemblyIdentity type="win32" name="server" processorArchitecture="amd64" version="1.0.0.0"/>
|
|
||||||
<trustInfo xmlns="urn:schemas-microsoft-com:asm.v3">
|
|
||||||
<security>
|
|
||||||
<requestedPrivileges>
|
|
||||||
<requestedExecutionLevel level="asInvoker" uiAccess="false"/>
|
|
||||||
</requestedPrivileges>
|
|
||||||
</security>
|
|
||||||
</trustInfo>
|
|
||||||
<dependency>
|
|
||||||
<dependentAssembly>
|
|
||||||
<assemblyIdentity type="win32" name="Microsoft.Windows.Common-Controls" language="*" processorArchitecture="*" version="6.0.0.0" publicKeyToken="6595b64144ccf1df"/>
|
|
||||||
</dependentAssembly>
|
|
||||||
</dependency>
|
|
||||||
<compatibility xmlns="urn:schemas-microsoft-com:compatibility.v1">
|
|
||||||
<application>
|
|
||||||
<supportedOS Id="{e2011457-1546-43c5-a5fe-008deee3d3f0}"/>
|
|
||||||
<supportedOS Id="{35138b9a-5d96-4fbd-8e2d-a2440225f93a}"/>
|
|
||||||
<supportedOS Id="{4a2f28e3-53b9-4441-ba9c-d69d4a4a6e38}"/>
|
|
||||||
<supportedOS Id="{1f676c76-80e1-4239-95bb-83d0f6d0da78}"/>
|
|
||||||
<supportedOS Id="{8e0f7a12-bfb3-4fe8-b9a5-48fd50a15a9a}"/>
|
|
||||||
</application>
|
|
||||||
</compatibility>
|
|
||||||
<application xmlns="urn:schemas-microsoft-com:asm.v3">
|
|
||||||
<windowsSettings>
|
|
||||||
<longPathAware xmlns="http://schemas.microsoft.com/SMI/2016/WindowsSettings">true</longPathAware>
|
|
||||||
</windowsSettings>
|
|
||||||
</application>
|
|
||||||
</assembly>
|
|
||||||
Binary file not shown.
@ -1,28 +0,0 @@
|
|||||||
|
|
||||||
This file lists modules PyInstaller was not able to find. This does not
|
|
||||||
necessarily mean this module is required for running your program. Python and
|
|
||||||
Python 3rd-party packages include a lot of conditional or optional modules. For
|
|
||||||
example the module 'ntpath' only exists on Windows, whereas the module
|
|
||||||
'posixpath' only exists on Posix systems.
|
|
||||||
|
|
||||||
Types if 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 org - imported by copy (optional)
|
|
||||||
missing module named 'org.python' - imported by pickle (optional)
|
|
||||||
missing module named pwd - imported by posixpath (delayed, conditional, optional), shutil (delayed, optional), tarfile (optional), pathlib (delayed, optional), subprocess (delayed, conditional, optional), netrc (delayed, conditional), getpass (delayed), http.server (delayed, optional), webbrowser (delayed)
|
|
||||||
missing module named grp - imported by shutil (delayed, optional), tarfile (optional), pathlib (delayed, optional), subprocess (delayed, conditional, optional)
|
|
||||||
missing module named posix - imported by os (conditional, optional), posixpath (optional), shutil (conditional), importlib._bootstrap_external (conditional)
|
|
||||||
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)
|
|
||||||
excluded module named _frozen_importlib - imported by importlib (optional), importlib.abc (optional)
|
|
||||||
missing module named _scproxy - imported by urllib.request (conditional)
|
|
||||||
missing module named termios - imported by getpass (optional)
|
|
||||||
missing module named _posixsubprocess - imported by subprocess (conditional)
|
|
||||||
missing module named fcntl - imported by subprocess (optional)
|
|
||||||
File diff suppressed because it is too large
Load Diff
766
chat.html
766
chat.html
@ -1,766 +0,0 @@
|
|||||||
<!DOCTYPE html>
|
|
||||||
<html lang="zh">
|
|
||||||
<head>
|
|
||||||
<meta charset="UTF-8">
|
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
||||||
<title>DeepSeek 对话</title>
|
|
||||||
<style>
|
|
||||||
body {
|
|
||||||
margin: 0;
|
|
||||||
padding: 0;
|
|
||||||
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
|
|
||||||
background-color: #1A1B1E;
|
|
||||||
color: #FFFFFF;
|
|
||||||
height: 100vh;
|
|
||||||
display: flex;
|
|
||||||
flex-direction: column;
|
|
||||||
overflow: hidden;
|
|
||||||
}
|
|
||||||
.header {
|
|
||||||
background-color: #1A1B1E;
|
|
||||||
padding: 12px 16px;
|
|
||||||
text-align: left;
|
|
||||||
border-bottom: 1px solid #2F3336;
|
|
||||||
position: fixed;
|
|
||||||
top: 0;
|
|
||||||
width: 100%;
|
|
||||||
box-sizing: border-box;
|
|
||||||
z-index: 100;
|
|
||||||
display: flex;
|
|
||||||
align-items: center;
|
|
||||||
}
|
|
||||||
.header h2 {
|
|
||||||
margin: 0;
|
|
||||||
font-size: 14px;
|
|
||||||
font-weight: normal;
|
|
||||||
display: flex;
|
|
||||||
align-items: center;
|
|
||||||
gap: 8px;
|
|
||||||
color: #E6E6E6;
|
|
||||||
}
|
|
||||||
.header h2::before {
|
|
||||||
content: '';
|
|
||||||
display: inline-block;
|
|
||||||
width: 160px;
|
|
||||||
height: 40px;
|
|
||||||
background-image: url('logo.webp');
|
|
||||||
background-size: contain;
|
|
||||||
background-repeat: no-repeat;
|
|
||||||
background-position: center;
|
|
||||||
}
|
|
||||||
.chat-container {
|
|
||||||
max-width: 800px;
|
|
||||||
width: 100%;
|
|
||||||
margin: 56px auto 80px;
|
|
||||||
padding: 0 16px;
|
|
||||||
flex-grow: 1;
|
|
||||||
overflow-y: auto;
|
|
||||||
box-sizing: border-box;
|
|
||||||
}
|
|
||||||
.message {
|
|
||||||
margin: 8px 0;
|
|
||||||
padding: 0;
|
|
||||||
max-width: 100%;
|
|
||||||
word-wrap: break-word;
|
|
||||||
opacity: 0;
|
|
||||||
transform: translateY(10px);
|
|
||||||
transition: opacity 0.3s ease, transform 0.3s ease;
|
|
||||||
line-height: 1.5;
|
|
||||||
font-size: 14px;
|
|
||||||
display: flex;
|
|
||||||
flex-direction: column;
|
|
||||||
}
|
|
||||||
.message.show {
|
|
||||||
opacity: 1;
|
|
||||||
transform: translateY(0);
|
|
||||||
}
|
|
||||||
.message-content {
|
|
||||||
padding: 12px 16px;
|
|
||||||
border-radius: 12px;
|
|
||||||
max-width: 80%;
|
|
||||||
display: inline-block;
|
|
||||||
}
|
|
||||||
.user-message {
|
|
||||||
align-items: flex-end;
|
|
||||||
}
|
|
||||||
.user-message .message-content {
|
|
||||||
background-color: #4B7BF5;
|
|
||||||
color: white;
|
|
||||||
}
|
|
||||||
.ai-message {
|
|
||||||
align-items: flex-start;
|
|
||||||
}
|
|
||||||
.ai-message .message-content {
|
|
||||||
background-color: #2B2D31;
|
|
||||||
color: #E6E6E6;
|
|
||||||
}
|
|
||||||
.code-block {
|
|
||||||
background-color: #1A1B1E;
|
|
||||||
color: #E6E6E6;
|
|
||||||
padding: 16px;
|
|
||||||
border-radius: 6px;
|
|
||||||
overflow-x: auto;
|
|
||||||
font-family: 'Fira Code', 'Courier New', monospace;
|
|
||||||
margin: 8px 0;
|
|
||||||
font-size: 13px;
|
|
||||||
line-height: 1.6;
|
|
||||||
width: 100%;
|
|
||||||
box-sizing: border-box;
|
|
||||||
border: 1px solid #2F3336;
|
|
||||||
white-space: pre-wrap;
|
|
||||||
height: 70vh;
|
|
||||||
overflow-y: auto;
|
|
||||||
display: block;
|
|
||||||
}
|
|
||||||
.code-block pre {
|
|
||||||
margin: 0;
|
|
||||||
padding: 0;
|
|
||||||
white-space: pre-wrap;
|
|
||||||
word-wrap: break-word;
|
|
||||||
color: #E6E6E6;
|
|
||||||
min-height: 100%;
|
|
||||||
display: block;
|
|
||||||
}
|
|
||||||
.input-container {
|
|
||||||
position: fixed;
|
|
||||||
bottom: 0;
|
|
||||||
left: 0;
|
|
||||||
right: 0;
|
|
||||||
background-color: #1A1B1E;
|
|
||||||
padding: 16px;
|
|
||||||
border-top: 1px solid #2F3336;
|
|
||||||
}
|
|
||||||
.input-box {
|
|
||||||
display: flex;
|
|
||||||
gap: 12px;
|
|
||||||
max-width: 800px;
|
|
||||||
margin: 0 auto;
|
|
||||||
position: relative;
|
|
||||||
}
|
|
||||||
input[type="text"] {
|
|
||||||
flex: 1;
|
|
||||||
padding: 12px 16px;
|
|
||||||
border: 1px solid #2F3336;
|
|
||||||
border-radius: 6px;
|
|
||||||
outline: none;
|
|
||||||
background-color: #2B2D31;
|
|
||||||
color: #E6E6E6;
|
|
||||||
font-size: 14px;
|
|
||||||
}
|
|
||||||
input[type="text"]:focus {
|
|
||||||
border-color: #4B7BF5;
|
|
||||||
}
|
|
||||||
textarea {
|
|
||||||
flex: 1;
|
|
||||||
padding: 12px 16px;
|
|
||||||
border: 1px solid #2F3336;
|
|
||||||
border-radius: 6px;
|
|
||||||
outline: none;
|
|
||||||
background-color: #2B2D31;
|
|
||||||
color: #E6E6E6;
|
|
||||||
font-size: 14px;
|
|
||||||
resize: none;
|
|
||||||
min-height: 24px;
|
|
||||||
max-height: 200px;
|
|
||||||
line-height: 1.5;
|
|
||||||
font-family: inherit;
|
|
||||||
}
|
|
||||||
textarea:focus {
|
|
||||||
border-color: #4B7BF5;
|
|
||||||
}
|
|
||||||
button {
|
|
||||||
padding: 12px 24px;
|
|
||||||
background-color: #4B7BF5;
|
|
||||||
color: white;
|
|
||||||
border: none;
|
|
||||||
border-radius: 6px;
|
|
||||||
cursor: pointer;
|
|
||||||
font-size: 14px;
|
|
||||||
font-weight: 500;
|
|
||||||
transition: all 0.2s ease;
|
|
||||||
}
|
|
||||||
button:hover {
|
|
||||||
background-color: #3B6BE5;
|
|
||||||
}
|
|
||||||
button:disabled {
|
|
||||||
background-color: #2B2D31;
|
|
||||||
cursor: not-allowed;
|
|
||||||
color: #888;
|
|
||||||
}
|
|
||||||
.preview-button {
|
|
||||||
display: inline-block;
|
|
||||||
margin: 8px 0;
|
|
||||||
padding: 12px 24px;
|
|
||||||
background-color: #4B7BF5;
|
|
||||||
color: white;
|
|
||||||
text-decoration: none;
|
|
||||||
border-radius: 6px;
|
|
||||||
font-size: 14px;
|
|
||||||
transition: all 0.3s ease;
|
|
||||||
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
|
|
||||||
}
|
|
||||||
.preview-button:hover {
|
|
||||||
background-color: #3B6BE5;
|
|
||||||
transform: translateY(-1px);
|
|
||||||
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
|
|
||||||
}
|
|
||||||
.typing-indicator {
|
|
||||||
display: none;
|
|
||||||
padding: 8px 12px;
|
|
||||||
margin: 8px 0;
|
|
||||||
color: #888;
|
|
||||||
font-size: 14px;
|
|
||||||
background-color: #2B2D31;
|
|
||||||
border-radius: 12px;
|
|
||||||
max-width: 80%;
|
|
||||||
}
|
|
||||||
.typing-indicator.show {
|
|
||||||
display: flex;
|
|
||||||
align-items: center;
|
|
||||||
gap: 8px;
|
|
||||||
}
|
|
||||||
.typing-dots {
|
|
||||||
display: flex;
|
|
||||||
gap: 4px;
|
|
||||||
}
|
|
||||||
.typing-dots::after {
|
|
||||||
content: '';
|
|
||||||
width: 4px;
|
|
||||||
height: 4px;
|
|
||||||
background-color: #888;
|
|
||||||
border-radius: 50%;
|
|
||||||
animation: typing 1.4s infinite;
|
|
||||||
}
|
|
||||||
@keyframes typing {
|
|
||||||
0%, 100% { opacity: 0.2; }
|
|
||||||
50% { opacity: 1; }
|
|
||||||
}
|
|
||||||
.message-content.typing {
|
|
||||||
display: inline-block;
|
|
||||||
white-space: pre-wrap;
|
|
||||||
overflow: hidden;
|
|
||||||
border-right: 2px solid #4B7BF5;
|
|
||||||
animation: cursor-blink 0.7s infinite;
|
|
||||||
}
|
|
||||||
@keyframes cursor-blink {
|
|
||||||
50% { border-color: transparent; }
|
|
||||||
}
|
|
||||||
.image-container {
|
|
||||||
position: relative;
|
|
||||||
display: inline-block;
|
|
||||||
cursor: pointer;
|
|
||||||
border-radius: 6px;
|
|
||||||
overflow: hidden;
|
|
||||||
margin-top: 8px;
|
|
||||||
width: 400px;
|
|
||||||
max-width: 100%;
|
|
||||||
}
|
|
||||||
.image-container img {
|
|
||||||
width: 100%;
|
|
||||||
height: auto;
|
|
||||||
transition: transform 0.3s ease;
|
|
||||||
border-radius: 6px;
|
|
||||||
clip-path: inset(0 0 100% 0);
|
|
||||||
animation: reveal 12s cubic-bezier(0.16, 1, 0.3, 1) forwards;
|
|
||||||
}
|
|
||||||
@keyframes reveal {
|
|
||||||
0% {
|
|
||||||
clip-path: inset(0 0 100% 0);
|
|
||||||
}
|
|
||||||
20% {
|
|
||||||
clip-path: inset(0 0 85% 0);
|
|
||||||
}
|
|
||||||
50% {
|
|
||||||
clip-path: inset(0 0 60% 0);
|
|
||||||
}
|
|
||||||
75% {
|
|
||||||
clip-path: inset(0 0 30% 0);
|
|
||||||
}
|
|
||||||
100% {
|
|
||||||
clip-path: inset(0 0 0 0);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
.image-container:hover img {
|
|
||||||
transform: scale(1.02);
|
|
||||||
}
|
|
||||||
.modal {
|
|
||||||
display: none;
|
|
||||||
position: fixed;
|
|
||||||
top: 0;
|
|
||||||
left: 0;
|
|
||||||
width: 100%;
|
|
||||||
height: 100%;
|
|
||||||
background-color: rgba(0, 0, 0, 0.95);
|
|
||||||
z-index: 1000;
|
|
||||||
justify-content: center;
|
|
||||||
align-items: center;
|
|
||||||
}
|
|
||||||
.modal.show {
|
|
||||||
display: flex;
|
|
||||||
}
|
|
||||||
.modal-content {
|
|
||||||
max-width: 90%;
|
|
||||||
max-height: 90vh;
|
|
||||||
position: relative;
|
|
||||||
}
|
|
||||||
.modal-content img {
|
|
||||||
max-width: 100%;
|
|
||||||
max-height: 90vh;
|
|
||||||
object-fit: contain;
|
|
||||||
border-radius: 6px;
|
|
||||||
}
|
|
||||||
.close-button {
|
|
||||||
position: absolute;
|
|
||||||
top: -40px;
|
|
||||||
right: 0;
|
|
||||||
color: white;
|
|
||||||
font-size: 24px;
|
|
||||||
cursor: pointer;
|
|
||||||
opacity: 0.8;
|
|
||||||
transition: opacity 0.2s ease;
|
|
||||||
}
|
|
||||||
.close-button:hover {
|
|
||||||
opacity: 1;
|
|
||||||
}
|
|
||||||
.image-progress {
|
|
||||||
position: absolute;
|
|
||||||
bottom: 0;
|
|
||||||
left: 0;
|
|
||||||
width: 100%;
|
|
||||||
height: 2px;
|
|
||||||
background-color: rgba(255,255,255,0.1);
|
|
||||||
overflow: hidden;
|
|
||||||
}
|
|
||||||
.image-progress-bar {
|
|
||||||
width: 0%;
|
|
||||||
height: 100%;
|
|
||||||
background-color: #4B7BF5;
|
|
||||||
transition: width 0.3s ease;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* 自定义滚动条 */
|
|
||||||
::-webkit-scrollbar {
|
|
||||||
width: 6px;
|
|
||||||
height: 6px;
|
|
||||||
}
|
|
||||||
::-webkit-scrollbar-track {
|
|
||||||
background: transparent;
|
|
||||||
}
|
|
||||||
::-webkit-scrollbar-thumb {
|
|
||||||
background: #2F3336;
|
|
||||||
border-radius: 3px;
|
|
||||||
}
|
|
||||||
::-webkit-scrollbar-thumb:hover {
|
|
||||||
background: #3D3D3D;
|
|
||||||
}
|
|
||||||
|
|
||||||
@media (max-width: 768px) {
|
|
||||||
.chat-container {
|
|
||||||
margin: 56px auto 80px;
|
|
||||||
padding: 0 12px;
|
|
||||||
}
|
|
||||||
.message {
|
|
||||||
margin: 20px 0;
|
|
||||||
}
|
|
||||||
.input-container {
|
|
||||||
padding: 12px;
|
|
||||||
}
|
|
||||||
.image-container img {
|
|
||||||
max-width: 100%;
|
|
||||||
}
|
|
||||||
input[type="text"] {
|
|
||||||
font-size: 16px; /* 移动端输入框字体大小优化 */
|
|
||||||
}
|
|
||||||
}
|
|
||||||
</style>
|
|
||||||
</head>
|
|
||||||
<body>
|
|
||||||
<div class="header">
|
|
||||||
<h2></h2>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div class="chat-container" id="chatContainer">
|
|
||||||
<div class="typing-indicator" id="typingIndicator">
|
|
||||||
<span>思考中</span>
|
|
||||||
<div class="typing-dots"></div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div class="input-container" id="inputContainer">
|
|
||||||
<div class="input-box">
|
|
||||||
<textarea id="userInput" placeholder="发送消息给 DeepSeek..."></textarea>
|
|
||||||
<button id="sendButton" onclick="sendMessage()">发送</button>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div class="modal" id="imageModal">
|
|
||||||
<div class="modal-content">
|
|
||||||
<span class="close-button" onclick="closeModal()">×</span>
|
|
||||||
<img id="modalImage" src="" alt="放大图片">
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<script>
|
|
||||||
const chatContainer = document.getElementById('chatContainer');
|
|
||||||
const typingIndicator = document.getElementById('typingIndicator');
|
|
||||||
const inputContainer = document.getElementById('inputContainer');
|
|
||||||
const modal = document.getElementById('imageModal');
|
|
||||||
const modalImage = document.getElementById('modalImage');
|
|
||||||
|
|
||||||
// 预设的AI回复内容
|
|
||||||
const aiResponses = {
|
|
||||||
'实验': `为了直观展示热水和冷牛奶的温度变化,我将使用折线图来呈现数据。以下是温度随时间变化的折线图:<div class="image-container"><img src="Show.png" alt="Show"></div>热水温度变化:从60℃开始,每分钟逐渐下降,最终在第7分钟降至44℃。\n冷牛奶温度变化:从10℃开始,每分钟逐渐上升,最终在第7分钟达到44℃。\n在第7分钟时,热水和冷牛奶的温度达到平衡,均为44℃。`,
|
|
||||||
'程序': `当然可以!我将为你编写一个使用HTML5和JavaScript制作的简单程序。我会在左边展示折线图,右边记录温度,请稍等:<div class="code-block"><pre id="codeContent"></pre></div><a href="LiquidTempLab.html" class="preview-button" target="_blank">点击查看效果</a>`
|
|
||||||
};
|
|
||||||
|
|
||||||
// 源代码内容变量声明
|
|
||||||
let liquidTempLabContent = '';
|
|
||||||
let sourceCodeLoaded = false;
|
|
||||||
|
|
||||||
// 加载源代码的函数
|
|
||||||
async function loadSourceCode() {
|
|
||||||
try {
|
|
||||||
const response = await fetch('LiquidTempLab.html');
|
|
||||||
const text = await response.text();
|
|
||||||
liquidTempLabContent = text;
|
|
||||||
sourceCodeLoaded = true;
|
|
||||||
} catch (error) {
|
|
||||||
console.error('加载源代码失败:', error);
|
|
||||||
liquidTempLabContent = '加载源代码失败,请稍后重试。';
|
|
||||||
sourceCodeLoaded = true;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// 页面加载时获取源代码
|
|
||||||
window.addEventListener('load', loadSourceCode);
|
|
||||||
|
|
||||||
function typeText(element, text, callback) {
|
|
||||||
let index = 0;
|
|
||||||
element.innerHTML = '';
|
|
||||||
|
|
||||||
function type() {
|
|
||||||
if (index < text.length) {
|
|
||||||
// 处理换行符
|
|
||||||
if (text[index] === '\n') {
|
|
||||||
element.innerHTML += '<br>';
|
|
||||||
} else {
|
|
||||||
element.innerHTML += text[index];
|
|
||||||
}
|
|
||||||
index++;
|
|
||||||
setTimeout(type, 50);
|
|
||||||
} else {
|
|
||||||
element.classList.remove('typing');
|
|
||||||
if (callback) callback();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
element.classList.add('typing');
|
|
||||||
type();
|
|
||||||
}
|
|
||||||
|
|
||||||
function typeCode(element, text, callback) {
|
|
||||||
let index = 0;
|
|
||||||
element.textContent = '';
|
|
||||||
const lines = text.split('\n');
|
|
||||||
let currentLine = 0;
|
|
||||||
const batchSize = 8; // 每次显示8行
|
|
||||||
const pauseTime = 300; // 暂停300毫秒
|
|
||||||
|
|
||||||
function scrollToBottom(element) {
|
|
||||||
requestAnimationFrame(() => {
|
|
||||||
const codeBlock = element.closest('.code-block');
|
|
||||||
if (codeBlock) {
|
|
||||||
const scrollHeight = codeBlock.scrollHeight;
|
|
||||||
const maxScroll = scrollHeight - codeBlock.clientHeight;
|
|
||||||
codeBlock.scrollTop = maxScroll;
|
|
||||||
}
|
|
||||||
chatContainer.scrollTop = chatContainer.scrollHeight;
|
|
||||||
});
|
|
||||||
}
|
|
||||||
|
|
||||||
function typeBatch() {
|
|
||||||
if (currentLine < lines.length) {
|
|
||||||
// 显示一批代码行
|
|
||||||
for (let i = 0; i < batchSize && currentLine < lines.length; i++) {
|
|
||||||
const line = lines[currentLine];
|
|
||||||
element.textContent += line + '\n';
|
|
||||||
currentLine++;
|
|
||||||
}
|
|
||||||
|
|
||||||
// 滚动到底部
|
|
||||||
scrollToBottom(element);
|
|
||||||
|
|
||||||
// 暂停一段时间后继续显示下一批
|
|
||||||
setTimeout(typeBatch, pauseTime);
|
|
||||||
} else if (callback) {
|
|
||||||
// 确保代码完全显示后再调用回调
|
|
||||||
setTimeout(() => {
|
|
||||||
scrollToBottom(element);
|
|
||||||
callback();
|
|
||||||
}, 500);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
typeBatch();
|
|
||||||
}
|
|
||||||
|
|
||||||
function showMessage(message, isUser = false, onComplete = null) {
|
|
||||||
const messageDiv = document.createElement('div');
|
|
||||||
messageDiv.className = `message ${isUser ? 'user-message' : 'ai-message'}`;
|
|
||||||
|
|
||||||
const contentDiv = document.createElement('div');
|
|
||||||
contentDiv.className = 'message-content';
|
|
||||||
|
|
||||||
messageDiv.appendChild(contentDiv);
|
|
||||||
chatContainer.appendChild(messageDiv);
|
|
||||||
|
|
||||||
setTimeout(() => messageDiv.classList.add('show'), 100);
|
|
||||||
|
|
||||||
if (!isUser && message.includes('image-container')) {
|
|
||||||
// 分离文字和图片部分
|
|
||||||
const parts = message.split('<div class="image-container">');
|
|
||||||
const introText = parts[0];
|
|
||||||
const imagePart = '<div class="image-container">' + parts[1].split('热水温度变化:')[0];
|
|
||||||
const analysisText = '热水温度变化:' + parts[1].split('热水温度变化:')[1];
|
|
||||||
|
|
||||||
// 使用打字效果显示第一段文字说明
|
|
||||||
typeText(contentDiv, introText, () => {
|
|
||||||
setTimeout(() => {
|
|
||||||
const imageMessageDiv = document.createElement('div');
|
|
||||||
imageMessageDiv.className = 'message ai-message';
|
|
||||||
imageMessageDiv.innerHTML = imagePart;
|
|
||||||
chatContainer.appendChild(imageMessageDiv);
|
|
||||||
setTimeout(() => imageMessageDiv.classList.add('show'), 100);
|
|
||||||
chatContainer.scrollTop = chatContainer.scrollHeight;
|
|
||||||
|
|
||||||
// 等待图片加载动画完成后显示分析文字
|
|
||||||
setTimeout(() => {
|
|
||||||
const analysisMessageDiv = document.createElement('div');
|
|
||||||
analysisMessageDiv.className = 'message ai-message';
|
|
||||||
const analysisContentDiv = document.createElement('div');
|
|
||||||
analysisContentDiv.className = 'message-content';
|
|
||||||
analysisMessageDiv.appendChild(analysisContentDiv);
|
|
||||||
chatContainer.appendChild(analysisMessageDiv);
|
|
||||||
setTimeout(() => analysisMessageDiv.classList.add('show'), 100);
|
|
||||||
|
|
||||||
// 使用打字效果显示分析文字,并在完成后启用输入框
|
|
||||||
typeText(analysisContentDiv, analysisText, () => {
|
|
||||||
setTimeout(() => {
|
|
||||||
disableInput(false);
|
|
||||||
if (onComplete) onComplete();
|
|
||||||
}, 500);
|
|
||||||
});
|
|
||||||
chatContainer.scrollTop = chatContainer.scrollHeight;
|
|
||||||
}, 12000); // 等待12秒的图片加载动画
|
|
||||||
}, 500);
|
|
||||||
});
|
|
||||||
} else if (!isUser && message.includes('code-block')) {
|
|
||||||
// 分离文字、代码块和预览按钮
|
|
||||||
const parts = message.split('<div class="code-block">');
|
|
||||||
const introText = parts[0];
|
|
||||||
const codePart = '<div class="code-block">' + parts[1].split('<a href="LiquidTempLab.html"')[0];
|
|
||||||
const previewButton = '<a href="LiquidTempLab.html" class="preview-button" target="_blank">点击查看效果</a>';
|
|
||||||
|
|
||||||
typeText(contentDiv, introText, () => {
|
|
||||||
setTimeout(() => {
|
|
||||||
const codeMessageDiv = document.createElement('div');
|
|
||||||
codeMessageDiv.className = 'message ai-message';
|
|
||||||
codeMessageDiv.innerHTML = codePart;
|
|
||||||
chatContainer.appendChild(codeMessageDiv);
|
|
||||||
|
|
||||||
const codeContent = codeMessageDiv.querySelector('#codeContent');
|
|
||||||
if (codeContent) {
|
|
||||||
// 等待源代码加载完成
|
|
||||||
const waitForSourceCode = () => {
|
|
||||||
if (sourceCodeLoaded) {
|
|
||||||
typeCode(codeContent, liquidTempLabContent, () => {
|
|
||||||
// 代码显示完成后显示提示文字和预览按钮
|
|
||||||
const buttonMessageDiv = document.createElement('div');
|
|
||||||
buttonMessageDiv.className = 'message ai-message';
|
|
||||||
const buttonContentDiv = document.createElement('div');
|
|
||||||
buttonContentDiv.className = 'message-content';
|
|
||||||
buttonMessageDiv.appendChild(buttonContentDiv);
|
|
||||||
chatContainer.appendChild(buttonMessageDiv);
|
|
||||||
|
|
||||||
// 使用打字效果显示提示文字
|
|
||||||
typeText(buttonContentDiv, '点击下方按钮试试吧!', () => {
|
|
||||||
setTimeout(() => {
|
|
||||||
buttonMessageDiv.classList.add('show');
|
|
||||||
chatContainer.scrollTop = chatContainer.scrollHeight;
|
|
||||||
|
|
||||||
// 创建预览按钮容器
|
|
||||||
const buttonContainer = document.createElement('div');
|
|
||||||
buttonContainer.className = 'message ai-message';
|
|
||||||
buttonContainer.style.marginTop = '12px';
|
|
||||||
buttonContainer.style.marginBottom = '24px';
|
|
||||||
|
|
||||||
const previewContentDiv = document.createElement('div');
|
|
||||||
previewContentDiv.className = 'message-content';
|
|
||||||
previewContentDiv.style.textAlign = 'center';
|
|
||||||
previewContentDiv.innerHTML = previewButton;
|
|
||||||
|
|
||||||
buttonContainer.appendChild(previewContentDiv);
|
|
||||||
chatContainer.appendChild(buttonContainer);
|
|
||||||
|
|
||||||
// 使用动画显示预览按钮
|
|
||||||
requestAnimationFrame(() => {
|
|
||||||
buttonContainer.classList.add('show');
|
|
||||||
// 确保滚动到最新位置
|
|
||||||
chatContainer.scrollTop = chatContainer.scrollHeight;
|
|
||||||
|
|
||||||
setTimeout(() => {
|
|
||||||
disableInput(false);
|
|
||||||
if (onComplete) onComplete();
|
|
||||||
}, 500);
|
|
||||||
});
|
|
||||||
}, 500);
|
|
||||||
});
|
|
||||||
});
|
|
||||||
} else {
|
|
||||||
// 如果源代码还没加载完成,等待100ms后重试
|
|
||||||
setTimeout(waitForSourceCode, 100);
|
|
||||||
}
|
|
||||||
};
|
|
||||||
|
|
||||||
waitForSourceCode();
|
|
||||||
}
|
|
||||||
|
|
||||||
setTimeout(() => {
|
|
||||||
codeMessageDiv.classList.add('show');
|
|
||||||
chatContainer.scrollTop = chatContainer.scrollHeight;
|
|
||||||
}, 100);
|
|
||||||
}, 500);
|
|
||||||
});
|
|
||||||
} else {
|
|
||||||
if (isUser) {
|
|
||||||
// 用户消息直接显示,保留换行符
|
|
||||||
contentDiv.innerHTML = message.replace(/\n/g, '<br>');
|
|
||||||
if (onComplete) onComplete();
|
|
||||||
} else {
|
|
||||||
// AI消息使用打字效果,保留换行符
|
|
||||||
typeText(contentDiv, message, () => {
|
|
||||||
if (onComplete) onComplete();
|
|
||||||
});
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
chatContainer.scrollTop = chatContainer.scrollHeight;
|
|
||||||
}
|
|
||||||
|
|
||||||
function showTypingIndicator(text) {
|
|
||||||
const indicatorDiv = document.createElement('div');
|
|
||||||
indicatorDiv.className = 'message ai-message';
|
|
||||||
indicatorDiv.id = 'currentTypingIndicator';
|
|
||||||
|
|
||||||
const contentDiv = document.createElement('div');
|
|
||||||
contentDiv.className = 'typing-indicator';
|
|
||||||
|
|
||||||
// 只在"思考中"状态显示动画光点
|
|
||||||
if (text === '思考中') {
|
|
||||||
contentDiv.innerHTML = `<span>${text}</span><div class="typing-dots"></div>`;
|
|
||||||
} else {
|
|
||||||
contentDiv.innerHTML = `<span>${text}</span>`;
|
|
||||||
}
|
|
||||||
|
|
||||||
indicatorDiv.appendChild(contentDiv);
|
|
||||||
chatContainer.appendChild(indicatorDiv);
|
|
||||||
|
|
||||||
setTimeout(() => {
|
|
||||||
contentDiv.classList.add('show');
|
|
||||||
indicatorDiv.classList.add('show');
|
|
||||||
}, 100);
|
|
||||||
|
|
||||||
chatContainer.scrollTop = chatContainer.scrollHeight;
|
|
||||||
}
|
|
||||||
|
|
||||||
function hideTypingIndicator() {
|
|
||||||
const indicator = document.getElementById('currentTypingIndicator');
|
|
||||||
if (indicator) {
|
|
||||||
indicator.remove();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
function disableInput(disabled) {
|
|
||||||
const sendButton = document.getElementById('sendButton');
|
|
||||||
const userInput = document.getElementById('userInput');
|
|
||||||
|
|
||||||
sendButton.disabled = disabled;
|
|
||||||
userInput.disabled = disabled;
|
|
||||||
|
|
||||||
if (disabled) {
|
|
||||||
sendButton.textContent = '回复中...';
|
|
||||||
} else {
|
|
||||||
sendButton.textContent = '发送';
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
function getAIResponse(userMessage) {
|
|
||||||
if (userMessage.includes('程序')) {
|
|
||||||
return aiResponses['程序'];
|
|
||||||
} else if (userMessage.includes('实验')) {
|
|
||||||
return aiResponses['实验'];
|
|
||||||
}
|
|
||||||
return '我收到了你的消息,正在处理中...';
|
|
||||||
}
|
|
||||||
|
|
||||||
function sendMessage() {
|
|
||||||
const input = document.getElementById('userInput');
|
|
||||||
const message = input.value.trim();
|
|
||||||
|
|
||||||
if (message) {
|
|
||||||
// 确保移除所有现有的思考指示器
|
|
||||||
const existingIndicators = document.querySelectorAll('#currentTypingIndicator');
|
|
||||||
existingIndicators.forEach(indicator => indicator.remove());
|
|
||||||
|
|
||||||
showMessage(message, true);
|
|
||||||
input.value = '';
|
|
||||||
|
|
||||||
// 禁用输入
|
|
||||||
disableInput(true);
|
|
||||||
|
|
||||||
// 显示"思考中"
|
|
||||||
showTypingIndicator('思考中');
|
|
||||||
|
|
||||||
// 5秒后改为"思考完成"并开始回复
|
|
||||||
setTimeout(() => {
|
|
||||||
hideTypingIndicator();
|
|
||||||
showTypingIndicator('思考完成');
|
|
||||||
|
|
||||||
// 缩短等待时间到300ms
|
|
||||||
setTimeout(() => {
|
|
||||||
const aiResponse = getAIResponse(message);
|
|
||||||
showMessage(aiResponse, false, () => {
|
|
||||||
disableInput(false);
|
|
||||||
});
|
|
||||||
}, 300);
|
|
||||||
}, 5000);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
document.addEventListener('click', function(e) {
|
|
||||||
if (e.target.closest('.image-container')) {
|
|
||||||
const img = e.target.closest('.image-container').querySelector('img');
|
|
||||||
modalImage.src = img.src;
|
|
||||||
modal.classList.add('show');
|
|
||||||
}
|
|
||||||
});
|
|
||||||
|
|
||||||
function closeModal() {
|
|
||||||
modal.classList.remove('show');
|
|
||||||
}
|
|
||||||
|
|
||||||
modal.addEventListener('click', function(e) {
|
|
||||||
if (e.target === modal) {
|
|
||||||
closeModal();
|
|
||||||
}
|
|
||||||
});
|
|
||||||
|
|
||||||
document.getElementById('userInput').addEventListener('keypress', function(e) {
|
|
||||||
if (e.key === 'Enter' && !e.shiftKey) {
|
|
||||||
e.preventDefault();
|
|
||||||
sendMessage();
|
|
||||||
}
|
|
||||||
});
|
|
||||||
</script>
|
|
||||||
</body>
|
|
||||||
</html>
|
|
||||||
BIN
deepseek.ico
BIN
deepseek.ico
Binary file not shown.
|
Before Width: | Height: | Size: 45 KiB |
BIN
dist/LiquidTempLab.exe
vendored
BIN
dist/LiquidTempLab.exe
vendored
Binary file not shown.
44
main.spec
44
main.spec
@ -1,44 +0,0 @@
|
|||||||
# -*- mode: python ; coding: utf-8 -*-
|
|
||||||
|
|
||||||
|
|
||||||
block_cipher = None
|
|
||||||
|
|
||||||
|
|
||||||
a = Analysis(
|
|
||||||
['main.py'],
|
|
||||||
pathex=[],
|
|
||||||
binaries=[],
|
|
||||||
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='main',
|
|
||||||
debug=False,
|
|
||||||
bootloader_ignore_signals=False,
|
|
||||||
strip=False,
|
|
||||||
upx=True,
|
|
||||||
upx_exclude=[],
|
|
||||||
runtime_tmpdir=None,
|
|
||||||
console=False,
|
|
||||||
disable_windowed_traceback=False,
|
|
||||||
argv_emulation=False,
|
|
||||||
target_arch=None,
|
|
||||||
codesign_identity=None,
|
|
||||||
entitlements_file=None,
|
|
||||||
)
|
|
||||||
18
prompt.txt
18
prompt.txt
@ -1,18 +0,0 @@
|
|||||||
第一个问题:
|
|
||||||
```
|
|
||||||
老师让我们做了一个温度变化实验,我把冷牛奶放在热水里面加热,分别记录热水和冷牛奶温度变化情况,每分钟记录一次,记录结果如下:
|
|
||||||
初始温度为热水60℃,冷牛奶10℃。每分钟记录的温度变化如下:
|
|
||||||
第1分钟:热水57℃,冷牛奶20℃
|
|
||||||
第2分钟:热水53℃,冷牛奶27℃
|
|
||||||
第3分钟:热水50℃,冷牛奶32℃
|
|
||||||
第4分钟:热水49℃,冷牛奶37℃
|
|
||||||
第5分钟:热水47℃,冷牛奶40℃
|
|
||||||
第6分钟:热水45℃,冷牛奶42℃
|
|
||||||
第7分钟:热水44℃,冷牛奶44℃
|
|
||||||
|
|
||||||
这些数字看起来好复杂啊,你能帮我画一个折线图吗?这样我就能更清楚地看到温度是怎么变化的了!
|
|
||||||
```
|
|
||||||
第二个问题:
|
|
||||||
```
|
|
||||||
我想试试用其他东西做这个实验,但是记录温度好麻烦啊。你能帮我做一个程序吗?最好能自动画出折线图,这样我就不用自己画了!
|
|
||||||
```
|
|
||||||
88
server.py
88
server.py
@ -1,88 +0,0 @@
|
|||||||
import http.server
|
|
||||||
import socketserver
|
|
||||||
import webbrowser
|
|
||||||
import os
|
|
||||||
import sys
|
|
||||||
import threading
|
|
||||||
import time
|
|
||||||
import signal
|
|
||||||
import socket
|
|
||||||
|
|
||||||
def resource_path(relative_path):
|
|
||||||
"""获取资源的绝对路径"""
|
|
||||||
try:
|
|
||||||
# PyInstaller创建临时文件夹,将路径存储在_MEIPASS中
|
|
||||||
base_path = sys._MEIPASS
|
|
||||||
except Exception:
|
|
||||||
base_path = os.path.abspath(".")
|
|
||||||
return os.path.join(base_path, relative_path)
|
|
||||||
|
|
||||||
class CustomHandler(http.server.SimpleHTTPRequestHandler):
|
|
||||||
def __init__(self, *args, **kwargs):
|
|
||||||
# 使用resource_path获取正确的目录路径
|
|
||||||
base_dir = resource_path(".")
|
|
||||||
super().__init__(*args, directory=base_dir, **kwargs)
|
|
||||||
|
|
||||||
def is_port_in_use(port):
|
|
||||||
"""检查端口是否被占用"""
|
|
||||||
with socket.socket(socket.AF_INET, socket.SOCK_STREAM) as s:
|
|
||||||
try:
|
|
||||||
s.bind(('', port))
|
|
||||||
return False
|
|
||||||
except socket.error:
|
|
||||||
return True
|
|
||||||
|
|
||||||
def find_available_port(start_port):
|
|
||||||
"""查找可用端口"""
|
|
||||||
port = start_port
|
|
||||||
while is_port_in_use(port):
|
|
||||||
port += 1
|
|
||||||
return port
|
|
||||||
|
|
||||||
# 全局变量存储实际使用的端口
|
|
||||||
actual_port = None
|
|
||||||
|
|
||||||
def start_server():
|
|
||||||
global actual_port
|
|
||||||
# 查找可用端口
|
|
||||||
actual_port = find_available_port(8000)
|
|
||||||
Handler = CustomHandler
|
|
||||||
|
|
||||||
try:
|
|
||||||
with socketserver.TCPServer(("", actual_port), Handler) as httpd:
|
|
||||||
print("DeepSeek本地部署中...")
|
|
||||||
time.sleep(1) # 添加短暂延迟使提示更自然
|
|
||||||
print("DeepSeek部署完毕.")
|
|
||||||
print("关闭窗口停止运行。")
|
|
||||||
httpd.serve_forever()
|
|
||||||
except Exception as e:
|
|
||||||
print(f"服务器启动错误: {e}")
|
|
||||||
sys.exit(1)
|
|
||||||
|
|
||||||
def signal_handler(signum, frame):
|
|
||||||
sys.exit(0)
|
|
||||||
|
|
||||||
def main():
|
|
||||||
# 注册信号处理器
|
|
||||||
signal.signal(signal.SIGINT, signal_handler)
|
|
||||||
|
|
||||||
# 启动服务器线程
|
|
||||||
server_thread = threading.Thread(target=start_server)
|
|
||||||
server_thread.daemon = False # 改为非守护线程
|
|
||||||
server_thread.start()
|
|
||||||
|
|
||||||
# 等待服务器启动和端口分配
|
|
||||||
time.sleep(1)
|
|
||||||
|
|
||||||
# 使用实际分配的端口打开浏览器
|
|
||||||
webbrowser.open(f'http://localhost:{actual_port}/chat.html')
|
|
||||||
|
|
||||||
try:
|
|
||||||
# 保持主线程运行
|
|
||||||
while True:
|
|
||||||
time.sleep(1)
|
|
||||||
except KeyboardInterrupt:
|
|
||||||
sys.exit(0)
|
|
||||||
|
|
||||||
if __name__ == '__main__':
|
|
||||||
main()
|
|
||||||
Loading…
x
Reference in New Issue
Block a user