diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..67a08ed --- /dev/null +++ b/.gitignore @@ -0,0 +1,202 @@ +# Byte-compiled / optimized / DLL files +__pycache__/ +*.py[codz] +*$py.class + +# C extensions +*.so + +# Distribution / packaging +.Python +build/ +develop-eggs/ +downloads/ +eggs/ +.eggs/ +lib/ +lib64/ +parts/ +sdist/ +var/ +wheels/ +share/python-wheels/ +*.egg-info/ +.installed.cfg +*.egg +MANIFEST + +# PyInstaller +# Usually these files are written by a python script from a template +# before PyInstaller builds the exe, so as to inject date/other infos into it. +*.manifest +*.spec + +# Installer logs +pip-log.txt +pip-delete-this-directory.txt + +# Unit test / coverage reports +htmlcov/ +.tox/ +.nox/ +.coverage +.coverage.* +.cache +nosetests.xml +coverage.xml +*.cover +*.py.cover +.hypothesis/ +.pytest_cache/ +cover/ + +# Translations +*.mo +*.pot + +# Django stuff: +*.log +local_settings.py +db.sqlite3 +db.sqlite3-journal + +# Flask stuff: +instance/ +.webassets-cache + +# Scrapy stuff: +.scrapy + +# Sphinx documentation +docs/_build/ + +# PyBuilder +.pybuilder/ +target/ + +# Jupyter Notebook +.ipynb_checkpoints + +# IPython +profile_default/ +ipython_config.py + +# pyenv +# For a library or package, you might want to ignore these files since the code is +# intended to run in multiple environments; otherwise, check them in: +# .python-version + +# pipenv +# According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control. +# However, in case of collaboration, if having platform-specific dependencies or dependencies +# having no cross-platform support, pipenv may install dependencies that don't work, or not +# install all needed dependencies. +#Pipfile.lock + +# UV +# Similar to Pipfile.lock, it is generally recommended to include uv.lock in version control. +# This is especially recommended for binary packages to ensure reproducibility, and is more +# commonly ignored for libraries. +#uv.lock + +# poetry +# Similar to Pipfile.lock, it is generally recommended to include poetry.lock in version control. +# This is especially recommended for binary packages to ensure reproducibility, and is more +# commonly ignored for libraries. +# https://python-poetry.org/docs/basic-usage/#commit-your-poetrylock-file-to-version-control +#poetry.lock +#poetry.toml + +# pdm +# Similar to Pipfile.lock, it is generally recommended to include pdm.lock in version control. +# pdm recommends including project-wide configuration in pdm.toml, but excluding .pdm-python. +# https://pdm-project.org/en/latest/usage/project/#working-with-version-control +#pdm.lock +#pdm.toml +.pdm-python +.pdm-build/ + +# pixi +# Similar to Pipfile.lock, it is generally recommended to include pixi.lock in version control. +#pixi.lock +# Pixi creates a virtual environment in the .pixi directory, just like venv module creates one +# in the .venv directory. It is recommended not to include this directory in version control. +.pixi + +# PEP 582; used by e.g. github.com/David-OConnor/pyflow and github.com/pdm-project/pdm +__pypackages__/ + +# Celery stuff +celerybeat-schedule +celerybeat.pid + +# SageMath parsed files +*.sage.py + +# Environments +.env +.envrc +.venv +env/ +venv/ +ENV/ +env.bak/ +venv.bak/ + +# Spyder project settings +.spyderproject +.spyproject + +# Rope project settings +.ropeproject + +# mkdocs documentation +/site + +# mypy +.mypy_cache/ +.dmypy.json +dmypy.json + +# Pyre type checker +.pyre/ + +# pytype static type analyzer +.pytype/ + +# Cython debug symbols +cython_debug/ + +# PyCharm +# JetBrains specific template is maintained in a separate JetBrains.gitignore that can +# be found at https://github.com/github/gitignore/blob/main/Global/JetBrains.gitignore +# and can be added to the global gitignore or merged into this file. For a more nuclear +# option (not recommended) you can uncomment the following to ignore the entire idea folder. +#.idea/ + +# Abstra +# Abstra is an AI-powered process automation framework. +# Ignore directories containing user credentials, local state, and settings. +# Learn more at https://abstra.io/docs +.abstra/ + +# Visual Studio Code +# Visual Studio Code specific template is maintained in a separate VisualStudioCode.gitignore +# that can be found at https://github.com/github/gitignore/blob/main/Global/VisualStudioCode.gitignore +# and can be added to the global gitignore or merged into this file. However, if you prefer, +# you could uncomment the following to ignore the entire vscode folder +# .vscode/ + +# Ruff stuff: +.ruff_cache/ + +# PyPI configuration file +.pypirc + +# Marimo +marimo/_static/ +marimo/_lsp/ +__marimo__/ + +# Streamlit +.streamlit/secrets.toml diff --git a/Dt_report.py b/Dt_report.py index a550877..bb9dca0 100644 --- a/Dt_report.py +++ b/Dt_report.py @@ -2,13 +2,13 @@ from tools.document_tools import ( create_document, add_documents,add_table_and_replace, add_table_to_document,add_dynamic_table, - process_server_images_table,add_header + process_server_images_table,add_header,change_heading ) # 内容处理工具 from tools.content_tools import ( add_picture,split_table_by_row_content, - search_and_replace + search_and_replace,add_heading ) from tools.get_pictures import ( @@ -221,6 +221,7 @@ async def generate_dt_report(base_info, baogao_info): mianzhe_shengming = f"本报告仅涵盖{'、'.join(baogao_label)}检测内容" print(await create_document(output_dir)) + change_heading(output_dir, "Heading 1", DT_EADING_1_CONFIG) if baogao_info["if_docx_fengmian"] : #创建文档、添加封面 print(add_documents(output_dir, cover_dirs[0])) @@ -274,7 +275,8 @@ async def generate_dt_report(base_info, baogao_info): print("建立表结构完毕,开始插入模板") #添加项目概况表 print(f"输出路径:{output_dir},模板路径:{XIANG_MU_GAI_KUANG},插入数据:{XIANGMU_GAIKUO}") - output_doc, message = add_table_to_document(output_dir, XIANG_MU_GAI_KUANG,5,5,total_table_num,XIANGMU_GAIKUO) + print(add_heading(output_dir, f"一、项目概括", 1)) + output_doc, message = add_table_to_document(output_dir, XIANG_MU_GAI_KUANG,5,5,total_table_num,XIANGMU_GAIKUO, if_para=False) print(message) print("模板插入完毕,开始替换内容") total_table_num += 1 @@ -294,7 +296,8 @@ async def generate_dt_report(base_info, baogao_info): 'beizhu' : beizhu, 'num' : num_to_chinese[head_num], } - print(add_table_and_replace(output_dir, FANGAN_JIANCHA_DIR, 0, list_to_replace)) + print(add_heading(output_dir, f"二、检查方案", 1)) + print(add_table_and_replace(output_dir, FANGAN_JIANCHA_DIR, 0, list_to_replace, no_para=True)) print(split_table_by_row_content(output_dir, output_dir, total_table_num)) total_table_num += 1 head_num += 1 @@ -318,7 +321,8 @@ async def generate_dt_report(base_info, baogao_info): JIANCHA_XINGXI[7][1] = Y_Code[2] if len(Y_Code) > 2 else "无" JIANCHA_XINGXI[8][0] = "本次" + "、".join(_ for _ in jiancha) + f"检查,采集叶片图片{total_picture_num}张,内容覆盖" + ";".join(_ for _ in neirong) #新建检查信息表 - output_doc, message = add_table_to_document(output_dir, JIANCHA_XINGXI_DIR,9,4,total_table_num ,JIANCHA_XINGXI,False) + print(add_heading(output_dir, f"三、检查信息", 1)) + output_doc, message = add_table_to_document(output_dir, JIANCHA_XINGXI_DIR,9,4,total_table_num ,JIANCHA_XINGXI,False,if_para=False) print(message) print(search_and_replace(output_dir, jiegou_xuhao, num_to_chinese[head_num])) head_num += 1 @@ -345,7 +349,8 @@ async def generate_dt_report(base_info, baogao_info): CHENGGUO_DIJIAO[4][3] = baogao_date.split(' ')[0] CHENGGUO_DIJIAO[5][3] = "未审核" - output_doc, message = add_table_to_document(output_dir, CHENGGUO_DIJIAO_DIR,5,5,total_table_num,CHENGGUO_DIJIAO,True,0.04) + print(add_heading(output_dir, f"四、成果递交", 1)) + output_doc, message = add_table_to_document(output_dir, CHENGGUO_DIJIAO_DIR,5,5,total_table_num,CHENGGUO_DIJIAO,True,0.04,if_para=False) print(message) print(search_and_replace(output_dir, jiegou_xuhao, num_to_chinese[head_num])) head_num += 1 @@ -396,7 +401,8 @@ async def generate_dt_report(base_info, baogao_info): JIANCHA_HUIZONG[1][2] = "\n".join([f"{i+1}.{s}" for i, s in enumerate(get_defect_str(Y1_quexian_list))]) if Y1_quexian_num else '未发现明显影响风力发电机组正常运行的缺陷' JIANCHA_HUIZONG[2][2] = "\n".join([f"{i+1}.{s}" for i, s in enumerate(get_defect_str(Y2_quexian_list))]) if Y2_quexian_num else '未发现明显影响风力发电机组正常运行的缺陷' JIANCHA_HUIZONG[3][2] = "\n".join([f"{i+1}.{s}" for i, s in enumerate(get_defect_str(Y3_quexian_list))]) if Y3_quexian_num else '未发现明显影响风力发电机组正常运行的缺陷' - output_doc, message = add_table_to_document(output_dir, JIANCHA_HUIZONG_DIR,4,3,total_table_num,JIANCHA_HUIZONG,False,ALIGMENT='LEFT') + print(add_heading(output_dir, f"五、检查情况汇总 ", 1)) + output_doc, message = add_table_to_document(output_dir, JIANCHA_HUIZONG_DIR,4,3,total_table_num,JIANCHA_HUIZONG,False,ALIGMENT='LEFT', if_para=False) print(message) print(search_and_replace(output_dir, jiegou_xuhao, num_to_chinese[head_num])) total_table_num += 1 @@ -419,6 +425,7 @@ async def generate_dt_report(base_info, baogao_info): if JIANCHA_NEIRONG_TOTAL_NUM <= 0: print("无典型图片数据,无法生成典型图表") else: + print(add_heading(output_dir, f"六、检查内容", 1)) col ,row = 3, 0 JIANCHA_NEIRONG_PICTURES_TABLE = get_resource_path("muban/check2.docx") JIANCHA_NEIRONG_Y1_DIR = get_resource_path("muban/check_content.docx") @@ -438,7 +445,8 @@ async def generate_dt_report(base_info, baogao_info): print(f"Y3标题内容:{JIANCHA_NEIRONG_Y3}") print(f"当前表格序号为 {total_table_num}") print(key_words) - output_doc, message = add_table_to_document(output_dir, JIANCHA_NEIRONG_Y1_DIR,1,3,total_table_num,JIANCHA_NEIRONG_Y1,True, 1) + + output_doc, message = add_table_to_document(output_dir, JIANCHA_NEIRONG_Y1_DIR,1,3,total_table_num,JIANCHA_NEIRONG_Y1,True, 1,if_para=False) print(message) total_table_num += 1 diff --git a/Generate_Report.py b/Generate_Report.py deleted file mode 100644 index 34c5181..0000000 --- a/Generate_Report.py +++ /dev/null @@ -1,38 +0,0 @@ -import asyncio -from pathlib import Path -from tools.argtool import (load_config, parse_arguments, get_default_config, - merge_configs) -from Dt_report import generate_dt_report -from Jf_report import generate_jf_report - -def main(): - args = parse_arguments() - - default_cfg = get_default_config() - - # 读取配置文件(若存在) - file_cfg = {} - if Path(args.config_file).exists(): - try: - file_cfg = load_config(args.config_file) - except Exception as e: - print(f'警告:加载配置文件失败 {e},使用默认配置') - - merged = merge_configs(default_cfg, file_cfg, args) - - # 补全必要目录 - if not merged['json2']['shengcheng_dir']: - merged['json2']['shengcheng_dir'] = str(Path.cwd() / 'output') - - Path(merged['json2']['shengcheng_dir']).mkdir(parents=True, exist_ok=True) - - if merged['json2']['choose_template'] == 'DT': - asyncio.run(generate_dt_report(merged['json1'], merged['json2'])) - elif merged['json2']['choose_template'] == 'JF': - asyncio.run(generate_jf_report(merged['json1'], merged['json2'])) - else: - print('指定了不存在的模板,请检查配置文件') - print('文档生成完毕') - -if __name__ == '__main__': - main() \ No newline at end of file diff --git a/__pycache__/Dt_report.cpython-310.pyc b/__pycache__/Dt_report.cpython-310.pyc index 32dc3e9..577175e 100644 Binary files a/__pycache__/Dt_report.cpython-310.pyc and b/__pycache__/Dt_report.cpython-310.pyc differ diff --git a/build/build/Analysis-00.toc b/build/build/Analysis-00.toc deleted file mode 100644 index f9fc765..0000000 --- a/build/build/Analysis-00.toc +++ /dev/null @@ -1,3013 +0,0 @@ -(['Z:\\home\\dtyx\\桌面\\yhh\\Report_Generate_Server\\Generate_Report.py'], - ['Z:\\home\\dtyx\\桌面\\yhh\\Report_Generate_Server'], - [], - [('C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\_pyinstaller_hooks_contrib\\stdhooks', - -1000), - ('C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\_pyinstaller_hooks_contrib', - -1000)], - {}, - [], - [], - False, - {}, - 0, - [], - [('muban\\check2.docx', - 'Z:\\home\\dtyx\\桌面\\yhh\\Report_Generate_Server\\muban\\check2.docx', - 'DATA'), - ('muban\\check3.docx', - 'Z:\\home\\dtyx\\桌面\\yhh\\Report_Generate_Server\\muban\\check3.docx', - 'DATA'), - ('muban\\check_check.docx', - 'Z:\\home\\dtyx\\桌面\\yhh\\Report_Generate_Server\\muban\\check_check.docx', - 'DATA'), - ('muban\\check_check_title.docx', - 'Z:\\home\\dtyx\\桌面\\yhh\\Report_Generate_Server\\muban\\check_check_title.docx', - 'DATA'), - ('muban\\check_content.docx', - 'Z:\\home\\dtyx\\桌面\\yhh\\Report_Generate_Server\\muban\\check_content.docx', - 'DATA'), - ('muban\\checkinfo.docx', - 'Z:\\home\\dtyx\\桌面\\yhh\\Report_Generate_Server\\muban\\checkinfo.docx', - 'DATA'), - ('muban\\checkmethod.docx', - 'Z:\\home\\dtyx\\桌面\\yhh\\Report_Generate_Server\\muban\\checkmethod.docx', - 'DATA'), - ('muban\\chengguo_sub.docx', - 'Z:\\home\\dtyx\\桌面\\yhh\\Report_Generate_Server\\muban\\chengguo_sub.docx', - 'DATA'), - ('muban\\fengmian.jpg', - 'Z:\\home\\dtyx\\桌面\\yhh\\Report_Generate_Server\\muban\\fengmian.jpg', - 'DATA'), - ('muban\\fengmian1.docx', - 'Z:\\home\\dtyx\\桌面\\yhh\\Report_Generate_Server\\muban\\fengmian1.docx', - 'DATA'), - ('muban\\fengmian2.docx', - 'Z:\\home\\dtyx\\桌面\\yhh\\Report_Generate_Server\\muban\\fengmian2.docx', - 'DATA'), - ('muban\\result.docx', - 'Z:\\home\\dtyx\\桌面\\yhh\\Report_Generate_Server\\muban\\result.docx', - 'DATA'), - ('muban\\total_check.docx', - 'Z:\\home\\dtyx\\桌面\\yhh\\Report_Generate_Server\\muban\\total_check.docx', - 'DATA'), - ('muban\\xiangmugaikuo.docx', - 'Z:\\home\\dtyx\\桌面\\yhh\\Report_Generate_Server\\muban\\xiangmugaikuo.docx', - 'DATA'), - ('muban\\检查方案内容.docx', - 'Z:\\home\\dtyx\\桌面\\yhh\\Report_Generate_Server\\muban\\检查方案内容.docx', - 'DATA')], - '3.9.13 (tags/v3.9.13:6de2ca5, May 17 2022, 16:24:45) [MSC v.1929 32 bit ' - '(Intel)]', - [('pyi_rth_inspect', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\Lib\\site-packages\\PyInstaller\\hooks\\rthooks\\pyi_rth_inspect.py', - 'PYSOURCE'), - ('pyi_rth_pkgutil', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\Lib\\site-packages\\PyInstaller\\hooks\\rthooks\\pyi_rth_pkgutil.py', - 'PYSOURCE'), - ('pyi_rth_multiprocessing', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\Lib\\site-packages\\PyInstaller\\hooks\\rthooks\\pyi_rth_multiprocessing.py', - 'PYSOURCE'), - ('Generate_Report', - 'Z:\\home\\dtyx\\桌面\\yhh\\Report_Generate_Server\\Generate_Report.py', - 'PYSOURCE')], - [('subprocess', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\subprocess.py', - 'PYMODULE'), - ('selectors', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\selectors.py', - 'PYMODULE'), - ('contextlib', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\contextlib.py', - 'PYMODULE'), - ('threading', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\threading.py', - 'PYMODULE'), - ('_threading_local', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\_threading_local.py', - 'PYMODULE'), - ('signal', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\signal.py', - 'PYMODULE'), - ('_strptime', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\_strptime.py', - 'PYMODULE'), - ('calendar', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\calendar.py', - 'PYMODULE'), - ('argparse', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\argparse.py', - 'PYMODULE'), - ('textwrap', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\textwrap.py', - 'PYMODULE'), - ('shutil', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\shutil.py', - 'PYMODULE'), - ('zipfile', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\zipfile.py', - 'PYMODULE'), - ('py_compile', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\py_compile.py', - 'PYMODULE'), - ('importlib.machinery', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\importlib\\machinery.py', - 'PYMODULE'), - ('importlib', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\importlib\\__init__.py', - 'PYMODULE'), - ('importlib._common', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\importlib\\_common.py', - 'PYMODULE'), - ('tempfile', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\tempfile.py', - 'PYMODULE'), - ('random', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\random.py', - 'PYMODULE'), - ('statistics', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\statistics.py', - 'PYMODULE'), - ('decimal', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\decimal.py', - 'PYMODULE'), - ('_pydecimal', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\_pydecimal.py', - 'PYMODULE'), - ('contextvars', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\contextvars.py', - 'PYMODULE'), - ('fractions', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\fractions.py', - 'PYMODULE'), - ('numbers', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\numbers.py', - 'PYMODULE'), - ('hashlib', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\hashlib.py', - 'PYMODULE'), - ('logging', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\logging\\__init__.py', - 'PYMODULE'), - ('pickle', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\pickle.py', - 'PYMODULE'), - ('pprint', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\pprint.py', - 'PYMODULE'), - ('_compat_pickle', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\_compat_pickle.py', - 'PYMODULE'), - ('string', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\string.py', - 'PYMODULE'), - ('bisect', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\bisect.py', - 'PYMODULE'), - ('importlib._bootstrap', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\importlib\\_bootstrap.py', - 'PYMODULE'), - ('importlib._bootstrap_external', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\importlib\\_bootstrap_external.py', - 'PYMODULE'), - ('importlib.metadata', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\importlib\\metadata.py', - 'PYMODULE'), - ('importlib.abc', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\importlib\\abc.py', - 'PYMODULE'), - ('typing', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\typing.py', - 'PYMODULE'), - ('configparser', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\configparser.py', - 'PYMODULE'), - ('email', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\email\\__init__.py', - 'PYMODULE'), - ('email.parser', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\email\\parser.py', - 'PYMODULE'), - ('email._policybase', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\email\\_policybase.py', - 'PYMODULE'), - ('email.utils', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\email\\utils.py', - 'PYMODULE'), - ('email._parseaddr', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\email\\_parseaddr.py', - 'PYMODULE'), - ('urllib.parse', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\urllib\\parse.py', - 'PYMODULE'), - ('urllib', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\urllib\\__init__.py', - 'PYMODULE'), - ('socket', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\socket.py', - 'PYMODULE'), - ('email.feedparser', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\email\\feedparser.py', - 'PYMODULE'), - ('email.message', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\email\\message.py', - 'PYMODULE'), - ('email.policy', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\email\\policy.py', - 'PYMODULE'), - ('email.contentmanager', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\email\\contentmanager.py', - 'PYMODULE'), - ('email.quoprimime', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\email\\quoprimime.py', - 'PYMODULE'), - ('email.headerregistry', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\email\\headerregistry.py', - 'PYMODULE'), - ('email.iterators', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\email\\iterators.py', - 'PYMODULE'), - ('email.generator', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\email\\generator.py', - 'PYMODULE'), - ('email._encoded_words', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\email\\_encoded_words.py', - 'PYMODULE'), - ('base64', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\base64.py', - 'PYMODULE'), - ('getopt', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\getopt.py', - 'PYMODULE'), - ('quopri', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\quopri.py', - 'PYMODULE'), - ('uu', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\uu.py', - 'PYMODULE'), - ('optparse', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\optparse.py', - 'PYMODULE'), - ('email._header_value_parser', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\email\\_header_value_parser.py', - 'PYMODULE'), - ('email.header', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\email\\header.py', - 'PYMODULE'), - ('email.base64mime', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\email\\base64mime.py', - 'PYMODULE'), - ('email.charset', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\email\\charset.py', - 'PYMODULE'), - ('email.encoders', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\email\\encoders.py', - 'PYMODULE'), - ('email.errors', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\email\\errors.py', - 'PYMODULE'), - ('csv', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\csv.py', - 'PYMODULE'), - ('tokenize', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\tokenize.py', - 'PYMODULE'), - ('token', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\token.py', - 'PYMODULE'), - ('struct', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\struct.py', - 'PYMODULE'), - ('importlib.util', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\importlib\\util.py', - 'PYMODULE'), - ('tarfile', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\tarfile.py', - 'PYMODULE'), - ('gzip', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\gzip.py', - 'PYMODULE'), - ('_compression', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\_compression.py', - 'PYMODULE'), - ('lzma', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\lzma.py', - 'PYMODULE'), - ('bz2', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\bz2.py', - 'PYMODULE'), - ('fnmatch', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\fnmatch.py', - 'PYMODULE'), - ('copy', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\copy.py', - 'PYMODULE'), - ('gettext', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\gettext.py', - 'PYMODULE'), - ('multiprocessing.spawn', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\multiprocessing\\spawn.py', - 'PYMODULE'), - ('multiprocessing.resource_tracker', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\multiprocessing\\resource_tracker.py', - 'PYMODULE'), - ('multiprocessing.util', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\multiprocessing\\util.py', - 'PYMODULE'), - ('multiprocessing.forkserver', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\multiprocessing\\forkserver.py', - 'PYMODULE'), - ('multiprocessing.connection', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\multiprocessing\\connection.py', - 'PYMODULE'), - ('multiprocessing.resource_sharer', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\multiprocessing\\resource_sharer.py', - 'PYMODULE'), - ('xmlrpc.client', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\xmlrpc\\client.py', - 'PYMODULE'), - ('xmlrpc', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\xmlrpc\\__init__.py', - 'PYMODULE'), - ('xml.parsers.expat', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\xml\\parsers\\expat.py', - 'PYMODULE'), - ('xml.parsers', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\xml\\parsers\\__init__.py', - 'PYMODULE'), - ('xml', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\xml\\__init__.py', - 'PYMODULE'), - ('xml.sax.expatreader', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\xml\\sax\\expatreader.py', - 'PYMODULE'), - ('xml.sax.saxutils', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\xml\\sax\\saxutils.py', - 'PYMODULE'), - ('urllib.request', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\urllib\\request.py', - 'PYMODULE'), - ('getpass', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\getpass.py', - 'PYMODULE'), - ('nturl2path', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\nturl2path.py', - 'PYMODULE'), - ('ftplib', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\ftplib.py', - 'PYMODULE'), - ('netrc', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\netrc.py', - 'PYMODULE'), - ('shlex', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\shlex.py', - 'PYMODULE'), - ('mimetypes', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\mimetypes.py', - 'PYMODULE'), - ('http.cookiejar', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\http\\cookiejar.py', - 'PYMODULE'), - ('http', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\http\\__init__.py', - 'PYMODULE'), - ('ssl', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\ssl.py', - 'PYMODULE'), - ('urllib.response', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\urllib\\response.py', - 'PYMODULE'), - ('urllib.error', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\urllib\\error.py', - 'PYMODULE'), - ('xml.sax', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\xml\\sax\\__init__.py', - 'PYMODULE'), - ('xml.sax.handler', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\xml\\sax\\handler.py', - 'PYMODULE'), - ('xml.sax._exceptions', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\xml\\sax\\_exceptions.py', - 'PYMODULE'), - ('xml.sax.xmlreader', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\xml\\sax\\xmlreader.py', - 'PYMODULE'), - ('http.client', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\http\\client.py', - 'PYMODULE'), - ('hmac', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\hmac.py', - 'PYMODULE'), - ('multiprocessing.context', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\multiprocessing\\context.py', - 'PYMODULE'), - ('multiprocessing.popen_spawn_win32', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\multiprocessing\\popen_spawn_win32.py', - 'PYMODULE'), - ('multiprocessing.popen_forkserver', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\multiprocessing\\popen_forkserver.py', - 'PYMODULE'), - ('multiprocessing.popen_spawn_posix', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\multiprocessing\\popen_spawn_posix.py', - 'PYMODULE'), - ('multiprocessing.popen_fork', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\multiprocessing\\popen_fork.py', - 'PYMODULE'), - ('multiprocessing.sharedctypes', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\multiprocessing\\sharedctypes.py', - 'PYMODULE'), - ('multiprocessing.heap', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\multiprocessing\\heap.py', - 'PYMODULE'), - ('ctypes', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\ctypes\\__init__.py', - 'PYMODULE'), - ('ctypes._endian', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\ctypes\\_endian.py', - 'PYMODULE'), - ('multiprocessing.pool', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\multiprocessing\\pool.py', - 'PYMODULE'), - ('multiprocessing.dummy', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\multiprocessing\\dummy\\__init__.py', - 'PYMODULE'), - ('multiprocessing.dummy.connection', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\multiprocessing\\dummy\\connection.py', - 'PYMODULE'), - ('queue', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\queue.py', - 'PYMODULE'), - ('multiprocessing.queues', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\multiprocessing\\queues.py', - 'PYMODULE'), - ('multiprocessing.synchronize', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\multiprocessing\\synchronize.py', - 'PYMODULE'), - ('multiprocessing.managers', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\multiprocessing\\managers.py', - 'PYMODULE'), - ('multiprocessing.shared_memory', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\multiprocessing\\shared_memory.py', - 'PYMODULE'), - ('secrets', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\secrets.py', - 'PYMODULE'), - ('multiprocessing.reduction', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\multiprocessing\\reduction.py', - 'PYMODULE'), - ('multiprocessing.process', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\multiprocessing\\process.py', - 'PYMODULE'), - ('runpy', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\runpy.py', - 'PYMODULE'), - ('pkgutil', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\pkgutil.py', - 'PYMODULE'), - ('zipimport', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\zipimport.py', - 'PYMODULE'), - ('inspect', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\inspect.py', - 'PYMODULE'), - ('dis', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\dis.py', - 'PYMODULE'), - ('opcode', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\opcode.py', - 'PYMODULE'), - ('ast', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\ast.py', - 'PYMODULE'), - ('multiprocessing', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\multiprocessing\\__init__.py', - 'PYMODULE'), - ('stringprep', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\stringprep.py', - 'PYMODULE'), - ('tracemalloc', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\tracemalloc.py', - 'PYMODULE'), - ('_py_abc', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\_py_abc.py', - 'PYMODULE'), - ('tools.argtool', - 'Z:\\home\\dtyx\\桌面\\yhh\\Report_Generate_Server\\tools\\argtool.py', - 'PYMODULE'), - ('tools', '-', 'PYMODULE'), - ('json', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\json\\__init__.py', - 'PYMODULE'), - ('json.encoder', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\json\\encoder.py', - 'PYMODULE'), - ('json.decoder', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\json\\decoder.py', - 'PYMODULE'), - ('json.scanner', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\json\\scanner.py', - 'PYMODULE'), - ('pathlib', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\pathlib.py', - 'PYMODULE'), - ('datetime', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\datetime.py', - 'PYMODULE'), - ('tools.defines', - 'Z:\\home\\dtyx\\桌面\\yhh\\Report_Generate_Server\\tools\\defines.py', - 'PYMODULE'), - ('core.tables', - 'Z:\\home\\dtyx\\桌面\\yhh\\Report_Generate_Server\\core\\tables.py', - 'PYMODULE'), - ('core', '-', 'PYMODULE'), - ('docx.shared', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\docx\\shared.py', - 'PYMODULE'), - ('docx.parts.story', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\docx\\parts\\story.py', - 'PYMODULE'), - ('docx.styles.style', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\docx\\styles\\style.py', - 'PYMODULE'), - ('docx.text.parfmt', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\docx\\text\\parfmt.py', - 'PYMODULE'), - ('docx.text', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\docx\\text\\__init__.py', - 'PYMODULE'), - ('docx.text.tabstops', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\docx\\text\\tabstops.py', - 'PYMODULE'), - ('docx.enum.text', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\docx\\enum\\text.py', - 'PYMODULE'), - ('docx.enum', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\docx\\enum\\__init__.py', - 'PYMODULE'), - ('docx.enum.base', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\docx\\enum\\base.py', - 'PYMODULE'), - ('typing_extensions', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\typing_extensions.py', - 'PYMODULE'), - ('asyncio.coroutines', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\asyncio\\coroutines.py', - 'PYMODULE'), - ('asyncio.log', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\asyncio\\log.py', - 'PYMODULE'), - ('asyncio.format_helpers', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\asyncio\\format_helpers.py', - 'PYMODULE'), - ('asyncio.constants', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\asyncio\\constants.py', - 'PYMODULE'), - ('asyncio.base_futures', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\asyncio\\base_futures.py', - 'PYMODULE'), - ('docx.text.font', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\docx\\text\\font.py', - 'PYMODULE'), - ('docx.oxml.text.run', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\docx\\oxml\\text\\run.py', - 'PYMODULE'), - ('docx.oxml.text.parfmt', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\docx\\oxml\\text\\parfmt.py', - 'PYMODULE'), - ('docx.oxml.section', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\docx\\oxml\\section.py', - 'PYMODULE'), - ('docx.oxml.text.paragraph', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\docx\\oxml\\text\\paragraph.py', - 'PYMODULE'), - ('docx.oxml.text.hyperlink', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\docx\\oxml\\text\\hyperlink.py', - 'PYMODULE'), - ('docx.oxml.table', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\docx\\oxml\\table.py', - 'PYMODULE'), - ('docx.exceptions', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\docx\\exceptions.py', - 'PYMODULE'), - ('docx.enum.section', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\docx\\enum\\section.py', - 'PYMODULE'), - ('lxml', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\lxml\\__init__.py', - 'PYMODULE'), - ('lxml.usedoctest', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\lxml\\usedoctest.py', - 'PYMODULE'), - ('lxml.pyclasslookup', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\lxml\\pyclasslookup.py', - 'PYMODULE'), - ('lxml.isoschematron', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\lxml\\isoschematron\\__init__.py', - 'PYMODULE'), - ('lxml.includes.libxslt', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\lxml\\includes\\libxslt\\__init__.py', - 'PYMODULE'), - ('lxml.includes.libxml', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\lxml\\includes\\libxml\\__init__.py', - 'PYMODULE'), - ('lxml.includes.libexslt', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\lxml\\includes\\libexslt\\__init__.py', - 'PYMODULE'), - ('lxml.includes.extlibs', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\lxml\\includes\\extlibs\\__init__.py', - 'PYMODULE'), - ('lxml.includes', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\lxml\\includes\\__init__.py', - 'PYMODULE'), - ('lxml.html.usedoctest', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\lxml\\html\\usedoctest.py', - 'PYMODULE'), - ('lxml.html.soupparser', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\lxml\\html\\soupparser.py', - 'PYMODULE'), - ('html.entities', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\html\\entities.py', - 'PYMODULE'), - ('html', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\html\\__init__.py', - 'PYMODULE'), - ('lxml.html.html5parser', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\lxml\\html\\html5parser.py', - 'PYMODULE'), - ('lxml.html.formfill', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\lxml\\html\\formfill.py', - 'PYMODULE'), - ('difflib', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\difflib.py', - 'PYMODULE'), - ('lxml.html.defs', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\lxml\\html\\defs.py', - 'PYMODULE'), - ('lxml.html.clean', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\lxml\\html\\clean.py', - 'PYMODULE'), - ('lxml.html.builder', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\lxml\\html\\builder.py', - 'PYMODULE'), - ('lxml.html._setmixin', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\lxml\\html\\_setmixin.py', - 'PYMODULE'), - ('lxml.html._html5builder', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\lxml\\html\\_html5builder.py', - 'PYMODULE'), - ('lxml.html._diffcommand', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\lxml\\html\\_diffcommand.py', - 'PYMODULE'), - ('lxml.html.ElementSoup', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\lxml\\html\\ElementSoup.py', - 'PYMODULE'), - ('lxml.html', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\lxml\\html\\__init__.py', - 'PYMODULE'), - ('webbrowser', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\webbrowser.py', - 'PYMODULE'), - ('glob', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\glob.py', - 'PYMODULE'), - ('lxml.doctestcompare', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\lxml\\doctestcompare.py', - 'PYMODULE'), - ('cgi', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\cgi.py', - 'PYMODULE'), - ('doctest', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\doctest.py', - 'PYMODULE'), - ('unittest', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\unittest\\__init__.py', - 'PYMODULE'), - ('unittest.async_case', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\unittest\\async_case.py', - 'PYMODULE'), - ('unittest.signals', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\unittest\\signals.py', - 'PYMODULE'), - ('unittest.main', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\unittest\\main.py', - 'PYMODULE'), - ('unittest.runner', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\unittest\\runner.py', - 'PYMODULE'), - ('unittest.loader', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\unittest\\loader.py', - 'PYMODULE'), - ('unittest.suite', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\unittest\\suite.py', - 'PYMODULE'), - ('unittest.case', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\unittest\\case.py', - 'PYMODULE'), - ('unittest._log', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\unittest\\_log.py', - 'PYMODULE'), - ('unittest.result', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\unittest\\result.py', - 'PYMODULE'), - ('unittest.util', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\unittest\\util.py', - 'PYMODULE'), - ('pdb', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\pdb.py', - 'PYMODULE'), - ('pydoc', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\pydoc.py', - 'PYMODULE'), - ('http.server', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\http\\server.py', - 'PYMODULE'), - ('socketserver', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\socketserver.py', - 'PYMODULE'), - ('pydoc_data.topics', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\pydoc_data\\topics.py', - 'PYMODULE'), - ('pydoc_data', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\pydoc_data\\__init__.py', - 'PYMODULE'), - ('tty', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\tty.py', - 'PYMODULE'), - ('sysconfig', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\sysconfig.py', - 'PYMODULE'), - ('_aix_support', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\_aix_support.py', - 'PYMODULE'), - ('_bootsubprocess', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\_bootsubprocess.py', - 'PYMODULE'), - ('platform', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\platform.py', - 'PYMODULE'), - ('code', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\code.py', - 'PYMODULE'), - ('codeop', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\codeop.py', - 'PYMODULE'), - ('bdb', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\bdb.py', - 'PYMODULE'), - ('cmd', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\cmd.py', - 'PYMODULE'), - ('lxml.cssselect', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\lxml\\cssselect.py', - 'PYMODULE'), - ('lxml.ElementInclude', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\lxml\\ElementInclude.py', - 'PYMODULE'), - ('docx.oxml.text.pagebreak', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\docx\\oxml\\text\\pagebreak.py', - 'PYMODULE'), - ('docx.oxml.text', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\docx\\oxml\\text\\__init__.py', - 'PYMODULE'), - ('docx.oxml.text.font', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\docx\\oxml\\text\\font.py', - 'PYMODULE'), - ('docx.enum.dml', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\docx\\enum\\dml.py', - 'PYMODULE'), - ('docx.oxml.simpletypes', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\docx\\oxml\\simpletypes.py', - 'PYMODULE'), - ('docx.oxml.parser', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\docx\\oxml\\parser.py', - 'PYMODULE'), - ('docx.oxml.drawing', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\docx\\oxml\\drawing.py', - 'PYMODULE'), - ('docx.dml.color', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\docx\\dml\\color.py', - 'PYMODULE'), - ('docx.dml', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\docx\\dml\\__init__.py', - 'PYMODULE'), - ('docx.styles', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\docx\\styles\\__init__.py', - 'PYMODULE'), - ('docx.oxml.styles', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\docx\\oxml\\styles.py', - 'PYMODULE'), - ('docx.parts.document', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\docx\\parts\\document.py', - 'PYMODULE'), - ('docx.settings', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\docx\\settings.py', - 'PYMODULE'), - ('docx.oxml.settings', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\docx\\oxml\\settings.py', - 'PYMODULE'), - ('docx.opc.coreprops', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\docx\\opc\\coreprops.py', - 'PYMODULE'), - ('docx.opc', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\docx\\opc\\__init__.py', - 'PYMODULE'), - ('docx.oxml.coreprops', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\docx\\oxml\\coreprops.py', - 'PYMODULE'), - ('docx.comments', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\docx\\comments.py', - 'PYMODULE'), - ('docx.text.paragraph', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\docx\\text\\paragraph.py', - 'PYMODULE'), - ('docx.text.run', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\docx\\text\\run.py', - 'PYMODULE'), - ('docx.drawing', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\docx\\drawing\\__init__.py', - 'PYMODULE'), - ('docx.text.pagebreak', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\docx\\text\\pagebreak.py', - 'PYMODULE'), - ('docx.text.hyperlink', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\docx\\text\\hyperlink.py', - 'PYMODULE'), - ('docx.oxml.comments', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\docx\\oxml\\comments.py', - 'PYMODULE'), - ('docx.blkcntnr', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\docx\\blkcntnr.py', - 'PYMODULE'), - ('docx.table', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\docx\\table.py', - 'PYMODULE'), - ('docx.oxml.document', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\docx\\oxml\\document.py', - 'PYMODULE'), - ('docx.shape', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\docx\\shape.py', - 'PYMODULE'), - ('docx.enum.shape', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\docx\\enum\\shape.py', - 'PYMODULE'), - ('docx.parts.styles', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\docx\\parts\\styles.py', - 'PYMODULE'), - ('docx.opc.package', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\docx\\opc\\package.py', - 'PYMODULE'), - ('docx.opc.rel', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\docx\\opc\\rel.py', - 'PYMODULE'), - ('docx.opc.oxml', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\docx\\opc\\oxml.py', - 'PYMODULE'), - ('docx.opc.pkgwriter', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\docx\\opc\\pkgwriter.py', - 'PYMODULE'), - ('docx.opc.spec', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\docx\\opc\\spec.py', - 'PYMODULE'), - ('docx.opc.shared', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\docx\\opc\\shared.py', - 'PYMODULE'), - ('docx.opc.phys_pkg', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\docx\\opc\\phys_pkg.py', - 'PYMODULE'), - ('docx.opc.exceptions', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\docx\\opc\\exceptions.py', - 'PYMODULE'), - ('docx.opc.pkgreader', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\docx\\opc\\pkgreader.py', - 'PYMODULE'), - ('docx.opc.parts.coreprops', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\docx\\opc\\parts\\coreprops.py', - 'PYMODULE'), - ('docx.opc.parts', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\docx\\opc\\parts\\__init__.py', - 'PYMODULE'), - ('docx.styles.styles', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\docx\\styles\\styles.py', - 'PYMODULE'), - ('docx.styles.latent', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\docx\\styles\\latent.py', - 'PYMODULE'), - ('docx.opc.packuri', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\docx\\opc\\packuri.py', - 'PYMODULE'), - ('docx.parts.settings', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\docx\\parts\\settings.py', - 'PYMODULE'), - ('docx.package', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\docx\\package.py', - 'PYMODULE'), - ('docx.parts.image', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\docx\\parts\\image.py', - 'PYMODULE'), - ('docx.parts.numbering', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\docx\\parts\\numbering.py', - 'PYMODULE'), - ('docx.parts.hdrftr', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\docx\\parts\\hdrftr.py', - 'PYMODULE'), - ('docx.parts.comments', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\docx\\parts\\comments.py', - 'PYMODULE'), - ('docx.document', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\docx\\document.py', - 'PYMODULE'), - ('docx.section', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\docx\\section.py', - 'PYMODULE'), - ('docx.parts', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\docx\\parts\\__init__.py', - 'PYMODULE'), - ('docx.image.image', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\docx\\image\\image.py', - 'PYMODULE'), - ('docx.image', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\docx\\image\\__init__.py', - 'PYMODULE'), - ('docx.image.tiff', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\docx\\image\\tiff.py', - 'PYMODULE'), - ('docx.image.helpers', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\docx\\image\\helpers.py', - 'PYMODULE'), - ('docx.image.constants', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\docx\\image\\constants.py', - 'PYMODULE'), - ('docx.image.png', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\docx\\image\\png.py', - 'PYMODULE'), - ('docx.image.jpeg', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\docx\\image\\jpeg.py', - 'PYMODULE'), - ('docx.image.gif', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\docx\\image\\gif.py', - 'PYMODULE'), - ('docx.image.bmp', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\docx\\image\\bmp.py', - 'PYMODULE'), - ('docx.image.exceptions', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\docx\\image\\exceptions.py', - 'PYMODULE'), - ('docx.enum.style', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\docx\\enum\\style.py', - 'PYMODULE'), - ('docx.oxml.shape', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\docx\\oxml\\shape.py', - 'PYMODULE'), - ('docx.opc.constants', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\docx\\opc\\constants.py', - 'PYMODULE'), - ('docx.oxml.xmlchemy', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\docx\\oxml\\xmlchemy.py', - 'PYMODULE'), - ('docx.oxml.exceptions', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\docx\\oxml\\exceptions.py', - 'PYMODULE'), - ('docx.opc.part', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\docx\\opc\\part.py', - 'PYMODULE'), - ('docx.types', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\docx\\types.py', - 'PYMODULE'), - ('docx', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\docx\\__init__.py', - 'PYMODULE'), - ('docx.api', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\docx\\api.py', - 'PYMODULE'), - ('__future__', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\__future__.py', - 'PYMODULE'), - ('docx.enum.table', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\docx\\enum\\table.py', - 'PYMODULE'), - ('docx.oxml', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\docx\\oxml\\__init__.py', - 'PYMODULE'), - ('docx.oxml.numbering', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\docx\\oxml\\numbering.py', - 'PYMODULE'), - ('docx.oxml.ns', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\docx\\oxml\\ns.py', - 'PYMODULE'), - ('docx.oxml.shared', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\docx\\oxml\\shared.py', - 'PYMODULE'), - ('asyncio', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\asyncio\\__init__.py', - 'PYMODULE'), - ('asyncio.unix_events', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\asyncio\\unix_events.py', - 'PYMODULE'), - ('asyncio.windows_events', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\asyncio\\windows_events.py', - 'PYMODULE'), - ('asyncio.windows_utils', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\asyncio\\windows_utils.py', - 'PYMODULE'), - ('asyncio.selector_events', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\asyncio\\selector_events.py', - 'PYMODULE'), - ('asyncio.proactor_events', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\asyncio\\proactor_events.py', - 'PYMODULE'), - ('asyncio.base_subprocess', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\asyncio\\base_subprocess.py', - 'PYMODULE'), - ('asyncio.threads', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\asyncio\\threads.py', - 'PYMODULE'), - ('asyncio.subprocess', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\asyncio\\subprocess.py', - 'PYMODULE'), - ('asyncio.streams', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\asyncio\\streams.py', - 'PYMODULE'), - ('asyncio.queues', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\asyncio\\queues.py', - 'PYMODULE'), - ('asyncio.runners', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\asyncio\\runners.py', - 'PYMODULE'), - ('asyncio.base_events', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\asyncio\\base_events.py', - 'PYMODULE'), - ('concurrent.futures', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\concurrent\\futures\\__init__.py', - 'PYMODULE'), - ('concurrent.futures.thread', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\concurrent\\futures\\thread.py', - 'PYMODULE'), - ('concurrent.futures.process', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\concurrent\\futures\\process.py', - 'PYMODULE'), - ('concurrent.futures._base', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\concurrent\\futures\\_base.py', - 'PYMODULE'), - ('concurrent', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\concurrent\\__init__.py', - 'PYMODULE'), - ('asyncio.trsock', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\asyncio\\trsock.py', - 'PYMODULE'), - ('asyncio.staggered', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\asyncio\\staggered.py', - 'PYMODULE'), - ('asyncio.tasks', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\asyncio\\tasks.py', - 'PYMODULE'), - ('asyncio.base_tasks', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\asyncio\\base_tasks.py', - 'PYMODULE'), - ('asyncio.locks', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\asyncio\\locks.py', - 'PYMODULE'), - ('asyncio.sslproto', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\asyncio\\sslproto.py', - 'PYMODULE'), - ('asyncio.transports', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\asyncio\\transports.py', - 'PYMODULE'), - ('asyncio.protocols', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\asyncio\\protocols.py', - 'PYMODULE'), - ('asyncio.futures', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\asyncio\\futures.py', - 'PYMODULE'), - ('asyncio.exceptions', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\asyncio\\exceptions.py', - 'PYMODULE'), - ('asyncio.events', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\asyncio\\events.py', - 'PYMODULE'), - ('tools.dataproccess', - 'Z:\\home\\dtyx\\桌面\\yhh\\Report_Generate_Server\\tools\\dataproccess.py', - 'PYMODULE'), - ('tools.Get_Json', - 'Z:\\home\\dtyx\\桌面\\yhh\\Report_Generate_Server\\tools\\Get_Json.py', - 'PYMODULE'), - ('tools.API', - 'Z:\\home\\dtyx\\桌面\\yhh\\Report_Generate_Server\\tools\\API.py', - 'PYMODULE'), - ('requests', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\requests\\__init__.py', - 'PYMODULE'), - ('requests.status_codes', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\requests\\status_codes.py', - 'PYMODULE'), - ('requests.structures', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\requests\\structures.py', - 'PYMODULE'), - ('requests.compat', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\requests\\compat.py', - 'PYMODULE'), - ('http.cookies', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\http\\cookies.py', - 'PYMODULE'), - ('requests.models', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\requests\\models.py', - 'PYMODULE'), - ('idna', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\idna\\__init__.py', - 'PYMODULE'), - ('idna.package_data', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\idna\\package_data.py', - 'PYMODULE'), - ('idna.intranges', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\idna\\intranges.py', - 'PYMODULE'), - ('idna.core', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\idna\\core.py', - 'PYMODULE'), - ('idna.uts46data', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\idna\\uts46data.py', - 'PYMODULE'), - ('idna.idnadata', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\idna\\idnadata.py', - 'PYMODULE'), - ('requests.hooks', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\requests\\hooks.py', - 'PYMODULE'), - ('requests.cookies', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\requests\\cookies.py', - 'PYMODULE'), - ('requests.auth', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\requests\\auth.py', - 'PYMODULE'), - ('requests._internal_utils', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\requests\\_internal_utils.py', - 'PYMODULE'), - ('urllib3.util', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\urllib3\\util\\__init__.py', - 'PYMODULE'), - ('urllib3.util.wait', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\urllib3\\util\\wait.py', - 'PYMODULE'), - ('urllib3.util.url', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\urllib3\\util\\url.py', - 'PYMODULE'), - ('urllib3.util.util', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\urllib3\\util\\util.py', - 'PYMODULE'), - ('urllib3.util.timeout', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\urllib3\\util\\timeout.py', - 'PYMODULE'), - ('urllib3.util.ssl_', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\urllib3\\util\\ssl_.py', - 'PYMODULE'), - ('urllib3.util.ssltransport', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\urllib3\\util\\ssltransport.py', - 'PYMODULE'), - ('urllib3.util.retry', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\urllib3\\util\\retry.py', - 'PYMODULE'), - ('urllib3.response', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\urllib3\\response.py', - 'PYMODULE'), - ('urllib3.connection', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\urllib3\\connection.py', - 'PYMODULE'), - ('urllib3.util.ssl_match_hostname', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\urllib3\\util\\ssl_match_hostname.py', - 'PYMODULE'), - ('ipaddress', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\ipaddress.py', - 'PYMODULE'), - ('urllib3._version', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\urllib3\\_version.py', - 'PYMODULE'), - ('urllib3.http2.probe', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\urllib3\\http2\\probe.py', - 'PYMODULE'), - ('urllib3.http2', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\urllib3\\http2\\__init__.py', - 'PYMODULE'), - ('urllib3.http2.connection', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\urllib3\\http2\\connection.py', - 'PYMODULE'), - ('urllib3._collections', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\urllib3\\_collections.py', - 'PYMODULE'), - ('urllib3._base_connection', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\urllib3\\_base_connection.py', - 'PYMODULE'), - ('urllib3.connectionpool', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\urllib3\\connectionpool.py', - 'PYMODULE'), - ('urllib3.util.proxy', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\urllib3\\util\\proxy.py', - 'PYMODULE'), - ('urllib3._request_methods', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\urllib3\\_request_methods.py', - 'PYMODULE'), - ('urllib3.util.response', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\urllib3\\util\\response.py', - 'PYMODULE'), - ('urllib3.util.request', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\urllib3\\util\\request.py', - 'PYMODULE'), - ('urllib3.util.connection', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\urllib3\\util\\connection.py', - 'PYMODULE'), - ('urllib3.filepost', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\urllib3\\filepost.py', - 'PYMODULE'), - ('urllib3.fields', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\urllib3\\fields.py', - 'PYMODULE'), - ('requests.api', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\requests\\api.py', - 'PYMODULE'), - ('requests.sessions', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\requests\\sessions.py', - 'PYMODULE'), - ('requests.adapters', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\requests\\adapters.py', - 'PYMODULE'), - ('urllib3.contrib.socks', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\urllib3\\contrib\\socks.py', - 'PYMODULE'), - ('urllib3.poolmanager', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\urllib3\\poolmanager.py', - 'PYMODULE'), - ('requests.__version__', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\requests\\__version__.py', - 'PYMODULE'), - ('requests.utils', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\requests\\utils.py', - 'PYMODULE'), - ('requests.certs', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\requests\\certs.py', - 'PYMODULE'), - ('certifi', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\certifi\\__init__.py', - 'PYMODULE'), - ('certifi.core', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\certifi\\core.py', - 'PYMODULE'), - ('importlib.resources', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\importlib\\resources.py', - 'PYMODULE'), - ('requests.packages', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\requests\\packages.py', - 'PYMODULE'), - ('urllib3.exceptions', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\urllib3\\exceptions.py', - 'PYMODULE'), - ('urllib3.contrib.pyopenssl', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\urllib3\\contrib\\pyopenssl.py', - 'PYMODULE'), - ('urllib3.contrib', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\urllib3\\contrib\\__init__.py', - 'PYMODULE'), - ('charset_normalizer', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\charset_normalizer\\__init__.py', - 'PYMODULE'), - ('charset_normalizer.version', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\charset_normalizer\\version.py', - 'PYMODULE'), - ('charset_normalizer.utils', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\charset_normalizer\\utils.py', - 'PYMODULE'), - ('charset_normalizer.constant', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\charset_normalizer\\constant.py', - 'PYMODULE'), - ('charset_normalizer.models', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\charset_normalizer\\models.py', - 'PYMODULE'), - ('charset_normalizer.cd', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\charset_normalizer\\cd.py', - 'PYMODULE'), - ('charset_normalizer.legacy', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\charset_normalizer\\legacy.py', - 'PYMODULE'), - ('charset_normalizer.api', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\charset_normalizer\\api.py', - 'PYMODULE'), - ('requests.exceptions', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\requests\\exceptions.py', - 'PYMODULE'), - ('urllib3', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\urllib3\\__init__.py', - 'PYMODULE'), - ('urllib3.contrib.emscripten', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\urllib3\\contrib\\emscripten\\__init__.py', - 'PYMODULE'), - ('urllib3.contrib.emscripten.connection', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\urllib3\\contrib\\emscripten\\connection.py', - 'PYMODULE'), - ('urllib3.contrib.emscripten.response', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\urllib3\\contrib\\emscripten\\response.py', - 'PYMODULE'), - ('dataclasses', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\dataclasses.py', - 'PYMODULE'), - ('urllib3.contrib.emscripten.request', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\urllib3\\contrib\\emscripten\\request.py', - 'PYMODULE'), - ('urllib3.contrib.emscripten.fetch', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\urllib3\\contrib\\emscripten\\fetch.py', - 'PYMODULE'), - ('tools.get_pictures', - 'Z:\\home\\dtyx\\桌面\\yhh\\Report_Generate_Server\\tools\\get_pictures.py', - 'PYMODULE'), - ('PIL.Image', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\PIL\\Image.py', - 'PYMODULE'), - ('PIL.XpmImagePlugin', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\PIL\\XpmImagePlugin.py', - 'PYMODULE'), - ('PIL.XbmImagePlugin', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\PIL\\XbmImagePlugin.py', - 'PYMODULE'), - ('PIL.XVThumbImagePlugin', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\PIL\\XVThumbImagePlugin.py', - 'PYMODULE'), - ('PIL.WmfImagePlugin', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\PIL\\WmfImagePlugin.py', - 'PYMODULE'), - ('PIL.WebPImagePlugin', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\PIL\\WebPImagePlugin.py', - 'PYMODULE'), - ('PIL.TgaImagePlugin', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\PIL\\TgaImagePlugin.py', - 'PYMODULE'), - ('PIL.SunImagePlugin', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\PIL\\SunImagePlugin.py', - 'PYMODULE'), - ('PIL.SpiderImagePlugin', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\PIL\\SpiderImagePlugin.py', - 'PYMODULE'), - ('PIL.ImageTk', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\PIL\\ImageTk.py', - 'PYMODULE'), - ('PIL.SgiImagePlugin', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\PIL\\SgiImagePlugin.py', - 'PYMODULE'), - ('PIL.QoiImagePlugin', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\PIL\\QoiImagePlugin.py', - 'PYMODULE'), - ('PIL.PsdImagePlugin', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\PIL\\PsdImagePlugin.py', - 'PYMODULE'), - ('PIL.PixarImagePlugin', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\PIL\\PixarImagePlugin.py', - 'PYMODULE'), - ('PIL.PdfImagePlugin', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\PIL\\PdfImagePlugin.py', - 'PYMODULE'), - ('PIL.features', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\PIL\\features.py', - 'PYMODULE'), - ('PIL.PdfParser', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\PIL\\PdfParser.py', - 'PYMODULE'), - ('PIL.ImageSequence', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\PIL\\ImageSequence.py', - 'PYMODULE'), - ('PIL.PcxImagePlugin', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\PIL\\PcxImagePlugin.py', - 'PYMODULE'), - ('PIL.PcdImagePlugin', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\PIL\\PcdImagePlugin.py', - 'PYMODULE'), - ('PIL.PalmImagePlugin', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\PIL\\PalmImagePlugin.py', - 'PYMODULE'), - ('PIL.MspImagePlugin', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\PIL\\MspImagePlugin.py', - 'PYMODULE'), - ('PIL.MpoImagePlugin', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\PIL\\MpoImagePlugin.py', - 'PYMODULE'), - ('PIL.MpegImagePlugin', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\PIL\\MpegImagePlugin.py', - 'PYMODULE'), - ('PIL.MicImagePlugin', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\PIL\\MicImagePlugin.py', - 'PYMODULE'), - ('PIL.McIdasImagePlugin', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\PIL\\McIdasImagePlugin.py', - 'PYMODULE'), - ('PIL.Jpeg2KImagePlugin', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\PIL\\Jpeg2KImagePlugin.py', - 'PYMODULE'), - ('PIL.IptcImagePlugin', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\PIL\\IptcImagePlugin.py', - 'PYMODULE'), - ('PIL.ImtImagePlugin', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\PIL\\ImtImagePlugin.py', - 'PYMODULE'), - ('PIL.ImImagePlugin', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\PIL\\ImImagePlugin.py', - 'PYMODULE'), - ('PIL.IcoImagePlugin', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\PIL\\IcoImagePlugin.py', - 'PYMODULE'), - ('PIL.IcnsImagePlugin', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\PIL\\IcnsImagePlugin.py', - 'PYMODULE'), - ('PIL.Hdf5StubImagePlugin', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\PIL\\Hdf5StubImagePlugin.py', - 'PYMODULE'), - ('PIL.GribStubImagePlugin', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\PIL\\GribStubImagePlugin.py', - 'PYMODULE'), - ('PIL.GbrImagePlugin', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\PIL\\GbrImagePlugin.py', - 'PYMODULE'), - ('PIL.FtexImagePlugin', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\PIL\\FtexImagePlugin.py', - 'PYMODULE'), - ('PIL.FpxImagePlugin', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\PIL\\FpxImagePlugin.py', - 'PYMODULE'), - ('PIL.FliImagePlugin', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\PIL\\FliImagePlugin.py', - 'PYMODULE'), - ('PIL.FitsImagePlugin', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\PIL\\FitsImagePlugin.py', - 'PYMODULE'), - ('PIL.EpsImagePlugin', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\PIL\\EpsImagePlugin.py', - 'PYMODULE'), - ('PIL.DdsImagePlugin', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\PIL\\DdsImagePlugin.py', - 'PYMODULE'), - ('PIL.DcxImagePlugin', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\PIL\\DcxImagePlugin.py', - 'PYMODULE'), - ('PIL.CurImagePlugin', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\PIL\\CurImagePlugin.py', - 'PYMODULE'), - ('PIL.BufrStubImagePlugin', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\PIL\\BufrStubImagePlugin.py', - 'PYMODULE'), - ('PIL.BlpImagePlugin', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\PIL\\BlpImagePlugin.py', - 'PYMODULE'), - ('PIL.AvifImagePlugin', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\PIL\\AvifImagePlugin.py', - 'PYMODULE'), - ('PIL.ImageShow', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\PIL\\ImageShow.py', - 'PYMODULE'), - ('PIL.ImageColor', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\PIL\\ImageColor.py', - 'PYMODULE'), - ('colorsys', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\colorsys.py', - 'PYMODULE'), - ('PIL.ImageCms', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\PIL\\ImageCms.py', - 'PYMODULE'), - ('PIL.ImageWin', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\PIL\\ImageWin.py', - 'PYMODULE'), - ('PIL.PngImagePlugin', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\PIL\\PngImagePlugin.py', - 'PYMODULE'), - ('PIL.ImageChops', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\PIL\\ImageChops.py', - 'PYMODULE'), - ('PIL.PpmImagePlugin', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\PIL\\PpmImagePlugin.py', - 'PYMODULE'), - ('PIL.JpegImagePlugin', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\PIL\\JpegImagePlugin.py', - 'PYMODULE'), - ('PIL.JpegPresets', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\PIL\\JpegPresets.py', - 'PYMODULE'), - ('PIL.GifImagePlugin', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\PIL\\GifImagePlugin.py', - 'PYMODULE'), - ('PIL.ImageOps', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\PIL\\ImageOps.py', - 'PYMODULE'), - ('PIL.ImageMath', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\PIL\\ImageMath.py', - 'PYMODULE'), - ('PIL.BmpImagePlugin', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\PIL\\BmpImagePlugin.py', - 'PYMODULE'), - ('PIL._typing', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\PIL\\_typing.py', - 'PYMODULE'), - ('PIL.TiffImagePlugin', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\PIL\\TiffImagePlugin.py', - 'PYMODULE'), - ('PIL.ImageQt', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\PIL\\ImageQt.py', - 'PYMODULE'), - ('PIL.ImagePalette', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\PIL\\ImagePalette.py', - 'PYMODULE'), - ('PIL.PaletteFile', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\PIL\\PaletteFile.py', - 'PYMODULE'), - ('PIL.GimpPaletteFile', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\PIL\\GimpPaletteFile.py', - 'PYMODULE'), - ('PIL.GimpGradientFile', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\PIL\\GimpGradientFile.py', - 'PYMODULE'), - ('PIL.ImageFilter', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\PIL\\ImageFilter.py', - 'PYMODULE'), - ('PIL.ImageFile', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\PIL\\ImageFile.py', - 'PYMODULE'), - ('xml.etree.ElementTree', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\xml\\etree\\ElementTree.py', - 'PYMODULE'), - ('xml.etree.cElementTree', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\xml\\etree\\cElementTree.py', - 'PYMODULE'), - ('xml.etree.ElementInclude', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\xml\\etree\\ElementInclude.py', - 'PYMODULE'), - ('xml.etree.ElementPath', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\xml\\etree\\ElementPath.py', - 'PYMODULE'), - ('xml.etree', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\xml\\etree\\__init__.py', - 'PYMODULE'), - ('PIL._util', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\PIL\\_util.py', - 'PYMODULE'), - ('PIL._deprecate', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\PIL\\_deprecate.py', - 'PYMODULE'), - ('PIL._binary', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\PIL\\_binary.py', - 'PYMODULE'), - ('PIL.TiffTags', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\PIL\\TiffTags.py', - 'PYMODULE'), - ('PIL.ImageMode', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\PIL\\ImageMode.py', - 'PYMODULE'), - ('PIL.ExifTags', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\PIL\\ExifTags.py', - 'PYMODULE'), - ('PIL', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\PIL\\__init__.py', - 'PYMODULE'), - ('PIL._version', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\PIL\\_version.py', - 'PYMODULE'), - ('tools.content_tools', - 'Z:\\home\\dtyx\\桌面\\yhh\\Report_Generate_Server\\tools\\content_tools.py', - 'PYMODULE'), - ('core.styles', - 'Z:\\home\\dtyx\\桌面\\yhh\\Report_Generate_Server\\core\\styles.py', - 'PYMODULE'), - ('utils.document_utils', - 'Z:\\home\\dtyx\\桌面\\yhh\\Report_Generate_Server\\utils\\document_utils.py', - 'PYMODULE'), - ('utils', - 'Z:\\home\\dtyx\\桌面\\yhh\\Report_Generate_Server\\utils\\__init__.py', - 'PYMODULE'), - ('utils.file_utils', - 'Z:\\home\\dtyx\\桌面\\yhh\\Report_Generate_Server\\utils\\file_utils.py', - 'PYMODULE'), - ('tools.document_tools', - 'Z:\\home\\dtyx\\桌面\\yhh\\Report_Generate_Server\\tools\\document_tools.py', - 'PYMODULE')], - [('python39.dll', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\python39.dll', - 'BINARY'), - ('select.pyd', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\DLLs\\select.pyd', - 'EXTENSION'), - ('_decimal.pyd', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\DLLs\\_decimal.pyd', - 'EXTENSION'), - ('_hashlib.pyd', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\DLLs\\_hashlib.pyd', - 'EXTENSION'), - ('unicodedata.pyd', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\DLLs\\unicodedata.pyd', - 'EXTENSION'), - ('_socket.pyd', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\DLLs\\_socket.pyd', - 'EXTENSION'), - ('_lzma.pyd', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\DLLs\\_lzma.pyd', - 'EXTENSION'), - ('_bz2.pyd', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\DLLs\\_bz2.pyd', - 'EXTENSION'), - ('_multiprocessing.pyd', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\DLLs\\_multiprocessing.pyd', - 'EXTENSION'), - ('pyexpat.pyd', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\DLLs\\pyexpat.pyd', - 'EXTENSION'), - ('_ssl.pyd', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\DLLs\\_ssl.pyd', - 'EXTENSION'), - ('_ctypes.pyd', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\DLLs\\_ctypes.pyd', - 'EXTENSION'), - ('_queue.pyd', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\DLLs\\_queue.pyd', - 'EXTENSION'), - ('lxml\\etree.cp39-win32.pyd', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\lxml\\etree.cp39-win32.pyd', - 'EXTENSION'), - ('lxml\\_elementpath.cp39-win32.pyd', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\lxml\\_elementpath.cp39-win32.pyd', - 'EXTENSION'), - ('lxml\\sax.cp39-win32.pyd', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\lxml\\sax.cp39-win32.pyd', - 'EXTENSION'), - ('lxml\\objectify.cp39-win32.pyd', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\lxml\\objectify.cp39-win32.pyd', - 'EXTENSION'), - ('lxml\\html\\diff.cp39-win32.pyd', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\lxml\\html\\diff.cp39-win32.pyd', - 'EXTENSION'), - ('lxml\\html\\_difflib.cp39-win32.pyd', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\lxml\\html\\_difflib.cp39-win32.pyd', - 'EXTENSION'), - ('lxml\\builder.cp39-win32.pyd', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\lxml\\builder.cp39-win32.pyd', - 'EXTENSION'), - ('_overlapped.pyd', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\DLLs\\_overlapped.pyd', - 'EXTENSION'), - ('_asyncio.pyd', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\DLLs\\_asyncio.pyd', - 'EXTENSION'), - ('charset_normalizer\\md__mypyc.cp39-win32.pyd', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\charset_normalizer\\md__mypyc.cp39-win32.pyd', - 'EXTENSION'), - ('charset_normalizer\\md.cp39-win32.pyd', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\charset_normalizer\\md.cp39-win32.pyd', - 'EXTENSION'), - ('PIL\\_webp.cp39-win32.pyd', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\PIL\\_webp.cp39-win32.pyd', - 'EXTENSION'), - ('PIL\\_imagingtk.cp39-win32.pyd', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\PIL\\_imagingtk.cp39-win32.pyd', - 'EXTENSION'), - ('PIL\\_avif.cp39-win32.pyd', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\PIL\\_avif.cp39-win32.pyd', - 'EXTENSION'), - ('PIL\\_imagingcms.cp39-win32.pyd', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\PIL\\_imagingcms.cp39-win32.pyd', - 'EXTENSION'), - ('PIL\\_imagingmath.cp39-win32.pyd', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\PIL\\_imagingmath.cp39-win32.pyd', - 'EXTENSION'), - ('_elementtree.pyd', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\DLLs\\_elementtree.pyd', - 'EXTENSION'), - ('PIL\\_imaging.cp39-win32.pyd', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\PIL\\_imaging.cp39-win32.pyd', - 'EXTENSION'), - ('VCRUNTIME140.dll', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\VCRUNTIME140.dll', - 'BINARY'), - ('libcrypto-1_1.dll', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\DLLs\\libcrypto-1_1.dll', - 'BINARY'), - ('libssl-1_1.dll', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\DLLs\\libssl-1_1.dll', - 'BINARY'), - ('libffi-7.dll', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\DLLs\\libffi-7.dll', - 'BINARY')], - [], - [], - [('muban\\check2.docx', - 'Z:\\home\\dtyx\\桌面\\yhh\\Report_Generate_Server\\muban\\check2.docx', - 'DATA'), - ('muban\\check3.docx', - 'Z:\\home\\dtyx\\桌面\\yhh\\Report_Generate_Server\\muban\\check3.docx', - 'DATA'), - ('muban\\check_check.docx', - 'Z:\\home\\dtyx\\桌面\\yhh\\Report_Generate_Server\\muban\\check_check.docx', - 'DATA'), - ('muban\\check_check_title.docx', - 'Z:\\home\\dtyx\\桌面\\yhh\\Report_Generate_Server\\muban\\check_check_title.docx', - 'DATA'), - ('muban\\check_content.docx', - 'Z:\\home\\dtyx\\桌面\\yhh\\Report_Generate_Server\\muban\\check_content.docx', - 'DATA'), - ('muban\\checkinfo.docx', - 'Z:\\home\\dtyx\\桌面\\yhh\\Report_Generate_Server\\muban\\checkinfo.docx', - 'DATA'), - ('muban\\checkmethod.docx', - 'Z:\\home\\dtyx\\桌面\\yhh\\Report_Generate_Server\\muban\\checkmethod.docx', - 'DATA'), - ('muban\\chengguo_sub.docx', - 'Z:\\home\\dtyx\\桌面\\yhh\\Report_Generate_Server\\muban\\chengguo_sub.docx', - 'DATA'), - ('muban\\fengmian.jpg', - 'Z:\\home\\dtyx\\桌面\\yhh\\Report_Generate_Server\\muban\\fengmian.jpg', - 'DATA'), - ('muban\\fengmian1.docx', - 'Z:\\home\\dtyx\\桌面\\yhh\\Report_Generate_Server\\muban\\fengmian1.docx', - 'DATA'), - ('muban\\fengmian2.docx', - 'Z:\\home\\dtyx\\桌面\\yhh\\Report_Generate_Server\\muban\\fengmian2.docx', - 'DATA'), - ('muban\\result.docx', - 'Z:\\home\\dtyx\\桌面\\yhh\\Report_Generate_Server\\muban\\result.docx', - 'DATA'), - ('muban\\total_check.docx', - 'Z:\\home\\dtyx\\桌面\\yhh\\Report_Generate_Server\\muban\\total_check.docx', - 'DATA'), - ('muban\\xiangmugaikuo.docx', - 'Z:\\home\\dtyx\\桌面\\yhh\\Report_Generate_Server\\muban\\xiangmugaikuo.docx', - 'DATA'), - ('muban\\检查方案内容.docx', - 'Z:\\home\\dtyx\\桌面\\yhh\\Report_Generate_Server\\muban\\检查方案内容.docx', - 'DATA'), - ('lxml\\isoschematron\\resources\\xsl\\iso-schematron-xslt1\\readme.txt', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\lxml\\isoschematron\\resources\\xsl\\iso-schematron-xslt1\\readme.txt', - 'DATA'), - ('lxml\\isoschematron\\resources\\xsl\\iso-schematron-xslt1\\iso_abstract_expand.xsl', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\lxml\\isoschematron\\resources\\xsl\\iso-schematron-xslt1\\iso_abstract_expand.xsl', - 'DATA'), - ('lxml\\isoschematron\\resources\\xsl\\iso-schematron-xslt1\\iso_svrl_for_xslt1.xsl', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\lxml\\isoschematron\\resources\\xsl\\iso-schematron-xslt1\\iso_svrl_for_xslt1.xsl', - 'DATA'), - ('lxml\\isoschematron\\resources\\xsl\\iso-schematron-xslt1\\iso_schematron_message.xsl', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\lxml\\isoschematron\\resources\\xsl\\iso-schematron-xslt1\\iso_schematron_message.xsl', - 'DATA'), - ('lxml\\isoschematron\\resources\\xsl\\RNG2Schtrn.xsl', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\lxml\\isoschematron\\resources\\xsl\\RNG2Schtrn.xsl', - 'DATA'), - ('lxml\\isoschematron\\resources\\xsl\\XSD2Schtrn.xsl', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\lxml\\isoschematron\\resources\\xsl\\XSD2Schtrn.xsl', - 'DATA'), - ('lxml\\isoschematron\\resources\\rng\\iso-schematron.rng', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\lxml\\isoschematron\\resources\\rng\\iso-schematron.rng', - 'DATA'), - ('lxml\\isoschematron\\resources\\xsl\\iso-schematron-xslt1\\iso_dsdl_include.xsl', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\lxml\\isoschematron\\resources\\xsl\\iso-schematron-xslt1\\iso_dsdl_include.xsl', - 'DATA'), - ('lxml\\isoschematron\\resources\\xsl\\iso-schematron-xslt1\\iso_schematron_skeleton_for_xslt1.xsl', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\lxml\\isoschematron\\resources\\xsl\\iso-schematron-xslt1\\iso_schematron_skeleton_for_xslt1.xsl', - 'DATA'), - ('docx\\templates\\default-docx-template\\docProps\\thumbnail.jpeg', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\docx\\templates\\default-docx-template\\docProps\\thumbnail.jpeg', - 'DATA'), - ('docx\\py.typed', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\docx\\py.typed', - 'DATA'), - ('docx\\templates\\default-docx-template\\customXml\\_rels\\item1.xml.rels', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\docx\\templates\\default-docx-template\\customXml\\_rels\\item1.xml.rels', - 'DATA'), - ('docx\\templates\\default.docx', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\docx\\templates\\default.docx', - 'DATA'), - ('docx\\templates\\default-settings.xml', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\docx\\templates\\default-settings.xml', - 'DATA'), - ('docx\\templates\\default-header.xml', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\docx\\templates\\default-header.xml', - 'DATA'), - ('docx\\templates\\default-docx-template\\docProps\\core.xml', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\docx\\templates\\default-docx-template\\docProps\\core.xml', - 'DATA'), - ('docx\\templates\\default-docx-template\\word\\document.xml', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\docx\\templates\\default-docx-template\\word\\document.xml', - 'DATA'), - ('docx\\templates\\default-docx-template\\word\\settings.xml', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\docx\\templates\\default-docx-template\\word\\settings.xml', - 'DATA'), - ('docx\\templates\\default-docx-template\\word\\_rels\\document.xml.rels', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\docx\\templates\\default-docx-template\\word\\_rels\\document.xml.rels', - 'DATA'), - ('docx\\templates\\default-docx-template\\customXml\\itemProps1.xml', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\docx\\templates\\default-docx-template\\customXml\\itemProps1.xml', - 'DATA'), - ('docx\\templates\\default-docx-template\\word\\styles.xml', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\docx\\templates\\default-docx-template\\word\\styles.xml', - 'DATA'), - ('docx\\templates\\default-docx-template\\customXml\\item1.xml', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\docx\\templates\\default-docx-template\\customXml\\item1.xml', - 'DATA'), - ('docx\\templates\\default-docx-template\\docProps\\app.xml', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\docx\\templates\\default-docx-template\\docProps\\app.xml', - 'DATA'), - ('docx\\templates\\default-docx-template\\word\\numbering.xml', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\docx\\templates\\default-docx-template\\word\\numbering.xml', - 'DATA'), - ('docx\\templates\\default-docx-template\\_rels\\.rels', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\docx\\templates\\default-docx-template\\_rels\\.rels', - 'DATA'), - ('docx\\templates\\default-styles.xml', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\docx\\templates\\default-styles.xml', - 'DATA'), - ('docx\\templates\\default-footer.xml', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\docx\\templates\\default-footer.xml', - 'DATA'), - ('docx\\templates\\default-comments.xml', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\docx\\templates\\default-comments.xml', - 'DATA'), - ('docx\\templates\\default-docx-template\\[Content_Types].xml', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\docx\\templates\\default-docx-template\\[Content_Types].xml', - 'DATA'), - ('docx\\templates\\default-docx-template\\word\\stylesWithEffects.xml', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\docx\\templates\\default-docx-template\\word\\stylesWithEffects.xml', - 'DATA'), - ('docx\\templates\\default-docx-template\\word\\webSettings.xml', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\docx\\templates\\default-docx-template\\word\\webSettings.xml', - 'DATA'), - ('docx\\templates\\default-docx-template\\word\\theme\\theme1.xml', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\docx\\templates\\default-docx-template\\word\\theme\\theme1.xml', - 'DATA'), - ('docx\\templates\\default-docx-template\\word\\fontTable.xml', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\docx\\templates\\default-docx-template\\word\\fontTable.xml', - 'DATA'), - ('certifi\\cacert.pem', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\certifi\\cacert.pem', - 'DATA'), - ('certifi\\py.typed', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\certifi\\py.typed', - 'DATA'), - ('base_library.zip', - 'Z:\\home\\dtyx\\桌面\\yhh\\Report_Generate_Server\\build\\build\\base_library.zip', - 'DATA')], - [('sre_parse', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\sre_parse.py', - 'PYMODULE'), - ('collections.abc', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\collections\\abc.py', - 'PYMODULE'), - ('collections', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\collections\\__init__.py', - 'PYMODULE'), - ('enum', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\enum.py', - 'PYMODULE'), - ('keyword', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\keyword.py', - 'PYMODULE'), - ('weakref', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\weakref.py', - 'PYMODULE'), - ('copyreg', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\copyreg.py', - 'PYMODULE'), - ('functools', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\functools.py', - 'PYMODULE'), - ('encodings.zlib_codec', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\encodings\\zlib_codec.py', - 'PYMODULE'), - ('encodings.uu_codec', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\encodings\\uu_codec.py', - 'PYMODULE'), - ('encodings.utf_8_sig', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\encodings\\utf_8_sig.py', - 'PYMODULE'), - ('encodings.utf_8', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\encodings\\utf_8.py', - 'PYMODULE'), - ('encodings.utf_7', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\encodings\\utf_7.py', - 'PYMODULE'), - ('encodings.utf_32_le', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\encodings\\utf_32_le.py', - 'PYMODULE'), - ('encodings.utf_32_be', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\encodings\\utf_32_be.py', - 'PYMODULE'), - ('encodings.utf_32', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\encodings\\utf_32.py', - 'PYMODULE'), - ('encodings.utf_16_le', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\encodings\\utf_16_le.py', - 'PYMODULE'), - ('encodings.utf_16_be', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\encodings\\utf_16_be.py', - 'PYMODULE'), - ('encodings.utf_16', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\encodings\\utf_16.py', - 'PYMODULE'), - ('encodings.unicode_escape', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\encodings\\unicode_escape.py', - 'PYMODULE'), - ('encodings.undefined', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\encodings\\undefined.py', - 'PYMODULE'), - ('encodings.tis_620', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\encodings\\tis_620.py', - 'PYMODULE'), - ('encodings.shift_jisx0213', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\encodings\\shift_jisx0213.py', - 'PYMODULE'), - ('encodings.shift_jis_2004', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\encodings\\shift_jis_2004.py', - 'PYMODULE'), - ('encodings.shift_jis', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\encodings\\shift_jis.py', - 'PYMODULE'), - ('encodings.rot_13', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\encodings\\rot_13.py', - 'PYMODULE'), - ('encodings.raw_unicode_escape', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\encodings\\raw_unicode_escape.py', - 'PYMODULE'), - ('encodings.quopri_codec', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\encodings\\quopri_codec.py', - 'PYMODULE'), - ('encodings.punycode', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\encodings\\punycode.py', - 'PYMODULE'), - ('encodings.ptcp154', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\encodings\\ptcp154.py', - 'PYMODULE'), - ('encodings.palmos', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\encodings\\palmos.py', - 'PYMODULE'), - ('encodings.oem', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\encodings\\oem.py', - 'PYMODULE'), - ('encodings.mbcs', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\encodings\\mbcs.py', - 'PYMODULE'), - ('encodings.mac_turkish', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\encodings\\mac_turkish.py', - 'PYMODULE'), - ('encodings.mac_romanian', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\encodings\\mac_romanian.py', - 'PYMODULE'), - ('encodings.mac_roman', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\encodings\\mac_roman.py', - 'PYMODULE'), - ('encodings.mac_latin2', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\encodings\\mac_latin2.py', - 'PYMODULE'), - ('encodings.mac_iceland', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\encodings\\mac_iceland.py', - 'PYMODULE'), - ('encodings.mac_greek', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\encodings\\mac_greek.py', - 'PYMODULE'), - ('encodings.mac_farsi', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\encodings\\mac_farsi.py', - 'PYMODULE'), - ('encodings.mac_cyrillic', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\encodings\\mac_cyrillic.py', - 'PYMODULE'), - ('encodings.mac_croatian', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\encodings\\mac_croatian.py', - 'PYMODULE'), - ('encodings.mac_arabic', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\encodings\\mac_arabic.py', - 'PYMODULE'), - ('encodings.latin_1', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\encodings\\latin_1.py', - 'PYMODULE'), - ('encodings.kz1048', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\encodings\\kz1048.py', - 'PYMODULE'), - ('encodings.koi8_u', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\encodings\\koi8_u.py', - 'PYMODULE'), - ('encodings.koi8_t', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\encodings\\koi8_t.py', - 'PYMODULE'), - ('encodings.koi8_r', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\encodings\\koi8_r.py', - 'PYMODULE'), - ('encodings.johab', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\encodings\\johab.py', - 'PYMODULE'), - ('encodings.iso8859_9', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\encodings\\iso8859_9.py', - 'PYMODULE'), - ('encodings.iso8859_8', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\encodings\\iso8859_8.py', - 'PYMODULE'), - ('encodings.iso8859_7', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\encodings\\iso8859_7.py', - 'PYMODULE'), - ('encodings.iso8859_6', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\encodings\\iso8859_6.py', - 'PYMODULE'), - ('encodings.iso8859_5', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\encodings\\iso8859_5.py', - 'PYMODULE'), - ('encodings.iso8859_4', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\encodings\\iso8859_4.py', - 'PYMODULE'), - ('encodings.iso8859_3', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\encodings\\iso8859_3.py', - 'PYMODULE'), - ('encodings.iso8859_2', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\encodings\\iso8859_2.py', - 'PYMODULE'), - ('encodings.iso8859_16', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\encodings\\iso8859_16.py', - 'PYMODULE'), - ('encodings.iso8859_15', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\encodings\\iso8859_15.py', - 'PYMODULE'), - ('encodings.iso8859_14', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\encodings\\iso8859_14.py', - 'PYMODULE'), - ('encodings.iso8859_13', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\encodings\\iso8859_13.py', - 'PYMODULE'), - ('encodings.iso8859_11', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\encodings\\iso8859_11.py', - 'PYMODULE'), - ('encodings.iso8859_10', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\encodings\\iso8859_10.py', - 'PYMODULE'), - ('encodings.iso8859_1', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\encodings\\iso8859_1.py', - 'PYMODULE'), - ('encodings.iso2022_kr', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\encodings\\iso2022_kr.py', - 'PYMODULE'), - ('encodings.iso2022_jp_ext', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\encodings\\iso2022_jp_ext.py', - 'PYMODULE'), - ('encodings.iso2022_jp_3', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\encodings\\iso2022_jp_3.py', - 'PYMODULE'), - ('encodings.iso2022_jp_2004', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\encodings\\iso2022_jp_2004.py', - 'PYMODULE'), - ('encodings.iso2022_jp_2', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\encodings\\iso2022_jp_2.py', - 'PYMODULE'), - ('encodings.iso2022_jp_1', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\encodings\\iso2022_jp_1.py', - 'PYMODULE'), - ('encodings.iso2022_jp', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\encodings\\iso2022_jp.py', - 'PYMODULE'), - ('encodings.idna', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\encodings\\idna.py', - 'PYMODULE'), - ('encodings.hz', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\encodings\\hz.py', - 'PYMODULE'), - ('encodings.hp_roman8', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\encodings\\hp_roman8.py', - 'PYMODULE'), - ('encodings.hex_codec', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\encodings\\hex_codec.py', - 'PYMODULE'), - ('encodings.gbk', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\encodings\\gbk.py', - 'PYMODULE'), - ('encodings.gb2312', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\encodings\\gb2312.py', - 'PYMODULE'), - ('encodings.gb18030', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\encodings\\gb18030.py', - 'PYMODULE'), - ('encodings.euc_kr', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\encodings\\euc_kr.py', - 'PYMODULE'), - ('encodings.euc_jp', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\encodings\\euc_jp.py', - 'PYMODULE'), - ('encodings.euc_jisx0213', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\encodings\\euc_jisx0213.py', - 'PYMODULE'), - ('encodings.euc_jis_2004', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\encodings\\euc_jis_2004.py', - 'PYMODULE'), - ('encodings.cp950', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\encodings\\cp950.py', - 'PYMODULE'), - ('encodings.cp949', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\encodings\\cp949.py', - 'PYMODULE'), - ('encodings.cp932', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\encodings\\cp932.py', - 'PYMODULE'), - ('encodings.cp875', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\encodings\\cp875.py', - 'PYMODULE'), - ('encodings.cp874', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\encodings\\cp874.py', - 'PYMODULE'), - ('encodings.cp869', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\encodings\\cp869.py', - 'PYMODULE'), - ('encodings.cp866', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\encodings\\cp866.py', - 'PYMODULE'), - ('encodings.cp865', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\encodings\\cp865.py', - 'PYMODULE'), - ('encodings.cp864', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\encodings\\cp864.py', - 'PYMODULE'), - ('encodings.cp863', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\encodings\\cp863.py', - 'PYMODULE'), - ('encodings.cp862', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\encodings\\cp862.py', - 'PYMODULE'), - ('encodings.cp861', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\encodings\\cp861.py', - 'PYMODULE'), - ('encodings.cp860', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\encodings\\cp860.py', - 'PYMODULE'), - ('encodings.cp858', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\encodings\\cp858.py', - 'PYMODULE'), - ('encodings.cp857', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\encodings\\cp857.py', - 'PYMODULE'), - ('encodings.cp856', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\encodings\\cp856.py', - 'PYMODULE'), - ('encodings.cp855', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\encodings\\cp855.py', - 'PYMODULE'), - ('encodings.cp852', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\encodings\\cp852.py', - 'PYMODULE'), - ('encodings.cp850', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\encodings\\cp850.py', - 'PYMODULE'), - ('encodings.cp775', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\encodings\\cp775.py', - 'PYMODULE'), - ('encodings.cp737', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\encodings\\cp737.py', - 'PYMODULE'), - ('encodings.cp720', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\encodings\\cp720.py', - 'PYMODULE'), - ('encodings.cp500', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\encodings\\cp500.py', - 'PYMODULE'), - ('encodings.cp437', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\encodings\\cp437.py', - 'PYMODULE'), - ('encodings.cp424', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\encodings\\cp424.py', - 'PYMODULE'), - ('encodings.cp273', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\encodings\\cp273.py', - 'PYMODULE'), - ('encodings.cp1258', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\encodings\\cp1258.py', - 'PYMODULE'), - ('encodings.cp1257', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\encodings\\cp1257.py', - 'PYMODULE'), - ('encodings.cp1256', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\encodings\\cp1256.py', - 'PYMODULE'), - ('encodings.cp1255', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\encodings\\cp1255.py', - 'PYMODULE'), - ('encodings.cp1254', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\encodings\\cp1254.py', - 'PYMODULE'), - ('encodings.cp1253', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\encodings\\cp1253.py', - 'PYMODULE'), - ('encodings.cp1252', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\encodings\\cp1252.py', - 'PYMODULE'), - ('encodings.cp1251', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\encodings\\cp1251.py', - 'PYMODULE'), - ('encodings.cp1250', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\encodings\\cp1250.py', - 'PYMODULE'), - ('encodings.cp1140', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\encodings\\cp1140.py', - 'PYMODULE'), - ('encodings.cp1125', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\encodings\\cp1125.py', - 'PYMODULE'), - ('encodings.cp1026', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\encodings\\cp1026.py', - 'PYMODULE'), - ('encodings.cp1006', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\encodings\\cp1006.py', - 'PYMODULE'), - ('encodings.cp037', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\encodings\\cp037.py', - 'PYMODULE'), - ('encodings.charmap', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\encodings\\charmap.py', - 'PYMODULE'), - ('encodings.bz2_codec', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\encodings\\bz2_codec.py', - 'PYMODULE'), - ('encodings.big5hkscs', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\encodings\\big5hkscs.py', - 'PYMODULE'), - ('encodings.big5', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\encodings\\big5.py', - 'PYMODULE'), - ('encodings.base64_codec', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\encodings\\base64_codec.py', - 'PYMODULE'), - ('encodings.ascii', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\encodings\\ascii.py', - 'PYMODULE'), - ('encodings.aliases', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\encodings\\aliases.py', - 'PYMODULE'), - ('encodings', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\encodings\\__init__.py', - 'PYMODULE'), - ('sre_compile', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\sre_compile.py', - 'PYMODULE'), - ('_bootlocale', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\_bootlocale.py', - 'PYMODULE'), - ('posixpath', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\posixpath.py', - 'PYMODULE'), - ('io', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\io.py', - 'PYMODULE'), - ('operator', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\operator.py', - 'PYMODULE'), - ('stat', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\stat.py', - 'PYMODULE'), - ('ntpath', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\ntpath.py', - 'PYMODULE'), - ('_collections_abc', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\_collections_abc.py', - 'PYMODULE'), - ('types', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\types.py', - 'PYMODULE'), - ('locale', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\locale.py', - 'PYMODULE'), - ('genericpath', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\genericpath.py', - 'PYMODULE'), - ('reprlib', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\reprlib.py', - 'PYMODULE'), - ('traceback', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\traceback.py', - 'PYMODULE'), - ('sre_constants', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\sre_constants.py', - 'PYMODULE'), - ('linecache', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\linecache.py', - 'PYMODULE'), - ('codecs', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\codecs.py', - 'PYMODULE'), - ('warnings', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\warnings.py', - 'PYMODULE'), - ('_weakrefset', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\_weakrefset.py', - 'PYMODULE'), - ('heapq', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\heapq.py', - 'PYMODULE'), - ('abc', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\abc.py', - 'PYMODULE'), - ('re', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\re.py', - 'PYMODULE'), - ('os', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\os.py', - 'PYMODULE')]) diff --git a/build/build/EXE-00.toc b/build/build/EXE-00.toc deleted file mode 100644 index cfbe37c..0000000 --- a/build/build/EXE-00.toc +++ /dev/null @@ -1,409 +0,0 @@ -('Z:\\home\\dtyx\\桌面\\yhh\\Report_Generate_Server\\dist\\report_generator.exe', - True, - False, - False, - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\PyInstaller\\bootloader\\images\\icon-console.ico', - None, - False, - False, - b'\n\n \n \n \n \n \n \n \n ' - b'\n <' - b'application>\n \n \n ' - b' \n \n \n \n <' - b'/compatibility>\n ' - b'\n \n true\n \n \n \n \n \n \n \n', - True, - False, - None, - None, - None, - 'Z:\\home\\dtyx\\桌面\\yhh\\Report_Generate_Server\\build\\build\\report_generator.pkg', - [('pyi-contents-directory _internal', '', 'OPTION'), - ('PYZ-00.pyz', - 'Z:\\home\\dtyx\\桌面\\yhh\\Report_Generate_Server\\build\\build\\PYZ-00.pyz', - 'PYZ'), - ('struct', - 'Z:\\home\\dtyx\\桌面\\yhh\\Report_Generate_Server\\build\\build\\localpycs\\struct.pyc', - 'PYMODULE'), - ('pyimod01_archive', - 'Z:\\home\\dtyx\\桌面\\yhh\\Report_Generate_Server\\build\\build\\localpycs\\pyimod01_archive.pyc', - 'PYMODULE'), - ('pyimod02_importers', - 'Z:\\home\\dtyx\\桌面\\yhh\\Report_Generate_Server\\build\\build\\localpycs\\pyimod02_importers.pyc', - 'PYMODULE'), - ('pyimod03_ctypes', - 'Z:\\home\\dtyx\\桌面\\yhh\\Report_Generate_Server\\build\\build\\localpycs\\pyimod03_ctypes.pyc', - 'PYMODULE'), - ('pyimod04_pywin32', - 'Z:\\home\\dtyx\\桌面\\yhh\\Report_Generate_Server\\build\\build\\localpycs\\pyimod04_pywin32.pyc', - 'PYMODULE'), - ('pyiboot01_bootstrap', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\PyInstaller\\loader\\pyiboot01_bootstrap.py', - 'PYSOURCE'), - ('pyi_rth_inspect', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\Lib\\site-packages\\PyInstaller\\hooks\\rthooks\\pyi_rth_inspect.py', - 'PYSOURCE'), - ('pyi_rth_pkgutil', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\Lib\\site-packages\\PyInstaller\\hooks\\rthooks\\pyi_rth_pkgutil.py', - 'PYSOURCE'), - ('pyi_rth_multiprocessing', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\Lib\\site-packages\\PyInstaller\\hooks\\rthooks\\pyi_rth_multiprocessing.py', - 'PYSOURCE'), - ('Generate_Report', - 'Z:\\home\\dtyx\\桌面\\yhh\\Report_Generate_Server\\Generate_Report.py', - 'PYSOURCE'), - ('python39.dll', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\python39.dll', - 'BINARY'), - ('select.pyd', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\DLLs\\select.pyd', - 'EXTENSION'), - ('_decimal.pyd', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\DLLs\\_decimal.pyd', - 'EXTENSION'), - ('_hashlib.pyd', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\DLLs\\_hashlib.pyd', - 'EXTENSION'), - ('unicodedata.pyd', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\DLLs\\unicodedata.pyd', - 'EXTENSION'), - ('_socket.pyd', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\DLLs\\_socket.pyd', - 'EXTENSION'), - ('_lzma.pyd', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\DLLs\\_lzma.pyd', - 'EXTENSION'), - ('_bz2.pyd', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\DLLs\\_bz2.pyd', - 'EXTENSION'), - ('_multiprocessing.pyd', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\DLLs\\_multiprocessing.pyd', - 'EXTENSION'), - ('pyexpat.pyd', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\DLLs\\pyexpat.pyd', - 'EXTENSION'), - ('_ssl.pyd', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\DLLs\\_ssl.pyd', - 'EXTENSION'), - ('_ctypes.pyd', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\DLLs\\_ctypes.pyd', - 'EXTENSION'), - ('_queue.pyd', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\DLLs\\_queue.pyd', - 'EXTENSION'), - ('lxml\\etree.cp39-win32.pyd', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\lxml\\etree.cp39-win32.pyd', - 'EXTENSION'), - ('lxml\\_elementpath.cp39-win32.pyd', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\lxml\\_elementpath.cp39-win32.pyd', - 'EXTENSION'), - ('lxml\\sax.cp39-win32.pyd', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\lxml\\sax.cp39-win32.pyd', - 'EXTENSION'), - ('lxml\\objectify.cp39-win32.pyd', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\lxml\\objectify.cp39-win32.pyd', - 'EXTENSION'), - ('lxml\\html\\diff.cp39-win32.pyd', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\lxml\\html\\diff.cp39-win32.pyd', - 'EXTENSION'), - ('lxml\\html\\_difflib.cp39-win32.pyd', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\lxml\\html\\_difflib.cp39-win32.pyd', - 'EXTENSION'), - ('lxml\\builder.cp39-win32.pyd', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\lxml\\builder.cp39-win32.pyd', - 'EXTENSION'), - ('_overlapped.pyd', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\DLLs\\_overlapped.pyd', - 'EXTENSION'), - ('_asyncio.pyd', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\DLLs\\_asyncio.pyd', - 'EXTENSION'), - ('charset_normalizer\\md__mypyc.cp39-win32.pyd', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\charset_normalizer\\md__mypyc.cp39-win32.pyd', - 'EXTENSION'), - ('charset_normalizer\\md.cp39-win32.pyd', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\charset_normalizer\\md.cp39-win32.pyd', - 'EXTENSION'), - ('PIL\\_webp.cp39-win32.pyd', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\PIL\\_webp.cp39-win32.pyd', - 'EXTENSION'), - ('PIL\\_imagingtk.cp39-win32.pyd', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\PIL\\_imagingtk.cp39-win32.pyd', - 'EXTENSION'), - ('PIL\\_avif.cp39-win32.pyd', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\PIL\\_avif.cp39-win32.pyd', - 'EXTENSION'), - ('PIL\\_imagingcms.cp39-win32.pyd', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\PIL\\_imagingcms.cp39-win32.pyd', - 'EXTENSION'), - ('PIL\\_imagingmath.cp39-win32.pyd', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\PIL\\_imagingmath.cp39-win32.pyd', - 'EXTENSION'), - ('_elementtree.pyd', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\DLLs\\_elementtree.pyd', - 'EXTENSION'), - ('PIL\\_imaging.cp39-win32.pyd', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\PIL\\_imaging.cp39-win32.pyd', - 'EXTENSION'), - ('VCRUNTIME140.dll', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\VCRUNTIME140.dll', - 'BINARY'), - ('libcrypto-1_1.dll', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\DLLs\\libcrypto-1_1.dll', - 'BINARY'), - ('libssl-1_1.dll', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\DLLs\\libssl-1_1.dll', - 'BINARY'), - ('libffi-7.dll', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\DLLs\\libffi-7.dll', - 'BINARY'), - ('muban\\check2.docx', - 'Z:\\home\\dtyx\\桌面\\yhh\\Report_Generate_Server\\muban\\check2.docx', - 'DATA'), - ('muban\\check3.docx', - 'Z:\\home\\dtyx\\桌面\\yhh\\Report_Generate_Server\\muban\\check3.docx', - 'DATA'), - ('muban\\check_check.docx', - 'Z:\\home\\dtyx\\桌面\\yhh\\Report_Generate_Server\\muban\\check_check.docx', - 'DATA'), - ('muban\\check_check_title.docx', - 'Z:\\home\\dtyx\\桌面\\yhh\\Report_Generate_Server\\muban\\check_check_title.docx', - 'DATA'), - ('muban\\check_content.docx', - 'Z:\\home\\dtyx\\桌面\\yhh\\Report_Generate_Server\\muban\\check_content.docx', - 'DATA'), - ('muban\\checkinfo.docx', - 'Z:\\home\\dtyx\\桌面\\yhh\\Report_Generate_Server\\muban\\checkinfo.docx', - 'DATA'), - ('muban\\checkmethod.docx', - 'Z:\\home\\dtyx\\桌面\\yhh\\Report_Generate_Server\\muban\\checkmethod.docx', - 'DATA'), - ('muban\\chengguo_sub.docx', - 'Z:\\home\\dtyx\\桌面\\yhh\\Report_Generate_Server\\muban\\chengguo_sub.docx', - 'DATA'), - ('muban\\fengmian.jpg', - 'Z:\\home\\dtyx\\桌面\\yhh\\Report_Generate_Server\\muban\\fengmian.jpg', - 'DATA'), - ('muban\\fengmian1.docx', - 'Z:\\home\\dtyx\\桌面\\yhh\\Report_Generate_Server\\muban\\fengmian1.docx', - 'DATA'), - ('muban\\fengmian2.docx', - 'Z:\\home\\dtyx\\桌面\\yhh\\Report_Generate_Server\\muban\\fengmian2.docx', - 'DATA'), - ('muban\\result.docx', - 'Z:\\home\\dtyx\\桌面\\yhh\\Report_Generate_Server\\muban\\result.docx', - 'DATA'), - ('muban\\total_check.docx', - 'Z:\\home\\dtyx\\桌面\\yhh\\Report_Generate_Server\\muban\\total_check.docx', - 'DATA'), - ('muban\\xiangmugaikuo.docx', - 'Z:\\home\\dtyx\\桌面\\yhh\\Report_Generate_Server\\muban\\xiangmugaikuo.docx', - 'DATA'), - ('muban\\检查方案内容.docx', - 'Z:\\home\\dtyx\\桌面\\yhh\\Report_Generate_Server\\muban\\检查方案内容.docx', - 'DATA'), - ('lxml\\isoschematron\\resources\\xsl\\iso-schematron-xslt1\\readme.txt', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\lxml\\isoschematron\\resources\\xsl\\iso-schematron-xslt1\\readme.txt', - 'DATA'), - ('lxml\\isoschematron\\resources\\xsl\\iso-schematron-xslt1\\iso_abstract_expand.xsl', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\lxml\\isoschematron\\resources\\xsl\\iso-schematron-xslt1\\iso_abstract_expand.xsl', - 'DATA'), - ('lxml\\isoschematron\\resources\\xsl\\iso-schematron-xslt1\\iso_svrl_for_xslt1.xsl', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\lxml\\isoschematron\\resources\\xsl\\iso-schematron-xslt1\\iso_svrl_for_xslt1.xsl', - 'DATA'), - ('lxml\\isoschematron\\resources\\xsl\\iso-schematron-xslt1\\iso_schematron_message.xsl', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\lxml\\isoschematron\\resources\\xsl\\iso-schematron-xslt1\\iso_schematron_message.xsl', - 'DATA'), - ('lxml\\isoschematron\\resources\\xsl\\RNG2Schtrn.xsl', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\lxml\\isoschematron\\resources\\xsl\\RNG2Schtrn.xsl', - 'DATA'), - ('lxml\\isoschematron\\resources\\xsl\\XSD2Schtrn.xsl', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\lxml\\isoschematron\\resources\\xsl\\XSD2Schtrn.xsl', - 'DATA'), - ('lxml\\isoschematron\\resources\\rng\\iso-schematron.rng', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\lxml\\isoschematron\\resources\\rng\\iso-schematron.rng', - 'DATA'), - ('lxml\\isoschematron\\resources\\xsl\\iso-schematron-xslt1\\iso_dsdl_include.xsl', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\lxml\\isoschematron\\resources\\xsl\\iso-schematron-xslt1\\iso_dsdl_include.xsl', - 'DATA'), - ('lxml\\isoschematron\\resources\\xsl\\iso-schematron-xslt1\\iso_schematron_skeleton_for_xslt1.xsl', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\lxml\\isoschematron\\resources\\xsl\\iso-schematron-xslt1\\iso_schematron_skeleton_for_xslt1.xsl', - 'DATA'), - ('docx\\templates\\default-docx-template\\docProps\\thumbnail.jpeg', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\docx\\templates\\default-docx-template\\docProps\\thumbnail.jpeg', - 'DATA'), - ('docx\\py.typed', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\docx\\py.typed', - 'DATA'), - ('docx\\templates\\default-docx-template\\customXml\\_rels\\item1.xml.rels', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\docx\\templates\\default-docx-template\\customXml\\_rels\\item1.xml.rels', - 'DATA'), - ('docx\\templates\\default.docx', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\docx\\templates\\default.docx', - 'DATA'), - ('docx\\templates\\default-settings.xml', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\docx\\templates\\default-settings.xml', - 'DATA'), - ('docx\\templates\\default-header.xml', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\docx\\templates\\default-header.xml', - 'DATA'), - ('docx\\templates\\default-docx-template\\docProps\\core.xml', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\docx\\templates\\default-docx-template\\docProps\\core.xml', - 'DATA'), - ('docx\\templates\\default-docx-template\\word\\document.xml', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\docx\\templates\\default-docx-template\\word\\document.xml', - 'DATA'), - ('docx\\templates\\default-docx-template\\word\\settings.xml', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\docx\\templates\\default-docx-template\\word\\settings.xml', - 'DATA'), - ('docx\\templates\\default-docx-template\\word\\_rels\\document.xml.rels', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\docx\\templates\\default-docx-template\\word\\_rels\\document.xml.rels', - 'DATA'), - ('docx\\templates\\default-docx-template\\customXml\\itemProps1.xml', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\docx\\templates\\default-docx-template\\customXml\\itemProps1.xml', - 'DATA'), - ('docx\\templates\\default-docx-template\\word\\styles.xml', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\docx\\templates\\default-docx-template\\word\\styles.xml', - 'DATA'), - ('docx\\templates\\default-docx-template\\customXml\\item1.xml', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\docx\\templates\\default-docx-template\\customXml\\item1.xml', - 'DATA'), - ('docx\\templates\\default-docx-template\\docProps\\app.xml', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\docx\\templates\\default-docx-template\\docProps\\app.xml', - 'DATA'), - ('docx\\templates\\default-docx-template\\word\\numbering.xml', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\docx\\templates\\default-docx-template\\word\\numbering.xml', - 'DATA'), - ('docx\\templates\\default-docx-template\\_rels\\.rels', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\docx\\templates\\default-docx-template\\_rels\\.rels', - 'DATA'), - ('docx\\templates\\default-styles.xml', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\docx\\templates\\default-styles.xml', - 'DATA'), - ('docx\\templates\\default-footer.xml', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\docx\\templates\\default-footer.xml', - 'DATA'), - ('docx\\templates\\default-comments.xml', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\docx\\templates\\default-comments.xml', - 'DATA'), - ('docx\\templates\\default-docx-template\\[Content_Types].xml', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\docx\\templates\\default-docx-template\\[Content_Types].xml', - 'DATA'), - ('docx\\templates\\default-docx-template\\word\\stylesWithEffects.xml', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\docx\\templates\\default-docx-template\\word\\stylesWithEffects.xml', - 'DATA'), - ('docx\\templates\\default-docx-template\\word\\webSettings.xml', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\docx\\templates\\default-docx-template\\word\\webSettings.xml', - 'DATA'), - ('docx\\templates\\default-docx-template\\word\\theme\\theme1.xml', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\docx\\templates\\default-docx-template\\word\\theme\\theme1.xml', - 'DATA'), - ('docx\\templates\\default-docx-template\\word\\fontTable.xml', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\docx\\templates\\default-docx-template\\word\\fontTable.xml', - 'DATA'), - ('certifi\\cacert.pem', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\certifi\\cacert.pem', - 'DATA'), - ('certifi\\py.typed', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\certifi\\py.typed', - 'DATA'), - ('base_library.zip', - 'Z:\\home\\dtyx\\桌面\\yhh\\Report_Generate_Server\\build\\build\\base_library.zip', - 'DATA')], - [], - False, - False, - 1753433900, - [('run.exe', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\PyInstaller\\bootloader\\Windows-32bit-intel\\run.exe', - 'EXECUTABLE')], - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\python39.dll') diff --git a/build/build/PKG-00.toc b/build/build/PKG-00.toc deleted file mode 100644 index 69c20d2..0000000 --- a/build/build/PKG-00.toc +++ /dev/null @@ -1,384 +0,0 @@ -('Z:\\home\\dtyx\\桌面\\yhh\\Report_Generate_Server\\build\\build\\report_generator.pkg', - {'BINARY': True, - 'DATA': True, - 'EXECUTABLE': True, - 'EXTENSION': True, - 'PYMODULE': True, - 'PYSOURCE': True, - 'PYZ': False, - 'SPLASH': True, - 'SYMLINK': False}, - [('pyi-contents-directory _internal', '', 'OPTION'), - ('PYZ-00.pyz', - 'Z:\\home\\dtyx\\桌面\\yhh\\Report_Generate_Server\\build\\build\\PYZ-00.pyz', - 'PYZ'), - ('struct', - 'Z:\\home\\dtyx\\桌面\\yhh\\Report_Generate_Server\\build\\build\\localpycs\\struct.pyc', - 'PYMODULE'), - ('pyimod01_archive', - 'Z:\\home\\dtyx\\桌面\\yhh\\Report_Generate_Server\\build\\build\\localpycs\\pyimod01_archive.pyc', - 'PYMODULE'), - ('pyimod02_importers', - 'Z:\\home\\dtyx\\桌面\\yhh\\Report_Generate_Server\\build\\build\\localpycs\\pyimod02_importers.pyc', - 'PYMODULE'), - ('pyimod03_ctypes', - 'Z:\\home\\dtyx\\桌面\\yhh\\Report_Generate_Server\\build\\build\\localpycs\\pyimod03_ctypes.pyc', - 'PYMODULE'), - ('pyimod04_pywin32', - 'Z:\\home\\dtyx\\桌面\\yhh\\Report_Generate_Server\\build\\build\\localpycs\\pyimod04_pywin32.pyc', - 'PYMODULE'), - ('pyiboot01_bootstrap', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\PyInstaller\\loader\\pyiboot01_bootstrap.py', - 'PYSOURCE'), - ('pyi_rth_inspect', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\Lib\\site-packages\\PyInstaller\\hooks\\rthooks\\pyi_rth_inspect.py', - 'PYSOURCE'), - ('pyi_rth_pkgutil', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\Lib\\site-packages\\PyInstaller\\hooks\\rthooks\\pyi_rth_pkgutil.py', - 'PYSOURCE'), - ('pyi_rth_multiprocessing', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\Lib\\site-packages\\PyInstaller\\hooks\\rthooks\\pyi_rth_multiprocessing.py', - 'PYSOURCE'), - ('Generate_Report', - 'Z:\\home\\dtyx\\桌面\\yhh\\Report_Generate_Server\\Generate_Report.py', - 'PYSOURCE'), - ('python39.dll', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\python39.dll', - 'BINARY'), - ('select.pyd', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\DLLs\\select.pyd', - 'EXTENSION'), - ('_decimal.pyd', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\DLLs\\_decimal.pyd', - 'EXTENSION'), - ('_hashlib.pyd', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\DLLs\\_hashlib.pyd', - 'EXTENSION'), - ('unicodedata.pyd', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\DLLs\\unicodedata.pyd', - 'EXTENSION'), - ('_socket.pyd', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\DLLs\\_socket.pyd', - 'EXTENSION'), - ('_lzma.pyd', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\DLLs\\_lzma.pyd', - 'EXTENSION'), - ('_bz2.pyd', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\DLLs\\_bz2.pyd', - 'EXTENSION'), - ('_multiprocessing.pyd', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\DLLs\\_multiprocessing.pyd', - 'EXTENSION'), - ('pyexpat.pyd', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\DLLs\\pyexpat.pyd', - 'EXTENSION'), - ('_ssl.pyd', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\DLLs\\_ssl.pyd', - 'EXTENSION'), - ('_ctypes.pyd', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\DLLs\\_ctypes.pyd', - 'EXTENSION'), - ('_queue.pyd', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\DLLs\\_queue.pyd', - 'EXTENSION'), - ('lxml\\etree.cp39-win32.pyd', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\lxml\\etree.cp39-win32.pyd', - 'EXTENSION'), - ('lxml\\_elementpath.cp39-win32.pyd', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\lxml\\_elementpath.cp39-win32.pyd', - 'EXTENSION'), - ('lxml\\sax.cp39-win32.pyd', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\lxml\\sax.cp39-win32.pyd', - 'EXTENSION'), - ('lxml\\objectify.cp39-win32.pyd', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\lxml\\objectify.cp39-win32.pyd', - 'EXTENSION'), - ('lxml\\html\\diff.cp39-win32.pyd', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\lxml\\html\\diff.cp39-win32.pyd', - 'EXTENSION'), - ('lxml\\html\\_difflib.cp39-win32.pyd', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\lxml\\html\\_difflib.cp39-win32.pyd', - 'EXTENSION'), - ('lxml\\builder.cp39-win32.pyd', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\lxml\\builder.cp39-win32.pyd', - 'EXTENSION'), - ('_overlapped.pyd', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\DLLs\\_overlapped.pyd', - 'EXTENSION'), - ('_asyncio.pyd', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\DLLs\\_asyncio.pyd', - 'EXTENSION'), - ('charset_normalizer\\md__mypyc.cp39-win32.pyd', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\charset_normalizer\\md__mypyc.cp39-win32.pyd', - 'EXTENSION'), - ('charset_normalizer\\md.cp39-win32.pyd', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\charset_normalizer\\md.cp39-win32.pyd', - 'EXTENSION'), - ('PIL\\_webp.cp39-win32.pyd', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\PIL\\_webp.cp39-win32.pyd', - 'EXTENSION'), - ('PIL\\_imagingtk.cp39-win32.pyd', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\PIL\\_imagingtk.cp39-win32.pyd', - 'EXTENSION'), - ('PIL\\_avif.cp39-win32.pyd', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\PIL\\_avif.cp39-win32.pyd', - 'EXTENSION'), - ('PIL\\_imagingcms.cp39-win32.pyd', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\PIL\\_imagingcms.cp39-win32.pyd', - 'EXTENSION'), - ('PIL\\_imagingmath.cp39-win32.pyd', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\PIL\\_imagingmath.cp39-win32.pyd', - 'EXTENSION'), - ('_elementtree.pyd', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\DLLs\\_elementtree.pyd', - 'EXTENSION'), - ('PIL\\_imaging.cp39-win32.pyd', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\PIL\\_imaging.cp39-win32.pyd', - 'EXTENSION'), - ('VCRUNTIME140.dll', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\VCRUNTIME140.dll', - 'BINARY'), - ('libcrypto-1_1.dll', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\DLLs\\libcrypto-1_1.dll', - 'BINARY'), - ('libssl-1_1.dll', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\DLLs\\libssl-1_1.dll', - 'BINARY'), - ('libffi-7.dll', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\DLLs\\libffi-7.dll', - 'BINARY'), - ('muban\\check2.docx', - 'Z:\\home\\dtyx\\桌面\\yhh\\Report_Generate_Server\\muban\\check2.docx', - 'DATA'), - ('muban\\check3.docx', - 'Z:\\home\\dtyx\\桌面\\yhh\\Report_Generate_Server\\muban\\check3.docx', - 'DATA'), - ('muban\\check_check.docx', - 'Z:\\home\\dtyx\\桌面\\yhh\\Report_Generate_Server\\muban\\check_check.docx', - 'DATA'), - ('muban\\check_check_title.docx', - 'Z:\\home\\dtyx\\桌面\\yhh\\Report_Generate_Server\\muban\\check_check_title.docx', - 'DATA'), - ('muban\\check_content.docx', - 'Z:\\home\\dtyx\\桌面\\yhh\\Report_Generate_Server\\muban\\check_content.docx', - 'DATA'), - ('muban\\checkinfo.docx', - 'Z:\\home\\dtyx\\桌面\\yhh\\Report_Generate_Server\\muban\\checkinfo.docx', - 'DATA'), - ('muban\\checkmethod.docx', - 'Z:\\home\\dtyx\\桌面\\yhh\\Report_Generate_Server\\muban\\checkmethod.docx', - 'DATA'), - ('muban\\chengguo_sub.docx', - 'Z:\\home\\dtyx\\桌面\\yhh\\Report_Generate_Server\\muban\\chengguo_sub.docx', - 'DATA'), - ('muban\\fengmian.jpg', - 'Z:\\home\\dtyx\\桌面\\yhh\\Report_Generate_Server\\muban\\fengmian.jpg', - 'DATA'), - ('muban\\fengmian1.docx', - 'Z:\\home\\dtyx\\桌面\\yhh\\Report_Generate_Server\\muban\\fengmian1.docx', - 'DATA'), - ('muban\\fengmian2.docx', - 'Z:\\home\\dtyx\\桌面\\yhh\\Report_Generate_Server\\muban\\fengmian2.docx', - 'DATA'), - ('muban\\result.docx', - 'Z:\\home\\dtyx\\桌面\\yhh\\Report_Generate_Server\\muban\\result.docx', - 'DATA'), - ('muban\\total_check.docx', - 'Z:\\home\\dtyx\\桌面\\yhh\\Report_Generate_Server\\muban\\total_check.docx', - 'DATA'), - ('muban\\xiangmugaikuo.docx', - 'Z:\\home\\dtyx\\桌面\\yhh\\Report_Generate_Server\\muban\\xiangmugaikuo.docx', - 'DATA'), - ('muban\\检查方案内容.docx', - 'Z:\\home\\dtyx\\桌面\\yhh\\Report_Generate_Server\\muban\\检查方案内容.docx', - 'DATA'), - ('lxml\\isoschematron\\resources\\xsl\\iso-schematron-xslt1\\readme.txt', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\lxml\\isoschematron\\resources\\xsl\\iso-schematron-xslt1\\readme.txt', - 'DATA'), - ('lxml\\isoschematron\\resources\\xsl\\iso-schematron-xslt1\\iso_abstract_expand.xsl', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\lxml\\isoschematron\\resources\\xsl\\iso-schematron-xslt1\\iso_abstract_expand.xsl', - 'DATA'), - ('lxml\\isoschematron\\resources\\xsl\\iso-schematron-xslt1\\iso_svrl_for_xslt1.xsl', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\lxml\\isoschematron\\resources\\xsl\\iso-schematron-xslt1\\iso_svrl_for_xslt1.xsl', - 'DATA'), - ('lxml\\isoschematron\\resources\\xsl\\iso-schematron-xslt1\\iso_schematron_message.xsl', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\lxml\\isoschematron\\resources\\xsl\\iso-schematron-xslt1\\iso_schematron_message.xsl', - 'DATA'), - ('lxml\\isoschematron\\resources\\xsl\\RNG2Schtrn.xsl', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\lxml\\isoschematron\\resources\\xsl\\RNG2Schtrn.xsl', - 'DATA'), - ('lxml\\isoschematron\\resources\\xsl\\XSD2Schtrn.xsl', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\lxml\\isoschematron\\resources\\xsl\\XSD2Schtrn.xsl', - 'DATA'), - ('lxml\\isoschematron\\resources\\rng\\iso-schematron.rng', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\lxml\\isoschematron\\resources\\rng\\iso-schematron.rng', - 'DATA'), - ('lxml\\isoschematron\\resources\\xsl\\iso-schematron-xslt1\\iso_dsdl_include.xsl', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\lxml\\isoschematron\\resources\\xsl\\iso-schematron-xslt1\\iso_dsdl_include.xsl', - 'DATA'), - ('lxml\\isoschematron\\resources\\xsl\\iso-schematron-xslt1\\iso_schematron_skeleton_for_xslt1.xsl', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\lxml\\isoschematron\\resources\\xsl\\iso-schematron-xslt1\\iso_schematron_skeleton_for_xslt1.xsl', - 'DATA'), - ('docx\\templates\\default-docx-template\\docProps\\thumbnail.jpeg', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\docx\\templates\\default-docx-template\\docProps\\thumbnail.jpeg', - 'DATA'), - ('docx\\py.typed', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\docx\\py.typed', - 'DATA'), - ('docx\\templates\\default-docx-template\\customXml\\_rels\\item1.xml.rels', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\docx\\templates\\default-docx-template\\customXml\\_rels\\item1.xml.rels', - 'DATA'), - ('docx\\templates\\default.docx', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\docx\\templates\\default.docx', - 'DATA'), - ('docx\\templates\\default-settings.xml', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\docx\\templates\\default-settings.xml', - 'DATA'), - ('docx\\templates\\default-header.xml', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\docx\\templates\\default-header.xml', - 'DATA'), - ('docx\\templates\\default-docx-template\\docProps\\core.xml', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\docx\\templates\\default-docx-template\\docProps\\core.xml', - 'DATA'), - ('docx\\templates\\default-docx-template\\word\\document.xml', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\docx\\templates\\default-docx-template\\word\\document.xml', - 'DATA'), - ('docx\\templates\\default-docx-template\\word\\settings.xml', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\docx\\templates\\default-docx-template\\word\\settings.xml', - 'DATA'), - ('docx\\templates\\default-docx-template\\word\\_rels\\document.xml.rels', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\docx\\templates\\default-docx-template\\word\\_rels\\document.xml.rels', - 'DATA'), - ('docx\\templates\\default-docx-template\\customXml\\itemProps1.xml', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\docx\\templates\\default-docx-template\\customXml\\itemProps1.xml', - 'DATA'), - ('docx\\templates\\default-docx-template\\word\\styles.xml', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\docx\\templates\\default-docx-template\\word\\styles.xml', - 'DATA'), - ('docx\\templates\\default-docx-template\\customXml\\item1.xml', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\docx\\templates\\default-docx-template\\customXml\\item1.xml', - 'DATA'), - ('docx\\templates\\default-docx-template\\docProps\\app.xml', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\docx\\templates\\default-docx-template\\docProps\\app.xml', - 'DATA'), - ('docx\\templates\\default-docx-template\\word\\numbering.xml', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\docx\\templates\\default-docx-template\\word\\numbering.xml', - 'DATA'), - ('docx\\templates\\default-docx-template\\_rels\\.rels', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\docx\\templates\\default-docx-template\\_rels\\.rels', - 'DATA'), - ('docx\\templates\\default-styles.xml', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\docx\\templates\\default-styles.xml', - 'DATA'), - ('docx\\templates\\default-footer.xml', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\docx\\templates\\default-footer.xml', - 'DATA'), - ('docx\\templates\\default-comments.xml', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\docx\\templates\\default-comments.xml', - 'DATA'), - ('docx\\templates\\default-docx-template\\[Content_Types].xml', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\docx\\templates\\default-docx-template\\[Content_Types].xml', - 'DATA'), - ('docx\\templates\\default-docx-template\\word\\stylesWithEffects.xml', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\docx\\templates\\default-docx-template\\word\\stylesWithEffects.xml', - 'DATA'), - ('docx\\templates\\default-docx-template\\word\\webSettings.xml', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\docx\\templates\\default-docx-template\\word\\webSettings.xml', - 'DATA'), - ('docx\\templates\\default-docx-template\\word\\theme\\theme1.xml', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\docx\\templates\\default-docx-template\\word\\theme\\theme1.xml', - 'DATA'), - ('docx\\templates\\default-docx-template\\word\\fontTable.xml', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\docx\\templates\\default-docx-template\\word\\fontTable.xml', - 'DATA'), - ('certifi\\cacert.pem', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\certifi\\cacert.pem', - 'DATA'), - ('certifi\\py.typed', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\certifi\\py.typed', - 'DATA'), - ('base_library.zip', - 'Z:\\home\\dtyx\\桌面\\yhh\\Report_Generate_Server\\build\\build\\base_library.zip', - 'DATA')], - 'python39.dll', - False, - False, - False, - [], - None, - None, - None) diff --git a/build/build/PYZ-00.pyz b/build/build/PYZ-00.pyz deleted file mode 100644 index 63228f5..0000000 Binary files a/build/build/PYZ-00.pyz and /dev/null differ diff --git a/build/build/PYZ-00.toc b/build/build/PYZ-00.toc deleted file mode 100644 index 563cfea..0000000 --- a/build/build/PYZ-00.toc +++ /dev/null @@ -1,1994 +0,0 @@ -('Z:\\home\\dtyx\\桌面\\yhh\\Report_Generate_Server\\build\\build\\PYZ-00.pyz', - [('PIL', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\PIL\\__init__.py', - 'PYMODULE'), - ('PIL.AvifImagePlugin', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\PIL\\AvifImagePlugin.py', - 'PYMODULE'), - ('PIL.BlpImagePlugin', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\PIL\\BlpImagePlugin.py', - 'PYMODULE'), - ('PIL.BmpImagePlugin', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\PIL\\BmpImagePlugin.py', - 'PYMODULE'), - ('PIL.BufrStubImagePlugin', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\PIL\\BufrStubImagePlugin.py', - 'PYMODULE'), - ('PIL.CurImagePlugin', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\PIL\\CurImagePlugin.py', - 'PYMODULE'), - ('PIL.DcxImagePlugin', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\PIL\\DcxImagePlugin.py', - 'PYMODULE'), - ('PIL.DdsImagePlugin', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\PIL\\DdsImagePlugin.py', - 'PYMODULE'), - ('PIL.EpsImagePlugin', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\PIL\\EpsImagePlugin.py', - 'PYMODULE'), - ('PIL.ExifTags', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\PIL\\ExifTags.py', - 'PYMODULE'), - ('PIL.FitsImagePlugin', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\PIL\\FitsImagePlugin.py', - 'PYMODULE'), - ('PIL.FliImagePlugin', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\PIL\\FliImagePlugin.py', - 'PYMODULE'), - ('PIL.FpxImagePlugin', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\PIL\\FpxImagePlugin.py', - 'PYMODULE'), - ('PIL.FtexImagePlugin', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\PIL\\FtexImagePlugin.py', - 'PYMODULE'), - ('PIL.GbrImagePlugin', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\PIL\\GbrImagePlugin.py', - 'PYMODULE'), - ('PIL.GifImagePlugin', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\PIL\\GifImagePlugin.py', - 'PYMODULE'), - ('PIL.GimpGradientFile', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\PIL\\GimpGradientFile.py', - 'PYMODULE'), - ('PIL.GimpPaletteFile', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\PIL\\GimpPaletteFile.py', - 'PYMODULE'), - ('PIL.GribStubImagePlugin', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\PIL\\GribStubImagePlugin.py', - 'PYMODULE'), - ('PIL.Hdf5StubImagePlugin', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\PIL\\Hdf5StubImagePlugin.py', - 'PYMODULE'), - ('PIL.IcnsImagePlugin', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\PIL\\IcnsImagePlugin.py', - 'PYMODULE'), - ('PIL.IcoImagePlugin', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\PIL\\IcoImagePlugin.py', - 'PYMODULE'), - ('PIL.ImImagePlugin', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\PIL\\ImImagePlugin.py', - 'PYMODULE'), - ('PIL.Image', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\PIL\\Image.py', - 'PYMODULE'), - ('PIL.ImageChops', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\PIL\\ImageChops.py', - 'PYMODULE'), - ('PIL.ImageCms', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\PIL\\ImageCms.py', - 'PYMODULE'), - ('PIL.ImageColor', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\PIL\\ImageColor.py', - 'PYMODULE'), - ('PIL.ImageFile', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\PIL\\ImageFile.py', - 'PYMODULE'), - ('PIL.ImageFilter', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\PIL\\ImageFilter.py', - 'PYMODULE'), - ('PIL.ImageMath', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\PIL\\ImageMath.py', - 'PYMODULE'), - ('PIL.ImageMode', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\PIL\\ImageMode.py', - 'PYMODULE'), - ('PIL.ImageOps', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\PIL\\ImageOps.py', - 'PYMODULE'), - ('PIL.ImagePalette', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\PIL\\ImagePalette.py', - 'PYMODULE'), - ('PIL.ImageQt', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\PIL\\ImageQt.py', - 'PYMODULE'), - ('PIL.ImageSequence', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\PIL\\ImageSequence.py', - 'PYMODULE'), - ('PIL.ImageShow', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\PIL\\ImageShow.py', - 'PYMODULE'), - ('PIL.ImageTk', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\PIL\\ImageTk.py', - 'PYMODULE'), - ('PIL.ImageWin', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\PIL\\ImageWin.py', - 'PYMODULE'), - ('PIL.ImtImagePlugin', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\PIL\\ImtImagePlugin.py', - 'PYMODULE'), - ('PIL.IptcImagePlugin', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\PIL\\IptcImagePlugin.py', - 'PYMODULE'), - ('PIL.Jpeg2KImagePlugin', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\PIL\\Jpeg2KImagePlugin.py', - 'PYMODULE'), - ('PIL.JpegImagePlugin', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\PIL\\JpegImagePlugin.py', - 'PYMODULE'), - ('PIL.JpegPresets', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\PIL\\JpegPresets.py', - 'PYMODULE'), - ('PIL.McIdasImagePlugin', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\PIL\\McIdasImagePlugin.py', - 'PYMODULE'), - ('PIL.MicImagePlugin', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\PIL\\MicImagePlugin.py', - 'PYMODULE'), - ('PIL.MpegImagePlugin', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\PIL\\MpegImagePlugin.py', - 'PYMODULE'), - ('PIL.MpoImagePlugin', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\PIL\\MpoImagePlugin.py', - 'PYMODULE'), - ('PIL.MspImagePlugin', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\PIL\\MspImagePlugin.py', - 'PYMODULE'), - ('PIL.PaletteFile', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\PIL\\PaletteFile.py', - 'PYMODULE'), - ('PIL.PalmImagePlugin', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\PIL\\PalmImagePlugin.py', - 'PYMODULE'), - ('PIL.PcdImagePlugin', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\PIL\\PcdImagePlugin.py', - 'PYMODULE'), - ('PIL.PcxImagePlugin', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\PIL\\PcxImagePlugin.py', - 'PYMODULE'), - ('PIL.PdfImagePlugin', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\PIL\\PdfImagePlugin.py', - 'PYMODULE'), - ('PIL.PdfParser', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\PIL\\PdfParser.py', - 'PYMODULE'), - ('PIL.PixarImagePlugin', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\PIL\\PixarImagePlugin.py', - 'PYMODULE'), - ('PIL.PngImagePlugin', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\PIL\\PngImagePlugin.py', - 'PYMODULE'), - ('PIL.PpmImagePlugin', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\PIL\\PpmImagePlugin.py', - 'PYMODULE'), - ('PIL.PsdImagePlugin', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\PIL\\PsdImagePlugin.py', - 'PYMODULE'), - ('PIL.QoiImagePlugin', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\PIL\\QoiImagePlugin.py', - 'PYMODULE'), - ('PIL.SgiImagePlugin', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\PIL\\SgiImagePlugin.py', - 'PYMODULE'), - ('PIL.SpiderImagePlugin', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\PIL\\SpiderImagePlugin.py', - 'PYMODULE'), - ('PIL.SunImagePlugin', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\PIL\\SunImagePlugin.py', - 'PYMODULE'), - ('PIL.TgaImagePlugin', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\PIL\\TgaImagePlugin.py', - 'PYMODULE'), - ('PIL.TiffImagePlugin', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\PIL\\TiffImagePlugin.py', - 'PYMODULE'), - ('PIL.TiffTags', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\PIL\\TiffTags.py', - 'PYMODULE'), - ('PIL.WebPImagePlugin', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\PIL\\WebPImagePlugin.py', - 'PYMODULE'), - ('PIL.WmfImagePlugin', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\PIL\\WmfImagePlugin.py', - 'PYMODULE'), - ('PIL.XVThumbImagePlugin', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\PIL\\XVThumbImagePlugin.py', - 'PYMODULE'), - ('PIL.XbmImagePlugin', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\PIL\\XbmImagePlugin.py', - 'PYMODULE'), - ('PIL.XpmImagePlugin', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\PIL\\XpmImagePlugin.py', - 'PYMODULE'), - ('PIL._binary', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\PIL\\_binary.py', - 'PYMODULE'), - ('PIL._deprecate', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\PIL\\_deprecate.py', - 'PYMODULE'), - ('PIL._typing', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\PIL\\_typing.py', - 'PYMODULE'), - ('PIL._util', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\PIL\\_util.py', - 'PYMODULE'), - ('PIL._version', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\PIL\\_version.py', - 'PYMODULE'), - ('PIL.features', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\PIL\\features.py', - 'PYMODULE'), - ('__future__', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\__future__.py', - 'PYMODULE'), - ('_aix_support', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\_aix_support.py', - 'PYMODULE'), - ('_bootsubprocess', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\_bootsubprocess.py', - 'PYMODULE'), - ('_compat_pickle', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\_compat_pickle.py', - 'PYMODULE'), - ('_compression', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\_compression.py', - 'PYMODULE'), - ('_py_abc', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\_py_abc.py', - 'PYMODULE'), - ('_pydecimal', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\_pydecimal.py', - 'PYMODULE'), - ('_strptime', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\_strptime.py', - 'PYMODULE'), - ('_threading_local', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\_threading_local.py', - 'PYMODULE'), - ('argparse', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\argparse.py', - 'PYMODULE'), - ('ast', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\ast.py', - 'PYMODULE'), - ('asyncio', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\asyncio\\__init__.py', - 'PYMODULE'), - ('asyncio.base_events', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\asyncio\\base_events.py', - 'PYMODULE'), - ('asyncio.base_futures', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\asyncio\\base_futures.py', - 'PYMODULE'), - ('asyncio.base_subprocess', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\asyncio\\base_subprocess.py', - 'PYMODULE'), - ('asyncio.base_tasks', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\asyncio\\base_tasks.py', - 'PYMODULE'), - ('asyncio.constants', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\asyncio\\constants.py', - 'PYMODULE'), - ('asyncio.coroutines', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\asyncio\\coroutines.py', - 'PYMODULE'), - ('asyncio.events', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\asyncio\\events.py', - 'PYMODULE'), - ('asyncio.exceptions', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\asyncio\\exceptions.py', - 'PYMODULE'), - ('asyncio.format_helpers', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\asyncio\\format_helpers.py', - 'PYMODULE'), - ('asyncio.futures', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\asyncio\\futures.py', - 'PYMODULE'), - ('asyncio.locks', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\asyncio\\locks.py', - 'PYMODULE'), - ('asyncio.log', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\asyncio\\log.py', - 'PYMODULE'), - ('asyncio.proactor_events', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\asyncio\\proactor_events.py', - 'PYMODULE'), - ('asyncio.protocols', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\asyncio\\protocols.py', - 'PYMODULE'), - ('asyncio.queues', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\asyncio\\queues.py', - 'PYMODULE'), - ('asyncio.runners', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\asyncio\\runners.py', - 'PYMODULE'), - ('asyncio.selector_events', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\asyncio\\selector_events.py', - 'PYMODULE'), - ('asyncio.sslproto', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\asyncio\\sslproto.py', - 'PYMODULE'), - ('asyncio.staggered', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\asyncio\\staggered.py', - 'PYMODULE'), - ('asyncio.streams', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\asyncio\\streams.py', - 'PYMODULE'), - ('asyncio.subprocess', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\asyncio\\subprocess.py', - 'PYMODULE'), - ('asyncio.tasks', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\asyncio\\tasks.py', - 'PYMODULE'), - ('asyncio.threads', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\asyncio\\threads.py', - 'PYMODULE'), - ('asyncio.transports', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\asyncio\\transports.py', - 'PYMODULE'), - ('asyncio.trsock', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\asyncio\\trsock.py', - 'PYMODULE'), - ('asyncio.unix_events', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\asyncio\\unix_events.py', - 'PYMODULE'), - ('asyncio.windows_events', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\asyncio\\windows_events.py', - 'PYMODULE'), - ('asyncio.windows_utils', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\asyncio\\windows_utils.py', - 'PYMODULE'), - ('base64', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\base64.py', - 'PYMODULE'), - ('bdb', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\bdb.py', - 'PYMODULE'), - ('bisect', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\bisect.py', - 'PYMODULE'), - ('bz2', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\bz2.py', - 'PYMODULE'), - ('calendar', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\calendar.py', - 'PYMODULE'), - ('certifi', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\certifi\\__init__.py', - 'PYMODULE'), - ('certifi.core', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\certifi\\core.py', - 'PYMODULE'), - ('cgi', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\cgi.py', - 'PYMODULE'), - ('charset_normalizer', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\charset_normalizer\\__init__.py', - 'PYMODULE'), - ('charset_normalizer.api', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\charset_normalizer\\api.py', - 'PYMODULE'), - ('charset_normalizer.cd', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\charset_normalizer\\cd.py', - 'PYMODULE'), - ('charset_normalizer.constant', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\charset_normalizer\\constant.py', - 'PYMODULE'), - ('charset_normalizer.legacy', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\charset_normalizer\\legacy.py', - 'PYMODULE'), - ('charset_normalizer.models', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\charset_normalizer\\models.py', - 'PYMODULE'), - ('charset_normalizer.utils', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\charset_normalizer\\utils.py', - 'PYMODULE'), - ('charset_normalizer.version', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\charset_normalizer\\version.py', - 'PYMODULE'), - ('cmd', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\cmd.py', - 'PYMODULE'), - ('code', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\code.py', - 'PYMODULE'), - ('codeop', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\codeop.py', - 'PYMODULE'), - ('colorsys', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\colorsys.py', - 'PYMODULE'), - ('concurrent', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\concurrent\\__init__.py', - 'PYMODULE'), - ('concurrent.futures', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\concurrent\\futures\\__init__.py', - 'PYMODULE'), - ('concurrent.futures._base', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\concurrent\\futures\\_base.py', - 'PYMODULE'), - ('concurrent.futures.process', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\concurrent\\futures\\process.py', - 'PYMODULE'), - ('concurrent.futures.thread', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\concurrent\\futures\\thread.py', - 'PYMODULE'), - ('configparser', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\configparser.py', - 'PYMODULE'), - ('contextlib', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\contextlib.py', - 'PYMODULE'), - ('contextvars', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\contextvars.py', - 'PYMODULE'), - ('copy', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\copy.py', - 'PYMODULE'), - ('core', '-', 'PYMODULE'), - ('core.styles', - 'Z:\\home\\dtyx\\桌面\\yhh\\Report_Generate_Server\\core\\styles.py', - 'PYMODULE'), - ('core.tables', - 'Z:\\home\\dtyx\\桌面\\yhh\\Report_Generate_Server\\core\\tables.py', - 'PYMODULE'), - ('csv', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\csv.py', - 'PYMODULE'), - ('ctypes', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\ctypes\\__init__.py', - 'PYMODULE'), - ('ctypes._endian', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\ctypes\\_endian.py', - 'PYMODULE'), - ('dataclasses', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\dataclasses.py', - 'PYMODULE'), - ('datetime', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\datetime.py', - 'PYMODULE'), - ('decimal', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\decimal.py', - 'PYMODULE'), - ('difflib', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\difflib.py', - 'PYMODULE'), - ('dis', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\dis.py', - 'PYMODULE'), - ('doctest', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\doctest.py', - 'PYMODULE'), - ('docx', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\docx\\__init__.py', - 'PYMODULE'), - ('docx.api', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\docx\\api.py', - 'PYMODULE'), - ('docx.blkcntnr', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\docx\\blkcntnr.py', - 'PYMODULE'), - ('docx.comments', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\docx\\comments.py', - 'PYMODULE'), - ('docx.dml', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\docx\\dml\\__init__.py', - 'PYMODULE'), - ('docx.dml.color', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\docx\\dml\\color.py', - 'PYMODULE'), - ('docx.document', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\docx\\document.py', - 'PYMODULE'), - ('docx.drawing', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\docx\\drawing\\__init__.py', - 'PYMODULE'), - ('docx.enum', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\docx\\enum\\__init__.py', - 'PYMODULE'), - ('docx.enum.base', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\docx\\enum\\base.py', - 'PYMODULE'), - ('docx.enum.dml', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\docx\\enum\\dml.py', - 'PYMODULE'), - ('docx.enum.section', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\docx\\enum\\section.py', - 'PYMODULE'), - ('docx.enum.shape', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\docx\\enum\\shape.py', - 'PYMODULE'), - ('docx.enum.style', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\docx\\enum\\style.py', - 'PYMODULE'), - ('docx.enum.table', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\docx\\enum\\table.py', - 'PYMODULE'), - ('docx.enum.text', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\docx\\enum\\text.py', - 'PYMODULE'), - ('docx.exceptions', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\docx\\exceptions.py', - 'PYMODULE'), - ('docx.image', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\docx\\image\\__init__.py', - 'PYMODULE'), - ('docx.image.bmp', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\docx\\image\\bmp.py', - 'PYMODULE'), - ('docx.image.constants', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\docx\\image\\constants.py', - 'PYMODULE'), - ('docx.image.exceptions', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\docx\\image\\exceptions.py', - 'PYMODULE'), - ('docx.image.gif', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\docx\\image\\gif.py', - 'PYMODULE'), - ('docx.image.helpers', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\docx\\image\\helpers.py', - 'PYMODULE'), - ('docx.image.image', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\docx\\image\\image.py', - 'PYMODULE'), - ('docx.image.jpeg', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\docx\\image\\jpeg.py', - 'PYMODULE'), - ('docx.image.png', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\docx\\image\\png.py', - 'PYMODULE'), - ('docx.image.tiff', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\docx\\image\\tiff.py', - 'PYMODULE'), - ('docx.opc', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\docx\\opc\\__init__.py', - 'PYMODULE'), - ('docx.opc.constants', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\docx\\opc\\constants.py', - 'PYMODULE'), - ('docx.opc.coreprops', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\docx\\opc\\coreprops.py', - 'PYMODULE'), - ('docx.opc.exceptions', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\docx\\opc\\exceptions.py', - 'PYMODULE'), - ('docx.opc.oxml', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\docx\\opc\\oxml.py', - 'PYMODULE'), - ('docx.opc.package', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\docx\\opc\\package.py', - 'PYMODULE'), - ('docx.opc.packuri', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\docx\\opc\\packuri.py', - 'PYMODULE'), - ('docx.opc.part', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\docx\\opc\\part.py', - 'PYMODULE'), - ('docx.opc.parts', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\docx\\opc\\parts\\__init__.py', - 'PYMODULE'), - ('docx.opc.parts.coreprops', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\docx\\opc\\parts\\coreprops.py', - 'PYMODULE'), - ('docx.opc.phys_pkg', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\docx\\opc\\phys_pkg.py', - 'PYMODULE'), - ('docx.opc.pkgreader', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\docx\\opc\\pkgreader.py', - 'PYMODULE'), - ('docx.opc.pkgwriter', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\docx\\opc\\pkgwriter.py', - 'PYMODULE'), - ('docx.opc.rel', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\docx\\opc\\rel.py', - 'PYMODULE'), - ('docx.opc.shared', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\docx\\opc\\shared.py', - 'PYMODULE'), - ('docx.opc.spec', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\docx\\opc\\spec.py', - 'PYMODULE'), - ('docx.oxml', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\docx\\oxml\\__init__.py', - 'PYMODULE'), - ('docx.oxml.comments', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\docx\\oxml\\comments.py', - 'PYMODULE'), - ('docx.oxml.coreprops', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\docx\\oxml\\coreprops.py', - 'PYMODULE'), - ('docx.oxml.document', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\docx\\oxml\\document.py', - 'PYMODULE'), - ('docx.oxml.drawing', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\docx\\oxml\\drawing.py', - 'PYMODULE'), - ('docx.oxml.exceptions', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\docx\\oxml\\exceptions.py', - 'PYMODULE'), - ('docx.oxml.ns', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\docx\\oxml\\ns.py', - 'PYMODULE'), - ('docx.oxml.numbering', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\docx\\oxml\\numbering.py', - 'PYMODULE'), - ('docx.oxml.parser', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\docx\\oxml\\parser.py', - 'PYMODULE'), - ('docx.oxml.section', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\docx\\oxml\\section.py', - 'PYMODULE'), - ('docx.oxml.settings', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\docx\\oxml\\settings.py', - 'PYMODULE'), - ('docx.oxml.shape', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\docx\\oxml\\shape.py', - 'PYMODULE'), - ('docx.oxml.shared', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\docx\\oxml\\shared.py', - 'PYMODULE'), - ('docx.oxml.simpletypes', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\docx\\oxml\\simpletypes.py', - 'PYMODULE'), - ('docx.oxml.styles', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\docx\\oxml\\styles.py', - 'PYMODULE'), - ('docx.oxml.table', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\docx\\oxml\\table.py', - 'PYMODULE'), - ('docx.oxml.text', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\docx\\oxml\\text\\__init__.py', - 'PYMODULE'), - ('docx.oxml.text.font', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\docx\\oxml\\text\\font.py', - 'PYMODULE'), - ('docx.oxml.text.hyperlink', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\docx\\oxml\\text\\hyperlink.py', - 'PYMODULE'), - ('docx.oxml.text.pagebreak', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\docx\\oxml\\text\\pagebreak.py', - 'PYMODULE'), - ('docx.oxml.text.paragraph', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\docx\\oxml\\text\\paragraph.py', - 'PYMODULE'), - ('docx.oxml.text.parfmt', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\docx\\oxml\\text\\parfmt.py', - 'PYMODULE'), - ('docx.oxml.text.run', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\docx\\oxml\\text\\run.py', - 'PYMODULE'), - ('docx.oxml.xmlchemy', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\docx\\oxml\\xmlchemy.py', - 'PYMODULE'), - ('docx.package', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\docx\\package.py', - 'PYMODULE'), - ('docx.parts', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\docx\\parts\\__init__.py', - 'PYMODULE'), - ('docx.parts.comments', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\docx\\parts\\comments.py', - 'PYMODULE'), - ('docx.parts.document', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\docx\\parts\\document.py', - 'PYMODULE'), - ('docx.parts.hdrftr', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\docx\\parts\\hdrftr.py', - 'PYMODULE'), - ('docx.parts.image', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\docx\\parts\\image.py', - 'PYMODULE'), - ('docx.parts.numbering', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\docx\\parts\\numbering.py', - 'PYMODULE'), - ('docx.parts.settings', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\docx\\parts\\settings.py', - 'PYMODULE'), - ('docx.parts.story', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\docx\\parts\\story.py', - 'PYMODULE'), - ('docx.parts.styles', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\docx\\parts\\styles.py', - 'PYMODULE'), - ('docx.section', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\docx\\section.py', - 'PYMODULE'), - ('docx.settings', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\docx\\settings.py', - 'PYMODULE'), - ('docx.shape', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\docx\\shape.py', - 'PYMODULE'), - ('docx.shared', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\docx\\shared.py', - 'PYMODULE'), - ('docx.styles', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\docx\\styles\\__init__.py', - 'PYMODULE'), - ('docx.styles.latent', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\docx\\styles\\latent.py', - 'PYMODULE'), - ('docx.styles.style', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\docx\\styles\\style.py', - 'PYMODULE'), - ('docx.styles.styles', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\docx\\styles\\styles.py', - 'PYMODULE'), - ('docx.table', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\docx\\table.py', - 'PYMODULE'), - ('docx.text', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\docx\\text\\__init__.py', - 'PYMODULE'), - ('docx.text.font', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\docx\\text\\font.py', - 'PYMODULE'), - ('docx.text.hyperlink', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\docx\\text\\hyperlink.py', - 'PYMODULE'), - ('docx.text.pagebreak', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\docx\\text\\pagebreak.py', - 'PYMODULE'), - ('docx.text.paragraph', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\docx\\text\\paragraph.py', - 'PYMODULE'), - ('docx.text.parfmt', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\docx\\text\\parfmt.py', - 'PYMODULE'), - ('docx.text.run', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\docx\\text\\run.py', - 'PYMODULE'), - ('docx.text.tabstops', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\docx\\text\\tabstops.py', - 'PYMODULE'), - ('docx.types', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\docx\\types.py', - 'PYMODULE'), - ('email', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\email\\__init__.py', - 'PYMODULE'), - ('email._encoded_words', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\email\\_encoded_words.py', - 'PYMODULE'), - ('email._header_value_parser', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\email\\_header_value_parser.py', - 'PYMODULE'), - ('email._parseaddr', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\email\\_parseaddr.py', - 'PYMODULE'), - ('email._policybase', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\email\\_policybase.py', - 'PYMODULE'), - ('email.base64mime', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\email\\base64mime.py', - 'PYMODULE'), - ('email.charset', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\email\\charset.py', - 'PYMODULE'), - ('email.contentmanager', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\email\\contentmanager.py', - 'PYMODULE'), - ('email.encoders', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\email\\encoders.py', - 'PYMODULE'), - ('email.errors', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\email\\errors.py', - 'PYMODULE'), - ('email.feedparser', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\email\\feedparser.py', - 'PYMODULE'), - ('email.generator', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\email\\generator.py', - 'PYMODULE'), - ('email.header', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\email\\header.py', - 'PYMODULE'), - ('email.headerregistry', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\email\\headerregistry.py', - 'PYMODULE'), - ('email.iterators', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\email\\iterators.py', - 'PYMODULE'), - ('email.message', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\email\\message.py', - 'PYMODULE'), - ('email.parser', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\email\\parser.py', - 'PYMODULE'), - ('email.policy', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\email\\policy.py', - 'PYMODULE'), - ('email.quoprimime', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\email\\quoprimime.py', - 'PYMODULE'), - ('email.utils', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\email\\utils.py', - 'PYMODULE'), - ('fnmatch', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\fnmatch.py', - 'PYMODULE'), - ('fractions', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\fractions.py', - 'PYMODULE'), - ('ftplib', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\ftplib.py', - 'PYMODULE'), - ('getopt', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\getopt.py', - 'PYMODULE'), - ('getpass', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\getpass.py', - 'PYMODULE'), - ('gettext', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\gettext.py', - 'PYMODULE'), - ('glob', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\glob.py', - 'PYMODULE'), - ('gzip', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\gzip.py', - 'PYMODULE'), - ('hashlib', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\hashlib.py', - 'PYMODULE'), - ('hmac', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\hmac.py', - 'PYMODULE'), - ('html', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\html\\__init__.py', - 'PYMODULE'), - ('html.entities', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\html\\entities.py', - 'PYMODULE'), - ('http', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\http\\__init__.py', - 'PYMODULE'), - ('http.client', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\http\\client.py', - 'PYMODULE'), - ('http.cookiejar', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\http\\cookiejar.py', - 'PYMODULE'), - ('http.cookies', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\http\\cookies.py', - 'PYMODULE'), - ('http.server', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\http\\server.py', - 'PYMODULE'), - ('idna', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\idna\\__init__.py', - 'PYMODULE'), - ('idna.core', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\idna\\core.py', - 'PYMODULE'), - ('idna.idnadata', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\idna\\idnadata.py', - 'PYMODULE'), - ('idna.intranges', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\idna\\intranges.py', - 'PYMODULE'), - ('idna.package_data', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\idna\\package_data.py', - 'PYMODULE'), - ('idna.uts46data', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\idna\\uts46data.py', - 'PYMODULE'), - ('importlib', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\importlib\\__init__.py', - 'PYMODULE'), - ('importlib._bootstrap', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\importlib\\_bootstrap.py', - 'PYMODULE'), - ('importlib._bootstrap_external', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\importlib\\_bootstrap_external.py', - 'PYMODULE'), - ('importlib._common', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\importlib\\_common.py', - 'PYMODULE'), - ('importlib.abc', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\importlib\\abc.py', - 'PYMODULE'), - ('importlib.machinery', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\importlib\\machinery.py', - 'PYMODULE'), - ('importlib.metadata', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\importlib\\metadata.py', - 'PYMODULE'), - ('importlib.resources', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\importlib\\resources.py', - 'PYMODULE'), - ('importlib.util', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\importlib\\util.py', - 'PYMODULE'), - ('inspect', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\inspect.py', - 'PYMODULE'), - ('ipaddress', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\ipaddress.py', - 'PYMODULE'), - ('json', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\json\\__init__.py', - 'PYMODULE'), - ('json.decoder', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\json\\decoder.py', - 'PYMODULE'), - ('json.encoder', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\json\\encoder.py', - 'PYMODULE'), - ('json.scanner', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\json\\scanner.py', - 'PYMODULE'), - ('logging', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\logging\\__init__.py', - 'PYMODULE'), - ('lxml', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\lxml\\__init__.py', - 'PYMODULE'), - ('lxml.ElementInclude', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\lxml\\ElementInclude.py', - 'PYMODULE'), - ('lxml.cssselect', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\lxml\\cssselect.py', - 'PYMODULE'), - ('lxml.doctestcompare', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\lxml\\doctestcompare.py', - 'PYMODULE'), - ('lxml.html', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\lxml\\html\\__init__.py', - 'PYMODULE'), - ('lxml.html.ElementSoup', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\lxml\\html\\ElementSoup.py', - 'PYMODULE'), - ('lxml.html._diffcommand', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\lxml\\html\\_diffcommand.py', - 'PYMODULE'), - ('lxml.html._html5builder', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\lxml\\html\\_html5builder.py', - 'PYMODULE'), - ('lxml.html._setmixin', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\lxml\\html\\_setmixin.py', - 'PYMODULE'), - ('lxml.html.builder', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\lxml\\html\\builder.py', - 'PYMODULE'), - ('lxml.html.clean', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\lxml\\html\\clean.py', - 'PYMODULE'), - ('lxml.html.defs', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\lxml\\html\\defs.py', - 'PYMODULE'), - ('lxml.html.formfill', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\lxml\\html\\formfill.py', - 'PYMODULE'), - ('lxml.html.html5parser', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\lxml\\html\\html5parser.py', - 'PYMODULE'), - ('lxml.html.soupparser', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\lxml\\html\\soupparser.py', - 'PYMODULE'), - ('lxml.html.usedoctest', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\lxml\\html\\usedoctest.py', - 'PYMODULE'), - ('lxml.includes', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\lxml\\includes\\__init__.py', - 'PYMODULE'), - ('lxml.includes.extlibs', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\lxml\\includes\\extlibs\\__init__.py', - 'PYMODULE'), - ('lxml.includes.libexslt', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\lxml\\includes\\libexslt\\__init__.py', - 'PYMODULE'), - ('lxml.includes.libxml', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\lxml\\includes\\libxml\\__init__.py', - 'PYMODULE'), - ('lxml.includes.libxslt', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\lxml\\includes\\libxslt\\__init__.py', - 'PYMODULE'), - ('lxml.isoschematron', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\lxml\\isoschematron\\__init__.py', - 'PYMODULE'), - ('lxml.pyclasslookup', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\lxml\\pyclasslookup.py', - 'PYMODULE'), - ('lxml.usedoctest', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\lxml\\usedoctest.py', - 'PYMODULE'), - ('lzma', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\lzma.py', - 'PYMODULE'), - ('mimetypes', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\mimetypes.py', - 'PYMODULE'), - ('multiprocessing', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\multiprocessing\\__init__.py', - 'PYMODULE'), - ('multiprocessing.connection', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\multiprocessing\\connection.py', - 'PYMODULE'), - ('multiprocessing.context', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\multiprocessing\\context.py', - 'PYMODULE'), - ('multiprocessing.dummy', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\multiprocessing\\dummy\\__init__.py', - 'PYMODULE'), - ('multiprocessing.dummy.connection', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\multiprocessing\\dummy\\connection.py', - 'PYMODULE'), - ('multiprocessing.forkserver', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\multiprocessing\\forkserver.py', - 'PYMODULE'), - ('multiprocessing.heap', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\multiprocessing\\heap.py', - 'PYMODULE'), - ('multiprocessing.managers', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\multiprocessing\\managers.py', - 'PYMODULE'), - ('multiprocessing.pool', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\multiprocessing\\pool.py', - 'PYMODULE'), - ('multiprocessing.popen_fork', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\multiprocessing\\popen_fork.py', - 'PYMODULE'), - ('multiprocessing.popen_forkserver', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\multiprocessing\\popen_forkserver.py', - 'PYMODULE'), - ('multiprocessing.popen_spawn_posix', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\multiprocessing\\popen_spawn_posix.py', - 'PYMODULE'), - ('multiprocessing.popen_spawn_win32', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\multiprocessing\\popen_spawn_win32.py', - 'PYMODULE'), - ('multiprocessing.process', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\multiprocessing\\process.py', - 'PYMODULE'), - ('multiprocessing.queues', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\multiprocessing\\queues.py', - 'PYMODULE'), - ('multiprocessing.reduction', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\multiprocessing\\reduction.py', - 'PYMODULE'), - ('multiprocessing.resource_sharer', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\multiprocessing\\resource_sharer.py', - 'PYMODULE'), - ('multiprocessing.resource_tracker', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\multiprocessing\\resource_tracker.py', - 'PYMODULE'), - ('multiprocessing.shared_memory', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\multiprocessing\\shared_memory.py', - 'PYMODULE'), - ('multiprocessing.sharedctypes', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\multiprocessing\\sharedctypes.py', - 'PYMODULE'), - ('multiprocessing.spawn', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\multiprocessing\\spawn.py', - 'PYMODULE'), - ('multiprocessing.synchronize', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\multiprocessing\\synchronize.py', - 'PYMODULE'), - ('multiprocessing.util', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\multiprocessing\\util.py', - 'PYMODULE'), - ('netrc', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\netrc.py', - 'PYMODULE'), - ('nturl2path', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\nturl2path.py', - 'PYMODULE'), - ('numbers', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\numbers.py', - 'PYMODULE'), - ('opcode', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\opcode.py', - 'PYMODULE'), - ('optparse', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\optparse.py', - 'PYMODULE'), - ('pathlib', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\pathlib.py', - 'PYMODULE'), - ('pdb', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\pdb.py', - 'PYMODULE'), - ('pickle', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\pickle.py', - 'PYMODULE'), - ('pkgutil', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\pkgutil.py', - 'PYMODULE'), - ('platform', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\platform.py', - 'PYMODULE'), - ('pprint', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\pprint.py', - 'PYMODULE'), - ('py_compile', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\py_compile.py', - 'PYMODULE'), - ('pydoc', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\pydoc.py', - 'PYMODULE'), - ('pydoc_data', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\pydoc_data\\__init__.py', - 'PYMODULE'), - ('pydoc_data.topics', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\pydoc_data\\topics.py', - 'PYMODULE'), - ('queue', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\queue.py', - 'PYMODULE'), - ('quopri', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\quopri.py', - 'PYMODULE'), - ('random', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\random.py', - 'PYMODULE'), - ('requests', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\requests\\__init__.py', - 'PYMODULE'), - ('requests.__version__', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\requests\\__version__.py', - 'PYMODULE'), - ('requests._internal_utils', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\requests\\_internal_utils.py', - 'PYMODULE'), - ('requests.adapters', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\requests\\adapters.py', - 'PYMODULE'), - ('requests.api', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\requests\\api.py', - 'PYMODULE'), - ('requests.auth', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\requests\\auth.py', - 'PYMODULE'), - ('requests.certs', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\requests\\certs.py', - 'PYMODULE'), - ('requests.compat', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\requests\\compat.py', - 'PYMODULE'), - ('requests.cookies', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\requests\\cookies.py', - 'PYMODULE'), - ('requests.exceptions', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\requests\\exceptions.py', - 'PYMODULE'), - ('requests.hooks', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\requests\\hooks.py', - 'PYMODULE'), - ('requests.models', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\requests\\models.py', - 'PYMODULE'), - ('requests.packages', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\requests\\packages.py', - 'PYMODULE'), - ('requests.sessions', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\requests\\sessions.py', - 'PYMODULE'), - ('requests.status_codes', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\requests\\status_codes.py', - 'PYMODULE'), - ('requests.structures', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\requests\\structures.py', - 'PYMODULE'), - ('requests.utils', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\requests\\utils.py', - 'PYMODULE'), - ('runpy', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\runpy.py', - 'PYMODULE'), - ('secrets', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\secrets.py', - 'PYMODULE'), - ('selectors', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\selectors.py', - 'PYMODULE'), - ('shlex', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\shlex.py', - 'PYMODULE'), - ('shutil', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\shutil.py', - 'PYMODULE'), - ('signal', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\signal.py', - 'PYMODULE'), - ('socket', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\socket.py', - 'PYMODULE'), - ('socketserver', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\socketserver.py', - 'PYMODULE'), - ('ssl', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\ssl.py', - 'PYMODULE'), - ('statistics', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\statistics.py', - 'PYMODULE'), - ('string', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\string.py', - 'PYMODULE'), - ('stringprep', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\stringprep.py', - 'PYMODULE'), - ('subprocess', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\subprocess.py', - 'PYMODULE'), - ('sysconfig', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\sysconfig.py', - 'PYMODULE'), - ('tarfile', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\tarfile.py', - 'PYMODULE'), - ('tempfile', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\tempfile.py', - 'PYMODULE'), - ('textwrap', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\textwrap.py', - 'PYMODULE'), - ('threading', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\threading.py', - 'PYMODULE'), - ('token', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\token.py', - 'PYMODULE'), - ('tokenize', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\tokenize.py', - 'PYMODULE'), - ('tools', '-', 'PYMODULE'), - ('tools.API', - 'Z:\\home\\dtyx\\桌面\\yhh\\Report_Generate_Server\\tools\\API.py', - 'PYMODULE'), - ('tools.Get_Json', - 'Z:\\home\\dtyx\\桌面\\yhh\\Report_Generate_Server\\tools\\Get_Json.py', - 'PYMODULE'), - ('tools.argtool', - 'Z:\\home\\dtyx\\桌面\\yhh\\Report_Generate_Server\\tools\\argtool.py', - 'PYMODULE'), - ('tools.content_tools', - 'Z:\\home\\dtyx\\桌面\\yhh\\Report_Generate_Server\\tools\\content_tools.py', - 'PYMODULE'), - ('tools.dataproccess', - 'Z:\\home\\dtyx\\桌面\\yhh\\Report_Generate_Server\\tools\\dataproccess.py', - 'PYMODULE'), - ('tools.defines', - 'Z:\\home\\dtyx\\桌面\\yhh\\Report_Generate_Server\\tools\\defines.py', - 'PYMODULE'), - ('tools.document_tools', - 'Z:\\home\\dtyx\\桌面\\yhh\\Report_Generate_Server\\tools\\document_tools.py', - 'PYMODULE'), - ('tools.get_pictures', - 'Z:\\home\\dtyx\\桌面\\yhh\\Report_Generate_Server\\tools\\get_pictures.py', - 'PYMODULE'), - ('tracemalloc', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\tracemalloc.py', - 'PYMODULE'), - ('tty', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\tty.py', - 'PYMODULE'), - ('typing', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\typing.py', - 'PYMODULE'), - ('typing_extensions', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\typing_extensions.py', - 'PYMODULE'), - ('unittest', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\unittest\\__init__.py', - 'PYMODULE'), - ('unittest._log', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\unittest\\_log.py', - 'PYMODULE'), - ('unittest.async_case', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\unittest\\async_case.py', - 'PYMODULE'), - ('unittest.case', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\unittest\\case.py', - 'PYMODULE'), - ('unittest.loader', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\unittest\\loader.py', - 'PYMODULE'), - ('unittest.main', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\unittest\\main.py', - 'PYMODULE'), - ('unittest.result', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\unittest\\result.py', - 'PYMODULE'), - ('unittest.runner', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\unittest\\runner.py', - 'PYMODULE'), - ('unittest.signals', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\unittest\\signals.py', - 'PYMODULE'), - ('unittest.suite', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\unittest\\suite.py', - 'PYMODULE'), - ('unittest.util', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\unittest\\util.py', - 'PYMODULE'), - ('urllib', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\urllib\\__init__.py', - 'PYMODULE'), - ('urllib.error', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\urllib\\error.py', - 'PYMODULE'), - ('urllib.parse', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\urllib\\parse.py', - 'PYMODULE'), - ('urllib.request', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\urllib\\request.py', - 'PYMODULE'), - ('urllib.response', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\urllib\\response.py', - 'PYMODULE'), - ('urllib3', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\urllib3\\__init__.py', - 'PYMODULE'), - ('urllib3._base_connection', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\urllib3\\_base_connection.py', - 'PYMODULE'), - ('urllib3._collections', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\urllib3\\_collections.py', - 'PYMODULE'), - ('urllib3._request_methods', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\urllib3\\_request_methods.py', - 'PYMODULE'), - ('urllib3._version', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\urllib3\\_version.py', - 'PYMODULE'), - ('urllib3.connection', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\urllib3\\connection.py', - 'PYMODULE'), - ('urllib3.connectionpool', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\urllib3\\connectionpool.py', - 'PYMODULE'), - ('urllib3.contrib', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\urllib3\\contrib\\__init__.py', - 'PYMODULE'), - ('urllib3.contrib.emscripten', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\urllib3\\contrib\\emscripten\\__init__.py', - 'PYMODULE'), - ('urllib3.contrib.emscripten.connection', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\urllib3\\contrib\\emscripten\\connection.py', - 'PYMODULE'), - ('urllib3.contrib.emscripten.fetch', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\urllib3\\contrib\\emscripten\\fetch.py', - 'PYMODULE'), - ('urllib3.contrib.emscripten.request', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\urllib3\\contrib\\emscripten\\request.py', - 'PYMODULE'), - ('urllib3.contrib.emscripten.response', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\urllib3\\contrib\\emscripten\\response.py', - 'PYMODULE'), - ('urllib3.contrib.pyopenssl', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\urllib3\\contrib\\pyopenssl.py', - 'PYMODULE'), - ('urllib3.contrib.socks', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\urllib3\\contrib\\socks.py', - 'PYMODULE'), - ('urllib3.exceptions', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\urllib3\\exceptions.py', - 'PYMODULE'), - ('urllib3.fields', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\urllib3\\fields.py', - 'PYMODULE'), - ('urllib3.filepost', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\urllib3\\filepost.py', - 'PYMODULE'), - ('urllib3.http2', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\urllib3\\http2\\__init__.py', - 'PYMODULE'), - ('urllib3.http2.connection', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\urllib3\\http2\\connection.py', - 'PYMODULE'), - ('urllib3.http2.probe', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\urllib3\\http2\\probe.py', - 'PYMODULE'), - ('urllib3.poolmanager', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\urllib3\\poolmanager.py', - 'PYMODULE'), - ('urllib3.response', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\urllib3\\response.py', - 'PYMODULE'), - ('urllib3.util', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\urllib3\\util\\__init__.py', - 'PYMODULE'), - ('urllib3.util.connection', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\urllib3\\util\\connection.py', - 'PYMODULE'), - ('urllib3.util.proxy', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\urllib3\\util\\proxy.py', - 'PYMODULE'), - ('urllib3.util.request', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\urllib3\\util\\request.py', - 'PYMODULE'), - ('urllib3.util.response', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\urllib3\\util\\response.py', - 'PYMODULE'), - ('urllib3.util.retry', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\urllib3\\util\\retry.py', - 'PYMODULE'), - ('urllib3.util.ssl_', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\urllib3\\util\\ssl_.py', - 'PYMODULE'), - ('urllib3.util.ssl_match_hostname', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\urllib3\\util\\ssl_match_hostname.py', - 'PYMODULE'), - ('urllib3.util.ssltransport', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\urllib3\\util\\ssltransport.py', - 'PYMODULE'), - ('urllib3.util.timeout', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\urllib3\\util\\timeout.py', - 'PYMODULE'), - ('urllib3.util.url', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\urllib3\\util\\url.py', - 'PYMODULE'), - ('urllib3.util.util', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\urllib3\\util\\util.py', - 'PYMODULE'), - ('urllib3.util.wait', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\site-packages\\urllib3\\util\\wait.py', - 'PYMODULE'), - ('utils', - 'Z:\\home\\dtyx\\桌面\\yhh\\Report_Generate_Server\\utils\\__init__.py', - 'PYMODULE'), - ('utils.document_utils', - 'Z:\\home\\dtyx\\桌面\\yhh\\Report_Generate_Server\\utils\\document_utils.py', - 'PYMODULE'), - ('utils.file_utils', - 'Z:\\home\\dtyx\\桌面\\yhh\\Report_Generate_Server\\utils\\file_utils.py', - 'PYMODULE'), - ('uu', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\uu.py', - 'PYMODULE'), - ('webbrowser', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\webbrowser.py', - 'PYMODULE'), - ('xml', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\xml\\__init__.py', - 'PYMODULE'), - ('xml.etree', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\xml\\etree\\__init__.py', - 'PYMODULE'), - ('xml.etree.ElementInclude', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\xml\\etree\\ElementInclude.py', - 'PYMODULE'), - ('xml.etree.ElementPath', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\xml\\etree\\ElementPath.py', - 'PYMODULE'), - ('xml.etree.ElementTree', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\xml\\etree\\ElementTree.py', - 'PYMODULE'), - ('xml.etree.cElementTree', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\xml\\etree\\cElementTree.py', - 'PYMODULE'), - ('xml.parsers', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\xml\\parsers\\__init__.py', - 'PYMODULE'), - ('xml.parsers.expat', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\xml\\parsers\\expat.py', - 'PYMODULE'), - ('xml.sax', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\xml\\sax\\__init__.py', - 'PYMODULE'), - ('xml.sax._exceptions', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\xml\\sax\\_exceptions.py', - 'PYMODULE'), - ('xml.sax.expatreader', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\xml\\sax\\expatreader.py', - 'PYMODULE'), - ('xml.sax.handler', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\xml\\sax\\handler.py', - 'PYMODULE'), - ('xml.sax.saxutils', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\xml\\sax\\saxutils.py', - 'PYMODULE'), - ('xml.sax.xmlreader', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\xml\\sax\\xmlreader.py', - 'PYMODULE'), - ('xmlrpc', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\xmlrpc\\__init__.py', - 'PYMODULE'), - ('xmlrpc.client', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\xmlrpc\\client.py', - 'PYMODULE'), - ('zipfile', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\zipfile.py', - 'PYMODULE'), - ('zipimport', - 'C:\\users\\dtyx\\Local Settings\\Application ' - 'Data\\Programs\\Python\\Python39-32\\lib\\zipimport.py', - 'PYMODULE')]) diff --git a/build/build/base_library.zip b/build/build/base_library.zip deleted file mode 100644 index 42a98d1..0000000 Binary files a/build/build/base_library.zip and /dev/null differ diff --git a/build/build/localpycs/pyimod01_archive.pyc b/build/build/localpycs/pyimod01_archive.pyc deleted file mode 100644 index 167bbf1..0000000 Binary files a/build/build/localpycs/pyimod01_archive.pyc and /dev/null differ diff --git a/build/build/localpycs/pyimod02_importers.pyc b/build/build/localpycs/pyimod02_importers.pyc deleted file mode 100644 index 78c0dd4..0000000 Binary files a/build/build/localpycs/pyimod02_importers.pyc and /dev/null differ diff --git a/build/build/localpycs/pyimod03_ctypes.pyc b/build/build/localpycs/pyimod03_ctypes.pyc deleted file mode 100644 index 1488763..0000000 Binary files a/build/build/localpycs/pyimod03_ctypes.pyc and /dev/null differ diff --git a/build/build/localpycs/pyimod04_pywin32.pyc b/build/build/localpycs/pyimod04_pywin32.pyc deleted file mode 100644 index d9fcd8c..0000000 Binary files a/build/build/localpycs/pyimod04_pywin32.pyc and /dev/null differ diff --git a/build/build/localpycs/struct.pyc b/build/build/localpycs/struct.pyc deleted file mode 100644 index 1bc4ebd..0000000 Binary files a/build/build/localpycs/struct.pyc and /dev/null differ diff --git a/build/build/warn-build.txt b/build/build/warn-build.txt deleted file mode 100644 index bbed4d8..0000000 --- a/build/build/warn-build.txt +++ /dev/null @@ -1,78 +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 _posixsubprocess - imported by subprocess (optional), multiprocessing.util (delayed) -missing module named grp - imported by shutil (optional), tarfile (optional), pathlib (delayed, optional), subprocess (optional) -missing module named pwd - imported by posixpath (delayed, conditional), shutil (optional), tarfile (optional), pathlib (delayed, conditional, optional), subprocess (optional), netrc (delayed, conditional), getpass (delayed), http.server (delayed, optional), webbrowser (delayed) -missing module named org - imported by pickle (optional) -missing module named _frozen_importlib_external - imported by importlib._bootstrap (delayed), importlib (optional), importlib.abc (optional), zipimport (top-level) -excluded module named _frozen_importlib - imported by importlib (optional), importlib.abc (optional), zipimport (top-level) -missing module named pep517 - imported by importlib.metadata (delayed) -missing module named urllib.urlopen - imported by urllib (delayed, optional), lxml.html (delayed, optional) -missing module named urllib.urlencode - imported by urllib (delayed, optional), lxml.html (delayed, optional) -missing module named posix - imported by os (conditional, optional), shutil (conditional), importlib._bootstrap_external (conditional) -missing module named resource - imported by posix (top-level) -missing module named 'org.python' - imported by copy (optional), xml.sax (delayed, conditional) -missing module named _posixshmem - imported by multiprocessing.resource_tracker (conditional), multiprocessing.shared_memory (conditional) -missing module named _scproxy - imported by urllib.request (conditional) -missing module named termios - imported by getpass (optional), tty (top-level) -missing module named 'java.lang' - imported by platform (delayed, optional), xml.sax._exceptions (conditional) -missing module named multiprocessing.BufferTooShort - imported by multiprocessing (top-level), multiprocessing.connection (top-level) -missing module named multiprocessing.AuthenticationError - imported by multiprocessing (top-level), multiprocessing.connection (top-level) -missing module named multiprocessing.get_context - imported by multiprocessing (top-level), multiprocessing.pool (top-level), multiprocessing.managers (top-level), multiprocessing.sharedctypes (top-level) -missing module named multiprocessing.TimeoutError - imported by multiprocessing (top-level), multiprocessing.pool (top-level) -missing module named multiprocessing.set_start_method - imported by multiprocessing (top-level), multiprocessing.spawn (top-level) -missing module named multiprocessing.get_start_method - imported by multiprocessing (top-level), multiprocessing.spawn (top-level) -missing module named pyimod02_importers - imported by C:\users\dtyx\Local Settings\Application Data\Programs\Python\Python39-32\Lib\site-packages\PyInstaller\hooks\rthooks\pyi_rth_pkgutil.py (delayed) -missing module named annotationlib - imported by typing_extensions (conditional) -missing module named htmlentitydefs - imported by lxml.html.soupparser (optional) -missing module named BeautifulSoup - imported by lxml.html.soupparser (optional) -missing module named bs4 - imported by lxml.html.soupparser (optional) -missing module named urlparse - imported by lxml.ElementInclude (optional), lxml.html.html5parser (optional) -missing module named urllib2 - imported by lxml.ElementInclude (optional), lxml.html.html5parser (optional) -missing module named 'html5lib.treebuilders' - imported by lxml.html.html5parser (top-level) -missing module named html5lib - imported by lxml.html._html5builder (top-level), lxml.html.html5parser (top-level) -missing module named 'cython.cimports' - imported by lxml.html.diff (optional) -missing module named cython - imported by lxml.html.diff (optional), lxml.html._difflib (optional) -missing module named lxml_html_clean - imported by lxml.html.clean (optional) -missing module named vms_lib - imported by platform (delayed, optional) -missing module named java - imported by platform (delayed) -missing module named _winreg - imported by platform (delayed, optional) -missing module named readline - imported by cmd (delayed, conditional, optional), code (delayed, conditional, optional), pdb (delayed, optional) -missing module named cssselect - imported by lxml.cssselect (optional) -missing module named asyncio.DefaultEventLoopPolicy - imported by asyncio (delayed, conditional), asyncio.events (delayed, conditional) -missing module named simplejson - imported by requests.compat (conditional, optional) -missing module named dummy_threading - imported by requests.cookies (optional) -missing module named zstandard - imported by urllib3.util.request (optional), urllib3.response (optional) -missing module named compression - imported by urllib3.util.request (optional), urllib3.response (optional) -missing module named 'h2.events' - imported by urllib3.http2.connection (top-level) -missing module named 'h2.connection' - imported by urllib3.http2.connection (top-level) -missing module named h2 - imported by urllib3.http2.connection (top-level) -missing module named brotli - imported by urllib3.util.request (optional), urllib3.response (optional) -missing module named brotlicffi - imported by urllib3.util.request (optional), urllib3.response (optional) -missing module named socks - imported by urllib3.contrib.socks (optional) -missing module named 'typing.io' - imported by importlib.resources (top-level) -missing module named cryptography - imported by urllib3.contrib.pyopenssl (top-level), requests (conditional, optional) -missing module named 'OpenSSL.crypto' - imported by urllib3.contrib.pyopenssl (delayed, conditional) -missing module named 'cryptography.x509' - imported by urllib3.contrib.pyopenssl (delayed, optional) -missing module named OpenSSL - imported by urllib3.contrib.pyopenssl (top-level) -missing module named chardet - imported by requests (optional) -missing module named 'pyodide.ffi' - imported by urllib3.contrib.emscripten.fetch (delayed, optional) -missing module named pyodide - imported by urllib3.contrib.emscripten.fetch (top-level) -missing module named js - imported by urllib3.contrib.emscripten.fetch (top-level) -missing module named olefile - imported by PIL.FpxImagePlugin (top-level), PIL.MicImagePlugin (top-level) -missing module named numpy - imported by PIL._typing (conditional, optional) -missing module named defusedxml - imported by PIL.Image (optional) diff --git a/build/build/xref-build.html b/build/build/xref-build.html deleted file mode 100644 index 247b22f..0000000 --- a/build/build/xref-build.html +++ /dev/null @@ -1,20231 +0,0 @@ - - - - - modulegraph cross reference for Generate_Report.py, pyi_rth_inspect.py, pyi_rth_multiprocessing.py, pyi_rth_pkgutil.py - - - -

modulegraph cross reference for Generate_Report.py, pyi_rth_inspect.py, pyi_rth_multiprocessing.py, pyi_rth_pkgutil.py

- -
- - Generate_Report.py -Script
-imports: - _bootlocale - • _collections_abc - • _weakrefset - • abc - • asyncio - • codecs - • collections - • collections.abc - • copyreg - • core.tables - • datetime - • encodings - • encodings.aliases - • encodings.ascii - • encodings.base64_codec - • encodings.big5 - • encodings.big5hkscs - • encodings.bz2_codec - • encodings.charmap - • encodings.cp037 - • encodings.cp1006 - • encodings.cp1026 - • encodings.cp1125 - • encodings.cp1140 - • encodings.cp1250 - • encodings.cp1251 - • encodings.cp1252 - • encodings.cp1253 - • encodings.cp1254 - • encodings.cp1255 - • encodings.cp1256 - • encodings.cp1257 - • encodings.cp1258 - • encodings.cp273 - • encodings.cp424 - • encodings.cp437 - • encodings.cp500 - • encodings.cp720 - • encodings.cp737 - • encodings.cp775 - • encodings.cp850 - • encodings.cp852 - • encodings.cp855 - • encodings.cp856 - • encodings.cp857 - • encodings.cp858 - • encodings.cp860 - • encodings.cp861 - • encodings.cp862 - • encodings.cp863 - • encodings.cp864 - • encodings.cp865 - • encodings.cp866 - • encodings.cp869 - • encodings.cp874 - • encodings.cp875 - • encodings.cp932 - • encodings.cp949 - • encodings.cp950 - • encodings.euc_jis_2004 - • encodings.euc_jisx0213 - • encodings.euc_jp - • encodings.euc_kr - • encodings.gb18030 - • encodings.gb2312 - • encodings.gbk - • encodings.hex_codec - • encodings.hp_roman8 - • encodings.hz - • encodings.idna - • encodings.iso2022_jp - • encodings.iso2022_jp_1 - • encodings.iso2022_jp_2 - • encodings.iso2022_jp_2004 - • encodings.iso2022_jp_3 - • encodings.iso2022_jp_ext - • encodings.iso2022_kr - • encodings.iso8859_1 - • encodings.iso8859_10 - • encodings.iso8859_11 - • encodings.iso8859_13 - • encodings.iso8859_14 - • encodings.iso8859_15 - • encodings.iso8859_16 - • encodings.iso8859_2 - • encodings.iso8859_3 - • encodings.iso8859_4 - • encodings.iso8859_5 - • encodings.iso8859_6 - • encodings.iso8859_7 - • encodings.iso8859_8 - • encodings.iso8859_9 - • encodings.johab - • encodings.koi8_r - • encodings.koi8_t - • encodings.koi8_u - • encodings.kz1048 - • encodings.latin_1 - • encodings.mac_arabic - • encodings.mac_croatian - • encodings.mac_cyrillic - • encodings.mac_farsi - • encodings.mac_greek - • encodings.mac_iceland - • encodings.mac_latin2 - • encodings.mac_roman - • encodings.mac_romanian - • encodings.mac_turkish - • encodings.mbcs - • encodings.oem - • encodings.palmos - • encodings.ptcp154 - • encodings.punycode - • encodings.quopri_codec - • encodings.raw_unicode_escape - • encodings.rot_13 - • encodings.shift_jis - • encodings.shift_jis_2004 - • encodings.shift_jisx0213 - • encodings.tis_620 - • encodings.undefined - • encodings.unicode_escape - • encodings.utf_16 - • encodings.utf_16_be - • encodings.utf_16_le - • encodings.utf_32 - • encodings.utf_32_be - • encodings.utf_32_le - • encodings.utf_7 - • encodings.utf_8 - • encodings.utf_8_sig - • encodings.uu_codec - • encodings.zlib_codec - • enum - • functools - • genericpath - • heapq - • io - • keyword - • linecache - • locale - • ntpath - • operator - • os - • pathlib - • posixpath - • pyi_rth_inspect.py - • pyi_rth_multiprocessing.py - • pyi_rth_pkgutil.py - • re - • reprlib - • sre_compile - • sre_constants - • sre_parse - • stat - • tools.Get_Json - • tools.argtool - • tools.content_tools - • tools.dataproccess - • tools.defines - • tools.document_tools - • tools.get_pictures - • traceback - • types - • warnings - • weakref - -
- -
- -
- - pyi_rth_inspect.py -Script
-imports: - inspect - • os - • sys - • zipfile - -
-
-imported by: - Generate_Report.py - -
- -
- -
- - pyi_rth_multiprocessing.py -Script
-imports: - multiprocessing - • multiprocessing.spawn - • subprocess - • sys - -
-
-imported by: - Generate_Report.py - -
- -
- -
- - pyi_rth_pkgutil.py -Script
-imports: - pkgutil - • pyimod02_importers - -
-
-imported by: - Generate_Report.py - -
- -
- -
- - 'OpenSSL.crypto' -MissingModule
-imported by: - urllib3.contrib.pyopenssl - -
- -
- -
- - 'cryptography.x509' -MissingModule
-imported by: - urllib3.contrib.pyopenssl - -
- -
- -
- - 'cython.cimports' -MissingModule
-imported by: - lxml.html.diff - -
- -
- -
- - 'h2.connection' -MissingModule
-imported by: - urllib3.http2.connection - -
- -
- -
- - 'h2.events' -MissingModule
-imported by: - urllib3.http2.connection - -
- -
- -
- - 'html5lib.treebuilders' -MissingModule
-imported by: - lxml.html.html5parser - -
- -
- -
- - 'java.lang' -MissingModule
-imported by: - platform - • xml.sax._exceptions - -
- -
- -
- - 'org.python' -MissingModule
-imported by: - copy - • xml.sax - -
- -
- -
- - 'pyodide.ffi' -MissingModule
-imported by: - urllib3.contrib.emscripten.fetch - -
- -
- -
- - 'typing.io' -MissingModule
-imported by: - importlib.resources - -
- -
- -
- - BeautifulSoup -MissingModule
-imported by: - lxml.html.soupparser - -
- -
- -
- - OpenSSL -MissingModule
-imported by: - urllib3.contrib.pyopenssl - -
- -
- -
- - PIL -Package
-imports: - PIL - • PIL.BmpImagePlugin - • PIL.ExifTags - • PIL.GifImagePlugin - • PIL.GimpGradientFile - • PIL.GimpPaletteFile - • PIL.Image - • PIL.ImageChops - • PIL.ImageCms - • PIL.ImageColor - • PIL.ImageFile - • PIL.ImageFilter - • PIL.ImageMath - • PIL.ImageMode - • PIL.ImageOps - • PIL.ImagePalette - • PIL.ImageQt - • PIL.ImageSequence - • PIL.ImageShow - • PIL.ImageTk - • PIL.ImageWin - • PIL.Jpeg2KImagePlugin - • PIL.JpegImagePlugin - • PIL.PaletteFile - • PIL.PdfParser - • PIL.PngImagePlugin - • PIL.PpmImagePlugin - • PIL.TiffImagePlugin - • PIL.TiffTags - • PIL._avif - • PIL._imaging - • PIL._imagingcms - • PIL._imagingmath - • PIL._imagingtk - • PIL._version - • PIL._webp - • PIL.features - • __future__ - -
-
-imported by: - PIL - • PIL.AvifImagePlugin - • PIL.BlpImagePlugin - • PIL.BmpImagePlugin - • PIL.BufrStubImagePlugin - • PIL.CurImagePlugin - • PIL.DcxImagePlugin - • PIL.DdsImagePlugin - • PIL.EpsImagePlugin - • PIL.ExifTags - • PIL.FitsImagePlugin - • PIL.FliImagePlugin - • PIL.FpxImagePlugin - • PIL.FtexImagePlugin - • PIL.GbrImagePlugin - • PIL.GifImagePlugin - • PIL.GimpGradientFile - • PIL.GimpPaletteFile - • PIL.GribStubImagePlugin - • PIL.Hdf5StubImagePlugin - • PIL.IcnsImagePlugin - • PIL.IcoImagePlugin - • PIL.ImImagePlugin - • PIL.Image - • PIL.ImageChops - • PIL.ImageCms - • PIL.ImageColor - • PIL.ImageFile - • PIL.ImageFilter - • PIL.ImageMath - • PIL.ImageMode - • PIL.ImageOps - • PIL.ImagePalette - • PIL.ImageQt - • PIL.ImageSequence - • PIL.ImageShow - • PIL.ImageTk - • PIL.ImageWin - • PIL.ImtImagePlugin - • PIL.IptcImagePlugin - • PIL.Jpeg2KImagePlugin - • PIL.JpegImagePlugin - • PIL.JpegPresets - • PIL.McIdasImagePlugin - • PIL.MicImagePlugin - • PIL.MpegImagePlugin - • PIL.MpoImagePlugin - • PIL.MspImagePlugin - • PIL.PaletteFile - • PIL.PalmImagePlugin - • PIL.PcdImagePlugin - • PIL.PcxImagePlugin - • PIL.PdfImagePlugin - • PIL.PdfParser - • PIL.PixarImagePlugin - • PIL.PngImagePlugin - • PIL.PpmImagePlugin - • PIL.PsdImagePlugin - • PIL.QoiImagePlugin - • PIL.SgiImagePlugin - • PIL.SpiderImagePlugin - • PIL.SunImagePlugin - • PIL.TgaImagePlugin - • PIL.TiffImagePlugin - • PIL.TiffTags - • PIL.WebPImagePlugin - • PIL.WmfImagePlugin - • PIL.XVThumbImagePlugin - • PIL.XbmImagePlugin - • PIL.XpmImagePlugin - • PIL._avif - • PIL._binary - • PIL._deprecate - • PIL._imaging - • PIL._imagingcms - • PIL._imagingmath - • PIL._imagingtk - • PIL._typing - • PIL._util - • PIL._version - • PIL._webp - • PIL.features - • tools.content_tools - • tools.get_pictures - -
- -
- -
- - PIL.AvifImagePlugin -SourceModule
-imports: - PIL - • PIL.ExifTags - • PIL.Image - • PIL.ImageFile - • PIL._avif - • __future__ - • io - • os - • typing - -
-
-imported by: - PIL.Image - -
- -
- -
- - PIL.BlpImagePlugin -SourceModule
-imports: - PIL - • PIL.Image - • PIL.ImageFile - • PIL.JpegImagePlugin - • __future__ - • abc - • enum - • io - • os - • struct - • typing - -
-
-imported by: - PIL.Image - -
- -
- -
- - PIL.BmpImagePlugin -SourceModule
-imports: - PIL - • PIL.Image - • PIL.ImageFile - • PIL.ImagePalette - • PIL._binary - • __future__ - • os - • typing - -
-
-imported by: - PIL - • PIL.CurImagePlugin - • PIL.IcoImagePlugin - • PIL.Image - -
- -
- -
- - PIL.BufrStubImagePlugin -SourceModule
-imports: - PIL - • PIL.Image - • PIL.ImageFile - • __future__ - • os - • typing - -
-
-imported by: - PIL.Image - -
- -
- -
- - PIL.CurImagePlugin -SourceModule
-imports: - PIL - • PIL.BmpImagePlugin - • PIL.Image - • PIL.ImageFile - • PIL._binary - • __future__ - -
-
-imported by: - PIL.Image - -
- -
- -
- - PIL.DcxImagePlugin -SourceModule
-imports: - PIL - • PIL.Image - • PIL.PcxImagePlugin - • PIL._binary - • PIL._util - • __future__ - -
-
-imported by: - PIL.Image - -
- -
- -
- - PIL.DdsImagePlugin -SourceModule
-imports: - PIL - • PIL.Image - • PIL.ImageFile - • PIL.ImagePalette - • PIL._binary - • __future__ - • enum - • io - • struct - • sys - • typing - -
-
-imported by: - PIL.Image - -
- -
- -
- - PIL.EpsImagePlugin -SourceModule
-imports: - PIL - • PIL.Image - • PIL.ImageFile - • PIL._binary - • __future__ - • io - • os - • re - • shutil - • subprocess - • sys - • tempfile - • typing - -
-
-imported by: - PIL.Image - -
- -
- -
- - PIL.ExifTags -SourceModule
-imports: - PIL - • __future__ - • enum - -
-
-imported by: - PIL - • PIL.AvifImagePlugin - • PIL.Image - • PIL.ImageFile - • PIL.ImageOps - • PIL.TiffImagePlugin - -
- -
- -
- - PIL.FitsImagePlugin -SourceModule
-imports: - PIL - • PIL.Image - • PIL.ImageFile - • __future__ - • gzip - • math - -
-
-imported by: - PIL.Image - -
- -
- -
- - PIL.FliImagePlugin -SourceModule
-imports: - PIL - • PIL.Image - • PIL.ImageFile - • PIL.ImagePalette - • PIL._binary - • PIL._util - • __future__ - • os - -
-
-imported by: - PIL.Image - -
- -
- -
- - PIL.FpxImagePlugin -SourceModule
-imports: - PIL - • PIL.Image - • PIL.ImageFile - • PIL._binary - • __future__ - • olefile - -
-
-imported by: - PIL.Image - -
- -
- -
- - PIL.FtexImagePlugin -SourceModule
-imports: - PIL - • PIL.Image - • PIL.ImageFile - • __future__ - • enum - • io - • struct - -
-
-imported by: - PIL.Image - -
- -
- -
- - PIL.GbrImagePlugin -SourceModule
-imports: - PIL - • PIL.Image - • PIL.ImageFile - • PIL._binary - • __future__ - -
-
-imported by: - PIL.Image - -
- -
- -
- - PIL.GifImagePlugin -SourceModule
-imports: - PIL - • PIL.Image - • PIL.ImageChops - • PIL.ImageFile - • PIL.ImageMath - • PIL.ImageOps - • PIL.ImagePalette - • PIL.ImageSequence - • PIL._binary - • PIL._imaging - • PIL._typing - • PIL._util - • __future__ - • copy - • enum - • functools - • io - • itertools - • math - • os - • subprocess - • typing - -
-
-imported by: - PIL - • PIL.Image - -
- -
- -
- - PIL.GimpGradientFile -SourceModule
-imports: - PIL - • PIL._binary - • __future__ - • math - • typing - -
-
-imported by: - PIL - • PIL.ImagePalette - -
- -
- -
- - PIL.GimpPaletteFile -SourceModule
-imports: - PIL - • __future__ - • io - • re - • typing - -
-
-imported by: - PIL - • PIL.ImagePalette - -
- -
- -
- - PIL.GribStubImagePlugin -SourceModule
-imports: - PIL - • PIL.Image - • PIL.ImageFile - • __future__ - • os - • typing - -
-
-imported by: - PIL.Image - -
- -
- -
- - PIL.Hdf5StubImagePlugin -SourceModule
-imports: - PIL - • PIL.Image - • PIL.ImageFile - • __future__ - • os - • typing - -
-
-imported by: - PIL.Image - -
- -
- -
- - PIL.IcnsImagePlugin -SourceModule
-imports: - PIL - • PIL.Image - • PIL.ImageFile - • PIL.Jpeg2KImagePlugin - • PIL.PngImagePlugin - • PIL._deprecate - • PIL.features - • __future__ - • io - • os - • struct - • sys - • typing - -
-
-imported by: - PIL.Image - -
- -
- -
- - PIL.IcoImagePlugin -SourceModule
-imports: - PIL - • PIL.BmpImagePlugin - • PIL.Image - • PIL.ImageFile - • PIL.PngImagePlugin - • PIL._binary - • __future__ - • io - • math - • typing - • warnings - -
-
-imported by: - PIL.Image - -
- -
- -
- - PIL.ImImagePlugin -SourceModule
-imports: - PIL - • PIL.Image - • PIL.ImageFile - • PIL.ImagePalette - • PIL._util - • __future__ - • os - • re - • typing - -
-
-imported by: - PIL.Image - -
- -
- -
- - PIL.Image -SourceModule
-imports: - PIL - • PIL.AvifImagePlugin - • PIL.BlpImagePlugin - • PIL.BmpImagePlugin - • PIL.BufrStubImagePlugin - • PIL.CurImagePlugin - • PIL.DcxImagePlugin - • PIL.DdsImagePlugin - • PIL.EpsImagePlugin - • PIL.ExifTags - • PIL.FitsImagePlugin - • PIL.FliImagePlugin - • PIL.FpxImagePlugin - • PIL.FtexImagePlugin - • PIL.GbrImagePlugin - • PIL.GifImagePlugin - • PIL.GribStubImagePlugin - • PIL.Hdf5StubImagePlugin - • PIL.IcnsImagePlugin - • PIL.IcoImagePlugin - • PIL.ImImagePlugin - • PIL.ImageCms - • PIL.ImageColor - • PIL.ImageFile - • PIL.ImageFilter - • PIL.ImageMode - • PIL.ImagePalette - • PIL.ImageQt - • PIL.ImageShow - • PIL.ImtImagePlugin - • PIL.IptcImagePlugin - • PIL.Jpeg2KImagePlugin - • PIL.JpegImagePlugin - • PIL.McIdasImagePlugin - • PIL.MicImagePlugin - • PIL.MpegImagePlugin - • PIL.MpoImagePlugin - • PIL.MspImagePlugin - • PIL.PalmImagePlugin - • PIL.PcdImagePlugin - • PIL.PcxImagePlugin - • PIL.PdfImagePlugin - • PIL.PixarImagePlugin - • PIL.PngImagePlugin - • PIL.PpmImagePlugin - • PIL.PsdImagePlugin - • PIL.QoiImagePlugin - • PIL.SgiImagePlugin - • PIL.SpiderImagePlugin - • PIL.SunImagePlugin - • PIL.TgaImagePlugin - • PIL.TiffImagePlugin - • PIL.TiffTags - • PIL.WebPImagePlugin - • PIL.WmfImagePlugin - • PIL.XVThumbImagePlugin - • PIL.XbmImagePlugin - • PIL.XpmImagePlugin - • PIL._binary - • PIL._deprecate - • PIL._imaging - • PIL._typing - • PIL._util - • __future__ - • abc - • atexit - • builtins - • collections.abc - • defusedxml - • enum - • io - • logging - • math - • mmap - • os - • re - • struct - • sys - • tempfile - • types - • typing - • warnings - • xml.etree.ElementTree - -
-
-imported by: - PIL - • PIL.AvifImagePlugin - • PIL.BlpImagePlugin - • PIL.BmpImagePlugin - • PIL.BufrStubImagePlugin - • PIL.CurImagePlugin - • PIL.DcxImagePlugin - • PIL.DdsImagePlugin - • PIL.EpsImagePlugin - • PIL.FitsImagePlugin - • PIL.FliImagePlugin - • PIL.FpxImagePlugin - • PIL.FtexImagePlugin - • PIL.GbrImagePlugin - • PIL.GifImagePlugin - • PIL.GribStubImagePlugin - • PIL.Hdf5StubImagePlugin - • PIL.IcnsImagePlugin - • PIL.IcoImagePlugin - • PIL.ImImagePlugin - • PIL.ImageChops - • PIL.ImageCms - • PIL.ImageColor - • PIL.ImageFile - • PIL.ImageFilter - • PIL.ImageMath - • PIL.ImageOps - • PIL.ImagePalette - • PIL.ImageQt - • PIL.ImageSequence - • PIL.ImageShow - • PIL.ImageTk - • PIL.ImageWin - • PIL.ImtImagePlugin - • PIL.IptcImagePlugin - • PIL.Jpeg2KImagePlugin - • PIL.JpegImagePlugin - • PIL.McIdasImagePlugin - • PIL.MicImagePlugin - • PIL.MpegImagePlugin - • PIL.MpoImagePlugin - • PIL.MspImagePlugin - • PIL.PalmImagePlugin - • PIL.PcdImagePlugin - • PIL.PcxImagePlugin - • PIL.PdfImagePlugin - • PIL.PixarImagePlugin - • PIL.PngImagePlugin - • PIL.PpmImagePlugin - • PIL.PsdImagePlugin - • PIL.QoiImagePlugin - • PIL.SgiImagePlugin - • PIL.SpiderImagePlugin - • PIL.SunImagePlugin - • PIL.TgaImagePlugin - • PIL.TiffImagePlugin - • PIL.WebPImagePlugin - • PIL.WmfImagePlugin - • PIL.XVThumbImagePlugin - • PIL.XbmImagePlugin - • PIL.XpmImagePlugin - • PIL.features - • tools.content_tools - • tools.get_pictures - -
- -
- -
- - PIL.ImageChops -SourceModule
-imports: - PIL - • PIL.Image - • __future__ - -
-
-imported by: - PIL - • PIL.GifImagePlugin - • PIL.PngImagePlugin - -
- -
- -
- - PIL.ImageCms -SourceModule
-imports: - PIL - • PIL.Image - • PIL.ImageWin - • PIL._deprecate - • PIL._imagingcms - • PIL._typing - • PIL._util - • __future__ - • enum - • functools - • operator - • sys - • typing - -
-
-imported by: - PIL - • PIL.Image - -
- -
- -
- - PIL.ImageColor -SourceModule
-imports: - PIL - • PIL.Image - • __future__ - • colorsys - • functools - • re - -
-
-imported by: - PIL - • PIL.Image - • PIL.ImageOps - • PIL.ImagePalette - -
- -
- -
- - PIL.ImageFile -SourceModule
-imports: - PIL - • PIL.ExifTags - • PIL.Image - • PIL.TiffImagePlugin - • PIL._deprecate - • PIL._typing - • PIL._util - • __future__ - • abc - • io - • itertools - • logging - • mmap - • os - • struct - • typing - -
-
-imported by: - PIL - • PIL.AvifImagePlugin - • PIL.BlpImagePlugin - • PIL.BmpImagePlugin - • PIL.BufrStubImagePlugin - • PIL.CurImagePlugin - • PIL.DdsImagePlugin - • PIL.EpsImagePlugin - • PIL.FitsImagePlugin - • PIL.FliImagePlugin - • PIL.FpxImagePlugin - • PIL.FtexImagePlugin - • PIL.GbrImagePlugin - • PIL.GifImagePlugin - • PIL.GribStubImagePlugin - • PIL.Hdf5StubImagePlugin - • PIL.IcnsImagePlugin - • PIL.IcoImagePlugin - • PIL.ImImagePlugin - • PIL.Image - • PIL.ImageQt - • PIL.ImageTk - • PIL.ImtImagePlugin - • PIL.IptcImagePlugin - • PIL.Jpeg2KImagePlugin - • PIL.JpegImagePlugin - • PIL.McIdasImagePlugin - • PIL.MpegImagePlugin - • PIL.MpoImagePlugin - • PIL.MspImagePlugin - • PIL.PalmImagePlugin - • PIL.PcdImagePlugin - • PIL.PcxImagePlugin - • PIL.PdfImagePlugin - • PIL.PixarImagePlugin - • PIL.PngImagePlugin - • PIL.PpmImagePlugin - • PIL.PsdImagePlugin - • PIL.QoiImagePlugin - • PIL.SgiImagePlugin - • PIL.SpiderImagePlugin - • PIL.SunImagePlugin - • PIL.TgaImagePlugin - • PIL.TiffImagePlugin - • PIL.WebPImagePlugin - • PIL.WmfImagePlugin - • PIL.XVThumbImagePlugin - • PIL.XbmImagePlugin - • PIL.XpmImagePlugin - -
- -
- -
- - PIL.ImageFilter -SourceModule
-imports: - PIL - • PIL.Image - • PIL._imaging - • PIL._typing - • __future__ - • abc - • collections.abc - • functools - • types - • typing - -
-
-imported by: - PIL - • PIL.Image - -
- -
- -
- - PIL.ImageMath -SourceModule
-imports: - PIL - • PIL.Image - • PIL._deprecate - • PIL._imagingmath - • __future__ - • builtins - • types - • typing - -
-
-imported by: - PIL - • PIL.GifImagePlugin - -
- -
- -
- - PIL.ImageMode -SourceModule
-imports: - PIL - • PIL._deprecate - • __future__ - • functools - • sys - • typing - -
-
-imported by: - PIL - • PIL.Image - -
- -
- -
- - PIL.ImageOps -SourceModule
-imports: - PIL - • PIL.ExifTags - • PIL.Image - • PIL.ImageColor - • PIL.ImagePalette - • __future__ - • collections.abc - • functools - • operator - • re - • typing - -
-
-imported by: - PIL - • PIL.GifImagePlugin - • PIL.TiffImagePlugin - -
- -
- -
- - PIL.ImagePalette -SourceModule
-imports: - PIL - • PIL.GimpGradientFile - • PIL.GimpPaletteFile - • PIL.Image - • PIL.ImageColor - • PIL.PaletteFile - • __future__ - • array - • collections.abc - • random - • typing - -
-
-imported by: - PIL - • PIL.BmpImagePlugin - • PIL.DdsImagePlugin - • PIL.FliImagePlugin - • PIL.GifImagePlugin - • PIL.ImImagePlugin - • PIL.Image - • PIL.ImageOps - • PIL.Jpeg2KImagePlugin - • PIL.PcxImagePlugin - • PIL.PngImagePlugin - • PIL.PsdImagePlugin - • PIL.SunImagePlugin - • PIL.TgaImagePlugin - • PIL.TiffImagePlugin - • PIL.XVThumbImagePlugin - • PIL.XpmImagePlugin - -
- -
- -
- - PIL.ImageQt -SourceModule
-imports: - PIL - • PIL.Image - • PIL.ImageFile - • PIL._util - • __future__ - • io - • sys - • typing - -
-
-imported by: - PIL - • PIL.Image - -
- -
- -
- - PIL.ImageSequence -SourceModule
-imports: - PIL - • PIL.Image - • __future__ - • typing - -
-
-imported by: - PIL - • PIL.GifImagePlugin - • PIL.MpoImagePlugin - • PIL.PdfImagePlugin - • PIL.PngImagePlugin - -
- -
- -
- - PIL.ImageShow -SourceModule
-imports: - PIL - • PIL.Image - • __future__ - • abc - • os - • shlex - • shutil - • subprocess - • sys - • typing - -
-
-imported by: - PIL - • PIL.Image - -
- -
- -
- - PIL.ImageTk -SourceModule
-imports: - PIL - • PIL.Image - • PIL.ImageFile - • PIL._imagingtk - • PIL._typing - • __future__ - • io - • typing - -
-
-imported by: - PIL - • PIL.SpiderImagePlugin - -
- -
- -
- - PIL.ImageWin -SourceModule
-imports: - PIL - • PIL.Image - • __future__ - -
-
-imported by: - PIL - • PIL.ImageCms - -
- -
- -
- - PIL.ImtImagePlugin -SourceModule
-imports: - PIL - • PIL.Image - • PIL.ImageFile - • __future__ - • re - -
-
-imported by: - PIL.Image - -
- -
- -
- - PIL.IptcImagePlugin -SourceModule
-imports: - PIL - • PIL.Image - • PIL.ImageFile - • PIL.JpegImagePlugin - • PIL.TiffImagePlugin - • PIL._binary - • PIL._deprecate - • __future__ - • collections.abc - • io - • typing - -
-
-imported by: - PIL.Image - -
- -
- -
- - PIL.Jpeg2KImagePlugin -SourceModule
-imports: - PIL - • PIL.Image - • PIL.ImageFile - • PIL.ImagePalette - • PIL._binary - • __future__ - • collections.abc - • io - • os - • struct - • typing - -
-
-imported by: - PIL - • PIL.IcnsImagePlugin - • PIL.Image - -
- -
- -
- - PIL.JpegImagePlugin -SourceModule
-imports: - PIL - • PIL.Image - • PIL.ImageFile - • PIL.JpegPresets - • PIL.MpoImagePlugin - • PIL.TiffImagePlugin - • PIL._binary - • PIL._deprecate - • __future__ - • array - • io - • math - • os - • struct - • subprocess - • sys - • tempfile - • typing - • warnings - -
-
-imported by: - PIL - • PIL.BlpImagePlugin - • PIL.Image - • PIL.IptcImagePlugin - • PIL.MpoImagePlugin - -
- -
- -
- - PIL.JpegPresets -SourceModule
-imports: - PIL - • __future__ - -
-
-imported by: - PIL.JpegImagePlugin - -
- -
- -
- - PIL.McIdasImagePlugin -SourceModule
-imports: - PIL - • PIL.Image - • PIL.ImageFile - • __future__ - • struct - -
-
-imported by: - PIL.Image - -
- -
- -
- - PIL.MicImagePlugin -SourceModule
-imports: - PIL - • PIL.Image - • PIL.TiffImagePlugin - • __future__ - • olefile - -
-
-imported by: - PIL.Image - -
- -
- -
- - PIL.MpegImagePlugin -SourceModule
-imports: - PIL - • PIL.Image - • PIL.ImageFile - • PIL._binary - • PIL._typing - • __future__ - -
-
-imported by: - PIL.Image - -
- -
- -
- - PIL.MpoImagePlugin -SourceModule
-imports: - PIL - • PIL.Image - • PIL.ImageFile - • PIL.ImageSequence - • PIL.JpegImagePlugin - • PIL.TiffImagePlugin - • PIL._binary - • PIL._util - • __future__ - • os - • struct - • typing - -
-
-imported by: - PIL.Image - • PIL.JpegImagePlugin - -
- -
- -
- - PIL.MspImagePlugin -SourceModule
-imports: - PIL - • PIL.Image - • PIL.ImageFile - • PIL._binary - • __future__ - • io - • struct - • typing - -
-
-imported by: - PIL.Image - -
- -
- -
- - PIL.PaletteFile -SourceModule
-imports: - PIL - • PIL._binary - • __future__ - • typing - -
-
-imported by: - PIL - • PIL.ImagePalette - -
- -
- -
- - PIL.PalmImagePlugin -SourceModule
-imports: - PIL - • PIL.Image - • PIL.ImageFile - • PIL._binary - • __future__ - • typing - -
-
-imported by: - PIL.Image - -
- -
- -
- - PIL.PcdImagePlugin -SourceModule
-imports: - PIL - • PIL.Image - • PIL.ImageFile - • __future__ - -
-
-imported by: - PIL.Image - -
- -
- -
- - PIL.PcxImagePlugin -SourceModule
-imports: - PIL - • PIL.Image - • PIL.ImageFile - • PIL.ImagePalette - • PIL._binary - • __future__ - • io - • logging - • typing - -
-
-imported by: - PIL.DcxImagePlugin - • PIL.Image - -
- -
- -
- - PIL.PdfImagePlugin -SourceModule
-imports: - PIL - • PIL.Image - • PIL.ImageFile - • PIL.ImageSequence - • PIL.PdfParser - • PIL.features - • __future__ - • io - • math - • os - • time - • typing - -
-
-imported by: - PIL.Image - -
- -
- -
- - PIL.PdfParser -SourceModule
-imports: - PIL - • __future__ - • calendar - • codecs - • collections - • mmap - • os - • re - • time - • typing - • zlib - -
-
-imported by: - PIL - • PIL.PdfImagePlugin - -
- -
- -
- - PIL.PixarImagePlugin -SourceModule
-imports: - PIL - • PIL.Image - • PIL.ImageFile - • PIL._binary - • __future__ - -
-
-imported by: - PIL.Image - -
- -
- -
- - PIL.PngImagePlugin -SourceModule
-imports: - PIL - • PIL.Image - • PIL.ImageChops - • PIL.ImageFile - • PIL.ImagePalette - • PIL.ImageSequence - • PIL._binary - • PIL._deprecate - • PIL._imaging - • PIL._util - • __future__ - • collections.abc - • enum - • io - • itertools - • logging - • re - • struct - • typing - • warnings - • zlib - -
-
-imported by: - PIL - • PIL.IcnsImagePlugin - • PIL.IcoImagePlugin - • PIL.Image - -
- -
- -
- - PIL.PpmImagePlugin -SourceModule
-imports: - PIL - • PIL.Image - • PIL.ImageFile - • PIL._binary - • __future__ - • math - • typing - -
-
-imported by: - PIL - • PIL.Image - -
- -
- -
- - PIL.PsdImagePlugin -SourceModule
-imports: - PIL - • PIL.Image - • PIL.ImageFile - • PIL.ImagePalette - • PIL._binary - • PIL._util - • __future__ - • functools - • io - • typing - -
-
-imported by: - PIL.Image - -
- -
- -
- - PIL.QoiImagePlugin -SourceModule
-imports: - PIL - • PIL.Image - • PIL.ImageFile - • PIL._binary - • __future__ - • os - • typing - -
-
-imported by: - PIL.Image - -
- -
- -
- - PIL.SgiImagePlugin -SourceModule
-imports: - PIL - • PIL.Image - • PIL.ImageFile - • PIL._binary - • __future__ - • os - • struct - • typing - -
-
-imported by: - PIL.Image - -
- -
- -
- - PIL.SpiderImagePlugin -SourceModule
-imports: - PIL - • PIL.Image - • PIL.ImageFile - • PIL.ImageTk - • PIL._util - • __future__ - • os - • struct - • sys - • typing - -
-
-imported by: - PIL.Image - -
- -
- -
- - PIL.SunImagePlugin -SourceModule
-imports: - PIL - • PIL.Image - • PIL.ImageFile - • PIL.ImagePalette - • PIL._binary - • __future__ - -
-
-imported by: - PIL.Image - -
- -
- -
- - PIL.TgaImagePlugin -SourceModule
-imports: - PIL - • PIL.Image - • PIL.ImageFile - • PIL.ImagePalette - • PIL._binary - • __future__ - • typing - • warnings - -
-
-imported by: - PIL.Image - -
- -
- -
- - PIL.TiffImagePlugin -SourceModule
-imports: - PIL - • PIL.ExifTags - • PIL.Image - • PIL.ImageFile - • PIL.ImageOps - • PIL.ImagePalette - • PIL.TiffTags - • PIL._binary - • PIL._deprecate - • PIL._typing - • PIL._util - • __future__ - • collections.abc - • fractions - • io - • itertools - • logging - • math - • numbers - • os - • struct - • typing - • warnings - -
-
-imported by: - PIL - • PIL.Image - • PIL.ImageFile - • PIL.IptcImagePlugin - • PIL.JpegImagePlugin - • PIL.MicImagePlugin - • PIL.MpoImagePlugin - -
- -
- -
- - PIL.TiffTags -SourceModule
-imports: - PIL - • __future__ - • typing - -
-
-imported by: - PIL - • PIL.Image - • PIL.TiffImagePlugin - -
- -
- -
- - PIL.WebPImagePlugin -SourceModule
-imports: - PIL - • PIL.Image - • PIL.ImageFile - • PIL._webp - • __future__ - • io - • typing - -
-
-imported by: - PIL.Image - -
- -
- -
- - PIL.WmfImagePlugin -SourceModule
-imports: - PIL - • PIL.Image - • PIL.ImageFile - • PIL._binary - • __future__ - • typing - -
-
-imported by: - PIL.Image - -
- -
- -
- - PIL.XVThumbImagePlugin -SourceModule
-imports: - PIL - • PIL.Image - • PIL.ImageFile - • PIL.ImagePalette - • PIL._binary - • __future__ - -
-
-imported by: - PIL.Image - -
- -
- -
- - PIL.XbmImagePlugin -SourceModule
-imports: - PIL - • PIL.Image - • PIL.ImageFile - • __future__ - • re - • typing - -
-
-imported by: - PIL.Image - -
- -
- -
- - PIL.XpmImagePlugin -SourceModule
-imports: - PIL - • PIL.Image - • PIL.ImageFile - • PIL.ImagePalette - • PIL._binary - • __future__ - • re - -
-
-imported by: - PIL.Image - -
- -
- -
- - PIL._avif C:\users\dtyx\Local Settings\Application Data\Programs\Python\Python39-32\lib\site-packages\PIL\_avif.cp39-win32.pyd
-imports: - PIL - • typing - -
-
-imported by: - PIL - • PIL.AvifImagePlugin - -
- -
- -
- - PIL._binary -SourceModule
-imports: - PIL - • __future__ - • struct - -
-
-imported by: - PIL.BmpImagePlugin - • PIL.CurImagePlugin - • PIL.DcxImagePlugin - • PIL.DdsImagePlugin - • PIL.EpsImagePlugin - • PIL.FliImagePlugin - • PIL.FpxImagePlugin - • PIL.GbrImagePlugin - • PIL.GifImagePlugin - • PIL.GimpGradientFile - • PIL.IcoImagePlugin - • PIL.Image - • PIL.IptcImagePlugin - • PIL.Jpeg2KImagePlugin - • PIL.JpegImagePlugin - • PIL.MpegImagePlugin - • PIL.MpoImagePlugin - • PIL.MspImagePlugin - • PIL.PaletteFile - • PIL.PalmImagePlugin - • PIL.PcxImagePlugin - • PIL.PixarImagePlugin - • PIL.PngImagePlugin - • PIL.PpmImagePlugin - • PIL.PsdImagePlugin - • PIL.QoiImagePlugin - • PIL.SgiImagePlugin - • PIL.SunImagePlugin - • PIL.TgaImagePlugin - • PIL.TiffImagePlugin - • PIL.WmfImagePlugin - • PIL.XVThumbImagePlugin - • PIL.XpmImagePlugin - -
- -
- -
- - PIL._deprecate -SourceModule
-imports: - PIL - • __future__ - • warnings - -
-
-imported by: - PIL.IcnsImagePlugin - • PIL.Image - • PIL.ImageCms - • PIL.ImageFile - • PIL.ImageMath - • PIL.ImageMode - • PIL.IptcImagePlugin - • PIL.JpegImagePlugin - • PIL.PngImagePlugin - • PIL.TiffImagePlugin - • PIL.features - -
- -
- -
- - PIL._imaging C:\users\dtyx\Local Settings\Application Data\Programs\Python\Python39-32\lib\site-packages\PIL\_imaging.cp39-win32.pyd
-imports: - PIL - • typing - -
-
-imported by: - PIL - • PIL.GifImagePlugin - • PIL.Image - • PIL.ImageFilter - • PIL.PngImagePlugin - -
- -
- -
- - PIL._imagingcms C:\users\dtyx\Local Settings\Application Data\Programs\Python\Python39-32\lib\site-packages\PIL\_imagingcms.cp39-win32.pyd
-imports: - PIL - • PIL._typing - • datetime - • sys - • typing - -
-
-imported by: - PIL - • PIL.ImageCms - -
- -
- -
- - PIL._imagingmath C:\users\dtyx\Local Settings\Application Data\Programs\Python\Python39-32\lib\site-packages\PIL\_imagingmath.cp39-win32.pyd
-imports: - PIL - • typing - -
-
-imported by: - PIL - • PIL.ImageMath - -
- -
- -
- - PIL._imagingtk C:\users\dtyx\Local Settings\Application Data\Programs\Python\Python39-32\lib\site-packages\PIL\_imagingtk.cp39-win32.pyd
-imports: - PIL - • typing - -
-
-imported by: - PIL - • PIL.ImageTk - -
- -
- -
- - PIL._typing -SourceModule
-imports: - PIL - • __future__ - • collections.abc - • numbers - • numpy - • os - • sys - • types - • typing - • typing_extensions - -
-
-imported by: - PIL.GifImagePlugin - • PIL.Image - • PIL.ImageCms - • PIL.ImageFile - • PIL.ImageFilter - • PIL.ImageTk - • PIL.MpegImagePlugin - • PIL.TiffImagePlugin - • PIL._imagingcms - • PIL._util - -
- -
- -
- - PIL._util -SourceModule
-imports: - PIL - • PIL._typing - • __future__ - • os - • typing - -
-
-imported by: - PIL.DcxImagePlugin - • PIL.FliImagePlugin - • PIL.GifImagePlugin - • PIL.ImImagePlugin - • PIL.Image - • PIL.ImageCms - • PIL.ImageFile - • PIL.ImageQt - • PIL.MpoImagePlugin - • PIL.PngImagePlugin - • PIL.PsdImagePlugin - • PIL.SpiderImagePlugin - • PIL.TiffImagePlugin - -
- -
- -
- - PIL._version -SourceModule
-imports: - PIL - • __future__ - -
-
-imported by: - PIL - -
- -
- -
- - PIL._webp C:\users\dtyx\Local Settings\Application Data\Programs\Python\Python39-32\lib\site-packages\PIL\_webp.cp39-win32.pyd
-imports: - PIL - • typing - -
-
-imported by: - PIL - • PIL.WebPImagePlugin - -
- -
- -
- - PIL.features -SourceModule
-imports: - PIL - • PIL.Image - • PIL._deprecate - • __future__ - • collections - • os - • sys - • typing - • warnings - -
-
-imported by: - PIL - • PIL.IcnsImagePlugin - • PIL.PdfImagePlugin - -
- -
- -
- - __future__ -SourceModule
-imported by: - PIL - • PIL.AvifImagePlugin - • PIL.BlpImagePlugin - • PIL.BmpImagePlugin - • PIL.BufrStubImagePlugin - • PIL.CurImagePlugin - • PIL.DcxImagePlugin - • PIL.DdsImagePlugin - • PIL.EpsImagePlugin - • PIL.ExifTags - • PIL.FitsImagePlugin - • PIL.FliImagePlugin - • PIL.FpxImagePlugin - • PIL.FtexImagePlugin - • PIL.GbrImagePlugin - • PIL.GifImagePlugin - • PIL.GimpGradientFile - • PIL.GimpPaletteFile - • PIL.GribStubImagePlugin - • PIL.Hdf5StubImagePlugin - • PIL.IcnsImagePlugin - • PIL.IcoImagePlugin - • PIL.ImImagePlugin - • PIL.Image - • PIL.ImageChops - • PIL.ImageCms - • PIL.ImageColor - • PIL.ImageFile - • PIL.ImageFilter - • PIL.ImageMath - • PIL.ImageMode - • PIL.ImageOps - • PIL.ImagePalette - • PIL.ImageQt - • PIL.ImageSequence - • PIL.ImageShow - • PIL.ImageTk - • PIL.ImageWin - • PIL.ImtImagePlugin - • PIL.IptcImagePlugin - • PIL.Jpeg2KImagePlugin - • PIL.JpegImagePlugin - • PIL.JpegPresets - • PIL.McIdasImagePlugin - • PIL.MicImagePlugin - • PIL.MpegImagePlugin - • PIL.MpoImagePlugin - • PIL.MspImagePlugin - • PIL.PaletteFile - • PIL.PalmImagePlugin - • PIL.PcdImagePlugin - • PIL.PcxImagePlugin - • PIL.PdfImagePlugin - • PIL.PdfParser - • PIL.PixarImagePlugin - • PIL.PngImagePlugin - • PIL.PpmImagePlugin - • PIL.PsdImagePlugin - • PIL.QoiImagePlugin - • PIL.SgiImagePlugin - • PIL.SpiderImagePlugin - • PIL.SunImagePlugin - • PIL.TgaImagePlugin - • PIL.TiffImagePlugin - • PIL.TiffTags - • PIL.WebPImagePlugin - • PIL.WmfImagePlugin - • PIL.XVThumbImagePlugin - • PIL.XbmImagePlugin - • PIL.XpmImagePlugin - • PIL._binary - • PIL._deprecate - • PIL._typing - • PIL._util - • PIL._version - • PIL.features - • charset_normalizer - • charset_normalizer.api - • charset_normalizer.cd - • charset_normalizer.constant - • charset_normalizer.legacy - • charset_normalizer.md - • charset_normalizer.models - • charset_normalizer.utils - • charset_normalizer.version - • codeop - • doctest - • docx - • docx.api - • docx.blkcntnr - • docx.comments - • docx.dml.color - • docx.document - • docx.drawing - • docx.enum.base - • docx.enum.text - • docx.image.image - • docx.opc.coreprops - • docx.opc.oxml - • docx.opc.package - • docx.opc.packuri - • docx.opc.part - • docx.opc.parts.coreprops - • docx.opc.pkgwriter - • docx.opc.rel - • docx.opc.shared - • docx.oxml - • docx.oxml.comments - • docx.oxml.coreprops - • docx.oxml.document - • docx.oxml.ns - • docx.oxml.parser - • docx.oxml.section - • docx.oxml.settings - • docx.oxml.shape - • docx.oxml.shared - • docx.oxml.simpletypes - • docx.oxml.styles - • docx.oxml.table - • docx.oxml.text.font - • docx.oxml.text.hyperlink - • docx.oxml.text.pagebreak - • docx.oxml.text.paragraph - • docx.oxml.text.parfmt - • docx.oxml.text.run - • docx.oxml.xmlchemy - • docx.package - • docx.parts.comments - • docx.parts.document - • docx.parts.hdrftr - • docx.parts.image - • docx.parts.settings - • docx.parts.story - • docx.parts.styles - • docx.section - • docx.settings - • docx.shape - • docx.shared - • docx.styles - • docx.styles.style - • docx.styles.styles - • docx.table - • docx.text.font - • docx.text.hyperlink - • docx.text.pagebreak - • docx.text.paragraph - • docx.text.run - • docx.types - • urllib3 - • urllib3._base_connection - • urllib3._collections - • urllib3._request_methods - • urllib3.connection - • urllib3.connectionpool - • urllib3.contrib.emscripten - • urllib3.contrib.emscripten.connection - • urllib3.contrib.emscripten.fetch - • urllib3.contrib.emscripten.request - • urllib3.contrib.emscripten.response - • urllib3.contrib.pyopenssl - • urllib3.contrib.socks - • urllib3.exceptions - • urllib3.fields - • urllib3.filepost - • urllib3.http2 - • urllib3.http2.connection - • urllib3.http2.probe - • urllib3.poolmanager - • urllib3.response - • urllib3.util - • urllib3.util.connection - • urllib3.util.proxy - • urllib3.util.request - • urllib3.util.response - • urllib3.util.retry - • urllib3.util.ssl_ - • urllib3.util.ssl_match_hostname - • urllib3.util.ssltransport - • urllib3.util.timeout - • urllib3.util.url - • urllib3.util.util - • urllib3.util.wait - -
- -
- -
- - _abc (builtin module)
-imported by: - abc - -
- -
- -
- - _aix_support -SourceModule
-imports: - _bootsubprocess - • subprocess - • sys - • sysconfig - -
-
-imported by: - sysconfig - -
- -
- -
- - _ast (builtin module)
-imported by: - ast - -
- -
- -
- - _asyncio C:\users\dtyx\Local Settings\Application Data\Programs\Python\Python39-32\DLLs\_asyncio.pyd
-imported by: - asyncio.events - • asyncio.futures - • asyncio.tasks - -
- -
- -
- - _bisect (builtin module)
-imported by: - bisect - -
- -
- -
- - _blake2 (builtin module)
-imported by: - hashlib - -
- -
- -
- - _bootlocale -SourceModule
-imports: - _locale - • locale - • sys - -
-
-imported by: - Generate_Report.py - • locale - -
- -
- -
- - _bootsubprocess -SourceModule
-imports: - os - -
-
-imported by: - _aix_support - -
- -
- -
- - _bz2 C:\users\dtyx\Local Settings\Application Data\Programs\Python\Python39-32\DLLs\_bz2.pyd
-imported by: - bz2 - -
- -
- -
- - _codecs (builtin module)
-imported by: - codecs - -
- -
- -
- - _codecs_cn (builtin module)
-imported by: - encodings.gb18030 - • encodings.gb2312 - • encodings.gbk - • encodings.hz - -
- -
- -
- - _codecs_hk (builtin module)
-imported by: - encodings.big5hkscs - -
- -
- -
- - _codecs_iso2022 (builtin module)
-imported by: - encodings.iso2022_jp - • encodings.iso2022_jp_1 - • encodings.iso2022_jp_2 - • encodings.iso2022_jp_2004 - • encodings.iso2022_jp_3 - • encodings.iso2022_jp_ext - • encodings.iso2022_kr - -
- -
- -
- - _codecs_jp (builtin module)
-imported by: - encodings.cp932 - • encodings.euc_jis_2004 - • encodings.euc_jisx0213 - • encodings.euc_jp - • encodings.shift_jis - • encodings.shift_jis_2004 - • encodings.shift_jisx0213 - -
- -
- -
- - _codecs_kr (builtin module)
-imported by: - encodings.cp949 - • encodings.euc_kr - • encodings.johab - -
- -
- -
- - _codecs_tw (builtin module)
-imported by: - encodings.big5 - • encodings.cp950 - -
- -
- -
- - _collections (builtin module)
-imported by: - collections - • threading - -
- -
- -
- - _collections_abc -SourceModule
-imports: - abc - • sys - • warnings - -
-
-imported by: - Generate_Report.py - • collections - • collections.abc - • contextlib - • locale - • os - • pathlib - • random - • types - • weakref - -
- -
- -
- - _compat_pickle -SourceModule
-imported by: - _pickle - • pickle - -
- -
- -
- - _compression -SourceModule
-imports: - io - -
-
-imported by: - bz2 - • gzip - • lzma - -
- -
- -
- - _contextvars (builtin module)
-imported by: - contextvars - -
- -
- -
- - _csv (builtin module)
-imported by: - csv - -
- -
- -
- - _ctypes C:\users\dtyx\Local Settings\Application Data\Programs\Python\Python39-32\DLLs\_ctypes.pyd
-imported by: - ctypes - -
- -
- -
- - _datetime (builtin module)
-imports: - _strptime - • time - -
-
-imported by: - datetime - -
- -
- -
- - _decimal C:\users\dtyx\Local Settings\Application Data\Programs\Python\Python39-32\DLLs\_decimal.pyd
-imported by: - decimal - -
- -
- -
- - _elementtree C:\users\dtyx\Local Settings\Application Data\Programs\Python\Python39-32\DLLs\_elementtree.pyd
-imports: - pyexpat - • xml.etree.ElementInclude - • xml.etree.ElementPath - • xml.etree.ElementTree - • xml.etree.cElementTree - -
-
-imported by: - xml.etree.ElementTree - -
- -
- -
- - _frozen_importlib -ExcludedModule
-imported by: - importlib - • importlib.abc - • zipimport - -
- -
- -
- - _frozen_importlib_external -MissingModule
-imported by: - importlib - • importlib._bootstrap - • importlib.abc - • zipimport - -
- -
- -
- - _functools (builtin module)
-imported by: - functools - -
- -
- -
- - _hashlib C:\users\dtyx\Local Settings\Application Data\Programs\Python\Python39-32\DLLs\_hashlib.pyd
-imported by: - hashlib - • hmac - -
- -
- -
- - _heapq (builtin module)
-imported by: - heapq - -
- -
- -
- - _imp (builtin module)
-imported by: - importlib - • importlib._bootstrap_external - • importlib.machinery - • importlib.util - • sysconfig - • zipimport - -
- -
- -
- - _io (builtin module)
-imported by: - importlib._bootstrap_external - • io - • zipimport - -
- -
- -
- - _json (builtin module)
-imports: - json.decoder - -
-
-imported by: - json.decoder - • json.encoder - • json.scanner - -
- -
- -
- - _locale (builtin module)
-imported by: - _bootlocale - • locale - • re - -
- -
- -
- - _lzma C:\users\dtyx\Local Settings\Application Data\Programs\Python\Python39-32\DLLs\_lzma.pyd
-imported by: - lzma - -
- -
- -
- - _md5 (builtin module)
-imported by: - hashlib - -
- -
- -
- - _multibytecodec (builtin module)
-imported by: - charset_normalizer.utils - • encodings.big5 - • encodings.big5hkscs - • encodings.cp932 - • encodings.cp949 - • encodings.cp950 - • encodings.euc_jis_2004 - • encodings.euc_jisx0213 - • encodings.euc_jp - • encodings.euc_kr - • encodings.gb18030 - • encodings.gb2312 - • encodings.gbk - • encodings.hz - • encodings.iso2022_jp - • encodings.iso2022_jp_1 - • encodings.iso2022_jp_2 - • encodings.iso2022_jp_2004 - • encodings.iso2022_jp_3 - • encodings.iso2022_jp_ext - • encodings.iso2022_kr - • encodings.johab - • encodings.shift_jis - • encodings.shift_jis_2004 - • encodings.shift_jisx0213 - -
- -
- -
- - _multiprocessing C:\users\dtyx\Local Settings\Application Data\Programs\Python\Python39-32\DLLs\_multiprocessing.pyd
-imported by: - multiprocessing.connection - • multiprocessing.queues - • multiprocessing.resource_tracker - • multiprocessing.synchronize - -
- -
- -
- - _opcode (builtin module)
-imported by: - opcode - -
- -
- -
- - _operator (builtin module)
-imported by: - hmac - • operator - -
- -
- -
- - _overlapped C:\users\dtyx\Local Settings\Application Data\Programs\Python\Python39-32\DLLs\_overlapped.pyd
-imported by: - asyncio.windows_events - -
- -
- -
- - _pickle (builtin module)
-imports: - _compat_pickle - • codecs - • copyreg - -
-
-imported by: - pickle - -
- -
- -
- - _posixshmem -MissingModule
-imported by: - multiprocessing.resource_tracker - • multiprocessing.shared_memory - -
- -
- -
- - _posixsubprocess -MissingModule
-imports: - gc - -
-
-imported by: - multiprocessing.util - • subprocess - -
- -
- -
- - _py_abc -SourceModule
-imports: - _weakrefset - -
-
-imported by: - abc - -
- -
- -
- - _pydecimal -SourceModule
-imports: - collections - • contextvars - • itertools - • locale - • math - • numbers - • re - • sys - -
-
-imported by: - decimal - -
- -
- -
- - _queue C:\users\dtyx\Local Settings\Application Data\Programs\Python\Python39-32\DLLs\_queue.pyd
-imported by: - queue - -
- -
- -
- - _random (builtin module)
-imported by: - random - -
- -
- -
- - _scproxy -MissingModule
-imported by: - urllib.request - -
- -
- -
- - _sha1 (builtin module)
-imported by: - hashlib - -
- -
- -
- - _sha256 (builtin module)
-imported by: - hashlib - -
- -
- -
- - _sha3 (builtin module)
-imported by: - hashlib - -
- -
- -
- - _sha512 (builtin module)
-imported by: - hashlib - • random - -
- -
- -
- - _signal (builtin module)
-imported by: - signal - -
- -
- -
- - _socket C:\users\dtyx\Local Settings\Application Data\Programs\Python\Python39-32\DLLs\_socket.pyd
-imported by: - socket - • typing_extensions - -
- -
- -
- - _sre (builtin module)
-imports: - copy - • re - -
-
-imported by: - sre_compile - • sre_constants - -
- -
- -
- - _ssl C:\users\dtyx\Local Settings\Application Data\Programs\Python\Python39-32\DLLs\_ssl.pyd
-imports: - socket - -
-
-imported by: - ssl - -
- -
- -
- - _stat (builtin module)
-imported by: - stat - -
- -
- -
- - _statistics (builtin module)
-imported by: - statistics - -
- -
- -
- - _string (builtin module)
-imported by: - string - -
- -
- -
- - _strptime -SourceModule
-imports: - _thread - • calendar - • datetime - • locale - • re - • time - -
-
-imported by: - _datetime - • datetime - • time - -
- -
- -
- - _struct (builtin module)
-imported by: - struct - -
- -
- -
- - _thread (builtin module)
-imported by: - _strptime - • asyncio.base_futures - • dataclasses - • functools - • reprlib - • tempfile - • threading - -
- -
- -
- - _threading_local -SourceModule
-imports: - contextlib - • threading - • weakref - -
-
-imported by: - threading - -
- -
- -
- - _tracemalloc (builtin module)
-imported by: - tracemalloc - -
- -
- -
- - _warnings (builtin module)
-imported by: - importlib._bootstrap_external - • warnings - -
- -
- -
- - _weakref (builtin module)
-imported by: - _weakrefset - • collections - • weakref - • xml.sax.expatreader - -
- -
- -
- - _weakrefset -SourceModule
-imports: - _weakref - • types - -
-
-imported by: - Generate_Report.py - • _py_abc - • multiprocessing.process - • threading - • weakref - -
- -
- -
- - _winapi (builtin module)
-imported by: - asyncio.windows_events - • asyncio.windows_utils - • encodings - • multiprocessing.connection - • multiprocessing.heap - • multiprocessing.popen_spawn_win32 - • multiprocessing.reduction - • multiprocessing.shared_memory - • multiprocessing.spawn - • subprocess - -
- -
- -
- - _winreg -MissingModule
-imported by: - platform - -
- -
- -
- - abc -SourceModule
-imports: - _abc - • _py_abc - -
-
-imported by: - Generate_Report.py - • PIL.BlpImagePlugin - • PIL.Image - • PIL.ImageFile - • PIL.ImageFilter - • PIL.ImageShow - • _collections_abc - • contextlib - • email._policybase - • functools - • importlib.abc - • importlib.metadata - • inspect - • io - • multiprocessing.reduction - • numbers - • os - • selectors - • typing - • typing_extensions - -
- -
- -
- - annotationlib -MissingModule
-imported by: - typing_extensions - -
- -
- -
- - argparse -SourceModule
-imports: - copy - • gettext - • os - • re - • shutil - • sys - • textwrap - • warnings - -
-
-imported by: - ast - • calendar - • code - • dis - • doctest - • gzip - • http.server - • inspect - • tarfile - • tokenize - • tools.argtool - • unittest.main - • zipfile - -
- -
- -
- - array (builtin module)
-imported by: - PIL.ImagePalette - • PIL.JpegImagePlugin - • multiprocessing.dummy - • multiprocessing.managers - • multiprocessing.reduction - • socket - -
- -
- -
- - ast -SourceModule
-imports: - _ast - • argparse - • collections - • contextlib - • enum - • inspect - • sys - • warnings - -
-
-imported by: - inspect - -
- -
- -
- - asyncio -Package
-imports: - asyncio - • asyncio.DefaultEventLoopPolicy - • asyncio.base_events - • asyncio.base_futures - • asyncio.base_subprocess - • asyncio.base_tasks - • asyncio.constants - • asyncio.coroutines - • asyncio.events - • asyncio.exceptions - • asyncio.format_helpers - • asyncio.futures - • asyncio.locks - • asyncio.proactor_events - • asyncio.protocols - • asyncio.queues - • asyncio.runners - • asyncio.selector_events - • asyncio.sslproto - • asyncio.staggered - • asyncio.streams - • asyncio.subprocess - • asyncio.tasks - • asyncio.threads - • asyncio.transports - • asyncio.trsock - • asyncio.unix_events - • asyncio.windows_events - • asyncio.windows_utils - • sys - -
-
-imported by: - Generate_Report.py - • asyncio - • asyncio.base_events - • asyncio.base_futures - • asyncio.base_subprocess - • asyncio.base_tasks - • asyncio.constants - • asyncio.coroutines - • asyncio.events - • asyncio.exceptions - • asyncio.format_helpers - • asyncio.futures - • asyncio.locks - • asyncio.log - • asyncio.proactor_events - • asyncio.protocols - • asyncio.queues - • asyncio.runners - • asyncio.selector_events - • asyncio.sslproto - • asyncio.staggered - • asyncio.streams - • asyncio.subprocess - • asyncio.tasks - • asyncio.threads - • asyncio.transports - • asyncio.trsock - • asyncio.unix_events - • asyncio.windows_events - • asyncio.windows_utils - • unittest.async_case - -
- -
- -
- - asyncio.DefaultEventLoopPolicy -MissingModule
-imported by: - asyncio - • asyncio.events - -
- -
- -
- - asyncio.base_events -SourceModule
-imports: - asyncio - • asyncio.constants - • asyncio.coroutines - • asyncio.events - • asyncio.exceptions - • asyncio.futures - • asyncio.log - • asyncio.protocols - • asyncio.sslproto - • asyncio.staggered - • asyncio.tasks - • asyncio.transports - • asyncio.trsock - • collections - • collections.abc - • concurrent.futures - • functools - • heapq - • itertools - • os - • socket - • ssl - • stat - • subprocess - • sys - • threading - • time - • traceback - • warnings - • weakref - -
-
-imported by: - asyncio - • asyncio.proactor_events - • asyncio.selector_events - • asyncio.unix_events - -
- -
- -
- - asyncio.base_futures -SourceModule
-imports: - _thread - • asyncio - • asyncio.format_helpers - • reprlib - -
-
-imported by: - asyncio - • asyncio.base_tasks - • asyncio.coroutines - • asyncio.futures - -
- -
- -
- - asyncio.base_subprocess -SourceModule
-imports: - asyncio - • asyncio.log - • asyncio.protocols - • asyncio.transports - • collections - • subprocess - • warnings - -
-
-imported by: - asyncio - • asyncio.unix_events - • asyncio.windows_events - -
- -
- -
- - asyncio.base_tasks -SourceModule
-imports: - asyncio - • asyncio.base_futures - • asyncio.coroutines - • linecache - • traceback - -
-
-imported by: - asyncio - • asyncio.tasks - -
- -
- -
- - asyncio.constants -SourceModule
-imports: - asyncio - • enum - -
-
-imported by: - asyncio - • asyncio.base_events - • asyncio.coroutines - • asyncio.format_helpers - • asyncio.proactor_events - • asyncio.selector_events - • asyncio.sslproto - • asyncio.unix_events - -
- -
- -
- - asyncio.coroutines -SourceModule
-imports: - asyncio - • asyncio.base_futures - • asyncio.constants - • asyncio.format_helpers - • asyncio.log - • collections.abc - • functools - • inspect - • os - • sys - • traceback - • types - • warnings - -
-
-imported by: - asyncio - • asyncio.base_events - • asyncio.base_tasks - • asyncio.runners - • asyncio.streams - • asyncio.tasks - • asyncio.unix_events - • typing_extensions - -
- -
- -
- - asyncio.events -SourceModule
-imports: - _asyncio - • asyncio - • asyncio.DefaultEventLoopPolicy - • asyncio.format_helpers - • contextvars - • os - • socket - • subprocess - • sys - • threading - -
-
-imported by: - asyncio - • asyncio.base_events - • asyncio.futures - • asyncio.locks - • asyncio.queues - • asyncio.runners - • asyncio.selector_events - • asyncio.staggered - • asyncio.streams - • asyncio.subprocess - • asyncio.tasks - • asyncio.threads - • asyncio.unix_events - • asyncio.windows_events - -
- -
- -
- - asyncio.exceptions -SourceModule
-imports: - asyncio - -
-
-imported by: - asyncio - • asyncio.base_events - • asyncio.futures - • asyncio.locks - • asyncio.proactor_events - • asyncio.staggered - • asyncio.streams - • asyncio.tasks - • asyncio.unix_events - • asyncio.windows_events - -
- -
- -
- - asyncio.format_helpers -SourceModule
-imports: - asyncio - • asyncio.constants - • functools - • inspect - • reprlib - • sys - • traceback - -
-
-imported by: - asyncio - • asyncio.base_futures - • asyncio.coroutines - • asyncio.events - • asyncio.futures - • asyncio.streams - -
- -
- -
- - asyncio.futures -SourceModule
-imports: - _asyncio - • asyncio - • asyncio.base_futures - • asyncio.events - • asyncio.exceptions - • asyncio.format_helpers - • concurrent.futures - • contextvars - • logging - • sys - • types - -
-
-imported by: - asyncio - • asyncio.base_events - • asyncio.proactor_events - • asyncio.selector_events - • asyncio.tasks - • asyncio.unix_events - • asyncio.windows_events - -
- -
- -
- - asyncio.locks -SourceModule
-imports: - asyncio - • asyncio.events - • asyncio.exceptions - • collections - • warnings - -
-
-imported by: - asyncio - • asyncio.queues - • asyncio.staggered - -
- -
- -
- - asyncio.log -SourceModule
-imports: - asyncio - • logging - -
-
-imported by: - asyncio.base_events - • asyncio.base_subprocess - • asyncio.coroutines - • asyncio.proactor_events - • asyncio.selector_events - • asyncio.sslproto - • asyncio.streams - • asyncio.subprocess - • asyncio.unix_events - • asyncio.windows_events - -
- -
- -
- - asyncio.proactor_events -SourceModule
-imports: - asyncio - • asyncio.base_events - • asyncio.constants - • asyncio.exceptions - • asyncio.futures - • asyncio.log - • asyncio.protocols - • asyncio.sslproto - • asyncio.transports - • asyncio.trsock - • collections - • io - • os - • signal - • socket - • threading - • warnings - -
-
-imported by: - asyncio - • asyncio.windows_events - -
- -
- -
- - asyncio.protocols -SourceModule
-imports: - asyncio - -
-
-imported by: - asyncio - • asyncio.base_events - • asyncio.base_subprocess - • asyncio.proactor_events - • asyncio.selector_events - • asyncio.sslproto - • asyncio.streams - • asyncio.subprocess - -
- -
- -
- - asyncio.queues -SourceModule
-imports: - asyncio - • asyncio.events - • asyncio.locks - • collections - • heapq - • types - • warnings - -
-
-imported by: - asyncio - • asyncio.tasks - -
- -
- -
- - asyncio.runners -SourceModule
-imports: - asyncio - • asyncio.coroutines - • asyncio.events - • asyncio.tasks - -
-
-imported by: - asyncio - -
- -
- -
- - asyncio.selector_events -SourceModule
-imports: - asyncio - • asyncio.base_events - • asyncio.constants - • asyncio.events - • asyncio.futures - • asyncio.log - • asyncio.protocols - • asyncio.sslproto - • asyncio.transports - • asyncio.trsock - • collections - • errno - • functools - • selectors - • socket - • ssl - • warnings - • weakref - -
-
-imported by: - asyncio - • asyncio.unix_events - • asyncio.windows_events - -
- -
- -
- - asyncio.sslproto -SourceModule
-imports: - asyncio - • asyncio.constants - • asyncio.log - • asyncio.protocols - • asyncio.transports - • collections - • ssl - • warnings - -
-
-imported by: - asyncio - • asyncio.base_events - • asyncio.proactor_events - • asyncio.selector_events - -
- -
- -
- - asyncio.staggered -SourceModule
-imports: - asyncio - • asyncio.events - • asyncio.exceptions - • asyncio.locks - • asyncio.tasks - • contextlib - • typing - -
-
-imported by: - asyncio - • asyncio.base_events - -
- -
- -
- - asyncio.streams -SourceModule
-imports: - asyncio - • asyncio.coroutines - • asyncio.events - • asyncio.exceptions - • asyncio.format_helpers - • asyncio.log - • asyncio.protocols - • asyncio.tasks - • socket - • sys - • warnings - • weakref - -
-
-imported by: - asyncio - • asyncio.subprocess - -
- -
- -
- - asyncio.subprocess -SourceModule
-imports: - asyncio - • asyncio.events - • asyncio.log - • asyncio.protocols - • asyncio.streams - • asyncio.tasks - • subprocess - • warnings - -
-
-imported by: - asyncio - -
- -
- -
- - asyncio.tasks -SourceModule
-imports: - _asyncio - • asyncio - • asyncio.base_tasks - • asyncio.coroutines - • asyncio.events - • asyncio.exceptions - • asyncio.futures - • asyncio.queues - • concurrent.futures - • contextvars - • functools - • inspect - • itertools - • types - • warnings - • weakref - -
-
-imported by: - asyncio - • asyncio.base_events - • asyncio.runners - • asyncio.staggered - • asyncio.streams - • asyncio.subprocess - • asyncio.unix_events - • asyncio.windows_events - -
- -
- -
- - asyncio.threads -SourceModule
-imports: - asyncio - • asyncio.events - • contextvars - • functools - -
-
-imported by: - asyncio - -
- -
- -
- - asyncio.transports -SourceModule
-imports: - asyncio - -
-
-imported by: - asyncio - • asyncio.base_events - • asyncio.base_subprocess - • asyncio.proactor_events - • asyncio.selector_events - • asyncio.sslproto - • asyncio.unix_events - -
- -
- -
- - asyncio.trsock -SourceModule
-imports: - asyncio - • socket - • warnings - -
-
-imported by: - asyncio - • asyncio.base_events - • asyncio.proactor_events - • asyncio.selector_events - -
- -
- -
- - asyncio.unix_events -SourceModule
-imports: - asyncio - • asyncio.base_events - • asyncio.base_subprocess - • asyncio.constants - • asyncio.coroutines - • asyncio.events - • asyncio.exceptions - • asyncio.futures - • asyncio.log - • asyncio.selector_events - • asyncio.tasks - • asyncio.transports - • errno - • io - • itertools - • os - • selectors - • signal - • socket - • stat - • subprocess - • sys - • threading - • warnings - -
-
-imported by: - asyncio - -
- -
- -
- - asyncio.windows_events -SourceModule
-imports: - _overlapped - • _winapi - • asyncio - • asyncio.base_subprocess - • asyncio.events - • asyncio.exceptions - • asyncio.futures - • asyncio.log - • asyncio.proactor_events - • asyncio.selector_events - • asyncio.tasks - • asyncio.windows_utils - • errno - • math - • msvcrt - • socket - • struct - • sys - • time - • weakref - -
-
-imported by: - asyncio - -
- -
- -
- - asyncio.windows_utils -SourceModule
-imports: - _winapi - • asyncio - • itertools - • msvcrt - • os - • subprocess - • sys - • tempfile - • warnings - -
-
-imported by: - asyncio - • asyncio.windows_events - -
- -
- -
- - atexit (builtin module)
-imported by: - PIL.Image - • certifi.core - • logging - • multiprocessing.util - • weakref - -
- -
- -
- - base64 -SourceModule
-imports: - binascii - • getopt - • re - • struct - • sys - -
-
-imported by: - email._encoded_words - • email.base64mime - • email.encoders - • encodings.base64_codec - • http.server - • requests.auth - • secrets - • ssl - • urllib.request - • urllib3.util.request - • xmlrpc.client - -
- -
- -
- - bdb -SourceModule
-imports: - fnmatch - • inspect - • linecache - • os - • reprlib - • sys - -
-
-imported by: - pdb - -
- -
- -
- - binascii (builtin module)
-imported by: - base64 - • email._encoded_words - • email.base64mime - • email.contentmanager - • email.header - • encodings.hex_codec - • encodings.uu_codec - • http.server - • quopri - • secrets - • urllib3.filepost - • urllib3.util.ssl_ - • uu - • zipfile - -
- -
- -
- - bisect -SourceModule
-imports: - _bisect - -
-
-imported by: - idna.core - • idna.intranges - • multiprocessing.heap - • random - • statistics - • urllib.request - -
- -
- -
- - brotli -MissingModule
-imported by: - urllib3.response - • urllib3.util.request - -
- -
- -
- - brotlicffi -MissingModule
-imported by: - urllib3.response - • urllib3.util.request - -
- -
- -
- - bs4 -MissingModule
-imported by: - lxml.html.soupparser - -
- -
- -
- - builtins (builtin module)
-imported by: - PIL.Image - • PIL.ImageMath - • bz2 - • codecs - • dataclasses - • doctest - • gettext - • gzip - • inspect - • locale - • lzma - • operator - • pydoc - • reprlib - • subprocess - • tarfile - • tokenize - • typing_extensions - • warnings - -
- -
- -
- - bz2 -SourceModule
-imports: - _bz2 - • _compression - • builtins - • io - • os - • threading - -
-
-imported by: - encodings.bz2_codec - • shutil - • tarfile - • zipfile - -
- -
- -
- - calendar -SourceModule
-imports: - argparse - • datetime - • itertools - • locale - • sys - -
-
-imported by: - PIL.PdfParser - • _strptime - • email._parseaddr - • http.cookiejar - • requests.cookies - • ssl - -
- -
- -
- - certifi -Package
-imports: - certifi.core - -
-
-imported by: - certifi.core - • requests.certs - -
- -
- -
- - certifi.core -SourceModule
-imports: - atexit - • certifi - • importlib.resources - • sys - -
-
-imported by: - certifi - -
- -
- -
- - cgi -SourceModule
-imports: - collections.abc - • email.message - • email.parser - • html - • io - • locale - • os - • re - • sys - • tempfile - • traceback - • urllib.parse - -
-
-imported by: - lxml.doctestcompare - -
- -
- -
- - chardet -MissingModule
-imported by: - requests - -
- -
- -
- - charset_normalizer -Package
-imports: - __future__ - • charset_normalizer.api - • charset_normalizer.legacy - • charset_normalizer.md__mypyc - • charset_normalizer.models - • charset_normalizer.utils - • charset_normalizer.version - • logging - -
-
-imported by: - charset_normalizer.api - • charset_normalizer.cd - • charset_normalizer.constant - • charset_normalizer.legacy - • charset_normalizer.md - • charset_normalizer.md__mypyc - • charset_normalizer.models - • charset_normalizer.utils - • charset_normalizer.version - • requests - -
- -
- -
- - charset_normalizer.api -SourceModule
-imports: - __future__ - • charset_normalizer - • charset_normalizer.cd - • charset_normalizer.constant - • charset_normalizer.md - • charset_normalizer.models - • charset_normalizer.utils - • logging - • os - • typing - -
-
-imported by: - charset_normalizer - • charset_normalizer.legacy - -
- -
- -
- - charset_normalizer.cd -SourceModule
-imports: - __future__ - • charset_normalizer - • charset_normalizer.constant - • charset_normalizer.md - • charset_normalizer.models - • charset_normalizer.utils - • codecs - • collections - • functools - • importlib - • typing - -
-
-imported by: - charset_normalizer.api - • charset_normalizer.models - -
- -
- -
- - charset_normalizer.constant -SourceModule
-imports: - __future__ - • charset_normalizer - • codecs - • encodings.aliases - • re - -
-
-imported by: - charset_normalizer.api - • charset_normalizer.cd - • charset_normalizer.legacy - • charset_normalizer.md - • charset_normalizer.models - • charset_normalizer.utils - -
- -
- -
- - charset_normalizer.legacy -SourceModule
-imports: - __future__ - • charset_normalizer - • charset_normalizer.api - • charset_normalizer.constant - • typing - • typing_extensions - • warnings - -
-
-imported by: - charset_normalizer - -
- -
- -
- - charset_normalizer.md C:\users\dtyx\Local Settings\Application Data\Programs\Python\Python39-32\lib\site-packages\charset_normalizer\md.cp39-win32.pyd
-imports: - __future__ - • charset_normalizer - • charset_normalizer.constant - • charset_normalizer.utils - • functools - • logging - -
-
-imported by: - charset_normalizer.api - • charset_normalizer.cd - -
- -
- -
- - charset_normalizer.md__mypyc C:\users\dtyx\Local Settings\Application Data\Programs\Python\Python39-32\lib\site-packages\charset_normalizer\md__mypyc.cp39-win32.pyd
-imports: - charset_normalizer - -
-
-imported by: - charset_normalizer - -
- -
- -
- - charset_normalizer.models -SourceModule
-imports: - __future__ - • charset_normalizer - • charset_normalizer.cd - • charset_normalizer.constant - • charset_normalizer.utils - • encodings.aliases - • hashlib - • json - • re - • typing - -
-
-imported by: - charset_normalizer - • charset_normalizer.api - • charset_normalizer.cd - -
- -
- -
- - charset_normalizer.utils -SourceModule
-imports: - __future__ - • _multibytecodec - • charset_normalizer - • charset_normalizer.constant - • codecs - • encodings.aliases - • functools - • importlib - • logging - • re - • typing - • unicodedata - -
-
-imported by: - charset_normalizer - • charset_normalizer.api - • charset_normalizer.cd - • charset_normalizer.md - • charset_normalizer.models - -
- -
- -
- - charset_normalizer.version -SourceModule
-imports: - __future__ - • charset_normalizer - -
-
-imported by: - charset_normalizer - -
- -
- -
- - cmd -SourceModule
-imports: - readline - • string - • sys - -
-
-imported by: - pdb - -
- -
- -
- - code -SourceModule
-imports: - argparse - • codeop - • readline - • sys - • traceback - -
-
-imported by: - pdb - -
- -
- -
- - codecs -SourceModule
-imports: - _codecs - • builtins - • encodings - • sys - -
-
-imported by: - Generate_Report.py - • PIL.PdfParser - • _pickle - • charset_normalizer.cd - • charset_normalizer.constant - • charset_normalizer.utils - • encodings - • encodings.ascii - • encodings.base64_codec - • encodings.big5 - • encodings.big5hkscs - • encodings.bz2_codec - • encodings.charmap - • encodings.cp037 - • encodings.cp1006 - • encodings.cp1026 - • encodings.cp1125 - • encodings.cp1140 - • encodings.cp1250 - • encodings.cp1251 - • encodings.cp1252 - • encodings.cp1253 - • encodings.cp1254 - • encodings.cp1255 - • encodings.cp1256 - • encodings.cp1257 - • encodings.cp1258 - • encodings.cp273 - • encodings.cp424 - • encodings.cp437 - • encodings.cp500 - • encodings.cp720 - • encodings.cp737 - • encodings.cp775 - • encodings.cp850 - • encodings.cp852 - • encodings.cp855 - • encodings.cp856 - • encodings.cp857 - • encodings.cp858 - • encodings.cp860 - • encodings.cp861 - • encodings.cp862 - • encodings.cp863 - • encodings.cp864 - • encodings.cp865 - • encodings.cp866 - • encodings.cp869 - • encodings.cp874 - • encodings.cp875 - • encodings.cp932 - • encodings.cp949 - • encodings.cp950 - • encodings.euc_jis_2004 - • encodings.euc_jisx0213 - • encodings.euc_jp - • encodings.euc_kr - • encodings.gb18030 - • encodings.gb2312 - • encodings.gbk - • encodings.hex_codec - • encodings.hp_roman8 - • encodings.hz - • encodings.idna - • encodings.iso2022_jp - • encodings.iso2022_jp_1 - • encodings.iso2022_jp_2 - • encodings.iso2022_jp_2004 - • encodings.iso2022_jp_3 - • encodings.iso2022_jp_ext - • encodings.iso2022_kr - • encodings.iso8859_1 - • encodings.iso8859_10 - • encodings.iso8859_11 - • encodings.iso8859_13 - • encodings.iso8859_14 - • encodings.iso8859_15 - • encodings.iso8859_16 - • encodings.iso8859_2 - • encodings.iso8859_3 - • encodings.iso8859_4 - • encodings.iso8859_5 - • encodings.iso8859_6 - • encodings.iso8859_7 - • encodings.iso8859_8 - • encodings.iso8859_9 - • encodings.johab - • encodings.koi8_r - • encodings.koi8_t - • encodings.koi8_u - • encodings.kz1048 - • encodings.latin_1 - • encodings.mac_arabic - • encodings.mac_croatian - • encodings.mac_cyrillic - • encodings.mac_farsi - • encodings.mac_greek - • encodings.mac_iceland - • encodings.mac_latin2 - • encodings.mac_roman - • encodings.mac_romanian - • encodings.mac_turkish - • encodings.mbcs - • encodings.oem - • encodings.palmos - • encodings.ptcp154 - • encodings.punycode - • encodings.quopri_codec - • encodings.raw_unicode_escape - • encodings.rot_13 - • encodings.shift_jis - • encodings.shift_jis_2004 - • encodings.shift_jisx0213 - • encodings.tis_620 - • encodings.undefined - • encodings.unicode_escape - • encodings.utf_16 - • encodings.utf_16_be - • encodings.utf_16_le - • encodings.utf_32 - • encodings.utf_32_be - • encodings.utf_32_le - • encodings.utf_7 - • encodings.utf_8 - • encodings.utf_8_sig - • encodings.uu_codec - • encodings.zlib_codec - • json - • pickle - • requests.utils - • tokenize - • urllib3.filepost - • xml.sax.saxutils - -
- -
- -
- - codeop -SourceModule
-imports: - __future__ - • warnings - -
-
-imported by: - code - -
- -
- -
- - collections -Package
-imports: - _collections - • _collections_abc - • _weakref - • copy - • heapq - • itertools - • keyword - • operator - • reprlib - • sys - • warnings - -
-
-imported by: - Generate_Report.py - • PIL.PdfParser - • PIL.features - • _pydecimal - • ast - • asyncio.base_events - • asyncio.base_subprocess - • asyncio.locks - • asyncio.proactor_events - • asyncio.queues - • asyncio.selector_events - • asyncio.sslproto - • charset_normalizer.cd - • collections.abc - • concurrent.futures._base - • configparser - • contextlib - • core.tables - • difflib - • dis - • doctest - • email.feedparser - • functools - • importlib.metadata - • inspect - • lxml.html._difflib - • multiprocessing.heap - • multiprocessing.pool - • multiprocessing.queues - • pkgutil - • platform - • pprint - • pydoc - • queue - • requests.compat - • requests.sessions - • requests.structures - • requests.utils - • selectors - • shlex - • shutil - • ssl - • statistics - • string - • threading - • tokenize - • traceback - • typing - • typing_extensions - • unittest._log - • unittest.case - • unittest.util - • urllib.parse - • urllib3._collections - • urllib3.response - • xml.etree.ElementTree - -
- -
- -
- - collections.abc -SourceModule
-imports: - _collections_abc - • collections - -
-
-imported by: - Generate_Report.py - • PIL.Image - • PIL.ImageFilter - • PIL.ImageOps - • PIL.ImagePalette - • PIL.IptcImagePlugin - • PIL.Jpeg2KImagePlugin - • PIL.PngImagePlugin - • PIL.TiffImagePlugin - • PIL._typing - • asyncio.base_events - • asyncio.coroutines - • cgi - • configparser - • http.client - • inspect - • logging - • lxml.html - • lxml.html._setmixin - • requests.compat - • selectors - • tracemalloc - • typing - • typing_extensions - • xml.etree.ElementTree - -
- -
- -
- - colorsys -SourceModule
-imported by: - PIL.ImageColor - -
- -
- -
- - compression -MissingModule
-imported by: - urllib3.response - • urllib3.util.request - -
- -
- -
- - concurrent -Package
-imported by: - concurrent.futures - -
- -
- -
- - concurrent.futures -Package
-imports: - concurrent - • concurrent.futures._base - • concurrent.futures.process - • concurrent.futures.thread - -
-
-imported by: - asyncio.base_events - • asyncio.futures - • asyncio.tasks - • concurrent.futures._base - • concurrent.futures.process - • concurrent.futures.thread - • tools.get_pictures - -
- -
- -
- - concurrent.futures._base -SourceModule
-imports: - collections - • concurrent.futures - • logging - • threading - • time - • types - -
-
-imported by: - concurrent.futures - • concurrent.futures.process - • concurrent.futures.thread - -
- -
- -
- - concurrent.futures.process -SourceModule
-imports: - concurrent.futures - • concurrent.futures._base - • functools - • itertools - • multiprocessing - • multiprocessing.connection - • multiprocessing.queues - • os - • queue - • sys - • threading - • traceback - • weakref - -
-
-imported by: - concurrent.futures - -
- -
- -
- - concurrent.futures.thread -SourceModule
-imports: - concurrent.futures - • concurrent.futures._base - • itertools - • os - • queue - • threading - • types - • weakref - -
-
-imported by: - concurrent.futures - -
- -
- -
- - configparser -SourceModule
-imports: - collections - • collections.abc - • functools - • io - • itertools - • os - • re - • sys - • warnings - -
-
-imported by: - importlib.metadata - -
- -
- -
- - contextlib -SourceModule
-imports: - _collections_abc - • abc - • collections - • functools - • sys - • types - -
-
-imported by: - _threading_local - • ast - • asyncio.staggered - • getpass - • glob - • http.server - • importlib._common - • importlib.metadata - • importlib.resources - • importlib.util - • lxml.etree - • requests.utils - • subprocess - • typing - • typing_extensions - • unittest.case - • urllib.request - • urllib3.contrib.emscripten.response - • urllib3.response - • xml.etree.ElementTree - • zipfile - -
- -
- -
- - contextvars -SourceModule
-imports: - _contextvars - -
-
-imported by: - _pydecimal - • asyncio.events - • asyncio.futures - • asyncio.tasks - • asyncio.threads - -
- -
- -
- - copy -SourceModule
-imports: - 'org.python' - • copyreg - • types - • weakref - -
-
-imported by: - PIL.GifImagePlugin - • _sre - • argparse - • collections - • dataclasses - • docx.oxml.section - • docx.oxml.text.pagebreak - • email.generator - • gettext - • http.cookiejar - • http.server - • lxml.html - • lxml.html.formfill - • requests.cookies - • tarfile - • weakref - • webbrowser - • xml.etree.ElementInclude - -
- -
- -
- - copyreg -SourceModule
-imported by: - Generate_Report.py - • _pickle - • copy - • multiprocessing.reduction - • pickle - • re - -
- -
- -
- - core -NamespacePackage
-imported by: - core.styles - • core.tables - -
- -
- -
- - core.styles -SourceModule
-imports: - core - • docx.enum.style - • docx.oxml.ns - • docx.shared - -
-
-imported by: - tools.content_tools - • tools.document_tools - -
- -
- -
- - core.tables -SourceModule
-imports: - collections - • core - • docx.enum.table - • docx.oxml - • docx.oxml.ns - • docx.oxml.shared - • docx.shared - -
-
-imported by: - Generate_Report.py - • tools.document_tools - -
- -
- -
- - cryptography -MissingModule
-imported by: - requests - • urllib3.contrib.pyopenssl - -
- -
- -
- - cssselect -MissingModule
-imported by: - lxml.cssselect - -
- -
- -
- - csv -SourceModule
-imports: - _csv - • io - • re - -
-
-imported by: - importlib.metadata - -
- -
- -
- - ctypes -Package
-imports: - _ctypes - • ctypes._endian - • nt - • os - • struct - • sys - • types - -
-
-imported by: - ctypes._endian - • multiprocessing.sharedctypes - -
- -
- -
- - ctypes._endian -SourceModule
-imports: - ctypes - • sys - -
-
-imported by: - ctypes - -
- -
- -
- - cython -MissingModule
-imported by: - lxml.html._difflib - • lxml.html.diff - -
- -
- -
- - dataclasses -SourceModule
-imports: - _thread - • builtins - • copy - • functools - • inspect - • keyword - • re - • sys - • types - -
-
-imported by: - urllib3.contrib.emscripten.request - • urllib3.contrib.emscripten.response - -
- -
- -
- - datetime -SourceModule
-imports: - _datetime - • _strptime - • math - • sys - • time - • warnings - -
-
-imported by: - Generate_Report.py - • PIL._imagingcms - • _strptime - • calendar - • docx.comments - • docx.opc.coreprops - • docx.opc.parts.coreprops - • docx.oxml.comments - • docx.oxml.coreprops - • docx.oxml.simpletypes - • email.utils - • http.cookiejar - • http.server - • requests.models - • requests.sessions - • tools.dataproccess - • urllib3.connection - • xmlrpc.client - -
- -
- -
- - decimal -SourceModule
-imports: - _decimal - • _pydecimal - -
-
-imported by: - fractions - • statistics - • xmlrpc.client - -
- -
- -
- - defusedxml -MissingModule
-imported by: - PIL.Image - -
- -
- -
- - difflib -SourceModule
-imports: - collections - • difflib - • heapq - • re - • types - -
-
-imported by: - difflib - • doctest - • lxml.html.diff - • unittest.case - -
- -
- -
- - dis -SourceModule
-imports: - argparse - • collections - • io - • opcode - • sys - • types - -
-
-imported by: - inspect - • pdb - -
- -
- -
- - doctest -SourceModule
-imports: - __future__ - • argparse - • builtins - • collections - • difflib - • inspect - • io - • linecache - • os - • pdb - • re - • sys - • traceback - • unittest - -
-
-imported by: - lxml.doctestcompare - -
- -
- -
- - docx -Package
-imports: - __future__ - • docx.api - • docx.opc.constants - • docx.opc.part - • docx.opc.parts.coreprops - • docx.parts.comments - • docx.parts.document - • docx.parts.hdrftr - • docx.parts.image - • docx.parts.numbering - • docx.parts.settings - • docx.parts.styles - • typing - -
-
-imported by: - docx.api - • docx.blkcntnr - • docx.comments - • docx.dml - • docx.document - • docx.drawing - • docx.enum - • docx.exceptions - • docx.image - • docx.opc - • docx.oxml - • docx.package - • docx.parts - • docx.section - • docx.settings - • docx.shape - • docx.shared - • docx.styles - • docx.table - • docx.text - • docx.types - • tools.content_tools - • tools.document_tools - • utils.document_utils - -
- -
- -
- - docx.api -SourceModule
-imports: - __future__ - • docx - • docx.document - • docx.opc.constants - • docx.package - • docx.parts.document - • os - • typing - -
-
-imported by: - docx - -
- -
- -
- - docx.blkcntnr -SourceModule
-imports: - __future__ - • docx - • docx.oxml.comments - • docx.oxml.document - • docx.oxml.section - • docx.oxml.table - • docx.oxml.text.paragraph - • docx.shared - • docx.styles.style - • docx.table - • docx.text.paragraph - • docx.types - • typing - • typing_extensions - -
-
-imported by: - docx.comments - • docx.document - • docx.section - • docx.table - -
- -
- -
- - docx.comments -SourceModule
-imports: - __future__ - • datetime - • docx - • docx.blkcntnr - • docx.oxml.comments - • docx.parts.comments - • docx.styles.style - • docx.text.paragraph - • typing - -
-
-imported by: - docx.document - • docx.parts.comments - • docx.parts.document - -
- -
- -
- - docx.dml -Package
-imports: - docx - -
-
-imported by: - docx.dml.color - -
- -
- -
- - docx.dml.color -SourceModule
-imports: - __future__ - • docx.dml - • docx.enum.dml - • docx.oxml.simpletypes - • docx.oxml.text.font - • docx.oxml.text.run - • docx.shared - • typing - • typing_extensions - -
-
-imported by: - docx.text.font - -
- -
- -
- - docx.document -SourceModule
-imports: - __future__ - • docx - • docx.blkcntnr - • docx.comments - • docx.enum.section - • docx.enum.text - • docx.oxml.document - • docx.parts.document - • docx.section - • docx.settings - • docx.shared - • docx.styles.style - • docx.table - • docx.text.paragraph - • docx.text.run - • docx.types - • typing - -
-
-imported by: - docx.api - • docx.parts.document - -
- -
- -
- - docx.drawing -Package
-imports: - __future__ - • docx - • docx.image.image - • docx.oxml.drawing - • docx.shared - • docx.types - • typing - -
-
-imported by: - docx.text.run - -
- -
- -
- - docx.enum -Package
-imports: - docx - -
-
-imported by: - docx.enum.base - • docx.enum.dml - • docx.enum.section - • docx.enum.shape - • docx.enum.style - • docx.enum.table - • docx.enum.text - -
- -
- -
- - docx.enum.base -SourceModule
-imports: - __future__ - • docx.enum - • enum - • textwrap - • typing - • typing_extensions - -
-
-imported by: - docx.enum.dml - • docx.enum.section - • docx.enum.style - • docx.enum.table - • docx.enum.text - • docx.oxml.xmlchemy - -
- -
- -
- - docx.enum.dml -SourceModule
-imports: - docx.enum - • docx.enum.base - -
-
-imported by: - docx.dml.color - • docx.oxml.text.font - -
- -
- -
- - docx.enum.section -SourceModule
-imports: - docx.enum - • docx.enum.base - -
-
-imported by: - docx.document - • docx.oxml.section - • docx.section - -
- -
- -
- - docx.enum.shape -SourceModule
-imports: - docx.enum - • enum - -
-
-imported by: - docx.shape - -
- -
- -
- - docx.enum.style -SourceModule
-imports: - docx.enum - • docx.enum.base - -
-
-imported by: - core.styles - • docx.oxml.styles - • docx.parts.document - • docx.parts.story - • docx.styles.style - • docx.styles.styles - • docx.table - • docx.text.paragraph - • docx.text.run - -
- -
- -
- - docx.enum.table -SourceModule
-imports: - docx.enum - • docx.enum.base - -
-
-imported by: - core.tables - • docx.oxml.table - • docx.table - • tools.content_tools - • tools.document_tools - -
- -
- -
- - docx.enum.text -SourceModule
-imports: - __future__ - • docx.enum - • docx.enum.base - • enum - -
-
-imported by: - docx.document - • docx.oxml.table - • docx.oxml.text.font - • docx.oxml.text.paragraph - • docx.oxml.text.parfmt - • docx.text.font - • docx.text.paragraph - • docx.text.parfmt - • docx.text.run - • docx.text.tabstops - • tools.document_tools - -
- -
- -
- - docx.exceptions -SourceModule
-imports: - docx - -
-
-imported by: - docx.oxml.simpletypes - • docx.oxml.table - -
- -
- -
- - docx.image -Package
-imports: - docx - • docx.image.bmp - • docx.image.gif - • docx.image.jpeg - • docx.image.png - • docx.image.tiff - -
-
-imported by: - docx.image.bmp - • docx.image.constants - • docx.image.exceptions - • docx.image.gif - • docx.image.helpers - • docx.image.image - • docx.image.jpeg - • docx.image.png - • docx.image.tiff - -
- -
- -
- - docx.image.bmp -SourceModule
-imports: - docx.image - • docx.image.constants - • docx.image.helpers - • docx.image.image - -
-
-imported by: - docx.image - -
- -
- -
- - docx.image.constants -SourceModule
-imports: - docx.image - -
-
-imported by: - docx.image.bmp - • docx.image.gif - • docx.image.jpeg - • docx.image.png - • docx.image.tiff - -
- -
- -
- - docx.image.exceptions -SourceModule
-imports: - docx.image - -
-
-imported by: - docx.image.helpers - • docx.image.image - • docx.image.png - -
- -
- -
- - docx.image.gif -SourceModule
-imports: - docx.image - • docx.image.constants - • docx.image.image - • struct - -
-
-imported by: - docx.image - -
- -
- -
- - docx.image.helpers -SourceModule
-imports: - docx.image - • docx.image.exceptions - • struct - -
-
-imported by: - docx.image.bmp - • docx.image.jpeg - • docx.image.png - • docx.image.tiff - -
- -
- -
- - docx.image.image -SourceModule
-imports: - __future__ - • docx.image - • docx.image.exceptions - • docx.shared - • hashlib - • io - • os - • typing - -
-
-imported by: - docx.drawing - • docx.image.bmp - • docx.image.gif - • docx.image.jpeg - • docx.image.png - • docx.image.tiff - • docx.package - • docx.parts.image - • docx.parts.story - -
- -
- -
- - docx.image.jpeg -SourceModule
-imports: - docx.image - • docx.image.constants - • docx.image.helpers - • docx.image.image - • docx.image.tiff - • io - -
-
-imported by: - docx.image - -
- -
- -
- - docx.image.png -SourceModule
-imports: - docx.image - • docx.image.constants - • docx.image.exceptions - • docx.image.helpers - • docx.image.image - -
-
-imported by: - docx.image - -
- -
- -
- - docx.image.tiff -SourceModule
-imports: - docx.image - • docx.image.constants - • docx.image.helpers - • docx.image.image - -
-
-imported by: - docx.image - • docx.image.jpeg - -
- -
- -
- - docx.opc -Package
-imports: - docx - -
-
-imported by: - docx.opc.constants - • docx.opc.coreprops - • docx.opc.exceptions - • docx.opc.oxml - • docx.opc.package - • docx.opc.packuri - • docx.opc.part - • docx.opc.parts - • docx.opc.phys_pkg - • docx.opc.pkgreader - • docx.opc.pkgwriter - • docx.opc.rel - • docx.opc.shared - • docx.opc.spec - -
- -
- -
- - docx.opc.constants -SourceModule
-imports: - docx.opc - -
-
-imported by: - docx - • docx.api - • docx.opc.oxml - • docx.opc.package - • docx.opc.parts.coreprops - • docx.opc.pkgreader - • docx.opc.pkgwriter - • docx.opc.spec - • docx.package - • docx.parts.comments - • docx.parts.document - • docx.parts.hdrftr - • docx.parts.settings - • docx.parts.story - • docx.parts.styles - -
- -
- -
- - docx.opc.coreprops -SourceModule
-imports: - __future__ - • datetime - • docx.opc - • docx.oxml.coreprops - • typing - -
-
-imported by: - docx.opc.package - • docx.opc.parts.coreprops - • docx.parts.document - -
- -
- -
- - docx.opc.exceptions -SourceModule
-imports: - docx.opc - -
-
-imported by: - docx.opc.phys_pkg - -
- -
- -
- - docx.opc.oxml -SourceModule
-imports: - __future__ - • docx.opc - • docx.opc.constants - • lxml - • lxml.etree - • typing - -
-
-imported by: - docx.opc.part - • docx.opc.pkgreader - • docx.opc.pkgwriter - • docx.opc.rel - -
- -
- -
- - docx.opc.package -SourceModule
-imports: - __future__ - • docx.opc - • docx.opc.constants - • docx.opc.coreprops - • docx.opc.packuri - • docx.opc.part - • docx.opc.parts.coreprops - • docx.opc.pkgreader - • docx.opc.pkgwriter - • docx.opc.rel - • docx.shared - • typing - • typing_extensions - -
-
-imported by: - docx.opc.parts.coreprops - • docx.package - • docx.parts.image - • docx.parts.styles - -
- -
- -
- - docx.opc.packuri -SourceModule
-imports: - __future__ - • docx.opc - • posixpath - • re - -
-
-imported by: - docx.opc.package - • docx.opc.part - • docx.opc.parts.coreprops - • docx.opc.phys_pkg - • docx.opc.pkgreader - • docx.opc.pkgwriter - • docx.package - • docx.parts.comments - • docx.parts.image - • docx.parts.settings - • docx.parts.styles - -
- -
- -
- - docx.opc.part -SourceModule
-imports: - __future__ - • docx.opc - • docx.opc.oxml - • docx.opc.packuri - • docx.opc.rel - • docx.opc.shared - • docx.oxml.parser - • docx.oxml.xmlchemy - • docx.package - • docx.shared - • typing - -
-
-imported by: - docx - • docx.opc.package - • docx.opc.parts.coreprops - • docx.opc.pkgwriter - • docx.opc.rel - • docx.parts.image - • docx.parts.numbering - • docx.parts.settings - • docx.parts.story - • docx.parts.styles - • docx.shared - • docx.types - -
- -
- -
- - docx.opc.parts -Package
-imports: - docx.opc - -
-
-imported by: - docx.opc.parts.coreprops - -
- -
- -
- - docx.opc.parts.coreprops -SourceModule
-imports: - __future__ - • datetime - • docx.opc.constants - • docx.opc.coreprops - • docx.opc.package - • docx.opc.packuri - • docx.opc.part - • docx.opc.parts - • docx.oxml.coreprops - • typing - -
-
-imported by: - docx - • docx.opc.package - -
- -
- -
- - docx.opc.phys_pkg -SourceModule
-imports: - docx.opc - • docx.opc.exceptions - • docx.opc.packuri - • os - • zipfile - -
-
-imported by: - docx.opc.pkgreader - • docx.opc.pkgwriter - -
- -
- -
- - docx.opc.pkgreader -SourceModule
-imports: - docx.opc - • docx.opc.constants - • docx.opc.oxml - • docx.opc.packuri - • docx.opc.phys_pkg - • docx.opc.shared - -
-
-imported by: - docx.opc.package - -
- -
- -
- - docx.opc.pkgwriter -SourceModule
-imports: - __future__ - • docx.opc - • docx.opc.constants - • docx.opc.oxml - • docx.opc.packuri - • docx.opc.part - • docx.opc.phys_pkg - • docx.opc.shared - • docx.opc.spec - • typing - -
-
-imported by: - docx.opc.package - -
- -
- -
- - docx.opc.rel -SourceModule
-imports: - __future__ - • docx.opc - • docx.opc.oxml - • docx.opc.part - • typing - -
-
-imported by: - docx.opc.package - • docx.opc.part - -
- -
- -
- - docx.opc.shared -SourceModule
-imports: - __future__ - • docx.opc - • typing - -
-
-imported by: - docx.opc.part - • docx.opc.pkgreader - • docx.opc.pkgwriter - -
- -
- -
- - docx.opc.spec -SourceModule
-imports: - docx.opc - • docx.opc.constants - -
-
-imported by: - docx.opc.pkgwriter - -
- -
- -
- - docx.oxml -Package
-imports: - __future__ - • docx - • docx.oxml.comments - • docx.oxml.coreprops - • docx.oxml.document - • docx.oxml.drawing - • docx.oxml.numbering - • docx.oxml.parser - • docx.oxml.section - • docx.oxml.settings - • docx.oxml.shape - • docx.oxml.shared - • docx.oxml.styles - • docx.oxml.table - • docx.oxml.text.font - • docx.oxml.text.hyperlink - • docx.oxml.text.pagebreak - • docx.oxml.text.paragraph - • docx.oxml.text.parfmt - • docx.oxml.text.run - -
-
-imported by: - core.tables - • docx.oxml.comments - • docx.oxml.coreprops - • docx.oxml.document - • docx.oxml.drawing - • docx.oxml.exceptions - • docx.oxml.ns - • docx.oxml.numbering - • docx.oxml.parser - • docx.oxml.section - • docx.oxml.settings - • docx.oxml.shape - • docx.oxml.shared - • docx.oxml.simpletypes - • docx.oxml.styles - • docx.oxml.table - • docx.oxml.text - • docx.oxml.xmlchemy - • tools.document_tools - -
- -
- -
- - docx.oxml.comments -SourceModule
-imports: - __future__ - • datetime - • docx.oxml - • docx.oxml.ns - • docx.oxml.parser - • docx.oxml.simpletypes - • docx.oxml.table - • docx.oxml.text.paragraph - • docx.oxml.xmlchemy - • typing - -
-
-imported by: - docx.blkcntnr - • docx.comments - • docx.oxml - • docx.parts.comments - -
- -
- -
- - docx.oxml.coreprops -SourceModule
-imports: - __future__ - • datetime - • docx.oxml - • docx.oxml.ns - • docx.oxml.parser - • docx.oxml.xmlchemy - • lxml.etree - • re - • typing - -
-
-imported by: - docx.opc.coreprops - • docx.opc.parts.coreprops - • docx.oxml - -
- -
- -
- - docx.oxml.document -SourceModule
-imports: - __future__ - • docx.oxml - • docx.oxml.section - • docx.oxml.table - • docx.oxml.text.paragraph - • docx.oxml.xmlchemy - • typing - -
-
-imported by: - docx.blkcntnr - • docx.document - • docx.oxml - • docx.section - • docx.shape - -
- -
- -
- - docx.oxml.drawing -SourceModule
-imports: - docx.oxml - • docx.oxml.xmlchemy - -
-
-imported by: - docx.drawing - • docx.oxml - • docx.oxml.text.run - • docx.text.run - -
- -
- -
- - docx.oxml.exceptions -SourceModule
-imports: - docx.oxml - -
-
-imported by: - docx.oxml.xmlchemy - -
- -
- -
- - docx.oxml.ns -SourceModule
-imports: - __future__ - • docx.oxml - • typing - -
-
-imported by: - core.styles - • core.tables - • docx.oxml.comments - • docx.oxml.coreprops - • docx.oxml.parser - • docx.oxml.section - • docx.oxml.shape - • docx.oxml.shared - • docx.oxml.table - • docx.oxml.text.font - • docx.oxml.text.run - • docx.oxml.xmlchemy - • docx.shape - -
- -
- -
- - docx.oxml.numbering -SourceModule
-imports: - docx.oxml - • docx.oxml.parser - • docx.oxml.shared - • docx.oxml.simpletypes - • docx.oxml.xmlchemy - -
-
-imported by: - docx.oxml - -
- -
- -
- - docx.oxml.parser -SourceModule
-imports: - __future__ - • docx.oxml - • docx.oxml.ns - • docx.oxml.xmlchemy - • lxml - • lxml.etree - • typing - -
-
-imported by: - docx.opc.part - • docx.oxml - • docx.oxml.comments - • docx.oxml.coreprops - • docx.oxml.numbering - • docx.oxml.shape - • docx.oxml.shared - • docx.oxml.table - • docx.oxml.text.font - • docx.oxml.text.paragraph - • docx.oxml.text.run - • docx.oxml.xmlchemy - • docx.parts.comments - • docx.parts.hdrftr - • docx.parts.settings - • docx.parts.styles - -
- -
- -
- - docx.oxml.section -SourceModule
-imports: - __future__ - • copy - • docx.enum.section - • docx.oxml - • docx.oxml.ns - • docx.oxml.shared - • docx.oxml.simpletypes - • docx.oxml.table - • docx.oxml.text.paragraph - • docx.oxml.xmlchemy - • docx.shared - • lxml - • lxml.etree - • typing - • typing_extensions - -
-
-imported by: - docx.blkcntnr - • docx.oxml - • docx.oxml.document - • docx.oxml.text.paragraph - • docx.oxml.text.parfmt - • docx.section - -
- -
- -
- - docx.oxml.settings -SourceModule
-imports: - __future__ - • docx.oxml - • docx.oxml.shared - • docx.oxml.xmlchemy - • typing - -
-
-imported by: - docx.oxml - • docx.parts.settings - • docx.settings - -
- -
- -
- - docx.oxml.shape -SourceModule
-imports: - __future__ - • docx.oxml - • docx.oxml.ns - • docx.oxml.parser - • docx.oxml.simpletypes - • docx.oxml.xmlchemy - • docx.shared - • typing - -
-
-imported by: - docx.oxml - • docx.oxml.text.run - • docx.parts.story - • docx.shape - -
- -
- -
- - docx.oxml.shared -SourceModule
-imports: - __future__ - • docx.oxml - • docx.oxml.ns - • docx.oxml.parser - • docx.oxml.simpletypes - • docx.oxml.xmlchemy - • typing - -
-
-imported by: - core.tables - • docx.oxml - • docx.oxml.numbering - • docx.oxml.section - • docx.oxml.settings - • docx.oxml.table - • docx.oxml.text.font - • docx.oxml.text.parfmt - • tools.content_tools - • tools.document_tools - -
- -
- -
- - docx.oxml.simpletypes -SourceModule
-imports: - __future__ - • datetime - • docx.exceptions - • docx.oxml - • docx.shared - • typing - -
-
-imported by: - docx.dml.color - • docx.oxml.comments - • docx.oxml.numbering - • docx.oxml.section - • docx.oxml.shape - • docx.oxml.shared - • docx.oxml.styles - • docx.oxml.table - • docx.oxml.text.font - • docx.oxml.text.hyperlink - • docx.oxml.text.parfmt - • docx.oxml.text.run - • docx.oxml.xmlchemy - • docx.table - -
- -
- -
- - docx.oxml.styles -SourceModule
-imports: - __future__ - • docx.enum.style - • docx.oxml - • docx.oxml.simpletypes - • docx.oxml.xmlchemy - -
-
-imported by: - docx.oxml - • docx.styles.style - • docx.styles.styles - -
- -
- -
- - docx.oxml.table -SourceModule
-imports: - __future__ - • docx.enum.table - • docx.enum.text - • docx.exceptions - • docx.oxml - • docx.oxml.ns - • docx.oxml.parser - • docx.oxml.shared - • docx.oxml.simpletypes - • docx.oxml.text.paragraph - • docx.oxml.text.parfmt - • docx.oxml.xmlchemy - • docx.shared - • typing - -
-
-imported by: - docx.blkcntnr - • docx.oxml - • docx.oxml.comments - • docx.oxml.document - • docx.oxml.section - • docx.table - -
- -
- -
- - docx.oxml.text -Package
-imports: - docx.oxml - -
-
-imported by: - docx.oxml.text.font - • docx.oxml.text.hyperlink - • docx.oxml.text.pagebreak - • docx.oxml.text.paragraph - • docx.oxml.text.parfmt - • docx.oxml.text.run - -
- -
- -
- - docx.oxml.text.font -SourceModule
-imports: - __future__ - • docx.enum.dml - • docx.enum.text - • docx.oxml.ns - • docx.oxml.parser - • docx.oxml.shared - • docx.oxml.simpletypes - • docx.oxml.text - • docx.oxml.xmlchemy - • docx.shared - • typing - -
-
-imported by: - docx.dml.color - • docx.oxml - • docx.oxml.text.run - -
- -
- -
- - docx.oxml.text.hyperlink -SourceModule
-imports: - __future__ - • docx.oxml.simpletypes - • docx.oxml.text - • docx.oxml.text.pagebreak - • docx.oxml.text.run - • docx.oxml.xmlchemy - • typing - -
-
-imported by: - docx.oxml - • docx.oxml.text.pagebreak - • docx.oxml.text.paragraph - • docx.text.hyperlink - -
- -
- -
- - docx.oxml.text.pagebreak -SourceModule
-imports: - __future__ - • copy - • docx.oxml.text - • docx.oxml.text.hyperlink - • docx.oxml.text.paragraph - • docx.oxml.xmlchemy - • docx.shared - • typing - -
-
-imported by: - docx.oxml - • docx.oxml.text.hyperlink - • docx.oxml.text.paragraph - • docx.oxml.text.run - • docx.text.pagebreak - • docx.text.run - -
- -
- -
- - docx.oxml.text.paragraph -SourceModule
-imports: - __future__ - • docx.enum.text - • docx.oxml.parser - • docx.oxml.section - • docx.oxml.text - • docx.oxml.text.hyperlink - • docx.oxml.text.pagebreak - • docx.oxml.text.parfmt - • docx.oxml.text.run - • docx.oxml.xmlchemy - • typing - -
-
-imported by: - docx.blkcntnr - • docx.oxml - • docx.oxml.comments - • docx.oxml.document - • docx.oxml.section - • docx.oxml.table - • docx.oxml.text.pagebreak - • docx.section - • docx.text.paragraph - -
- -
- -
- - docx.oxml.text.parfmt -SourceModule
-imports: - __future__ - • docx.enum.text - • docx.oxml.section - • docx.oxml.shared - • docx.oxml.simpletypes - • docx.oxml.text - • docx.oxml.xmlchemy - • docx.shared - • typing - -
-
-imported by: - docx.oxml - • docx.oxml.table - • docx.oxml.text.paragraph - • docx.oxml.text.run - -
- -
- -
- - docx.oxml.text.run -SourceModule
-imports: - __future__ - • docx.oxml.drawing - • docx.oxml.ns - • docx.oxml.parser - • docx.oxml.shape - • docx.oxml.simpletypes - • docx.oxml.text - • docx.oxml.text.font - • docx.oxml.text.pagebreak - • docx.oxml.text.parfmt - • docx.oxml.xmlchemy - • docx.shared - • typing - -
-
-imported by: - docx.dml.color - • docx.oxml - • docx.oxml.text.hyperlink - • docx.oxml.text.paragraph - • docx.text.font - • docx.text.paragraph - • docx.text.run - -
- -
- -
- - docx.oxml.xmlchemy -SourceModule
-imports: - __future__ - • docx.enum.base - • docx.oxml - • docx.oxml.exceptions - • docx.oxml.ns - • docx.oxml.parser - • docx.oxml.simpletypes - • docx.shared - • lxml - • lxml.etree - • re - • typing - -
-
-imported by: - docx.opc.part - • docx.oxml.comments - • docx.oxml.coreprops - • docx.oxml.document - • docx.oxml.drawing - • docx.oxml.numbering - • docx.oxml.parser - • docx.oxml.section - • docx.oxml.settings - • docx.oxml.shape - • docx.oxml.shared - • docx.oxml.styles - • docx.oxml.table - • docx.oxml.text.font - • docx.oxml.text.hyperlink - • docx.oxml.text.pagebreak - • docx.oxml.text.paragraph - • docx.oxml.text.parfmt - • docx.oxml.text.run - • docx.settings - • docx.shared - -
- -
- -
- - docx.package -SourceModule
-imports: - __future__ - • docx - • docx.image.image - • docx.opc.constants - • docx.opc.package - • docx.opc.packuri - • docx.parts.image - • docx.shared - • typing - -
-
-imported by: - docx.api - • docx.opc.part - • docx.parts.comments - • docx.parts.hdrftr - • docx.parts.settings - -
- -
- -
- - docx.parts -Package
-imports: - docx - -
-
-imported by: - docx.parts.comments - • docx.parts.document - • docx.parts.hdrftr - • docx.parts.image - • docx.parts.numbering - • docx.parts.settings - • docx.parts.story - • docx.parts.styles - -
- -
- -
- - docx.parts.comments -SourceModule
-imports: - __future__ - • docx.comments - • docx.opc.constants - • docx.opc.packuri - • docx.oxml.comments - • docx.oxml.parser - • docx.package - • docx.parts - • docx.parts.story - • os - • typing - • typing_extensions - -
-
-imported by: - docx - • docx.comments - • docx.parts.document - -
- -
- -
- - docx.parts.document -SourceModule
-imports: - __future__ - • docx.comments - • docx.document - • docx.enum.style - • docx.opc.constants - • docx.opc.coreprops - • docx.parts - • docx.parts.comments - • docx.parts.hdrftr - • docx.parts.numbering - • docx.parts.settings - • docx.parts.story - • docx.parts.styles - • docx.settings - • docx.shape - • docx.shared - • docx.styles.style - • typing - -
-
-imported by: - docx - • docx.api - • docx.document - • docx.parts.story - • docx.section - -
- -
- -
- - docx.parts.hdrftr -SourceModule
-imports: - __future__ - • docx.opc.constants - • docx.oxml.parser - • docx.package - • docx.parts - • docx.parts.story - • os - • typing - -
-
-imported by: - docx - • docx.parts.document - • docx.section - -
- -
- -
- - docx.parts.image -SourceModule
-imports: - __future__ - • docx.image.image - • docx.opc.package - • docx.opc.packuri - • docx.opc.part - • docx.parts - • docx.shared - • hashlib - • typing - -
-
-imported by: - docx - • docx.package - -
- -
- -
- - docx.parts.numbering -SourceModule
-imports: - docx.opc.part - • docx.parts - • docx.shared - -
-
-imported by: - docx - • docx.parts.document - -
- -
- -
- - docx.parts.settings -SourceModule
-imports: - __future__ - • docx.opc.constants - • docx.opc.packuri - • docx.opc.part - • docx.oxml.parser - • docx.oxml.settings - • docx.package - • docx.parts - • docx.settings - • os - • typing - -
-
-imported by: - docx - • docx.parts.document - -
- -
- -
- - docx.parts.story -SourceModule
-imports: - __future__ - • docx.enum.style - • docx.image.image - • docx.opc.constants - • docx.opc.part - • docx.oxml.shape - • docx.parts - • docx.parts.document - • docx.shared - • docx.styles.style - • typing - -
-
-imported by: - docx.parts.comments - • docx.parts.document - • docx.parts.hdrftr - • docx.section - • docx.shape - • docx.shared - • docx.types - -
- -
- -
- - docx.parts.styles -SourceModule
-imports: - __future__ - • docx.opc.constants - • docx.opc.package - • docx.opc.packuri - • docx.opc.part - • docx.oxml.parser - • docx.parts - • docx.styles.styles - • os - • typing - -
-
-imported by: - docx - • docx.parts.document - -
- -
- -
- - docx.section -SourceModule
-imports: - __future__ - • docx - • docx.blkcntnr - • docx.enum.section - • docx.oxml.document - • docx.oxml.section - • docx.oxml.text.paragraph - • docx.parts.document - • docx.parts.hdrftr - • docx.parts.story - • docx.shared - • docx.table - • docx.text.paragraph - • typing - -
-
-imported by: - docx.document - -
- -
- -
- - docx.settings -SourceModule
-imports: - __future__ - • docx - • docx.oxml.settings - • docx.oxml.xmlchemy - • docx.shared - • docx.types - • typing - -
-
-imported by: - docx.document - • docx.parts.document - • docx.parts.settings - -
- -
- -
- - docx.shape -SourceModule
-imports: - __future__ - • docx - • docx.enum.shape - • docx.oxml.document - • docx.oxml.ns - • docx.oxml.shape - • docx.parts.story - • docx.shared - • typing - -
-
-imported by: - docx.parts.document - • docx.text.run - -
- -
- -
- - docx.shared -SourceModule
-imports: - __future__ - • docx - • docx.opc.part - • docx.oxml.xmlchemy - • docx.parts.story - • docx.types - • functools - • typing - -
-
-imported by: - core.styles - • core.tables - • docx.blkcntnr - • docx.dml.color - • docx.document - • docx.drawing - • docx.image.image - • docx.opc.package - • docx.opc.part - • docx.oxml.section - • docx.oxml.shape - • docx.oxml.simpletypes - • docx.oxml.table - • docx.oxml.text.font - • docx.oxml.text.pagebreak - • docx.oxml.text.parfmt - • docx.oxml.text.run - • docx.oxml.xmlchemy - • docx.package - • docx.parts.document - • docx.parts.image - • docx.parts.numbering - • docx.parts.story - • docx.section - • docx.settings - • docx.shape - • docx.styles.latent - • docx.styles.style - • docx.styles.styles - • docx.table - • docx.text.font - • docx.text.hyperlink - • docx.text.pagebreak - • docx.text.paragraph - • docx.text.parfmt - • docx.text.run - • docx.text.tabstops - • tools.content_tools - • tools.document_tools - -
- -
- -
- - docx.styles -Package
-imports: - __future__ - • docx - • typing - -
-
-imported by: - docx.styles.latent - • docx.styles.style - • docx.styles.styles - -
- -
- -
- - docx.styles.latent -SourceModule
-imports: - docx.shared - • docx.styles - -
-
-imported by: - docx.styles.styles - -
- -
- -
- - docx.styles.style -SourceModule
-imports: - __future__ - • docx.enum.style - • docx.oxml.styles - • docx.shared - • docx.styles - • docx.text.font - • docx.text.parfmt - • typing - -
-
-imported by: - docx.blkcntnr - • docx.comments - • docx.document - • docx.parts.document - • docx.parts.story - • docx.styles.styles - • docx.table - • docx.text.paragraph - • docx.text.run - -
- -
- -
- - docx.styles.styles -SourceModule
-imports: - __future__ - • docx.enum.style - • docx.oxml.styles - • docx.shared - • docx.styles - • docx.styles.latent - • docx.styles.style - • warnings - -
-
-imported by: - docx.parts.styles - -
- -
- -
- - docx.table -SourceModule
-imports: - __future__ - • docx - • docx.blkcntnr - • docx.enum.style - • docx.enum.table - • docx.oxml.simpletypes - • docx.oxml.table - • docx.shared - • docx.styles.style - • docx.types - • typing - • typing_extensions - -
-
-imported by: - docx.blkcntnr - • docx.document - • docx.section - -
- -
- -
- - docx.text -Package
-imports: - docx - -
-
-imported by: - docx.text.font - • docx.text.hyperlink - • docx.text.pagebreak - • docx.text.paragraph - • docx.text.parfmt - • docx.text.run - • docx.text.tabstops - -
- -
- -
- - docx.text.font -SourceModule
-imports: - __future__ - • docx.dml.color - • docx.enum.text - • docx.oxml.text.run - • docx.shared - • docx.text - • typing - -
-
-imported by: - docx.styles.style - • docx.text.run - -
- -
- -
- - docx.text.hyperlink -SourceModule
-imports: - __future__ - • docx.oxml.text.hyperlink - • docx.shared - • docx.text - • docx.text.run - • docx.types - • typing - -
-
-imported by: - docx.text.paragraph - -
- -
- -
- - docx.text.pagebreak -SourceModule
-imports: - __future__ - • docx.oxml.text.pagebreak - • docx.shared - • docx.text - • docx.text.paragraph - • docx.types - • typing - -
-
-imported by: - docx.text.paragraph - • docx.text.run - -
- -
- -
- - docx.text.paragraph -SourceModule
-imports: - __future__ - • docx.enum.style - • docx.enum.text - • docx.oxml.text.paragraph - • docx.oxml.text.run - • docx.shared - • docx.styles.style - • docx.text - • docx.text.hyperlink - • docx.text.pagebreak - • docx.text.parfmt - • docx.text.run - • docx.types - • typing - -
-
-imported by: - docx.blkcntnr - • docx.comments - • docx.document - • docx.section - • docx.text.pagebreak - -
- -
- -
- - docx.text.parfmt -SourceModule
-imports: - docx.enum.text - • docx.shared - • docx.text - • docx.text.tabstops - -
-
-imported by: - docx.styles.style - • docx.text.paragraph - -
- -
- -
- - docx.text.run -SourceModule
-imports: - __future__ - • docx.drawing - • docx.enum.style - • docx.enum.text - • docx.oxml.drawing - • docx.oxml.text.pagebreak - • docx.oxml.text.run - • docx.shape - • docx.shared - • docx.styles.style - • docx.text - • docx.text.font - • docx.text.pagebreak - • docx.types - • typing - -
-
-imported by: - docx.document - • docx.text.hyperlink - • docx.text.paragraph - -
- -
- -
- - docx.text.tabstops -SourceModule
-imports: - docx.enum.text - • docx.shared - • docx.text - -
-
-imported by: - docx.text.parfmt - -
- -
- -
- - docx.types -SourceModule
-imports: - __future__ - • docx - • docx.opc.part - • docx.parts.story - • typing - • typing_extensions - -
-
-imported by: - docx.blkcntnr - • docx.document - • docx.drawing - • docx.settings - • docx.shared - • docx.table - • docx.text.hyperlink - • docx.text.pagebreak - • docx.text.paragraph - • docx.text.run - -
- -
- -
- - dummy_threading -MissingModule
-imported by: - requests.cookies - -
- -
- -
- - email -Package
-imports: - email._header_value_parser - • email.charset - • email.errors - • email.header - • email.parser - -
-
-imported by: - email._encoded_words - • email._header_value_parser - • email._parseaddr - • email._policybase - • email.base64mime - • email.charset - • email.contentmanager - • email.encoders - • email.errors - • email.feedparser - • email.generator - • email.header - • email.headerregistry - • email.iterators - • email.message - • email.parser - • email.policy - • email.quoprimime - • email.utils - • importlib.metadata - • urllib.request - • urllib3.util.retry - -
- -
- -
- - email._encoded_words -SourceModule
-imports: - base64 - • binascii - • email - • email.errors - • functools - • re - • string - -
-
-imported by: - email._header_value_parser - • email.message - -
- -
- -
- - email._header_value_parser -SourceModule
-imports: - email - • email._encoded_words - • email.errors - • email.utils - • operator - • re - • string - • sys - • urllib - -
-
-imported by: - email - • email.headerregistry - -
- -
- -
- - email._parseaddr -SourceModule
-imports: - calendar - • email - • time - -
-
-imported by: - email.utils - -
- -
- -
- - email._policybase -SourceModule
-imports: - abc - • email - • email.charset - • email.header - • email.utils - -
-
-imported by: - email.feedparser - • email.message - • email.parser - • email.policy - -
- -
- -
- - email.base64mime -SourceModule
-imports: - base64 - • binascii - • email - -
-
-imported by: - email.charset - • email.header - -
- -
- -
- - email.charset -SourceModule
-imports: - email - • email.base64mime - • email.encoders - • email.errors - • email.quoprimime - • functools - -
-
-imported by: - email - • email._policybase - • email.contentmanager - • email.header - • email.message - • email.utils - -
- -
- -
- - email.contentmanager -SourceModule
-imports: - binascii - • email - • email.charset - • email.errors - • email.message - • email.quoprimime - -
-
-imported by: - email.policy - -
- -
- -
- - email.encoders -SourceModule
-imports: - base64 - • email - • quopri - -
-
-imported by: - email.charset - -
- -
- -
- - email.errors -SourceModule
-imports: - email - -
-
-imported by: - email - • email._encoded_words - • email._header_value_parser - • email.charset - • email.contentmanager - • email.feedparser - • email.header - • email.headerregistry - • email.message - • urllib3.exceptions - • urllib3.util.response - -
- -
- -
- - email.feedparser -SourceModule
-imports: - collections - • email - • email._policybase - • email.errors - • email.message - • io - • re - -
-
-imported by: - email.parser - -
- -
- -
- - email.generator -SourceModule
-imports: - copy - • email - • email.utils - • io - • random - • re - • sys - • time - -
-
-imported by: - email.message - -
- -
- -
- - email.header -SourceModule
-imports: - binascii - • email - • email.base64mime - • email.charset - • email.errors - • email.quoprimime - • re - -
-
-imported by: - email - • email._policybase - -
- -
- -
- - email.headerregistry -SourceModule
-imports: - email - • email._header_value_parser - • email.errors - • email.utils - • types - -
-
-imported by: - email.policy - -
- -
- -
- - email.iterators -SourceModule
-imports: - email - • io - • sys - -
-
-imported by: - email.message - -
- -
- -
- - email.message -SourceModule
-imports: - email - • email._encoded_words - • email._policybase - • email.charset - • email.errors - • email.generator - • email.iterators - • email.policy - • email.utils - • io - • quopri - • re - • uu - -
-
-imported by: - cgi - • email.contentmanager - • email.feedparser - • email.policy - • http.client - • pydoc - -
- -
- -
- - email.parser -SourceModule
-imports: - email - • email._policybase - • email.feedparser - • io - -
-
-imported by: - cgi - • email - • http.client - • urllib3.contrib.emscripten.fetch - -
- -
- -
- - email.policy -SourceModule
-imports: - email - • email._policybase - • email.contentmanager - • email.headerregistry - • email.message - • email.utils - • re - • sys - -
-
-imported by: - email.message - -
- -
- -
- - email.quoprimime -SourceModule
-imports: - email - • re - • string - -
-
-imported by: - email.charset - • email.contentmanager - • email.header - -
- -
- -
- - email.utils -SourceModule
-imports: - datetime - • email - • email._parseaddr - • email.charset - • os - • random - • re - • socket - • time - • urllib.parse - -
-
-imported by: - email._header_value_parser - • email._policybase - • email.generator - • email.headerregistry - • email.message - • email.policy - • http.server - • urllib.request - • urllib3.fields - -
- -
- -
- - encodings -Package
-imports: - _winapi - • codecs - • encodings - • encodings.aliases - • encodings.ascii - • encodings.base64_codec - • encodings.big5 - • encodings.big5hkscs - • encodings.bz2_codec - • encodings.charmap - • encodings.cp037 - • encodings.cp1006 - • encodings.cp1026 - • encodings.cp1125 - • encodings.cp1140 - • encodings.cp1250 - • encodings.cp1251 - • encodings.cp1252 - • encodings.cp1253 - • encodings.cp1254 - • encodings.cp1255 - • encodings.cp1256 - • encodings.cp1257 - • encodings.cp1258 - • encodings.cp273 - • encodings.cp424 - • encodings.cp437 - • encodings.cp500 - • encodings.cp720 - • encodings.cp737 - • encodings.cp775 - • encodings.cp850 - • encodings.cp852 - • encodings.cp855 - • encodings.cp856 - • encodings.cp857 - • encodings.cp858 - • encodings.cp860 - • encodings.cp861 - • encodings.cp862 - • encodings.cp863 - • encodings.cp864 - • encodings.cp865 - • encodings.cp866 - • encodings.cp869 - • encodings.cp874 - • encodings.cp875 - • encodings.cp932 - • encodings.cp949 - • encodings.cp950 - • encodings.euc_jis_2004 - • encodings.euc_jisx0213 - • encodings.euc_jp - • encodings.euc_kr - • encodings.gb18030 - • encodings.gb2312 - • encodings.gbk - • encodings.hex_codec - • encodings.hp_roman8 - • encodings.hz - • encodings.idna - • encodings.iso2022_jp - • encodings.iso2022_jp_1 - • encodings.iso2022_jp_2 - • encodings.iso2022_jp_2004 - • encodings.iso2022_jp_3 - • encodings.iso2022_jp_ext - • encodings.iso2022_kr - • encodings.iso8859_1 - • encodings.iso8859_10 - • encodings.iso8859_11 - • encodings.iso8859_13 - • encodings.iso8859_14 - • encodings.iso8859_15 - • encodings.iso8859_16 - • encodings.iso8859_2 - • encodings.iso8859_3 - • encodings.iso8859_4 - • encodings.iso8859_5 - • encodings.iso8859_6 - • encodings.iso8859_7 - • encodings.iso8859_8 - • encodings.iso8859_9 - • encodings.johab - • encodings.koi8_r - • encodings.koi8_t - • encodings.koi8_u - • encodings.kz1048 - • encodings.latin_1 - • encodings.mac_arabic - • encodings.mac_croatian - • encodings.mac_cyrillic - • encodings.mac_farsi - • encodings.mac_greek - • encodings.mac_iceland - • encodings.mac_latin2 - • encodings.mac_roman - • encodings.mac_romanian - • encodings.mac_turkish - • encodings.mbcs - • encodings.oem - • encodings.palmos - • encodings.ptcp154 - • encodings.punycode - • encodings.quopri_codec - • encodings.raw_unicode_escape - • encodings.rot_13 - • encodings.shift_jis - • encodings.shift_jis_2004 - • encodings.shift_jisx0213 - • encodings.tis_620 - • encodings.undefined - • encodings.unicode_escape - • encodings.utf_16 - • encodings.utf_16_be - • encodings.utf_16_le - • encodings.utf_32 - • encodings.utf_32_be - • encodings.utf_32_le - • encodings.utf_7 - • encodings.utf_8 - • encodings.utf_8_sig - • encodings.uu_codec - • encodings.zlib_codec - • sys - -
-
-imported by: - Generate_Report.py - • codecs - • encodings - • encodings.aliases - • encodings.ascii - • encodings.base64_codec - • encodings.big5 - • encodings.big5hkscs - • encodings.bz2_codec - • encodings.charmap - • encodings.cp037 - • encodings.cp1006 - • encodings.cp1026 - • encodings.cp1125 - • encodings.cp1140 - • encodings.cp1250 - • encodings.cp1251 - • encodings.cp1252 - • encodings.cp1253 - • encodings.cp1254 - • encodings.cp1255 - • encodings.cp1256 - • encodings.cp1257 - • encodings.cp1258 - • encodings.cp273 - • encodings.cp424 - • encodings.cp437 - • encodings.cp500 - • encodings.cp720 - • encodings.cp737 - • encodings.cp775 - • encodings.cp850 - • encodings.cp852 - • encodings.cp855 - • encodings.cp856 - • encodings.cp857 - • encodings.cp858 - • encodings.cp860 - • encodings.cp861 - • encodings.cp862 - • encodings.cp863 - • encodings.cp864 - • encodings.cp865 - • encodings.cp866 - • encodings.cp869 - • encodings.cp874 - • encodings.cp875 - • encodings.cp932 - • encodings.cp949 - • encodings.cp950 - • encodings.euc_jis_2004 - • encodings.euc_jisx0213 - • encodings.euc_jp - • encodings.euc_kr - • encodings.gb18030 - • encodings.gb2312 - • encodings.gbk - • encodings.hex_codec - • encodings.hp_roman8 - • encodings.hz - • encodings.idna - • encodings.iso2022_jp - • encodings.iso2022_jp_1 - • encodings.iso2022_jp_2 - • encodings.iso2022_jp_2004 - • encodings.iso2022_jp_3 - • encodings.iso2022_jp_ext - • encodings.iso2022_kr - • encodings.iso8859_1 - • encodings.iso8859_10 - • encodings.iso8859_11 - • encodings.iso8859_13 - • encodings.iso8859_14 - • encodings.iso8859_15 - • encodings.iso8859_16 - • encodings.iso8859_2 - • encodings.iso8859_3 - • encodings.iso8859_4 - • encodings.iso8859_5 - • encodings.iso8859_6 - • encodings.iso8859_7 - • encodings.iso8859_8 - • encodings.iso8859_9 - • encodings.johab - • encodings.koi8_r - • encodings.koi8_t - • encodings.koi8_u - • encodings.kz1048 - • encodings.latin_1 - • encodings.mac_arabic - • encodings.mac_croatian - • encodings.mac_cyrillic - • encodings.mac_farsi - • encodings.mac_greek - • encodings.mac_iceland - • encodings.mac_latin2 - • encodings.mac_roman - • encodings.mac_romanian - • encodings.mac_turkish - • encodings.mbcs - • encodings.oem - • encodings.palmos - • encodings.ptcp154 - • encodings.punycode - • encodings.quopri_codec - • encodings.raw_unicode_escape - • encodings.rot_13 - • encodings.shift_jis - • encodings.shift_jis_2004 - • encodings.shift_jisx0213 - • encodings.tis_620 - • encodings.undefined - • encodings.unicode_escape - • encodings.utf_16 - • encodings.utf_16_be - • encodings.utf_16_le - • encodings.utf_32 - • encodings.utf_32_be - • encodings.utf_32_le - • encodings.utf_7 - • encodings.utf_8 - • encodings.utf_8_sig - • encodings.uu_codec - • encodings.zlib_codec - • locale - -
- -
- -
- - encodings.aliases -SourceModule
-imports: - encodings - -
-
-imported by: - Generate_Report.py - • charset_normalizer.constant - • charset_normalizer.models - • charset_normalizer.utils - • encodings - • locale - -
- -
- -
- - encodings.ascii -SourceModule
-imports: - codecs - • encodings - -
-
-imported by: - Generate_Report.py - • encodings - -
- -
- -
- - encodings.base64_codec -SourceModule
-imports: - base64 - • codecs - • encodings - -
-
-imported by: - Generate_Report.py - • encodings - -
- -
- -
- - encodings.big5 -SourceModule
-imports: - _codecs_tw - • _multibytecodec - • codecs - • encodings - -
-
-imported by: - Generate_Report.py - • encodings - -
- -
- -
- - encodings.big5hkscs -SourceModule
-imports: - _codecs_hk - • _multibytecodec - • codecs - • encodings - -
-
-imported by: - Generate_Report.py - • encodings - -
- -
- -
- - encodings.bz2_codec -SourceModule
-imports: - bz2 - • codecs - • encodings - -
-
-imported by: - Generate_Report.py - • encodings - -
- -
- -
- - encodings.charmap -SourceModule
-imports: - codecs - • encodings - -
-
-imported by: - Generate_Report.py - • encodings - -
- -
- -
- - encodings.cp037 -SourceModule
-imports: - codecs - • encodings - -
-
-imported by: - Generate_Report.py - • encodings - -
- -
- -
- - encodings.cp1006 -SourceModule
-imports: - codecs - • encodings - -
-
-imported by: - Generate_Report.py - • encodings - -
- -
- -
- - encodings.cp1026 -SourceModule
-imports: - codecs - • encodings - -
-
-imported by: - Generate_Report.py - • encodings - -
- -
- -
- - encodings.cp1125 -SourceModule
-imports: - codecs - • encodings - -
-
-imported by: - Generate_Report.py - • encodings - -
- -
- -
- - encodings.cp1140 -SourceModule
-imports: - codecs - • encodings - -
-
-imported by: - Generate_Report.py - • encodings - -
- -
- -
- - encodings.cp1250 -SourceModule
-imports: - codecs - • encodings - -
-
-imported by: - Generate_Report.py - • encodings - -
- -
- -
- - encodings.cp1251 -SourceModule
-imports: - codecs - • encodings - -
-
-imported by: - Generate_Report.py - • encodings - -
- -
- -
- - encodings.cp1252 -SourceModule
-imports: - codecs - • encodings - -
-
-imported by: - Generate_Report.py - • encodings - -
- -
- -
- - encodings.cp1253 -SourceModule
-imports: - codecs - • encodings - -
-
-imported by: - Generate_Report.py - • encodings - -
- -
- -
- - encodings.cp1254 -SourceModule
-imports: - codecs - • encodings - -
-
-imported by: - Generate_Report.py - • encodings - -
- -
- -
- - encodings.cp1255 -SourceModule
-imports: - codecs - • encodings - -
-
-imported by: - Generate_Report.py - • encodings - -
- -
- -
- - encodings.cp1256 -SourceModule
-imports: - codecs - • encodings - -
-
-imported by: - Generate_Report.py - • encodings - -
- -
- -
- - encodings.cp1257 -SourceModule
-imports: - codecs - • encodings - -
-
-imported by: - Generate_Report.py - • encodings - -
- -
- -
- - encodings.cp1258 -SourceModule
-imports: - codecs - • encodings - -
-
-imported by: - Generate_Report.py - • encodings - -
- -
- -
- - encodings.cp273 -SourceModule
-imports: - codecs - • encodings - -
-
-imported by: - Generate_Report.py - • encodings - -
- -
- -
- - encodings.cp424 -SourceModule
-imports: - codecs - • encodings - -
-
-imported by: - Generate_Report.py - • encodings - -
- -
- -
- - encodings.cp437 -SourceModule
-imports: - codecs - • encodings - -
-
-imported by: - Generate_Report.py - • encodings - -
- -
- -
- - encodings.cp500 -SourceModule
-imports: - codecs - • encodings - -
-
-imported by: - Generate_Report.py - • encodings - -
- -
- -
- - encodings.cp720 -SourceModule
-imports: - codecs - • encodings - -
-
-imported by: - Generate_Report.py - • encodings - -
- -
- -
- - encodings.cp737 -SourceModule
-imports: - codecs - • encodings - -
-
-imported by: - Generate_Report.py - • encodings - -
- -
- -
- - encodings.cp775 -SourceModule
-imports: - codecs - • encodings - -
-
-imported by: - Generate_Report.py - • encodings - -
- -
- -
- - encodings.cp850 -SourceModule
-imports: - codecs - • encodings - -
-
-imported by: - Generate_Report.py - • encodings - -
- -
- -
- - encodings.cp852 -SourceModule
-imports: - codecs - • encodings - -
-
-imported by: - Generate_Report.py - • encodings - -
- -
- -
- - encodings.cp855 -SourceModule
-imports: - codecs - • encodings - -
-
-imported by: - Generate_Report.py - • encodings - -
- -
- -
- - encodings.cp856 -SourceModule
-imports: - codecs - • encodings - -
-
-imported by: - Generate_Report.py - • encodings - -
- -
- -
- - encodings.cp857 -SourceModule
-imports: - codecs - • encodings - -
-
-imported by: - Generate_Report.py - • encodings - -
- -
- -
- - encodings.cp858 -SourceModule
-imports: - codecs - • encodings - -
-
-imported by: - Generate_Report.py - • encodings - -
- -
- -
- - encodings.cp860 -SourceModule
-imports: - codecs - • encodings - -
-
-imported by: - Generate_Report.py - • encodings - -
- -
- -
- - encodings.cp861 -SourceModule
-imports: - codecs - • encodings - -
-
-imported by: - Generate_Report.py - • encodings - -
- -
- -
- - encodings.cp862 -SourceModule
-imports: - codecs - • encodings - -
-
-imported by: - Generate_Report.py - • encodings - -
- -
- -
- - encodings.cp863 -SourceModule
-imports: - codecs - • encodings - -
-
-imported by: - Generate_Report.py - • encodings - -
- -
- -
- - encodings.cp864 -SourceModule
-imports: - codecs - • encodings - -
-
-imported by: - Generate_Report.py - • encodings - -
- -
- -
- - encodings.cp865 -SourceModule
-imports: - codecs - • encodings - -
-
-imported by: - Generate_Report.py - • encodings - -
- -
- -
- - encodings.cp866 -SourceModule
-imports: - codecs - • encodings - -
-
-imported by: - Generate_Report.py - • encodings - -
- -
- -
- - encodings.cp869 -SourceModule
-imports: - codecs - • encodings - -
-
-imported by: - Generate_Report.py - • encodings - -
- -
- -
- - encodings.cp874 -SourceModule
-imports: - codecs - • encodings - -
-
-imported by: - Generate_Report.py - • encodings - -
- -
- -
- - encodings.cp875 -SourceModule
-imports: - codecs - • encodings - -
-
-imported by: - Generate_Report.py - • encodings - -
- -
- -
- - encodings.cp932 -SourceModule
-imports: - _codecs_jp - • _multibytecodec - • codecs - • encodings - -
-
-imported by: - Generate_Report.py - • encodings - -
- -
- -
- - encodings.cp949 -SourceModule
-imports: - _codecs_kr - • _multibytecodec - • codecs - • encodings - -
-
-imported by: - Generate_Report.py - • encodings - -
- -
- -
- - encodings.cp950 -SourceModule
-imports: - _codecs_tw - • _multibytecodec - • codecs - • encodings - -
-
-imported by: - Generate_Report.py - • encodings - -
- -
- -
- - encodings.euc_jis_2004 -SourceModule
-imports: - _codecs_jp - • _multibytecodec - • codecs - • encodings - -
-
-imported by: - Generate_Report.py - • encodings - -
- -
- -
- - encodings.euc_jisx0213 -SourceModule
-imports: - _codecs_jp - • _multibytecodec - • codecs - • encodings - -
-
-imported by: - Generate_Report.py - • encodings - -
- -
- -
- - encodings.euc_jp -SourceModule
-imports: - _codecs_jp - • _multibytecodec - • codecs - • encodings - -
-
-imported by: - Generate_Report.py - • encodings - -
- -
- -
- - encodings.euc_kr -SourceModule
-imports: - _codecs_kr - • _multibytecodec - • codecs - • encodings - -
-
-imported by: - Generate_Report.py - • encodings - -
- -
- -
- - encodings.gb18030 -SourceModule
-imports: - _codecs_cn - • _multibytecodec - • codecs - • encodings - -
-
-imported by: - Generate_Report.py - • encodings - -
- -
- -
- - encodings.gb2312 -SourceModule
-imports: - _codecs_cn - • _multibytecodec - • codecs - • encodings - -
-
-imported by: - Generate_Report.py - • encodings - -
- -
- -
- - encodings.gbk -SourceModule
-imports: - _codecs_cn - • _multibytecodec - • codecs - • encodings - -
-
-imported by: - Generate_Report.py - • encodings - -
- -
- -
- - encodings.hex_codec -SourceModule
-imports: - binascii - • codecs - • encodings - -
-
-imported by: - Generate_Report.py - • encodings - -
- -
- -
- - encodings.hp_roman8 -SourceModule
-imports: - codecs - • encodings - -
-
-imported by: - Generate_Report.py - • encodings - -
- -
- -
- - encodings.hz -SourceModule
-imports: - _codecs_cn - • _multibytecodec - • codecs - • encodings - -
-
-imported by: - Generate_Report.py - • encodings - -
- -
- -
- - encodings.idna -SourceModule
-imports: - codecs - • encodings - • re - • stringprep - • unicodedata - -
-
-imported by: - Generate_Report.py - • encodings - • requests.models - -
- -
- -
- - encodings.iso2022_jp -SourceModule
-imports: - _codecs_iso2022 - • _multibytecodec - • codecs - • encodings - -
-
-imported by: - Generate_Report.py - • encodings - -
- -
- -
- - encodings.iso2022_jp_1 -SourceModule
-imports: - _codecs_iso2022 - • _multibytecodec - • codecs - • encodings - -
-
-imported by: - Generate_Report.py - • encodings - -
- -
- -
- - encodings.iso2022_jp_2 -SourceModule
-imports: - _codecs_iso2022 - • _multibytecodec - • codecs - • encodings - -
-
-imported by: - Generate_Report.py - • encodings - -
- -
- -
- - encodings.iso2022_jp_2004 -SourceModule
-imports: - _codecs_iso2022 - • _multibytecodec - • codecs - • encodings - -
-
-imported by: - Generate_Report.py - • encodings - -
- -
- -
- - encodings.iso2022_jp_3 -SourceModule
-imports: - _codecs_iso2022 - • _multibytecodec - • codecs - • encodings - -
-
-imported by: - Generate_Report.py - • encodings - -
- -
- -
- - encodings.iso2022_jp_ext -SourceModule
-imports: - _codecs_iso2022 - • _multibytecodec - • codecs - • encodings - -
-
-imported by: - Generate_Report.py - • encodings - -
- -
- -
- - encodings.iso2022_kr -SourceModule
-imports: - _codecs_iso2022 - • _multibytecodec - • codecs - • encodings - -
-
-imported by: - Generate_Report.py - • encodings - -
- -
- -
- - encodings.iso8859_1 -SourceModule
-imports: - codecs - • encodings - -
-
-imported by: - Generate_Report.py - • encodings - -
- -
- -
- - encodings.iso8859_10 -SourceModule
-imports: - codecs - • encodings - -
-
-imported by: - Generate_Report.py - • encodings - -
- -
- -
- - encodings.iso8859_11 -SourceModule
-imports: - codecs - • encodings - -
-
-imported by: - Generate_Report.py - • encodings - -
- -
- -
- - encodings.iso8859_13 -SourceModule
-imports: - codecs - • encodings - -
-
-imported by: - Generate_Report.py - • encodings - -
- -
- -
- - encodings.iso8859_14 -SourceModule
-imports: - codecs - • encodings - -
-
-imported by: - Generate_Report.py - • encodings - -
- -
- -
- - encodings.iso8859_15 -SourceModule
-imports: - codecs - • encodings - -
-
-imported by: - Generate_Report.py - • encodings - -
- -
- -
- - encodings.iso8859_16 -SourceModule
-imports: - codecs - • encodings - -
-
-imported by: - Generate_Report.py - • encodings - -
- -
- -
- - encodings.iso8859_2 -SourceModule
-imports: - codecs - • encodings - -
-
-imported by: - Generate_Report.py - • encodings - -
- -
- -
- - encodings.iso8859_3 -SourceModule
-imports: - codecs - • encodings - -
-
-imported by: - Generate_Report.py - • encodings - -
- -
- -
- - encodings.iso8859_4 -SourceModule
-imports: - codecs - • encodings - -
-
-imported by: - Generate_Report.py - • encodings - -
- -
- -
- - encodings.iso8859_5 -SourceModule
-imports: - codecs - • encodings - -
-
-imported by: - Generate_Report.py - • encodings - -
- -
- -
- - encodings.iso8859_6 -SourceModule
-imports: - codecs - • encodings - -
-
-imported by: - Generate_Report.py - • encodings - -
- -
- -
- - encodings.iso8859_7 -SourceModule
-imports: - codecs - • encodings - -
-
-imported by: - Generate_Report.py - • encodings - -
- -
- -
- - encodings.iso8859_8 -SourceModule
-imports: - codecs - • encodings - -
-
-imported by: - Generate_Report.py - • encodings - -
- -
- -
- - encodings.iso8859_9 -SourceModule
-imports: - codecs - • encodings - -
-
-imported by: - Generate_Report.py - • encodings - -
- -
- -
- - encodings.johab -SourceModule
-imports: - _codecs_kr - • _multibytecodec - • codecs - • encodings - -
-
-imported by: - Generate_Report.py - • encodings - -
- -
- -
- - encodings.koi8_r -SourceModule
-imports: - codecs - • encodings - -
-
-imported by: - Generate_Report.py - • encodings - -
- -
- -
- - encodings.koi8_t -SourceModule
-imports: - codecs - • encodings - -
-
-imported by: - Generate_Report.py - • encodings - -
- -
- -
- - encodings.koi8_u -SourceModule
-imports: - codecs - • encodings - -
-
-imported by: - Generate_Report.py - • encodings - -
- -
- -
- - encodings.kz1048 -SourceModule
-imports: - codecs - • encodings - -
-
-imported by: - Generate_Report.py - • encodings - -
- -
- -
- - encodings.latin_1 -SourceModule
-imports: - codecs - • encodings - -
-
-imported by: - Generate_Report.py - • encodings - -
- -
- -
- - encodings.mac_arabic -SourceModule
-imports: - codecs - • encodings - -
-
-imported by: - Generate_Report.py - • encodings - -
- -
- -
- - encodings.mac_croatian -SourceModule
-imports: - codecs - • encodings - -
-
-imported by: - Generate_Report.py - • encodings - -
- -
- -
- - encodings.mac_cyrillic -SourceModule
-imports: - codecs - • encodings - -
-
-imported by: - Generate_Report.py - • encodings - -
- -
- -
- - encodings.mac_farsi -SourceModule
-imports: - codecs - • encodings - -
-
-imported by: - Generate_Report.py - • encodings - -
- -
- -
- - encodings.mac_greek -SourceModule
-imports: - codecs - • encodings - -
-
-imported by: - Generate_Report.py - • encodings - -
- -
- -
- - encodings.mac_iceland -SourceModule
-imports: - codecs - • encodings - -
-
-imported by: - Generate_Report.py - • encodings - -
- -
- -
- - encodings.mac_latin2 -SourceModule
-imports: - codecs - • encodings - -
-
-imported by: - Generate_Report.py - • encodings - -
- -
- -
- - encodings.mac_roman -SourceModule
-imports: - codecs - • encodings - -
-
-imported by: - Generate_Report.py - • encodings - -
- -
- -
- - encodings.mac_romanian -SourceModule
-imports: - codecs - • encodings - -
-
-imported by: - Generate_Report.py - • encodings - -
- -
- -
- - encodings.mac_turkish -SourceModule
-imports: - codecs - • encodings - -
-
-imported by: - Generate_Report.py - • encodings - -
- -
- -
- - encodings.mbcs -SourceModule
-imports: - codecs - • encodings - -
-
-imported by: - Generate_Report.py - • encodings - -
- -
- -
- - encodings.oem -SourceModule
-imports: - codecs - • encodings - -
-
-imported by: - Generate_Report.py - • encodings - -
- -
- -
- - encodings.palmos -SourceModule
-imports: - codecs - • encodings - -
-
-imported by: - Generate_Report.py - • encodings - -
- -
- -
- - encodings.ptcp154 -SourceModule
-imports: - codecs - • encodings - -
-
-imported by: - Generate_Report.py - • encodings - -
- -
- -
- - encodings.punycode -SourceModule
-imports: - codecs - • encodings - -
-
-imported by: - Generate_Report.py - • encodings - -
- -
- -
- - encodings.quopri_codec -SourceModule
-imports: - codecs - • encodings - • io - • quopri - -
-
-imported by: - Generate_Report.py - • encodings - -
- -
- -
- - encodings.raw_unicode_escape -SourceModule
-imports: - codecs - • encodings - -
-
-imported by: - Generate_Report.py - • encodings - -
- -
- -
- - encodings.rot_13 -SourceModule
-imports: - codecs - • encodings - • sys - -
-
-imported by: - Generate_Report.py - • encodings - -
- -
- -
- - encodings.shift_jis -SourceModule
-imports: - _codecs_jp - • _multibytecodec - • codecs - • encodings - -
-
-imported by: - Generate_Report.py - • encodings - -
- -
- -
- - encodings.shift_jis_2004 -SourceModule
-imports: - _codecs_jp - • _multibytecodec - • codecs - • encodings - -
-
-imported by: - Generate_Report.py - • encodings - -
- -
- -
- - encodings.shift_jisx0213 -SourceModule
-imports: - _codecs_jp - • _multibytecodec - • codecs - • encodings - -
-
-imported by: - Generate_Report.py - • encodings - -
- -
- -
- - encodings.tis_620 -SourceModule
-imports: - codecs - • encodings - -
-
-imported by: - Generate_Report.py - • encodings - -
- -
- -
- - encodings.undefined -SourceModule
-imports: - codecs - • encodings - -
-
-imported by: - Generate_Report.py - • encodings - -
- -
- -
- - encodings.unicode_escape -SourceModule
-imports: - codecs - • encodings - -
-
-imported by: - Generate_Report.py - • encodings - -
- -
- -
- - encodings.utf_16 -SourceModule
-imports: - codecs - • encodings - • sys - -
-
-imported by: - Generate_Report.py - • encodings - -
- -
- -
- - encodings.utf_16_be -SourceModule
-imports: - codecs - • encodings - -
-
-imported by: - Generate_Report.py - • encodings - -
- -
- -
- - encodings.utf_16_le -SourceModule
-imports: - codecs - • encodings - -
-
-imported by: - Generate_Report.py - • encodings - -
- -
- -
- - encodings.utf_32 -SourceModule
-imports: - codecs - • encodings - • sys - -
-
-imported by: - Generate_Report.py - • encodings - -
- -
- -
- - encodings.utf_32_be -SourceModule
-imports: - codecs - • encodings - -
-
-imported by: - Generate_Report.py - • encodings - -
- -
- -
- - encodings.utf_32_le -SourceModule
-imports: - codecs - • encodings - -
-
-imported by: - Generate_Report.py - • encodings - -
- -
- -
- - encodings.utf_7 -SourceModule
-imports: - codecs - • encodings - -
-
-imported by: - Generate_Report.py - • encodings - -
- -
- -
- - encodings.utf_8 -SourceModule
-imports: - codecs - • encodings - -
-
-imported by: - Generate_Report.py - • encodings - -
- -
- -
- - encodings.utf_8_sig -SourceModule
-imports: - codecs - • encodings - -
-
-imported by: - Generate_Report.py - • encodings - -
- -
- -
- - encodings.uu_codec -SourceModule
-imports: - binascii - • codecs - • encodings - • io - -
-
-imported by: - Generate_Report.py - • encodings - -
- -
- -
- - encodings.zlib_codec -SourceModule
-imports: - codecs - • encodings - • zlib - -
-
-imported by: - Generate_Report.py - • encodings - -
- -
- -
- - enum -SourceModule
-imports: - sys - • types - • warnings - -
-
-imported by: - Generate_Report.py - • PIL.BlpImagePlugin - • PIL.DdsImagePlugin - • PIL.ExifTags - • PIL.FtexImagePlugin - • PIL.GifImagePlugin - • PIL.Image - • PIL.ImageCms - • PIL.PngImagePlugin - • ast - • asyncio.constants - • docx.enum.base - • docx.enum.shape - • docx.enum.text - • http - • inspect - • py_compile - • re - • signal - • socket - • ssl - • typing_extensions - • urllib3._collections - • urllib3.util.request - • urllib3.util.timeout - -
- -
- -
- - errno (builtin module)
-imported by: - asyncio.selector_events - • asyncio.unix_events - • asyncio.windows_events - • gettext - • gzip - • http.client - • multiprocessing.forkserver - • multiprocessing.queues - • multiprocessing.shared_memory - • pathlib - • shutil - • socket - • ssl - • subprocess - • tempfile - • urllib3.connectionpool - • xmlrpc.client - -
- -
- -
- - fnmatch -SourceModule
-imports: - functools - • itertools - • os - • posixpath - • re - -
-
-imported by: - bdb - • glob - • pathlib - • shutil - • tracemalloc - • unittest.loader - • urllib.request - -
- -
- -
- - fractions -SourceModule
-imports: - decimal - • math - • numbers - • operator - • re - • sys - -
-
-imported by: - PIL.TiffImagePlugin - • statistics - -
- -
- -
- - ftplib -SourceModule
-imports: - netrc - • re - • socket - • ssl - • sys - • warnings - -
-
-imported by: - urllib.request - -
- -
- -
- - functools -SourceModule
-imports: - _functools - • _thread - • abc - • collections - • reprlib - • types - • typing - • weakref - -
-
-imported by: - Generate_Report.py - • PIL.GifImagePlugin - • PIL.ImageCms - • PIL.ImageColor - • PIL.ImageFilter - • PIL.ImageMode - • PIL.ImageOps - • PIL.PsdImagePlugin - • asyncio.base_events - • asyncio.coroutines - • asyncio.format_helpers - • asyncio.selector_events - • asyncio.tasks - • asyncio.threads - • charset_normalizer.cd - • charset_normalizer.md - • charset_normalizer.utils - • concurrent.futures.process - • configparser - • contextlib - • dataclasses - • docx.shared - • email._encoded_words - • email.charset - • fnmatch - • importlib._common - • importlib.metadata - • importlib.util - • inspect - • ipaddress - • linecache - • locale - • lxml.builder - • lxml.html - • lxml.html.diff - • multiprocessing.reduction - • multiprocessing.shared_memory - • operator - • pathlib - • pickle - • pkgutil - • platform - • re - • tempfile - • threading - • tracemalloc - • types - • typing - • typing_extensions - • unittest.case - • unittest.loader - • unittest.result - • unittest.signals - • urllib3.poolmanager - • urllib3.util.wait - -
- -
- -
- - gc (builtin module)
-imports: - time - -
-
-imported by: - _posixsubprocess - • weakref - -
- -
- -
- - genericpath -SourceModule
-imports: - os - • stat - -
-
-imported by: - Generate_Report.py - • ntpath - • posixpath - -
- -
- -
- - getopt -SourceModule
-imports: - gettext - • os - • sys - -
-
-imported by: - base64 - • mimetypes - • pdb - • pydoc - • quopri - • webbrowser - -
- -
- -
- - getpass -SourceModule
-imports: - contextlib - • io - • msvcrt - • os - • pwd - • sys - • termios - • warnings - -
-
-imported by: - urllib.request - -
- -
- -
- - gettext -SourceModule
-imports: - builtins - • copy - • errno - • locale - • os - • re - • struct - • sys - • warnings - -
-
-imported by: - argparse - • getopt - • optparse - -
- -
- -
- - glob -SourceModule
-imports: - contextlib - • fnmatch - • os - • re - • sys - -
-
-imported by: - pdb - • webbrowser - -
- -
- -
- - grp -MissingModule
-imported by: - pathlib - • shutil - • subprocess - • tarfile - -
- -
- -
- - gzip -SourceModule
-imports: - _compression - • argparse - • builtins - • errno - • io - • os - • struct - • sys - • time - • warnings - • zlib - -
-
-imported by: - PIL.FitsImagePlugin - • lxml.etree - • tarfile - • xmlrpc.client - -
- -
- -
- - h2 -MissingModule
-imported by: - urllib3.http2.connection - -
- -
- -
- - hashlib -SourceModule
-imports: - _blake2 - • _hashlib - • _md5 - • _sha1 - • _sha256 - • _sha3 - • _sha512 - • logging - -
-
-imported by: - charset_normalizer.models - • docx.image.image - • docx.parts.image - • hmac - • random - • requests.auth - • urllib.request - • urllib3.util.ssl_ - -
- -
- -
- - heapq -SourceModule
-imports: - _heapq - -
-
-imported by: - Generate_Report.py - • asyncio.base_events - • asyncio.queues - • collections - • difflib - • lxml.html._difflib - • queue - -
- -
- -
- - hmac -SourceModule
-imports: - _hashlib - • _operator - • hashlib - • warnings - -
-
-imported by: - multiprocessing.connection - • secrets - • urllib3.util.ssl_ - -
- -
- -
- - html -Package
-imports: - html.entities - • re - -
-
-imported by: - cgi - • html.entities - • http.server - • lxml.doctestcompare - • lxml.html.diff - -
- -
- -
- - html.entities -SourceModule
-imports: - html - -
-
-imported by: - html - • lxml.html.soupparser - -
- -
- -
- - html5lib -MissingModule
-imported by: - lxml.html._html5builder - • lxml.html.html5parser - -
- -
- -
- - htmlentitydefs -MissingModule
-imported by: - lxml.html.soupparser - -
- -
- -
- - http -Package
-imports: - enum - • http.cookiejar - -
-
-imported by: - http.client - • http.cookiejar - • http.cookies - • http.server - • requests.compat - -
- -
- -
- - http.client -SourceModule
-imports: - collections.abc - • email.message - • email.parser - • errno - • http - • io - • re - • socket - • ssl - • urllib.parse - • warnings - -
-
-imported by: - http.cookiejar - • http.server - • urllib.request - • urllib3.connection - • urllib3.contrib.emscripten.connection - • urllib3.contrib.emscripten.response - • urllib3.exceptions - • urllib3.response - • urllib3.util.response - • xmlrpc.client - -
- -
- -
- - http.cookiejar -SourceModule
-imports: - calendar - • copy - • datetime - • http - • http.client - • io - • logging - • os - • re - • threading - • time - • traceback - • urllib.parse - • urllib.request - • warnings - -
-
-imported by: - http - • requests.compat - • urllib.request - -
- -
- -
- - http.cookies -SourceModule
-imports: - http - • re - • string - • time - • types - -
-
-imported by: - requests.compat - -
- -
- -
- - http.server -SourceModule
-imports: - argparse - • base64 - • binascii - • contextlib - • copy - • datetime - • email.utils - • html - • http - • http.client - • io - • mimetypes - • os - • posixpath - • pwd - • select - • shutil - • socket - • socketserver - • subprocess - • sys - • time - • urllib.parse - -
-
-imported by: - pydoc - -
- -
- -
- - idna -Package
-imports: - idna - • idna.core - • idna.idnadata - • idna.intranges - • idna.package_data - -
-
-imported by: - idna - • idna.core - • idna.idnadata - • idna.intranges - • idna.package_data - • idna.uts46data - • requests.models - • urllib3.contrib.pyopenssl - • urllib3.util.url - -
- -
- -
- - idna.core -SourceModule
-imports: - bisect - • idna - • idna.idnadata - • idna.intranges - • idna.uts46data - • re - • typing - • unicodedata - -
-
-imported by: - idna - -
- -
- -
- - idna.idnadata -SourceModule
-imports: - idna - -
-
-imported by: - idna - • idna.core - -
- -
- -
- - idna.intranges -SourceModule
-imports: - bisect - • idna - • typing - -
-
-imported by: - idna - • idna.core - -
- -
- -
- - idna.package_data -SourceModule
-imports: - idna - -
-
-imported by: - idna - -
- -
- -
- - idna.uts46data -SourceModule
-imports: - idna - • typing - -
-
-imported by: - idna.core - -
- -
- -
- - importlib -Package
-imports: - _frozen_importlib - • _frozen_importlib_external - • _imp - • importlib - • importlib._bootstrap - • importlib._bootstrap_external - • importlib._common - • importlib.machinery - • sys - • types - • warnings - -
-
-imported by: - charset_normalizer.cd - • charset_normalizer.utils - • importlib - • importlib._bootstrap - • importlib._bootstrap_external - • importlib._common - • importlib.abc - • importlib.machinery - • importlib.metadata - • importlib.resources - • importlib.util - • inspect - • pkgutil - • requests.compat - -
- -
- -
- - importlib._bootstrap -SourceModule
-imports: - _frozen_importlib_external - • importlib - -
-
-imported by: - importlib - • importlib.abc - • importlib.machinery - • importlib.util - • pydoc - -
- -
- -
- - importlib._bootstrap_external -SourceModule
-imports: - _imp - • _io - • _warnings - • importlib - • importlib.metadata - • marshal - • nt - • posix - • sys - • tokenize - • winreg - -
-
-imported by: - importlib - • importlib.abc - • importlib.machinery - • importlib.util - • py_compile - • pydoc - -
- -
- -
- - importlib._common -SourceModule
-imports: - contextlib - • functools - • importlib - • os - • pathlib - • tempfile - • zipfile - -
-
-imported by: - importlib - • importlib.resources - -
- -
- -
- - importlib.abc -SourceModule
-imports: - _frozen_importlib - • _frozen_importlib_external - • abc - • importlib - • importlib._bootstrap - • importlib._bootstrap_external - • importlib.machinery - • typing - • warnings - -
-
-imported by: - importlib.metadata - • importlib.resources - • importlib.util - • zipimport - -
- -
- -
- - importlib.machinery -SourceModule
-imports: - _imp - • importlib - • importlib._bootstrap - • importlib._bootstrap_external - -
-
-imported by: - importlib - • importlib.abc - • inspect - • pkgutil - • py_compile - • pydoc - • runpy - -
- -
- -
- - importlib.metadata -SourceModule
-imports: - abc - • collections - • configparser - • contextlib - • csv - • email - • functools - • importlib - • importlib.abc - • io - • itertools - • operator - • os - • pathlib - • pep517 - • posixpath - • re - • sys - • zipfile - -
-
-imported by: - importlib._bootstrap_external - • urllib3.http2 - -
- -
- -
- - importlib.resources -SourceModule
-imports: - 'typing.io' - • contextlib - • importlib - • importlib._common - • importlib.abc - • io - • os - • pathlib - • types - • typing - -
-
-imported by: - certifi.core - • urllib3.contrib.emscripten.fetch - -
- -
- -
- - importlib.util -SourceModule
-imports: - _imp - • contextlib - • functools - • importlib - • importlib._bootstrap - • importlib._bootstrap_external - • importlib.abc - • sys - • types - • warnings - -
-
-imported by: - pkgutil - • py_compile - • pydoc - • runpy - • zipfile - -
- -
- -
- - inspect -SourceModule
-imports: - abc - • argparse - • ast - • builtins - • collections - • collections.abc - • dis - • enum - • functools - • importlib - • importlib.machinery - • itertools - • linecache - • operator - • os - • re - • sys - • token - • tokenize - • types - • warnings - -
-
-imported by: - ast - • asyncio.coroutines - • asyncio.format_helpers - • asyncio.tasks - • bdb - • dataclasses - • doctest - • lxml.html.diff - • pdb - • pkgutil - • pydoc - • pyi_rth_inspect.py - • typing_extensions - • unittest.async_case - -
- -
- -
- - io -SourceModule
-imports: - _io - • abc - -
-
-imported by: - Generate_Report.py - • PIL.AvifImagePlugin - • PIL.BlpImagePlugin - • PIL.DdsImagePlugin - • PIL.EpsImagePlugin - • PIL.FtexImagePlugin - • PIL.GifImagePlugin - • PIL.GimpPaletteFile - • PIL.IcnsImagePlugin - • PIL.IcoImagePlugin - • PIL.Image - • PIL.ImageFile - • PIL.ImageQt - • PIL.ImageTk - • PIL.IptcImagePlugin - • PIL.Jpeg2KImagePlugin - • PIL.JpegImagePlugin - • PIL.MspImagePlugin - • PIL.PcxImagePlugin - • PIL.PdfImagePlugin - • PIL.PngImagePlugin - • PIL.PsdImagePlugin - • PIL.TiffImagePlugin - • PIL.WebPImagePlugin - • _compression - • asyncio.proactor_events - • asyncio.unix_events - • bz2 - • cgi - • configparser - • csv - • dis - • doctest - • docx.image.image - • docx.image.jpeg - • email.feedparser - • email.generator - • email.iterators - • email.message - • email.parser - • encodings.quopri_codec - • encodings.uu_codec - • getpass - • gzip - • http.client - • http.cookiejar - • http.server - • importlib.metadata - • importlib.resources - • logging - • lzma - • multiprocessing.connection - • multiprocessing.popen_forkserver - • multiprocessing.popen_spawn_posix - • multiprocessing.reduction - • os - • pathlib - • pdb - • pickle - • pprint - • pydoc - • quopri - • requests.compat - • requests.models - • requests.utils - • runpy - • shlex - • socket - • socketserver - • subprocess - • tarfile - • tempfile - • tokenize - • tools.content_tools - • typing_extensions - • unittest.result - • urllib.request - • urllib3.contrib.emscripten.fetch - • urllib3.contrib.emscripten.response - • urllib3.contrib.pyopenssl - • urllib3.filepost - • urllib3.response - • urllib3.util.request - • urllib3.util.ssltransport - • xml.etree.ElementTree - • xml.sax - • xml.sax.saxutils - • xmlrpc.client - • zipfile - • zipimport - -
- -
- -
- - ipaddress -SourceModule
-imports: - functools - • re - -
-
-imported by: - urllib3.util.ssl_match_hostname - -
- -
- -
- - itertools (builtin module)
-imported by: - PIL.GifImagePlugin - • PIL.ImageFile - • PIL.PngImagePlugin - • PIL.TiffImagePlugin - • _pydecimal - • asyncio.base_events - • asyncio.tasks - • asyncio.unix_events - • asyncio.windows_utils - • calendar - • collections - • concurrent.futures.process - • concurrent.futures.thread - • configparser - • fnmatch - • importlib.metadata - • inspect - • lxml.html.diff - • multiprocessing.connection - • multiprocessing.pool - • multiprocessing.process - • multiprocessing.util - • pickle - • platform - • random - • reprlib - • statistics - • threading - • tokenize - • traceback - • urllib3.util.retry - • weakref - • zipfile - -
- -
- -
- - java -MissingModule
-imported by: - platform - -
- -
- -
- - js -MissingModule
-imported by: - urllib3.contrib.emscripten.fetch - -
- -
- -
- - json -Package
-imports: - codecs - • json.decoder - • json.encoder - • json.scanner - -
-
-imported by: - charset_normalizer.models - • json.decoder - • json.encoder - • json.scanner - • requests.compat - • tools.Get_Json - • tools.argtool - • tools.document_tools - • urllib3._request_methods - • urllib3.contrib.emscripten.fetch - • urllib3.contrib.emscripten.response - • urllib3.response - • utils.document_utils - -
- -
- -
- - json.decoder -SourceModule
-imports: - _json - • json - • json.scanner - • re - -
-
-imported by: - _json - • json - -
- -
- -
- - json.encoder -SourceModule
-imports: - _json - • json - • re - -
-
-imported by: - json - -
- -
- -
- - json.scanner -SourceModule
-imports: - _json - • json - • re - -
-
-imported by: - json - • json.decoder - -
- -
- -
- - keyword -SourceModule
-imported by: - Generate_Report.py - • collections - • dataclasses - • typing_extensions - -
- -
- -
- - linecache -SourceModule
-imports: - functools - • os - • sys - • tokenize - -
-
-imported by: - Generate_Report.py - • asyncio.base_tasks - • bdb - • doctest - • inspect - • pdb - • traceback - • tracemalloc - • warnings - -
- -
- -
- - locale -SourceModule
-imports: - _bootlocale - • _collections_abc - • _locale - • builtins - • encodings - • encodings.aliases - • functools - • os - • re - • sys - • warnings - -
-
-imported by: - Generate_Report.py - • _bootlocale - • _pydecimal - • _strptime - • calendar - • cgi - • gettext - -
- -
- -
- - logging -Package
-imports: - atexit - • collections.abc - • io - • os - • pickle - • re - • string - • sys - • threading - • time - • traceback - • warnings - • weakref - -
-
-imported by: - PIL.Image - • PIL.ImageFile - • PIL.PcxImagePlugin - • PIL.PngImagePlugin - • PIL.TiffImagePlugin - • asyncio.futures - • asyncio.log - • charset_normalizer - • charset_normalizer.api - • charset_normalizer.md - • charset_normalizer.utils - • concurrent.futures._base - • hashlib - • http.cookiejar - • multiprocessing.util - • requests - • unittest._log - • urllib3 - • urllib3.connection - • urllib3.connectionpool - • urllib3.contrib.emscripten.response - • urllib3.contrib.pyopenssl - • urllib3.http2.connection - • urllib3.poolmanager - • urllib3.response - • urllib3.util.retry - -
- -
- -
- - lxml -Package
-imports: - lxml - • lxml.ElementInclude - • lxml._elementpath - • lxml.builder - • lxml.cssselect - • lxml.doctestcompare - • lxml.etree - • lxml.html - • lxml.html.ElementSoup - • lxml.html._diffcommand - • lxml.html._difflib - • lxml.html._html5builder - • lxml.html._setmixin - • lxml.html.builder - • lxml.html.clean - • lxml.html.defs - • lxml.html.diff - • lxml.html.formfill - • lxml.html.html5parser - • lxml.html.soupparser - • lxml.html.usedoctest - • lxml.includes - • lxml.includes.extlibs - • lxml.includes.libexslt - • lxml.includes.libxml - • lxml.includes.libxslt - • lxml.isoschematron - • lxml.objectify - • lxml.pyclasslookup - • lxml.sax - • lxml.usedoctest - • os - -
-
-imported by: - docx.opc.oxml - • docx.oxml.parser - • docx.oxml.section - • docx.oxml.xmlchemy - • lxml - • lxml.ElementInclude - • lxml._elementpath - • lxml.builder - • lxml.cssselect - • lxml.doctestcompare - • lxml.etree - • lxml.html - • lxml.html._html5builder - • lxml.html.diff - • lxml.html.html5parser - • lxml.html.soupparser - • lxml.html.usedoctest - • lxml.includes - • lxml.isoschematron - • lxml.objectify - • lxml.pyclasslookup - • lxml.sax - • lxml.usedoctest - -
- -
- -
- - lxml.ElementInclude -SourceModule
-imports: - lxml - • lxml.etree - • urllib.parse - • urllib.request - • urllib2 - • urlparse - -
-
-imported by: - lxml - -
- -
- -
- - lxml._elementpath C:\users\dtyx\Local Settings\Application Data\Programs\Python\Python39-32\lib\site-packages\lxml\_elementpath.cp39-win32.pyd
-imports: - lxml - • re - -
-
-imported by: - lxml - • lxml.etree - -
- -
- -
- - lxml.builder C:\users\dtyx\Local Settings\Application Data\Programs\Python\Python39-32\lib\site-packages\lxml\builder.cp39-win32.pyd
-imports: - functools - • lxml - • lxml.etree - • types - -
-
-imported by: - lxml - • lxml.html.builder - -
- -
- -
- - lxml.cssselect -SourceModule
-imports: - cssselect - • lxml - • lxml.etree - -
-
-imported by: - lxml - • lxml.html - -
- -
- -
- - lxml.doctestcompare -SourceModule
-imports: - cgi - • doctest - • html - • lxml - • lxml.etree - • re - • sys - -
-
-imported by: - lxml - • lxml.html.usedoctest - • lxml.usedoctest - -
- -
- -
- - lxml.etree C:\users\dtyx\Local Settings\Application Data\Programs\Python\Python39-32\lib\site-packages\lxml\etree.cp39-win32.pyd
-imports: - contextlib - • gzip - • lxml - • lxml._elementpath - -
-
-imported by: - docx.opc.oxml - • docx.oxml.coreprops - • docx.oxml.parser - • docx.oxml.section - • docx.oxml.xmlchemy - • lxml - • lxml.ElementInclude - • lxml.builder - • lxml.cssselect - • lxml.doctestcompare - • lxml.html - • lxml.html._html5builder - • lxml.html.diff - • lxml.html.formfill - • lxml.html.html5parser - • lxml.html.soupparser - • lxml.isoschematron - • lxml.objectify - • lxml.pyclasslookup - • lxml.sax - -
- -
- -
- - lxml.html -Package
-imports: - collections.abc - • copy - • functools - • lxml - • lxml.cssselect - • lxml.etree - • lxml.html - • lxml.html._diffcommand - • lxml.html._difflib - • lxml.html._setmixin - • lxml.html.defs - • os - • re - • tempfile - • urllib - • urllib.parse - • urllib.request - • urllib.urlencode - • urllib.urlopen - • webbrowser - -
-
-imported by: - lxml - • lxml.html - • lxml.html.ElementSoup - • lxml.html._diffcommand - • lxml.html._difflib - • lxml.html._html5builder - • lxml.html._setmixin - • lxml.html.builder - • lxml.html.clean - • lxml.html.defs - • lxml.html.diff - • lxml.html.formfill - • lxml.html.html5parser - • lxml.html.soupparser - • lxml.html.usedoctest - -
- -
- -
- - lxml.html.ElementSoup -SourceModule
-imports: - lxml.html - • lxml.html.soupparser - -
-
-imported by: - lxml - -
- -
- -
- - lxml.html._diffcommand -SourceModule
-imports: - lxml.html - • lxml.html.diff - • optparse - • os - • re - • sys - -
-
-imported by: - lxml - • lxml.html - • lxml.html.diff - -
- -
- -
- - lxml.html._difflib C:\users\dtyx\Local Settings\Application Data\Programs\Python\Python39-32\lib\site-packages\lxml\html\_difflib.cp39-win32.pyd
-imports: - collections - • cython - • heapq - • lxml.html - • re - • types - -
-
-imported by: - lxml - • lxml.html - • lxml.html.diff - -
- -
- -
- - lxml.html._html5builder -SourceModule
-imports: - html5lib - • lxml - • lxml.etree - • lxml.html - -
-
-imported by: - lxml - -
- -
- -
- - lxml.html._setmixin -SourceModule
-imports: - collections.abc - • lxml.html - -
-
-imported by: - lxml - • lxml.html - -
- -
- -
- - lxml.html.builder -SourceModule
-imports: - lxml.builder - • lxml.html - -
-
-imported by: - lxml - -
- -
- -
- - lxml.html.clean -SourceModule
-imports: - lxml.html - • lxml_html_clean - -
-
-imported by: - lxml - -
- -
- -
- - lxml.html.defs -SourceModule
-imports: - lxml.html - -
-
-imported by: - lxml - • lxml.html - • lxml.html.diff - • lxml.html.formfill - -
- -
- -
- - lxml.html.diff C:\users\dtyx\Local Settings\Application Data\Programs\Python\Python39-32\lib\site-packages\lxml\html\diff.cp39-win32.pyd
-imports: - 'cython.cimports' - • cython - • difflib - • functools - • html - • inspect - • itertools - • lxml - • lxml.etree - • lxml.html - • lxml.html._diffcommand - • lxml.html._difflib - • lxml.html.defs - • operator - • re - -
-
-imported by: - lxml - • lxml.html._diffcommand - -
- -
- -
- - lxml.html.formfill -SourceModule
-imports: - copy - • lxml.etree - • lxml.html - • lxml.html.defs - -
-
-imported by: - lxml - -
- -
- -
- - lxml.html.html5parser -SourceModule
-imports: - 'html5lib.treebuilders' - • html5lib - • lxml - • lxml.etree - • lxml.html - • string - • sys - • urllib.parse - • urllib.request - • urllib2 - • urlparse - -
-
-imported by: - lxml - -
- -
- -
- - lxml.html.soupparser -SourceModule
-imports: - BeautifulSoup - • bs4 - • html.entities - • htmlentitydefs - • lxml - • lxml.etree - • lxml.html - • re - -
-
-imported by: - lxml - • lxml.html.ElementSoup - -
- -
- -
- - lxml.html.usedoctest -SourceModule
-imports: - lxml - • lxml.doctestcompare - • lxml.html - -
-
-imported by: - lxml - -
- -
- -
- - lxml.includes -Package
-imports: - lxml - -
-
-imported by: - lxml - • lxml.includes.extlibs - • lxml.includes.libexslt - • lxml.includes.libxml - • lxml.includes.libxslt - -
- -
- -
- - lxml.includes.extlibs -Package
-imports: - lxml.includes - -
-
-imported by: - lxml - -
- -
- -
- - lxml.includes.libexslt -Package
-imports: - lxml.includes - -
-
-imported by: - lxml - -
- -
- -
- - lxml.includes.libxml -Package
-imports: - lxml.includes - -
-
-imported by: - lxml - -
- -
- -
- - lxml.includes.libxslt -Package
-imports: - lxml.includes - -
-
-imported by: - lxml - -
- -
- -
- - lxml.isoschematron -Package
-imports: - lxml - • lxml.etree - • os.path - • sys - -
-
-imported by: - lxml - -
- -
- -
- - lxml.objectify C:\users\dtyx\Local Settings\Application Data\Programs\Python\Python39-32\lib\site-packages\lxml\objectify.cp39-win32.pyd
-imports: - lxml - • lxml.etree - -
-
-imported by: - lxml - -
- -
- -
- - lxml.pyclasslookup -SourceModule
-imports: - lxml - • lxml.etree - -
-
-imported by: - lxml - -
- -
- -
- - lxml.sax C:\users\dtyx\Local Settings\Application Data\Programs\Python\Python39-32\lib\site-packages\lxml\sax.cp39-win32.pyd
-imports: - lxml - • lxml.etree - • types - • xml.sax.handler - • xml.sax.xmlreader - -
-
-imported by: - lxml - -
- -
- -
- - lxml.usedoctest -SourceModule
-imports: - lxml - • lxml.doctestcompare - -
-
-imported by: - lxml - -
- -
- -
- - lxml_html_clean -MissingModule
-imported by: - lxml.html.clean - -
- -
- -
- - lzma -SourceModule
-imports: - _compression - • _lzma - • builtins - • io - • os - -
-
-imported by: - shutil - • tarfile - • zipfile - -
- -
- -
- - marshal (builtin module)
-imported by: - importlib._bootstrap_external - • pkgutil - • zipimport - -
- -
- -
- - math (builtin module)
-imported by: - PIL.FitsImagePlugin - • PIL.GifImagePlugin - • PIL.GimpGradientFile - • PIL.IcoImagePlugin - • PIL.Image - • PIL.JpegImagePlugin - • PIL.PdfImagePlugin - • PIL.PpmImagePlugin - • PIL.TiffImagePlugin - • _pydecimal - • asyncio.windows_events - • datetime - • fractions - • random - • selectors - • statistics - • tools.get_pictures - -
- -
- -
- - mimetypes -SourceModule
-imports: - getopt - • os - • posixpath - • sys - • urllib.parse - • winreg - -
-
-imported by: - http.server - • urllib.request - • urllib3.fields - -
- -
- -
- - mmap (builtin module)
-imported by: - PIL.Image - • PIL.ImageFile - • PIL.PdfParser - • multiprocessing.heap - • multiprocessing.shared_memory - -
- -
- -
- - msvcrt (builtin module)
-imported by: - asyncio.windows_events - • asyncio.windows_utils - • getpass - • multiprocessing.popen_spawn_win32 - • multiprocessing.spawn - • subprocess - -
- -
- -
- - multiprocessing -Package
-imports: - multiprocessing - • multiprocessing.AuthenticationError - • multiprocessing.BufferTooShort - • multiprocessing.TimeoutError - • multiprocessing.connection - • multiprocessing.context - • multiprocessing.forkserver - • multiprocessing.get_context - • multiprocessing.get_start_method - • multiprocessing.pool - • multiprocessing.process - • multiprocessing.reduction - • multiprocessing.resource_sharer - • multiprocessing.resource_tracker - • multiprocessing.set_start_method - • multiprocessing.shared_memory - • multiprocessing.spawn - • multiprocessing.util - • sys - -
-
-imported by: - concurrent.futures.process - • multiprocessing - • multiprocessing.connection - • multiprocessing.context - • multiprocessing.dummy - • multiprocessing.forkserver - • multiprocessing.heap - • multiprocessing.managers - • multiprocessing.pool - • multiprocessing.popen_fork - • multiprocessing.popen_forkserver - • multiprocessing.popen_spawn_posix - • multiprocessing.popen_spawn_win32 - • multiprocessing.process - • multiprocessing.queues - • multiprocessing.reduction - • multiprocessing.resource_sharer - • multiprocessing.resource_tracker - • multiprocessing.shared_memory - • multiprocessing.sharedctypes - • multiprocessing.spawn - • multiprocessing.synchronize - • multiprocessing.util - • pyi_rth_multiprocessing.py - -
- -
- -
- - multiprocessing.AuthenticationError -MissingModule
-imported by: - multiprocessing - • multiprocessing.connection - -
- -
- -
- - multiprocessing.BufferTooShort -MissingModule
-imported by: - multiprocessing - • multiprocessing.connection - -
- -
- -
- - multiprocessing.TimeoutError -MissingModule
-imported by: - multiprocessing - • multiprocessing.pool - -
- -
- -
- - multiprocessing.connection -SourceModule
-imports: - _multiprocessing - • _winapi - • hmac - • io - • itertools - • multiprocessing - • multiprocessing.AuthenticationError - • multiprocessing.BufferTooShort - • multiprocessing.context - • multiprocessing.resource_sharer - • multiprocessing.util - • os - • selectors - • socket - • struct - • sys - • tempfile - • time - • xmlrpc.client - -
-
-imported by: - concurrent.futures.process - • multiprocessing - • multiprocessing.context - • multiprocessing.forkserver - • multiprocessing.managers - • multiprocessing.pool - • multiprocessing.popen_fork - • multiprocessing.popen_forkserver - • multiprocessing.process - • multiprocessing.queues - • multiprocessing.resource_sharer - -
- -
- -
- - multiprocessing.context -SourceModule
-imports: - multiprocessing - • multiprocessing.connection - • multiprocessing.forkserver - • multiprocessing.managers - • multiprocessing.pool - • multiprocessing.popen_fork - • multiprocessing.popen_forkserver - • multiprocessing.popen_spawn_posix - • multiprocessing.popen_spawn_win32 - • multiprocessing.process - • multiprocessing.queues - • multiprocessing.reduction - • multiprocessing.sharedctypes - • multiprocessing.spawn - • multiprocessing.synchronize - • multiprocessing.util - • os - • sys - • threading - -
-
-imported by: - multiprocessing - • multiprocessing.connection - • multiprocessing.forkserver - • multiprocessing.heap - • multiprocessing.managers - • multiprocessing.popen_forkserver - • multiprocessing.popen_spawn_posix - • multiprocessing.popen_spawn_win32 - • multiprocessing.process - • multiprocessing.queues - • multiprocessing.reduction - • multiprocessing.resource_sharer - • multiprocessing.sharedctypes - • multiprocessing.spawn - • multiprocessing.synchronize - -
- -
- -
- - multiprocessing.dummy -Package
-imports: - array - • multiprocessing - • multiprocessing.dummy.connection - • multiprocessing.pool - • queue - • sys - • threading - • weakref - -
-
-imported by: - multiprocessing.dummy.connection - • multiprocessing.pool - -
- -
- -
- - multiprocessing.dummy.connection -SourceModule
-imports: - multiprocessing.dummy - • queue - -
-
-imported by: - multiprocessing.dummy - -
- -
- -
- - multiprocessing.forkserver -SourceModule
-imports: - errno - • multiprocessing - • multiprocessing.connection - • multiprocessing.context - • multiprocessing.process - • multiprocessing.resource_tracker - • multiprocessing.spawn - • multiprocessing.util - • os - • selectors - • signal - • socket - • struct - • sys - • threading - • warnings - -
-
-imported by: - multiprocessing - • multiprocessing.context - • multiprocessing.popen_forkserver - • multiprocessing.util - -
- -
- -
- - multiprocessing.get_context -MissingModule
-imported by: - multiprocessing - • multiprocessing.managers - • multiprocessing.pool - • multiprocessing.sharedctypes - -
- -
- -
- - multiprocessing.get_start_method -MissingModule
-imported by: - multiprocessing - • multiprocessing.spawn - -
- -
- -
- - multiprocessing.heap -SourceModule
-imports: - _winapi - • bisect - • collections - • mmap - • multiprocessing - • multiprocessing.context - • multiprocessing.util - • os - • sys - • tempfile - • threading - -
-
-imported by: - multiprocessing.sharedctypes - • multiprocessing.synchronize - -
- -
- -
- - multiprocessing.managers -SourceModule
-imports: - array - • multiprocessing - • multiprocessing.connection - • multiprocessing.context - • multiprocessing.get_context - • multiprocessing.pool - • multiprocessing.process - • multiprocessing.resource_tracker - • multiprocessing.shared_memory - • multiprocessing.util - • os - • queue - • signal - • sys - • threading - • time - • traceback - • types - -
-
-imported by: - multiprocessing.context - -
- -
- -
- - multiprocessing.pool -SourceModule
-imports: - collections - • itertools - • multiprocessing - • multiprocessing.TimeoutError - • multiprocessing.connection - • multiprocessing.dummy - • multiprocessing.get_context - • multiprocessing.util - • os - • queue - • threading - • time - • traceback - • types - • warnings - -
-
-imported by: - multiprocessing - • multiprocessing.context - • multiprocessing.dummy - • multiprocessing.managers - -
- -
- -
- - multiprocessing.popen_fork -SourceModule
-imports: - multiprocessing - • multiprocessing.connection - • multiprocessing.util - • os - • signal - -
-
-imported by: - multiprocessing.context - • multiprocessing.popen_forkserver - • multiprocessing.popen_spawn_posix - -
- -
- -
- - multiprocessing.popen_forkserver -SourceModule
-imports: - io - • multiprocessing - • multiprocessing.connection - • multiprocessing.context - • multiprocessing.forkserver - • multiprocessing.popen_fork - • multiprocessing.spawn - • multiprocessing.util - • os - -
-
-imported by: - multiprocessing.context - -
- -
- -
- - multiprocessing.popen_spawn_posix -SourceModule
-imports: - io - • multiprocessing - • multiprocessing.context - • multiprocessing.popen_fork - • multiprocessing.resource_tracker - • multiprocessing.spawn - • multiprocessing.util - • os - -
-
-imported by: - multiprocessing.context - -
- -
- -
- - multiprocessing.popen_spawn_win32 -SourceModule
-imports: - _winapi - • msvcrt - • multiprocessing - • multiprocessing.context - • multiprocessing.spawn - • multiprocessing.util - • os - • signal - • sys - -
-
-imported by: - multiprocessing.context - -
- -
- -
- - multiprocessing.process -SourceModule
-imports: - _weakrefset - • itertools - • multiprocessing - • multiprocessing.connection - • multiprocessing.context - • multiprocessing.util - • os - • signal - • sys - • threading - • traceback - -
-
-imported by: - multiprocessing - • multiprocessing.context - • multiprocessing.forkserver - • multiprocessing.managers - • multiprocessing.resource_sharer - • multiprocessing.spawn - • multiprocessing.synchronize - • multiprocessing.util - -
- -
- -
- - multiprocessing.queues -SourceModule
-imports: - _multiprocessing - • collections - • errno - • multiprocessing - • multiprocessing.connection - • multiprocessing.context - • multiprocessing.synchronize - • multiprocessing.util - • os - • queue - • sys - • threading - • time - • traceback - • types - • weakref - -
-
-imported by: - concurrent.futures.process - • multiprocessing.context - -
- -
- -
- - multiprocessing.reduction -SourceModule
-imports: - _winapi - • abc - • array - • copyreg - • functools - • io - • multiprocessing - • multiprocessing.context - • multiprocessing.resource_sharer - • os - • pickle - • socket - • sys - -
-
-imported by: - multiprocessing - • multiprocessing.context - -
- -
- -
- - multiprocessing.resource_sharer -SourceModule
-imports: - multiprocessing - • multiprocessing.connection - • multiprocessing.context - • multiprocessing.process - • multiprocessing.util - • os - • signal - • socket - • sys - • threading - -
-
-imported by: - multiprocessing - • multiprocessing.connection - • multiprocessing.reduction - -
- -
- -
- - multiprocessing.resource_tracker -SourceModule
-imports: - _multiprocessing - • _posixshmem - • multiprocessing - • multiprocessing.spawn - • multiprocessing.util - • os - • signal - • sys - • threading - • warnings - -
-
-imported by: - multiprocessing - • multiprocessing.forkserver - • multiprocessing.managers - • multiprocessing.popen_spawn_posix - • multiprocessing.shared_memory - • multiprocessing.spawn - • multiprocessing.synchronize - • multiprocessing.util - -
- -
- -
- - multiprocessing.set_start_method -MissingModule
-imported by: - multiprocessing - • multiprocessing.spawn - -
- -
- -
- - multiprocessing.shared_memory -SourceModule
-imports: - _posixshmem - • _winapi - • errno - • functools - • mmap - • multiprocessing - • multiprocessing.resource_tracker - • os - • secrets - • struct - • types - -
-
-imported by: - multiprocessing - • multiprocessing.managers - -
- -
- -
- - multiprocessing.sharedctypes -SourceModule
-imports: - ctypes - • multiprocessing - • multiprocessing.context - • multiprocessing.get_context - • multiprocessing.heap - • weakref - -
-
-imported by: - multiprocessing.context - -
- -
- -
- - multiprocessing.spawn -SourceModule
-imports: - _winapi - • msvcrt - • multiprocessing - • multiprocessing.context - • multiprocessing.get_start_method - • multiprocessing.process - • multiprocessing.resource_tracker - • multiprocessing.set_start_method - • multiprocessing.util - • os - • runpy - • sys - • types - -
-
-imported by: - multiprocessing - • multiprocessing.context - • multiprocessing.forkserver - • multiprocessing.popen_forkserver - • multiprocessing.popen_spawn_posix - • multiprocessing.popen_spawn_win32 - • multiprocessing.resource_tracker - • pyi_rth_multiprocessing.py - -
- -
- -
- - multiprocessing.synchronize -SourceModule
-imports: - _multiprocessing - • multiprocessing - • multiprocessing.context - • multiprocessing.heap - • multiprocessing.process - • multiprocessing.resource_tracker - • multiprocessing.util - • struct - • sys - • tempfile - • threading - • time - -
-
-imported by: - multiprocessing.context - • multiprocessing.queues - -
- -
- -
- - multiprocessing.util -SourceModule
-imports: - _posixsubprocess - • atexit - • itertools - • logging - • multiprocessing - • multiprocessing.forkserver - • multiprocessing.process - • multiprocessing.resource_tracker - • os - • shutil - • subprocess - • sys - • tempfile - • threading - • traceback - • weakref - -
-
-imported by: - multiprocessing - • multiprocessing.connection - • multiprocessing.context - • multiprocessing.forkserver - • multiprocessing.heap - • multiprocessing.managers - • multiprocessing.pool - • multiprocessing.popen_fork - • multiprocessing.popen_forkserver - • multiprocessing.popen_spawn_posix - • multiprocessing.popen_spawn_win32 - • multiprocessing.process - • multiprocessing.queues - • multiprocessing.resource_sharer - • multiprocessing.resource_tracker - • multiprocessing.spawn - • multiprocessing.synchronize - -
- -
- -
- - netrc -SourceModule
-imports: - os - • pwd - • shlex - • stat - -
-
-imported by: - ftplib - • requests.utils - -
- -
- -
- - nt (builtin module)
-imported by: - ctypes - • importlib._bootstrap_external - • ntpath - • os - • pathlib - • shutil - -
- -
- -
- - ntpath -SourceModule
-imports: - genericpath - • nt - • os - • stat - • string - • sys - -
-
-imported by: - Generate_Report.py - • os - • os.path - • pathlib - -
- -
- -
- - nturl2path -SourceModule
-imports: - string - • urllib.parse - -
-
-imported by: - urllib.request - -
- -
- -
- - numbers -SourceModule
-imports: - abc - -
-
-imported by: - PIL.TiffImagePlugin - • PIL._typing - • _pydecimal - • fractions - • statistics - -
- -
- -
- - numpy -MissingModule
-imported by: - PIL._typing - -
- -
- -
- - olefile -MissingModule
-imported by: - PIL.FpxImagePlugin - • PIL.MicImagePlugin - -
- -
- -
- - opcode -SourceModule
-imports: - _opcode - -
-
-imported by: - dis - -
- -
- -
- - operator -SourceModule
-imports: - _operator - • builtins - • functools - -
-
-imported by: - Generate_Report.py - • PIL.ImageCms - • PIL.ImageOps - • collections - • email._header_value_parser - • fractions - • importlib.metadata - • inspect - • lxml.html.diff - • pathlib - • statistics - • typing - • typing_extensions - -
- -
- -
- - optparse -SourceModule
-imports: - gettext - • os - • sys - • textwrap - -
-
-imported by: - lxml.html._diffcommand - • uu - -
- -
- -
- - org -MissingModule
-imported by: - pickle - -
- -
- -
- - os -SourceModule
-imports: - _collections_abc - • abc - • io - • nt - • ntpath - • os.path - • posix - • posixpath - • stat - • subprocess - • sys - • warnings - -
-
-imported by: - Generate_Report.py - • PIL.AvifImagePlugin - • PIL.BlpImagePlugin - • PIL.BmpImagePlugin - • PIL.BufrStubImagePlugin - • PIL.EpsImagePlugin - • PIL.FliImagePlugin - • PIL.GifImagePlugin - • PIL.GribStubImagePlugin - • PIL.Hdf5StubImagePlugin - • PIL.IcnsImagePlugin - • PIL.ImImagePlugin - • PIL.Image - • PIL.ImageFile - • PIL.ImageShow - • PIL.Jpeg2KImagePlugin - • PIL.JpegImagePlugin - • PIL.MpoImagePlugin - • PIL.PdfImagePlugin - • PIL.PdfParser - • PIL.QoiImagePlugin - • PIL.SgiImagePlugin - • PIL.SpiderImagePlugin - • PIL.TiffImagePlugin - • PIL._typing - • PIL._util - • PIL.features - • _bootsubprocess - • argparse - • asyncio.base_events - • asyncio.coroutines - • asyncio.events - • asyncio.proactor_events - • asyncio.unix_events - • asyncio.windows_utils - • bdb - • bz2 - • cgi - • charset_normalizer.api - • concurrent.futures.process - • concurrent.futures.thread - • configparser - • ctypes - • doctest - • docx.api - • docx.image.image - • docx.opc.phys_pkg - • docx.parts.comments - • docx.parts.hdrftr - • docx.parts.settings - • docx.parts.styles - • email.utils - • fnmatch - • genericpath - • getopt - • getpass - • gettext - • glob - • gzip - • http.cookiejar - • http.server - • importlib._common - • importlib.metadata - • importlib.resources - • inspect - • linecache - • locale - • logging - • lxml - • lxml.html - • lxml.html._diffcommand - • lzma - • mimetypes - • multiprocessing.connection - • multiprocessing.context - • multiprocessing.forkserver - • multiprocessing.heap - • multiprocessing.managers - • multiprocessing.pool - • multiprocessing.popen_fork - • multiprocessing.popen_forkserver - • multiprocessing.popen_spawn_posix - • multiprocessing.popen_spawn_win32 - • multiprocessing.process - • multiprocessing.queues - • multiprocessing.reduction - • multiprocessing.resource_sharer - • multiprocessing.resource_tracker - • multiprocessing.shared_memory - • multiprocessing.spawn - • multiprocessing.util - • netrc - • ntpath - • optparse - • os.path - • pathlib - • pdb - • pkgutil - • platform - • posixpath - • py_compile - • pydoc - • pyi_rth_inspect.py - • random - • requests.auth - • requests.sessions - • requests.utils - • runpy - • shlex - • shutil - • socket - • socketserver - • ssl - • subprocess - • sysconfig - • tarfile - • tempfile - • threading - • tools.content_tools - • tools.dataproccess - • tools.document_tools - • tools.get_pictures - • unittest.loader - • unittest.main - • urllib.request - • urllib3.connection - • urllib3.contrib.emscripten.connection - • urllib3.filepost - • urllib3.util.ssl_ - • utils.document_utils - • utils.file_utils - • uu - • webbrowser - • xml.sax - • xml.sax.saxutils - • zipfile - • zipimport - -
- -
- -
- - os.path -AliasNode
-imports: - ntpath - • os - -
-
-imported by: - lxml.isoschematron - • os - • pkgutil - • py_compile - • requests.adapters - • sysconfig - • tracemalloc - • unittest - • unittest.util - -
- -
- -
- - pathlib -SourceModule
-imports: - _collections_abc - • errno - • fnmatch - • functools - • grp - • io - • nt - • ntpath - • operator - • os - • posixpath - • pwd - • re - • stat - • sys - • urllib.parse - -
-
-imported by: - Generate_Report.py - • importlib._common - • importlib.metadata - • importlib.resources - • zipimport - -
- -
- -
- - pdb -SourceModule
-imports: - bdb - • cmd - • code - • dis - • getopt - • glob - • inspect - • io - • linecache - • os - • pdb - • pprint - • pydoc - • re - • readline - • runpy - • shlex - • signal - • sys - • tokenize - • traceback - -
-
-imported by: - doctest - • pdb - -
- -
- -
- - pep517 -MissingModule
-imported by: - importlib.metadata - -
- -
- -
- - pickle -SourceModule
-imports: - _compat_pickle - • _pickle - • codecs - • copyreg - • functools - • io - • itertools - • org - • pprint - • re - • struct - • sys - • types - -
-
-imported by: - logging - • multiprocessing.reduction - • tracemalloc - -
- -
- -
- - pkgutil -SourceModule
-imports: - collections - • functools - • importlib - • importlib.machinery - • importlib.util - • inspect - • marshal - • os - • os.path - • re - • sys - • types - • warnings - • zipimport - -
-
-imported by: - pydoc - • pyi_rth_pkgutil.py - • runpy - -
- -
- -
- - platform -SourceModule
-imports: - 'java.lang' - • _winreg - • collections - • functools - • itertools - • java - • os - • re - • socket - • struct - • subprocess - • sys - • vms_lib - • winreg - -
-
-imported by: - pydoc - -
- -
- -
- - posix -MissingModule
-imports: - resource - -
-
-imported by: - importlib._bootstrap_external - • os - • shutil - -
- -
- -
- - posixpath -SourceModule
-imports: - genericpath - • os - • pwd - • re - • stat - • sys - -
-
-imported by: - Generate_Report.py - • docx.opc.packuri - • fnmatch - • http.server - • importlib.metadata - • mimetypes - • os - • pathlib - • urllib.request - • zipfile - -
- -
- -
- - pprint -SourceModule
-imports: - collections - • io - • re - • sys - • time - • types - -
-
-imported by: - pdb - • pickle - • sysconfig - • unittest.case - -
- -
- -
- - pwd -MissingModule
-imported by: - getpass - • http.server - • netrc - • pathlib - • posixpath - • shutil - • subprocess - • tarfile - • webbrowser - -
- -
- -
- - py_compile -SourceModule
-imports: - enum - • importlib._bootstrap_external - • importlib.machinery - • importlib.util - • os - • os.path - • sys - • traceback - -
-
-imported by: - zipfile - -
- -
- -
- - pydoc -SourceModule
-imports: - builtins - • collections - • email.message - • getopt - • http.server - • importlib._bootstrap - • importlib._bootstrap_external - • importlib.machinery - • importlib.util - • inspect - • io - • os - • pkgutil - • platform - • pydoc_data.topics - • re - • reprlib - • select - • subprocess - • sys - • sysconfig - • tempfile - • textwrap - • threading - • time - • tokenize - • traceback - • tty - • types - • urllib.parse - • warnings - • webbrowser - -
-
-imported by: - pdb - -
- -
- -
- - pydoc_data -Package
-imported by: - pydoc_data.topics - -
- -
- -
- - pydoc_data.topics -SourceModule
-imports: - pydoc_data - -
-
-imported by: - pydoc - -
- -
- -
- - pyexpat C:\users\dtyx\Local Settings\Application Data\Programs\Python\Python39-32\DLLs\pyexpat.pyd
-imported by: - _elementtree - • xml.etree.ElementTree - • xml.parsers.expat - -
- -
- -
- - pyimod02_importers -MissingModule
-imported by: - pyi_rth_pkgutil.py - -
- -
- -
- - pyodide -MissingModule
-imported by: - urllib3.contrib.emscripten.fetch - -
- -
- -
- - queue -SourceModule
-imports: - _queue - • collections - • heapq - • threading - • time - • types - -
-
-imported by: - concurrent.futures.process - • concurrent.futures.thread - • multiprocessing.dummy - • multiprocessing.dummy.connection - • multiprocessing.managers - • multiprocessing.pool - • multiprocessing.queues - • urllib3.connectionpool - -
- -
- -
- - quopri -SourceModule
-imports: - binascii - • getopt - • io - • sys - -
-
-imported by: - email.encoders - • email.message - • encodings.quopri_codec - -
- -
- -
- - random -SourceModule
-imports: - _collections_abc - • _random - • _sha512 - • bisect - • hashlib - • itertools - • math - • os - • statistics - • time - • warnings - -
-
-imported by: - PIL.ImagePalette - • email.generator - • email.utils - • secrets - • statistics - • tempfile - • urllib3.util.retry - -
- -
- -
- - re -SourceModule
-imports: - _locale - • copyreg - • enum - • functools - • sre_compile - • sre_constants - • sre_parse - -
-
-imported by: - Generate_Report.py - • PIL.EpsImagePlugin - • PIL.GimpPaletteFile - • PIL.ImImagePlugin - • PIL.Image - • PIL.ImageColor - • PIL.ImageOps - • PIL.ImtImagePlugin - • PIL.PdfParser - • PIL.PngImagePlugin - • PIL.XbmImagePlugin - • PIL.XpmImagePlugin - • _pydecimal - • _sre - • _strptime - • argparse - • base64 - • cgi - • charset_normalizer.constant - • charset_normalizer.models - • charset_normalizer.utils - • configparser - • csv - • dataclasses - • difflib - • doctest - • docx.opc.packuri - • docx.oxml.coreprops - • docx.oxml.xmlchemy - • email._encoded_words - • email._header_value_parser - • email.feedparser - • email.generator - • email.header - • email.message - • email.policy - • email.quoprimime - • email.utils - • encodings.idna - • fnmatch - • fractions - • ftplib - • gettext - • glob - • html - • http.client - • http.cookiejar - • http.cookies - • idna.core - • importlib.metadata - • inspect - • ipaddress - • json.decoder - • json.encoder - • json.scanner - • locale - • logging - • lxml._elementpath - • lxml.doctestcompare - • lxml.html - • lxml.html._diffcommand - • lxml.html._difflib - • lxml.html.diff - • lxml.html.soupparser - • pathlib - • pdb - • pickle - • pkgutil - • platform - • posixpath - • pprint - • pydoc - • requests._internal_utils - • requests.auth - • requests.utils - • shlex - • string - • sysconfig - • tarfile - • textwrap - • tokenize - • tools.document_tools - • typing - • unittest.case - • unittest.loader - • urllib.parse - • urllib.request - • urllib3.connection - • urllib3.http2.connection - • urllib3.response - • urllib3.util.retry - • urllib3.util.ssl_match_hostname - • urllib3.util.url - • warnings - • xml.etree.ElementPath - • xml.etree.ElementTree - -
- -
- -
- - readline -MissingModule
-imported by: - cmd - • code - • pdb - -
- -
- -
- - reprlib -SourceModule
-imports: - _thread - • builtins - • itertools - -
-
-imported by: - Generate_Report.py - • asyncio.base_futures - • asyncio.format_helpers - • bdb - • collections - • functools - • pydoc - -
- -
- -
- - requests -Package
-imports: - chardet - • charset_normalizer - • cryptography - • logging - • requests - • requests.__version__ - • requests.api - • requests.certs - • requests.exceptions - • requests.models - • requests.packages - • requests.sessions - • requests.status_codes - • requests.utils - • ssl - • urllib3 - • urllib3.contrib - • urllib3.contrib.pyopenssl - • urllib3.exceptions - • warnings - -
-
-imported by: - requests - • requests.__version__ - • requests._internal_utils - • requests.adapters - • requests.api - • requests.auth - • requests.certs - • requests.compat - • requests.cookies - • requests.exceptions - • requests.hooks - • requests.models - • requests.packages - • requests.sessions - • requests.status_codes - • requests.structures - • requests.utils - • tools.Get_Json - • tools.content_tools - -
- -
- -
- - requests.__version__ -SourceModule
-imports: - requests - -
-
-imported by: - requests - • requests.utils - -
- -
- -
- - requests._internal_utils -SourceModule
-imports: - re - • requests - • requests.compat - -
-
-imported by: - requests.auth - • requests.cookies - • requests.models - • requests.sessions - • requests.utils - -
- -
- -
- - requests.adapters -SourceModule
-imports: - os.path - • requests - • requests.auth - • requests.compat - • requests.cookies - • requests.exceptions - • requests.models - • requests.structures - • requests.utils - • socket - • ssl - • typing - • urllib3.contrib.socks - • urllib3.exceptions - • urllib3.poolmanager - • urllib3.util - • urllib3.util.retry - • urllib3.util.ssl_ - • warnings - -
-
-imported by: - requests.sessions - -
- -
- -
- - requests.api -SourceModule
-imports: - requests - • requests.sessions - -
-
-imported by: - requests - -
- -
- -
- - requests.auth -SourceModule
-imports: - base64 - • hashlib - • os - • re - • requests - • requests._internal_utils - • requests.compat - • requests.cookies - • requests.utils - • threading - • time - • warnings - -
-
-imported by: - requests.adapters - • requests.models - • requests.sessions - -
- -
- -
- - requests.certs -SourceModule
-imports: - certifi - • requests - -
-
-imported by: - requests - • requests.utils - -
- -
- -
- - requests.compat -SourceModule
-imports: - collections - • collections.abc - • http - • http.cookiejar - • http.cookies - • importlib - • io - • json - • requests - • simplejson - • sys - • urllib.parse - • urllib.request - • urllib3 - -
-
-imported by: - requests._internal_utils - • requests.adapters - • requests.auth - • requests.cookies - • requests.exceptions - • requests.models - • requests.packages - • requests.sessions - • requests.structures - • requests.utils - -
- -
- -
- - requests.cookies -SourceModule
-imports: - calendar - • copy - • dummy_threading - • requests - • requests._internal_utils - • requests.compat - • threading - • time - -
-
-imported by: - requests.adapters - • requests.auth - • requests.models - • requests.sessions - • requests.utils - -
- -
- -
- - requests.exceptions -SourceModule
-imports: - requests - • requests.compat - • urllib3.exceptions - -
-
-imported by: - requests - • requests.adapters - • requests.models - • requests.sessions - • requests.utils - -
- -
- -
- - requests.hooks -SourceModule
-imports: - requests - -
-
-imported by: - requests.models - • requests.sessions - -
- -
- -
- - requests.models -SourceModule
-imports: - datetime - • encodings.idna - • idna - • io - • requests - • requests._internal_utils - • requests.auth - • requests.compat - • requests.cookies - • requests.exceptions - • requests.hooks - • requests.status_codes - • requests.structures - • requests.utils - • urllib3.exceptions - • urllib3.fields - • urllib3.filepost - • urllib3.util - -
-
-imported by: - requests - • requests.adapters - • requests.sessions - -
- -
- -
- - requests.packages -SourceModule
-imports: - requests - • requests.compat - • sys - -
-
-imported by: - requests - -
- -
- -
- - requests.sessions -SourceModule
-imports: - collections - • datetime - • os - • requests - • requests._internal_utils - • requests.adapters - • requests.auth - • requests.compat - • requests.cookies - • requests.exceptions - • requests.hooks - • requests.models - • requests.status_codes - • requests.structures - • requests.utils - • sys - • time - -
-
-imported by: - requests - • requests.api - -
- -
- -
- - requests.status_codes -SourceModule
-imports: - requests - • requests.structures - -
-
-imported by: - requests - • requests.models - • requests.sessions - -
- -
- -
- - requests.structures -SourceModule
-imports: - collections - • requests - • requests.compat - -
-
-imported by: - requests.adapters - • requests.models - • requests.sessions - • requests.status_codes - • requests.utils - -
- -
- -
- - requests.utils -SourceModule
-imports: - codecs - • collections - • contextlib - • io - • netrc - • os - • re - • requests - • requests.__version__ - • requests._internal_utils - • requests.certs - • requests.compat - • requests.cookies - • requests.exceptions - • requests.structures - • socket - • struct - • sys - • tempfile - • urllib3.util - • warnings - • winreg - • zipfile - -
-
-imported by: - requests - • requests.adapters - • requests.auth - • requests.models - • requests.sessions - -
- -
- -
- - resource -MissingModule
-imported by: - posix - -
- -
- -
- - runpy -SourceModule
-imports: - importlib.machinery - • importlib.util - • io - • os - • pkgutil - • sys - • types - • warnings - -
-
-imported by: - multiprocessing.spawn - • pdb - -
- -
- -
- - secrets -SourceModule
-imports: - base64 - • binascii - • hmac - • random - -
-
-imported by: - multiprocessing.shared_memory - -
- -
- -
- - select C:\users\dtyx\Local Settings\Application Data\Programs\Python\Python39-32\DLLs\select.pyd
-imported by: - http.server - • pydoc - • selectors - • subprocess - • urllib3.util.wait - -
- -
- -
- - selectors -SourceModule
-imports: - abc - • collections - • collections.abc - • math - • select - • sys - -
-
-imported by: - asyncio.selector_events - • asyncio.unix_events - • multiprocessing.connection - • multiprocessing.forkserver - • socket - • socketserver - • subprocess - -
- -
- -
- - shlex -SourceModule
-imports: - collections - • io - • os - • re - • sys - • warnings - -
-
-imported by: - PIL.ImageShow - • netrc - • pdb - • webbrowser - -
- -
- -
- - shutil -SourceModule
-imports: - bz2 - • collections - • errno - • fnmatch - • grp - • lzma - • nt - • os - • posix - • pwd - • stat - • sys - • tarfile - • zipfile - • zlib - -
-
-imported by: - PIL.EpsImagePlugin - • PIL.ImageShow - • argparse - • http.server - • multiprocessing.util - • tarfile - • tempfile - • utils.file_utils - • webbrowser - • zipfile - -
- -
- -
- - signal -SourceModule
-imports: - _signal - • enum - -
-
-imported by: - asyncio.proactor_events - • asyncio.unix_events - • multiprocessing.forkserver - • multiprocessing.managers - • multiprocessing.popen_fork - • multiprocessing.popen_spawn_win32 - • multiprocessing.process - • multiprocessing.resource_sharer - • multiprocessing.resource_tracker - • pdb - • subprocess - • unittest.signals - -
- -
- -
- - simplejson -MissingModule
-imported by: - requests.compat - -
- -
- -
- - socket -SourceModule
-imports: - _socket - • array - • enum - • errno - • io - • os - • selectors - • sys - -
-
-imported by: - _ssl - • asyncio.base_events - • asyncio.events - • asyncio.proactor_events - • asyncio.selector_events - • asyncio.streams - • asyncio.trsock - • asyncio.unix_events - • asyncio.windows_events - • email.utils - • ftplib - • http.client - • http.server - • multiprocessing.connection - • multiprocessing.forkserver - • multiprocessing.reduction - • multiprocessing.resource_sharer - • platform - • requests.adapters - • requests.utils - • socketserver - • ssl - • urllib.request - • urllib3.connection - • urllib3.connectionpool - • urllib3.contrib.pyopenssl - • urllib3.contrib.socks - • urllib3.exceptions - • urllib3.response - • urllib3.util.connection - • urllib3.util.ssl_ - • urllib3.util.ssltransport - • urllib3.util.timeout - • urllib3.util.wait - • webbrowser - -
- -
- -
- - socketserver -SourceModule
-imports: - io - • os - • selectors - • socket - • sys - • threading - • time - • traceback - -
-
-imported by: - http.server - -
- -
- -
- - socks -MissingModule
-imported by: - urllib3.contrib.socks - -
- -
- -
- - sre_compile -SourceModule
-imports: - _sre - • sre_constants - • sre_parse - • sys - -
-
-imported by: - Generate_Report.py - • re - -
- -
- -
- - sre_constants -SourceModule
-imports: - _sre - -
-
-imported by: - Generate_Report.py - • re - • sre_compile - • sre_parse - -
- -
- -
- - sre_parse -SourceModule
-imports: - sre_constants - • unicodedata - • warnings - -
-
-imported by: - Generate_Report.py - • re - • sre_compile - -
- -
- -
- - ssl -SourceModule
-imports: - _ssl - • base64 - • calendar - • collections - • enum - • errno - • os - • socket - • sys - • time - • warnings - -
-
-imported by: - asyncio.base_events - • asyncio.selector_events - • asyncio.sslproto - • ftplib - • http.client - • requests - • requests.adapters - • urllib.request - • urllib3 - • urllib3._base_connection - • urllib3.connection - • urllib3.connectionpool - • urllib3.contrib.pyopenssl - • urllib3.contrib.socks - • urllib3.poolmanager - • urllib3.util.ssl_ - • urllib3.util.ssltransport - -
- -
- -
- - stat -SourceModule
-imports: - _stat - -
-
-imported by: - Generate_Report.py - • asyncio.base_events - • asyncio.unix_events - • genericpath - • netrc - • ntpath - • os - • pathlib - • posixpath - • shutil - • tarfile - • zipfile - -
- -
- -
- - statistics -SourceModule
-imports: - _statistics - • bisect - • collections - • decimal - • fractions - • itertools - • math - • numbers - • operator - • random - -
-
-imported by: - random - -
- -
- -
- - string -SourceModule
-imports: - _string - • collections - • re - -
-
-imported by: - cmd - • email._encoded_words - • email._header_value_parser - • email.quoprimime - • http.cookies - • logging - • lxml.html.html5parser - • ntpath - • nturl2path - • urllib.request - -
- -
- -
- - stringprep -SourceModule
-imports: - unicodedata - -
-
-imported by: - encodings.idna - -
- -
- -
- - struct -SourceModule
-imports: - _struct - -
-
-imported by: - PIL.BlpImagePlugin - • PIL.DdsImagePlugin - • PIL.FtexImagePlugin - • PIL.IcnsImagePlugin - • PIL.Image - • PIL.ImageFile - • PIL.Jpeg2KImagePlugin - • PIL.JpegImagePlugin - • PIL.McIdasImagePlugin - • PIL.MpoImagePlugin - • PIL.MspImagePlugin - • PIL.PngImagePlugin - • PIL.SgiImagePlugin - • PIL.SpiderImagePlugin - • PIL.TiffImagePlugin - • PIL._binary - • asyncio.windows_events - • base64 - • ctypes - • docx.image.gif - • docx.image.helpers - • gettext - • gzip - • multiprocessing.connection - • multiprocessing.forkserver - • multiprocessing.shared_memory - • multiprocessing.synchronize - • pickle - • platform - • requests.utils - • tarfile - • zipfile - -
- -
- -
- - subprocess -SourceModule
-imports: - _posixsubprocess - • _winapi - • builtins - • contextlib - • errno - • grp - • io - • msvcrt - • os - • pwd - • select - • selectors - • signal - • sys - • threading - • time - • types - • warnings - -
-
-imported by: - PIL.EpsImagePlugin - • PIL.GifImagePlugin - • PIL.ImageShow - • PIL.JpegImagePlugin - • _aix_support - • asyncio.base_events - • asyncio.base_subprocess - • asyncio.events - • asyncio.subprocess - • asyncio.unix_events - • asyncio.windows_utils - • http.server - • multiprocessing.util - • os - • platform - • pydoc - • pyi_rth_multiprocessing.py - • webbrowser - -
- -
- -
- - sys (builtin module)
-imported by: - PIL.DdsImagePlugin - • PIL.EpsImagePlugin - • PIL.IcnsImagePlugin - • PIL.Image - • PIL.ImageCms - • PIL.ImageMode - • PIL.ImageQt - • PIL.ImageShow - • PIL.JpegImagePlugin - • PIL.SpiderImagePlugin - • PIL._imagingcms - • PIL._typing - • PIL.features - • _aix_support - • _bootlocale - • _collections_abc - • _pydecimal - • argparse - • ast - • asyncio - • asyncio.base_events - • asyncio.coroutines - • asyncio.events - • asyncio.format_helpers - • asyncio.futures - • asyncio.streams - • asyncio.unix_events - • asyncio.windows_events - • asyncio.windows_utils - • base64 - • bdb - • calendar - • certifi.core - • cgi - • cmd - • code - • codecs - • collections - • concurrent.futures.process - • configparser - • contextlib - • ctypes - • ctypes._endian - • dataclasses - • datetime - • dis - • doctest - • email._header_value_parser - • email.generator - • email.iterators - • email.policy - • encodings - • encodings.rot_13 - • encodings.utf_16 - • encodings.utf_32 - • enum - • fractions - • ftplib - • getopt - • getpass - • gettext - • glob - • gzip - • http.server - • importlib - • importlib._bootstrap_external - • importlib.metadata - • importlib.util - • inspect - • linecache - • locale - • logging - • lxml.doctestcompare - • lxml.html._diffcommand - • lxml.html.html5parser - • lxml.isoschematron - • mimetypes - • multiprocessing - • multiprocessing.connection - • multiprocessing.context - • multiprocessing.dummy - • multiprocessing.forkserver - • multiprocessing.heap - • multiprocessing.managers - • multiprocessing.popen_spawn_win32 - • multiprocessing.process - • multiprocessing.queues - • multiprocessing.reduction - • multiprocessing.resource_sharer - • multiprocessing.resource_tracker - • multiprocessing.spawn - • multiprocessing.synchronize - • multiprocessing.util - • ntpath - • optparse - • os - • pathlib - • pdb - • pickle - • pkgutil - • platform - • posixpath - • pprint - • py_compile - • pydoc - • pyi_rth_inspect.py - • pyi_rth_multiprocessing.py - • quopri - • requests.compat - • requests.packages - • requests.sessions - • requests.utils - • runpy - • selectors - • shlex - • shutil - • socket - • socketserver - • sre_compile - • ssl - • subprocess - • sysconfig - • tarfile - • tempfile - • threading - • tokenize - • tools.dataproccess - • traceback - • types - • typing - • typing_extensions - • unittest.case - • unittest.loader - • unittest.main - • unittest.result - • unittest.runner - • unittest.suite - • urllib.parse - • urllib.request - • urllib3 - • urllib3.connection - • urllib3.connectionpool - • urllib3.response - • urllib3.util.ssl_ - • uu - • warnings - • weakref - • webbrowser - • xml.etree.ElementTree - • xml.parsers.expat - • xml.sax - • xml.sax._exceptions - • xml.sax.expatreader - • xml.sax.saxutils - • xmlrpc.client - • zipfile - • zipimport - -
- -
- -
- - sysconfig -SourceModule
-imports: - _aix_support - • _imp - • os - • os.path - • pprint - • re - • sys - • types - • warnings - -
-
-imported by: - _aix_support - • pydoc - -
- -
- -
- - tarfile -SourceModule
-imports: - argparse - • builtins - • bz2 - • copy - • grp - • gzip - • io - • lzma - • os - • pwd - • re - • shutil - • stat - • struct - • sys - • time - • zlib - -
-
-imported by: - shutil - -
- -
- -
- - tempfile -SourceModule
-imports: - _thread - • errno - • functools - • io - • os - • random - • shutil - • sys - • types - • warnings - • weakref - -
-
-imported by: - PIL.EpsImagePlugin - • PIL.Image - • PIL.JpegImagePlugin - • asyncio.windows_utils - • cgi - • importlib._common - • lxml.html - • multiprocessing.connection - • multiprocessing.heap - • multiprocessing.synchronize - • multiprocessing.util - • pydoc - • requests.utils - • urllib.request - • urllib.response - • webbrowser - -
- -
- -
- - termios -MissingModule
-imported by: - getpass - • tty - -
- -
- -
- - textwrap -SourceModule
-imports: - re - -
-
-imported by: - argparse - • docx.enum.base - • optparse - • pydoc - -
- -
- -
- - threading -SourceModule
-imports: - _collections - • _thread - • _threading_local - • _weakrefset - • collections - • functools - • itertools - • os - • sys - • time - • traceback - -
-
-imported by: - _threading_local - • asyncio.base_events - • asyncio.events - • asyncio.proactor_events - • asyncio.unix_events - • bz2 - • concurrent.futures._base - • concurrent.futures.process - • concurrent.futures.thread - • http.cookiejar - • logging - • multiprocessing.context - • multiprocessing.dummy - • multiprocessing.forkserver - • multiprocessing.heap - • multiprocessing.managers - • multiprocessing.pool - • multiprocessing.process - • multiprocessing.queues - • multiprocessing.resource_sharer - • multiprocessing.resource_tracker - • multiprocessing.synchronize - • multiprocessing.util - • pydoc - • queue - • requests.auth - • requests.cookies - • socketserver - • subprocess - • urllib3._collections - • urllib3.connection - • urllib3.http2.connection - • urllib3.http2.probe - • webbrowser - • zipfile - -
- -
- -
- - time (builtin module)
-imports: - _strptime - -
-
-imported by: - PIL.PdfImagePlugin - • PIL.PdfParser - • _datetime - • _strptime - • asyncio.base_events - • asyncio.windows_events - • concurrent.futures._base - • datetime - • email._parseaddr - • email.generator - • email.utils - • gc - • gzip - • http.cookiejar - • http.cookies - • http.server - • logging - • multiprocessing.connection - • multiprocessing.managers - • multiprocessing.pool - • multiprocessing.queues - • multiprocessing.synchronize - • pprint - • pydoc - • queue - • random - • requests.auth - • requests.cookies - • requests.sessions - • socketserver - • ssl - • subprocess - • tarfile - • threading - • unittest.runner - • urllib.request - • urllib3.util.retry - • urllib3.util.timeout - • xmlrpc.client - • zipfile - • zipimport - -
- -
- -
- - token -SourceModule
-imported by: - inspect - • tokenize - -
- -
- -
- - tokenize -SourceModule
-imports: - argparse - • builtins - • codecs - • collections - • io - • itertools - • re - • sys - • token - -
-
-imported by: - importlib._bootstrap_external - • inspect - • linecache - • pdb - • pydoc - -
- -
- -
- - tools -NamespacePackage
-imported by: - tools.API - • tools.Get_Json - • tools.argtool - • tools.content_tools - • tools.dataproccess - • tools.defines - • tools.document_tools - • tools.get_pictures - -
- -
- -
- - tools.API -SourceModule
-imports: - tools - -
-
-imported by: - tools.Get_Json - -
- -
- -
- - tools.Get_Json -SourceModule
-imports: - json - • requests - • tools - • tools.API - • tools.dataproccess - -
-
-imported by: - Generate_Report.py - • tools.document_tools - -
- -
- -
- - tools.argtool -SourceModule
-imports: - argparse - • json - • tools - • typing - -
-
-imported by: - Generate_Report.py - -
- -
- -
- - tools.content_tools -SourceModule
-imports: - PIL - • PIL.Image - • core.styles - • docx - • docx.enum.table - • docx.oxml.shared - • docx.shared - • io - • os - • requests - • tools - • typing - • utils.document_utils - • utils.file_utils - -
-
-imported by: - Generate_Report.py - • tools.document_tools - -
- -
- -
- - tools.dataproccess -SourceModule
-imports: - datetime - • os - • sys - • tools - -
-
-imported by: - Generate_Report.py - • tools.Get_Json - -
- -
- -
- - tools.defines -SourceModule
-imports: - tools - -
-
-imported by: - Generate_Report.py - -
- -
- -
- - tools.document_tools -SourceModule
-imports: - core.styles - • core.tables - • docx - • docx.enum.table - • docx.enum.text - • docx.oxml - • docx.oxml.shared - • docx.shared - • json - • os - • re - • tools - • tools.Get_Json - • tools.content_tools - • tools.get_pictures - • typing - • utils.document_utils - • utils.file_utils - -
-
-imported by: - Generate_Report.py - -
- -
- -
- - tools.get_pictures -SourceModule
-imports: - PIL - • PIL.Image - • concurrent.futures - • math - • os - • tools - -
-
-imported by: - Generate_Report.py - • tools.document_tools - -
- -
- -
- - traceback -SourceModule
-imports: - collections - • itertools - • linecache - • sys - -
-
-imported by: - Generate_Report.py - • asyncio.base_events - • asyncio.base_tasks - • asyncio.coroutines - • asyncio.format_helpers - • cgi - • code - • concurrent.futures.process - • doctest - • http.cookiejar - • logging - • multiprocessing.managers - • multiprocessing.pool - • multiprocessing.process - • multiprocessing.queues - • multiprocessing.util - • pdb - • py_compile - • pydoc - • socketserver - • threading - • unittest.case - • unittest.loader - • unittest.result - • warnings - -
- -
- -
- - tracemalloc -SourceModule
-imports: - _tracemalloc - • collections.abc - • fnmatch - • functools - • linecache - • os.path - • pickle - -
-
-imported by: - warnings - -
- -
- -
- - tty -SourceModule
-imports: - termios - -
-
-imported by: - pydoc - -
- -
- -
- - types -SourceModule
-imports: - _collections_abc - • functools - • sys - -
-
-imported by: - Generate_Report.py - • PIL.Image - • PIL.ImageFilter - • PIL.ImageMath - • PIL._typing - • _weakrefset - • asyncio.coroutines - • asyncio.futures - • asyncio.queues - • asyncio.tasks - • concurrent.futures._base - • concurrent.futures.thread - • contextlib - • copy - • ctypes - • dataclasses - • difflib - • dis - • email.headerregistry - • enum - • functools - • http.cookies - • importlib - • importlib.resources - • importlib.util - • inspect - • lxml.builder - • lxml.html._difflib - • lxml.sax - • multiprocessing.managers - • multiprocessing.pool - • multiprocessing.queues - • multiprocessing.shared_memory - • multiprocessing.spawn - • pickle - • pkgutil - • pprint - • pydoc - • queue - • runpy - • subprocess - • sysconfig - • tempfile - • typing - • typing_extensions - • unittest.case - • unittest.loader - • urllib.parse - • urllib3.connectionpool - • urllib3.http2.connection - • urllib3.poolmanager - • urllib3.util.retry - • urllib3.util.util - -
- -
- -
- - typing -SourceModule
-imports: - abc - • collections - • collections.abc - • contextlib - • functools - • operator - • re - • sys - • types - -
-
-imported by: - PIL.AvifImagePlugin - • PIL.BlpImagePlugin - • PIL.BmpImagePlugin - • PIL.BufrStubImagePlugin - • PIL.DdsImagePlugin - • PIL.EpsImagePlugin - • PIL.GifImagePlugin - • PIL.GimpGradientFile - • PIL.GimpPaletteFile - • PIL.GribStubImagePlugin - • PIL.Hdf5StubImagePlugin - • PIL.IcnsImagePlugin - • PIL.IcoImagePlugin - • PIL.ImImagePlugin - • PIL.Image - • PIL.ImageCms - • PIL.ImageFile - • PIL.ImageFilter - • PIL.ImageMath - • PIL.ImageMode - • PIL.ImageOps - • PIL.ImagePalette - • PIL.ImageQt - • PIL.ImageSequence - • PIL.ImageShow - • PIL.ImageTk - • PIL.IptcImagePlugin - • PIL.Jpeg2KImagePlugin - • PIL.JpegImagePlugin - • PIL.MpoImagePlugin - • PIL.MspImagePlugin - • PIL.PaletteFile - • PIL.PalmImagePlugin - • PIL.PcxImagePlugin - • PIL.PdfImagePlugin - • PIL.PdfParser - • PIL.PngImagePlugin - • PIL.PpmImagePlugin - • PIL.PsdImagePlugin - • PIL.QoiImagePlugin - • PIL.SgiImagePlugin - • PIL.SpiderImagePlugin - • PIL.TgaImagePlugin - • PIL.TiffImagePlugin - • PIL.TiffTags - • PIL.WebPImagePlugin - • PIL.WmfImagePlugin - • PIL.XbmImagePlugin - • PIL._avif - • PIL._imaging - • PIL._imagingcms - • PIL._imagingmath - • PIL._imagingtk - • PIL._typing - • PIL._util - • PIL._webp - • PIL.features - • asyncio.staggered - • charset_normalizer.api - • charset_normalizer.cd - • charset_normalizer.legacy - • charset_normalizer.models - • charset_normalizer.utils - • docx - • docx.api - • docx.blkcntnr - • docx.comments - • docx.dml.color - • docx.document - • docx.drawing - • docx.enum.base - • docx.image.image - • docx.opc.coreprops - • docx.opc.oxml - • docx.opc.package - • docx.opc.part - • docx.opc.parts.coreprops - • docx.opc.pkgwriter - • docx.opc.rel - • docx.opc.shared - • docx.oxml.comments - • docx.oxml.coreprops - • docx.oxml.document - • docx.oxml.ns - • docx.oxml.parser - • docx.oxml.section - • docx.oxml.settings - • docx.oxml.shape - • docx.oxml.shared - • docx.oxml.simpletypes - • docx.oxml.table - • docx.oxml.text.font - • docx.oxml.text.hyperlink - • docx.oxml.text.pagebreak - • docx.oxml.text.paragraph - • docx.oxml.text.parfmt - • docx.oxml.text.run - • docx.oxml.xmlchemy - • docx.package - • docx.parts.comments - • docx.parts.document - • docx.parts.hdrftr - • docx.parts.image - • docx.parts.settings - • docx.parts.story - • docx.parts.styles - • docx.section - • docx.settings - • docx.shape - • docx.shared - • docx.styles - • docx.styles.style - • docx.table - • docx.text.font - • docx.text.hyperlink - • docx.text.pagebreak - • docx.text.paragraph - • docx.text.run - • docx.types - • functools - • idna.core - • idna.intranges - • idna.uts46data - • importlib.abc - • importlib.resources - • requests.adapters - • tools.argtool - • tools.content_tools - • tools.document_tools - • typing_extensions - • urllib3 - • urllib3._base_connection - • urllib3._collections - • urllib3._request_methods - • urllib3._version - • urllib3.connection - • urllib3.connectionpool - • urllib3.contrib.emscripten.connection - • urllib3.contrib.emscripten.fetch - • urllib3.contrib.emscripten.response - • urllib3.contrib.pyopenssl - • urllib3.contrib.socks - • urllib3.exceptions - • urllib3.fields - • urllib3.filepost - • urllib3.http2 - • urllib3.http2.connection - • urllib3.poolmanager - • urllib3.response - • urllib3.util.connection - • urllib3.util.proxy - • urllib3.util.request - • urllib3.util.retry - • urllib3.util.ssl_ - • urllib3.util.ssl_match_hostname - • urllib3.util.ssltransport - • urllib3.util.timeout - • urllib3.util.url - • urllib3.util.util - • utils.document_utils - • utils.file_utils - -
- -
- -
- - typing_extensions -SourceModule
-imports: - _socket - • abc - • annotationlib - • asyncio.coroutines - • builtins - • collections - • collections.abc - • contextlib - • enum - • functools - • inspect - • io - • keyword - • operator - • sys - • types - • typing - • warnings - -
-
-imported by: - PIL._typing - • charset_normalizer.legacy - • docx.blkcntnr - • docx.dml.color - • docx.enum.base - • docx.opc.package - • docx.oxml.section - • docx.parts.comments - • docx.table - • docx.types - • urllib3._collections - • urllib3.connectionpool - • urllib3.contrib.emscripten.fetch - • urllib3.poolmanager - • urllib3.util.retry - • urllib3.util.ssltransport - -
- -
- -
- - unicodedata C:\users\dtyx\Local Settings\Application Data\Programs\Python\Python39-32\DLLs\unicodedata.pyd
-imported by: - charset_normalizer.utils - • encodings.idna - • idna.core - • sre_parse - • stringprep - • urllib.parse - -
- -
- -
- - unittest -Package
-imports: - os.path - • unittest - • unittest.async_case - • unittest.case - • unittest.loader - • unittest.main - • unittest.result - • unittest.runner - • unittest.signals - • unittest.suite - • unittest.util - -
-
-imported by: - doctest - • unittest - • unittest._log - • unittest.async_case - • unittest.case - • unittest.loader - • unittest.main - • unittest.result - • unittest.runner - • unittest.signals - • unittest.suite - • unittest.util - -
- -
- -
- - unittest._log -SourceModule
-imports: - collections - • logging - • unittest - • unittest.case - -
-
-imported by: - unittest.case - -
- -
- -
- - unittest.async_case -SourceModule
-imports: - asyncio - • inspect - • unittest - • unittest.case - -
-
-imported by: - unittest - -
- -
- -
- - unittest.case -SourceModule
-imports: - collections - • contextlib - • difflib - • functools - • pprint - • re - • sys - • traceback - • types - • unittest - • unittest._log - • unittest.result - • unittest.util - • warnings - -
-
-imported by: - unittest - • unittest._log - • unittest.async_case - • unittest.loader - • unittest.suite - -
- -
- -
- - unittest.loader -SourceModule
-imports: - fnmatch - • functools - • os - • re - • sys - • traceback - • types - • unittest - • unittest.case - • unittest.suite - • unittest.util - • warnings - -
-
-imported by: - unittest - • unittest.main - -
- -
- -
- - unittest.main -SourceModule
-imports: - argparse - • os - • sys - • unittest - • unittest.loader - • unittest.runner - • unittest.signals - -
-
-imported by: - unittest - -
- -
- -
- - unittest.result -SourceModule
-imports: - functools - • io - • sys - • traceback - • unittest - • unittest.util - -
-
-imported by: - unittest - • unittest.case - • unittest.runner - -
- -
- -
- - unittest.runner -SourceModule
-imports: - sys - • time - • unittest - • unittest.result - • unittest.signals - • warnings - -
-
-imported by: - unittest - • unittest.main - -
- -
- -
- - unittest.signals -SourceModule
-imports: - functools - • signal - • unittest - • weakref - -
-
-imported by: - unittest - • unittest.main - • unittest.runner - -
- -
- -
- - unittest.suite -SourceModule
-imports: - sys - • unittest - • unittest.case - • unittest.util - -
-
-imported by: - unittest - • unittest.loader - -
- -
- -
- - unittest.util -SourceModule
-imports: - collections - • os.path - • unittest - -
-
-imported by: - unittest - • unittest.case - • unittest.loader - • unittest.result - • unittest.suite - -
- -
- -
- - urllib -Package
-imports: - urllib.urlencode - • urllib.urlopen - -
-
-imported by: - email._header_value_parser - • lxml.html - • urllib.error - • urllib.parse - • urllib.request - • urllib.response - -
- -
- -
- - urllib.error -SourceModule
-imports: - urllib - • urllib.response - -
-
-imported by: - urllib.request - -
- -
- -
- - urllib.parse -SourceModule
-imports: - collections - • re - • sys - • types - • unicodedata - • urllib - • warnings - -
-
-imported by: - cgi - • email.utils - • http.client - • http.cookiejar - • http.server - • lxml.ElementInclude - • lxml.html - • lxml.html.html5parser - • mimetypes - • nturl2path - • pathlib - • pydoc - • requests.compat - • urllib.request - • urllib3._request_methods - • urllib3.poolmanager - • xml.etree.ElementInclude - • xml.sax.saxutils - • xmlrpc.client - -
- -
- -
- - urllib.request -SourceModule
-imports: - _scproxy - • base64 - • bisect - • contextlib - • email - • email.utils - • fnmatch - • ftplib - • getpass - • hashlib - • http.client - • http.cookiejar - • io - • mimetypes - • nturl2path - • os - • posixpath - • re - • socket - • ssl - • string - • sys - • tempfile - • time - • urllib - • urllib.error - • urllib.parse - • urllib.response - • warnings - • winreg - -
-
-imported by: - http.cookiejar - • lxml.ElementInclude - • lxml.html - • lxml.html.html5parser - • requests.compat - • xml.sax.saxutils - -
- -
- -
- - urllib.response -SourceModule
-imports: - tempfile - • urllib - -
-
-imported by: - urllib.error - • urllib.request - -
- -
- -
- - urllib.urlencode -MissingModule
-imported by: - lxml.html - • urllib - -
- -
- -
- - urllib.urlopen -MissingModule
-imported by: - lxml.html - • urllib - -
- -
- -
- - urllib2 -MissingModule
-imported by: - lxml.ElementInclude - • lxml.html.html5parser - -
- -
- -
- - urllib3 -Package
-imports: - __future__ - • logging - • ssl - • sys - • typing - • urllib3 - • urllib3._base_connection - • urllib3._collections - • urllib3._version - • urllib3.connectionpool - • urllib3.contrib.emscripten - • urllib3.exceptions - • urllib3.filepost - • urllib3.poolmanager - • urllib3.response - • urllib3.util.request - • urllib3.util.retry - • urllib3.util.timeout - • warnings - -
-
-imported by: - requests - • requests.compat - • urllib3 - • urllib3._base_connection - • urllib3._collections - • urllib3._request_methods - • urllib3._version - • urllib3.connection - • urllib3.connectionpool - • urllib3.contrib - • urllib3.contrib.pyopenssl - • urllib3.exceptions - • urllib3.fields - • urllib3.filepost - • urllib3.http2 - • urllib3.poolmanager - • urllib3.response - • urllib3.util - -
- -
- -
- - urllib3._base_connection -SourceModule
-imports: - __future__ - • ssl - • typing - • urllib3 - • urllib3.response - • urllib3.util.connection - • urllib3.util.timeout - • urllib3.util.url - -
-
-imported by: - urllib3 - • urllib3._request_methods - • urllib3.connection - • urllib3.connectionpool - • urllib3.contrib.emscripten.connection - • urllib3.contrib.emscripten.request - • urllib3.contrib.emscripten.response - • urllib3.http2.connection - • urllib3.response - • urllib3.util.connection - -
- -
- -
- - urllib3._collections -SourceModule
-imports: - __future__ - • collections - • enum - • threading - • typing - • typing_extensions - • urllib3 - -
-
-imported by: - urllib3 - • urllib3._request_methods - • urllib3.connection - • urllib3.connectionpool - • urllib3.http2.connection - • urllib3.poolmanager - • urllib3.response - -
- -
- -
- - urllib3._request_methods -SourceModule
-imports: - __future__ - • json - • typing - • urllib.parse - • urllib3 - • urllib3._base_connection - • urllib3._collections - • urllib3.filepost - • urllib3.response - -
-
-imported by: - urllib3.connectionpool - • urllib3.poolmanager - -
- -
- -
- - urllib3._version -SourceModule
-imports: - typing - • urllib3 - -
-
-imported by: - urllib3 - • urllib3.connection - -
- -
- -
- - urllib3.connection -SourceModule
-imports: - __future__ - • datetime - • http.client - • logging - • os - • re - • socket - • ssl - • sys - • threading - • typing - • urllib3 - • urllib3._base_connection - • urllib3._collections - • urllib3._version - • urllib3.exceptions - • urllib3.http2 - • urllib3.http2.probe - • urllib3.response - • urllib3.util - • urllib3.util.connection - • urllib3.util.request - • urllib3.util.response - • urllib3.util.ssl_ - • urllib3.util.ssl_match_hostname - • urllib3.util.ssltransport - • urllib3.util.timeout - • urllib3.util.url - • urllib3.util.util - • urllib3.util.wait - • warnings - -
-
-imported by: - urllib3.connectionpool - • urllib3.contrib.emscripten - • urllib3.contrib.emscripten.connection - • urllib3.contrib.socks - • urllib3.exceptions - • urllib3.http2 - • urllib3.http2.connection - • urllib3.poolmanager - • urllib3.response - • urllib3.util.proxy - -
- -
- -
- - urllib3.connectionpool -SourceModule
-imports: - __future__ - • errno - • logging - • queue - • socket - • ssl - • sys - • types - • typing - • typing_extensions - • urllib3 - • urllib3._base_connection - • urllib3._collections - • urllib3._request_methods - • urllib3.connection - • urllib3.exceptions - • urllib3.response - • urllib3.util.connection - • urllib3.util.proxy - • urllib3.util.request - • urllib3.util.retry - • urllib3.util.ssl_match_hostname - • urllib3.util.timeout - • urllib3.util.url - • urllib3.util.util - • warnings - • weakref - -
-
-imported by: - urllib3 - • urllib3.contrib.emscripten - • urllib3.contrib.socks - • urllib3.exceptions - • urllib3.http2 - • urllib3.poolmanager - • urllib3.response - • urllib3.util.retry - -
- -
- -
- - urllib3.contrib -Package
-imports: - urllib3 - • urllib3.contrib.pyopenssl - -
-
-imported by: - requests - • urllib3.contrib.emscripten - • urllib3.contrib.pyopenssl - • urllib3.contrib.socks - -
- -
- -
- - urllib3.contrib.emscripten -Package
-imports: - __future__ - • urllib3.connection - • urllib3.connectionpool - • urllib3.contrib - • urllib3.contrib.emscripten.connection - -
-
-imported by: - urllib3 - • urllib3.contrib.emscripten.connection - • urllib3.contrib.emscripten.fetch - • urllib3.contrib.emscripten.request - • urllib3.contrib.emscripten.response - -
- -
- -
- - urllib3.contrib.emscripten.connection -SourceModule
-imports: - __future__ - • http.client - • os - • typing - • urllib3._base_connection - • urllib3.connection - • urllib3.contrib.emscripten - • urllib3.contrib.emscripten.fetch - • urllib3.contrib.emscripten.request - • urllib3.contrib.emscripten.response - • urllib3.exceptions - • urllib3.response - • urllib3.util.connection - • urllib3.util.timeout - • urllib3.util.url - -
-
-imported by: - urllib3.contrib.emscripten - -
- -
- -
- - urllib3.contrib.emscripten.fetch -SourceModule
-imports: - 'pyodide.ffi' - • __future__ - • email.parser - • importlib.resources - • io - • js - • json - • pyodide - • typing - • typing_extensions - • urllib3.contrib.emscripten - • urllib3.contrib.emscripten.request - • urllib3.contrib.emscripten.response - -
-
-imported by: - urllib3.contrib.emscripten.connection - • urllib3.contrib.emscripten.response - -
- -
- -
- - urllib3.contrib.emscripten.request -SourceModule
-imports: - __future__ - • dataclasses - • urllib3._base_connection - • urllib3.contrib.emscripten - -
-
-imported by: - urllib3.contrib.emscripten.connection - • urllib3.contrib.emscripten.fetch - • urllib3.contrib.emscripten.response - -
- -
- -
- - urllib3.contrib.emscripten.response -SourceModule
-imports: - __future__ - • contextlib - • dataclasses - • http.client - • io - • json - • logging - • typing - • urllib3._base_connection - • urllib3.contrib.emscripten - • urllib3.contrib.emscripten.fetch - • urllib3.contrib.emscripten.request - • urllib3.exceptions - • urllib3.response - • urllib3.util.retry - -
-
-imported by: - urllib3.contrib.emscripten.connection - • urllib3.contrib.emscripten.fetch - -
- -
- -
- - urllib3.contrib.pyopenssl -SourceModule
-imports: - 'OpenSSL.crypto' - • 'cryptography.x509' - • OpenSSL - • __future__ - • cryptography - • idna - • io - • logging - • socket - • ssl - • typing - • urllib3 - • urllib3.contrib - • urllib3.util - -
-
-imported by: - requests - • urllib3.contrib - -
- -
- -
- - urllib3.contrib.socks -SourceModule
-imports: - __future__ - • socket - • socks - • ssl - • typing - • urllib3.connection - • urllib3.connectionpool - • urllib3.contrib - • urllib3.exceptions - • urllib3.poolmanager - • urllib3.util.url - • warnings - -
-
-imported by: - requests.adapters - -
- -
- -
- - urllib3.exceptions -SourceModule
-imports: - __future__ - • email.errors - • http.client - • socket - • typing - • urllib3 - • urllib3.connection - • urllib3.connectionpool - • urllib3.response - • urllib3.util.retry - • warnings - -
-
-imported by: - requests - • requests.adapters - • requests.exceptions - • requests.models - • urllib3 - • urllib3.connection - • urllib3.connectionpool - • urllib3.contrib.emscripten.connection - • urllib3.contrib.emscripten.response - • urllib3.contrib.socks - • urllib3.http2.connection - • urllib3.poolmanager - • urllib3.response - • urllib3.util.connection - • urllib3.util.request - • urllib3.util.response - • urllib3.util.retry - • urllib3.util.ssl_ - • urllib3.util.ssltransport - • urllib3.util.timeout - • urllib3.util.url - -
- -
- -
- - urllib3.fields -SourceModule
-imports: - __future__ - • email.utils - • mimetypes - • typing - • urllib3 - • warnings - -
-
-imported by: - requests.models - • urllib3.filepost - -
- -
- -
- - urllib3.filepost -SourceModule
-imports: - __future__ - • binascii - • codecs - • io - • os - • typing - • urllib3 - • urllib3.fields - -
-
-imported by: - requests.models - • urllib3 - • urllib3._request_methods - -
- -
- -
- - urllib3.http2 -Package
-imports: - __future__ - • importlib.metadata - • typing - • urllib3 - • urllib3.connection - • urllib3.connectionpool - • urllib3.http2.connection - • urllib3.http2.probe - • urllib3.util - • urllib3.util.ssl_ - -
-
-imported by: - urllib3.connection - • urllib3.http2.connection - • urllib3.http2.probe - -
- -
- -
- - urllib3.http2.connection -SourceModule
-imports: - 'h2.connection' - • 'h2.events' - • __future__ - • h2 - • logging - • re - • threading - • types - • typing - • urllib3._base_connection - • urllib3._collections - • urllib3.connection - • urllib3.exceptions - • urllib3.http2 - • urllib3.response - -
-
-imported by: - urllib3.http2 - -
- -
- -
- - urllib3.http2.probe -SourceModule
-imports: - __future__ - • threading - • urllib3.http2 - -
-
-imported by: - urllib3.connection - • urllib3.http2 - -
- -
- -
- - urllib3.poolmanager -SourceModule
-imports: - __future__ - • functools - • logging - • ssl - • types - • typing - • typing_extensions - • urllib.parse - • urllib3 - • urllib3._collections - • urllib3._request_methods - • urllib3.connection - • urllib3.connectionpool - • urllib3.exceptions - • urllib3.response - • urllib3.util.connection - • urllib3.util.proxy - • urllib3.util.retry - • urllib3.util.timeout - • urllib3.util.url - • warnings - -
-
-imported by: - requests.adapters - • urllib3 - • urllib3.contrib.socks - -
- -
- -
- - urllib3.response -SourceModule
-imports: - __future__ - • brotli - • brotlicffi - • collections - • compression - • contextlib - • http.client - • io - • json - • logging - • re - • socket - • sys - • typing - • urllib3 - • urllib3._base_connection - • urllib3._collections - • urllib3.connection - • urllib3.connectionpool - • urllib3.exceptions - • urllib3.util - • urllib3.util.response - • urllib3.util.retry - • warnings - • zlib - • zstandard - -
-
-imported by: - urllib3 - • urllib3._base_connection - • urllib3._request_methods - • urllib3.connection - • urllib3.connectionpool - • urllib3.contrib.emscripten.connection - • urllib3.contrib.emscripten.response - • urllib3.exceptions - • urllib3.http2.connection - • urllib3.poolmanager - • urllib3.util.retry - -
- -
- -
- - urllib3.util -Package
-imports: - __future__ - • urllib3 - • urllib3.util.connection - • urllib3.util.request - • urllib3.util.response - • urllib3.util.retry - • urllib3.util.ssl_ - • urllib3.util.timeout - • urllib3.util.url - • urllib3.util.wait - -
-
-imported by: - requests.adapters - • requests.models - • requests.utils - • urllib3.connection - • urllib3.contrib.pyopenssl - • urllib3.http2 - • urllib3.response - • urllib3.util.connection - • urllib3.util.proxy - • urllib3.util.request - • urllib3.util.response - • urllib3.util.retry - • urllib3.util.ssl_ - • urllib3.util.ssl_match_hostname - • urllib3.util.ssltransport - • urllib3.util.timeout - • urllib3.util.url - • urllib3.util.util - • urllib3.util.wait - -
- -
- -
- - urllib3.util.connection -SourceModule
-imports: - __future__ - • socket - • typing - • urllib3._base_connection - • urllib3.exceptions - • urllib3.util - • urllib3.util.timeout - -
-
-imported by: - urllib3._base_connection - • urllib3.connection - • urllib3.connectionpool - • urllib3.contrib.emscripten.connection - • urllib3.poolmanager - • urllib3.util - -
- -
- -
- - urllib3.util.proxy -SourceModule
-imports: - __future__ - • typing - • urllib3.connection - • urllib3.util - • urllib3.util.url - -
-
-imported by: - urllib3.connectionpool - • urllib3.poolmanager - -
- -
- -
- - urllib3.util.request -SourceModule
-imports: - __future__ - • base64 - • brotli - • brotlicffi - • compression - • enum - • io - • typing - • urllib3.exceptions - • urllib3.util - • urllib3.util.util - • zstandard - -
-
-imported by: - urllib3 - • urllib3.connection - • urllib3.connectionpool - • urllib3.util - -
- -
- -
- - urllib3.util.response -SourceModule
-imports: - __future__ - • email.errors - • http.client - • urllib3.exceptions - • urllib3.util - -
-
-imported by: - urllib3.connection - • urllib3.response - • urllib3.util - -
- -
- -
- - urllib3.util.retry -SourceModule
-imports: - __future__ - • email - • itertools - • logging - • random - • re - • time - • types - • typing - • typing_extensions - • urllib3.connectionpool - • urllib3.exceptions - • urllib3.response - • urllib3.util - • urllib3.util.util - -
-
-imported by: - requests.adapters - • urllib3 - • urllib3.connectionpool - • urllib3.contrib.emscripten.response - • urllib3.exceptions - • urllib3.poolmanager - • urllib3.response - • urllib3.util - -
- -
- -
- - urllib3.util.ssl_ -SourceModule
-imports: - __future__ - • binascii - • hashlib - • hmac - • os - • socket - • ssl - • sys - • typing - • urllib3.exceptions - • urllib3.util - • urllib3.util.ssltransport - • urllib3.util.url - • warnings - -
-
-imported by: - requests.adapters - • urllib3.connection - • urllib3.http2 - • urllib3.util - • urllib3.util.ssl_match_hostname - • urllib3.util.ssltransport - -
- -
- -
- - urllib3.util.ssl_match_hostname -SourceModule
-imports: - __future__ - • ipaddress - • re - • typing - • urllib3.util - • urllib3.util.ssl_ - -
-
-imported by: - urllib3.connection - • urllib3.connectionpool - -
- -
- -
- - urllib3.util.ssltransport -SourceModule
-imports: - __future__ - • io - • socket - • ssl - • typing - • typing_extensions - • urllib3.exceptions - • urllib3.util - • urllib3.util.ssl_ - -
-
-imported by: - urllib3.connection - • urllib3.util.ssl_ - -
- -
- -
- - urllib3.util.timeout -SourceModule
-imports: - __future__ - • enum - • socket - • time - • typing - • urllib3.exceptions - • urllib3.util - -
-
-imported by: - urllib3 - • urllib3._base_connection - • urllib3.connection - • urllib3.connectionpool - • urllib3.contrib.emscripten.connection - • urllib3.poolmanager - • urllib3.util - • urllib3.util.connection - -
- -
- -
- - urllib3.util.url -SourceModule
-imports: - __future__ - • idna - • re - • typing - • urllib3.exceptions - • urllib3.util - • urllib3.util.util - -
-
-imported by: - urllib3._base_connection - • urllib3.connection - • urllib3.connectionpool - • urllib3.contrib.emscripten.connection - • urllib3.contrib.socks - • urllib3.poolmanager - • urllib3.util - • urllib3.util.proxy - • urllib3.util.ssl_ - -
- -
- -
- - urllib3.util.util -SourceModule
-imports: - __future__ - • types - • typing - • urllib3.util - -
-
-imported by: - urllib3.connection - • urllib3.connectionpool - • urllib3.util.request - • urllib3.util.retry - • urllib3.util.url - -
- -
- -
- - urllib3.util.wait -SourceModule
-imports: - __future__ - • functools - • select - • socket - • urllib3.util - -
-
-imported by: - urllib3.connection - • urllib3.util - -
- -
- -
- - urlparse -MissingModule
-imported by: - lxml.ElementInclude - • lxml.html.html5parser - -
- -
- -
- - utils -Package
-imports: - utils.document_utils - • utils.file_utils - -
-
-imported by: - utils.document_utils - • utils.file_utils - -
- -
- -
- - utils.document_utils -SourceModule
-imports: - docx - • json - • os - • typing - • utils - -
-
-imported by: - tools.content_tools - • tools.document_tools - • utils - -
- -
- -
- - utils.file_utils -SourceModule
-imports: - os - • shutil - • typing - • utils - -
-
-imported by: - tools.content_tools - • tools.document_tools - • utils - -
- -
- -
- - uu -SourceModule
-imports: - binascii - • optparse - • os - • sys - -
-
-imported by: - email.message - -
- -
- -
- - vms_lib -MissingModule
-imported by: - platform - -
- -
- -
- - warnings -SourceModule
-imports: - _warnings - • builtins - • linecache - • re - • sys - • traceback - • tracemalloc - -
-
-imported by: - Generate_Report.py - • PIL.IcoImagePlugin - • PIL.Image - • PIL.JpegImagePlugin - • PIL.PngImagePlugin - • PIL.TgaImagePlugin - • PIL.TiffImagePlugin - • PIL._deprecate - • PIL.features - • _collections_abc - • argparse - • ast - • asyncio.base_events - • asyncio.base_subprocess - • asyncio.coroutines - • asyncio.locks - • asyncio.proactor_events - • asyncio.queues - • asyncio.selector_events - • asyncio.sslproto - • asyncio.streams - • asyncio.subprocess - • asyncio.tasks - • asyncio.trsock - • asyncio.unix_events - • asyncio.windows_utils - • charset_normalizer.legacy - • codeop - • collections - • configparser - • datetime - • docx.styles.styles - • enum - • ftplib - • getpass - • gettext - • gzip - • hmac - • http.client - • http.cookiejar - • importlib - • importlib.abc - • importlib.util - • inspect - • locale - • logging - • multiprocessing.forkserver - • multiprocessing.pool - • multiprocessing.resource_tracker - • os - • pkgutil - • pydoc - • random - • requests - • requests.adapters - • requests.auth - • requests.utils - • runpy - • shlex - • sre_parse - • ssl - • subprocess - • sysconfig - • tempfile - • typing_extensions - • unittest.case - • unittest.loader - • unittest.runner - • urllib.parse - • urllib.request - • urllib3 - • urllib3.connection - • urllib3.connectionpool - • urllib3.contrib.socks - • urllib3.exceptions - • urllib3.fields - • urllib3.poolmanager - • urllib3.response - • urllib3.util.ssl_ - • xml.etree.ElementTree - • zipfile - -
- -
- -
- - weakref -SourceModule
-imports: - _collections_abc - • _weakref - • _weakrefset - • atexit - • copy - • gc - • itertools - • sys - -
-
-imported by: - Generate_Report.py - • _threading_local - • asyncio.base_events - • asyncio.selector_events - • asyncio.streams - • asyncio.tasks - • asyncio.windows_events - • concurrent.futures.process - • concurrent.futures.thread - • copy - • functools - • logging - • multiprocessing.dummy - • multiprocessing.queues - • multiprocessing.sharedctypes - • multiprocessing.util - • tempfile - • unittest.signals - • urllib3.connectionpool - • xml.sax.expatreader - -
- -
- -
- - webbrowser -SourceModule
-imports: - copy - • getopt - • glob - • os - • pwd - • shlex - • shutil - • socket - • subprocess - • sys - • tempfile - • threading - -
-
-imported by: - lxml.html - • pydoc - -
- -
- -
- - winreg (builtin module)
-imported by: - importlib._bootstrap_external - • mimetypes - • platform - • requests.utils - • urllib.request - -
- -
- -
- - xml -Package
-imports: - xml.sax.expatreader - • xml.sax.xmlreader - -
-
-imported by: - xml.etree - • xml.parsers - • xml.sax - -
- -
- -
- - xml.etree -Package
-imports: - xml - • xml.etree - • xml.etree.ElementPath - • xml.etree.ElementTree - -
-
-imported by: - xml.etree - • xml.etree.ElementInclude - • xml.etree.ElementPath - • xml.etree.ElementTree - • xml.etree.cElementTree - -
- -
- -
- - xml.etree.ElementInclude -SourceModule
-imports: - copy - • urllib.parse - • xml.etree - • xml.etree.ElementTree - -
-
-imported by: - _elementtree - -
- -
- -
- - xml.etree.ElementPath -SourceModule
-imports: - re - • xml.etree - -
-
-imported by: - _elementtree - • xml.etree - • xml.etree.ElementTree - -
- -
- -
- - xml.etree.ElementTree -SourceModule
-imports: - _elementtree - • collections - • collections.abc - • contextlib - • io - • pyexpat - • re - • sys - • warnings - • xml.etree - • xml.etree.ElementPath - • xml.parsers - • xml.parsers.expat - -
-
-imported by: - PIL.Image - • _elementtree - • xml.etree - • xml.etree.ElementInclude - • xml.etree.cElementTree - -
- -
- -
- - xml.etree.cElementTree -SourceModule
-imports: - xml.etree - • xml.etree.ElementTree - -
-
-imported by: - _elementtree - -
- -
- -
- - xml.parsers -Package
-imports: - xml - • xml.parsers.expat - -
-
-imported by: - xml.etree.ElementTree - • xml.parsers.expat - • xml.sax.expatreader - • xmlrpc.client - -
- -
- -
- - xml.parsers.expat -SourceModule
-imports: - pyexpat - • sys - • xml.parsers - -
-
-imported by: - xml.etree.ElementTree - • xml.parsers - • xml.sax.expatreader - • xmlrpc.client - -
- -
- -
- - xml.sax -Package
-imports: - 'org.python' - • io - • os - • sys - • xml - • xml.sax - • xml.sax._exceptions - • xml.sax.expatreader - • xml.sax.handler - • xml.sax.saxutils - • xml.sax.xmlreader - -
-
-imported by: - xml.sax - • xml.sax._exceptions - • xml.sax.expatreader - • xml.sax.handler - • xml.sax.saxutils - • xml.sax.xmlreader - -
- -
- -
- - xml.sax._exceptions -SourceModule
-imports: - 'java.lang' - • sys - • xml.sax - -
-
-imported by: - xml.sax - • xml.sax.expatreader - • xml.sax.xmlreader - -
- -
- -
- - xml.sax.expatreader -SourceModule
-imports: - _weakref - • sys - • weakref - • xml.parsers - • xml.parsers.expat - • xml.sax - • xml.sax._exceptions - • xml.sax.handler - • xml.sax.saxutils - • xml.sax.xmlreader - -
-
-imported by: - xml - • xml.sax - -
- -
- -
- - xml.sax.handler -SourceModule
-imports: - xml.sax - -
-
-imported by: - lxml.sax - • xml.sax - • xml.sax.expatreader - • xml.sax.saxutils - • xml.sax.xmlreader - -
- -
- -
- - xml.sax.saxutils -SourceModule
-imports: - codecs - • io - • os - • sys - • urllib.parse - • urllib.request - • xml.sax - • xml.sax.handler - • xml.sax.xmlreader - -
-
-imported by: - xml.sax - • xml.sax.expatreader - • xml.sax.xmlreader - -
- -
- -
- - xml.sax.xmlreader -SourceModule
-imports: - xml.sax - • xml.sax._exceptions - • xml.sax.handler - • xml.sax.saxutils - -
-
-imported by: - lxml.sax - • xml - • xml.sax - • xml.sax.expatreader - • xml.sax.saxutils - -
- -
- -
- - xmlrpc -Package
-imported by: - xmlrpc.client - -
- -
- -
- - xmlrpc.client -SourceModule
-imports: - base64 - • datetime - • decimal - • errno - • gzip - • http.client - • io - • sys - • time - • urllib.parse - • xml.parsers - • xml.parsers.expat - • xmlrpc - -
-
-imported by: - multiprocessing.connection - -
- -
- -
- - zipfile -SourceModule
-imports: - argparse - • binascii - • bz2 - • contextlib - • importlib.util - • io - • itertools - • lzma - • os - • posixpath - • py_compile - • shutil - • stat - • struct - • sys - • threading - • time - • warnings - • zlib - -
-
-imported by: - docx.opc.phys_pkg - • importlib._common - • importlib.metadata - • pyi_rth_inspect.py - • requests.utils - • shutil - -
- -
- -
- - zipimport -SourceModule
-imports: - _frozen_importlib - • _frozen_importlib_external - • _imp - • _io - • importlib.abc - • io - • marshal - • os - • pathlib - • sys - • time - • zlib - -
-
-imported by: - pkgutil - -
- -
- -
- - zlib (builtin module)
-imported by: - PIL.PdfParser - • PIL.PngImagePlugin - • encodings.zlib_codec - • gzip - • shutil - • tarfile - • urllib3.response - • zipfile - • zipimport - -
- -
- -
- - zstandard -MissingModule
-imported by: - urllib3.response - • urllib3.util.request - -
- -
- - - diff --git a/muban/check_check_title.docx b/muban/check_check_title.docx index 382514d..27c9d10 100644 Binary files a/muban/check_check_title.docx and b/muban/check_check_title.docx differ diff --git a/output/三峡能源阿城万兴风电场防雷通道检测项目项目叶片外观、内部、防雷检查报告一期012号2025年08月01日版40.docx b/output/三峡能源阿城万兴风电场防雷通道检测项目项目叶片外观、内部、防雷检查报告一期012号2025年08月01日版40.docx deleted file mode 100644 index 5c806f3..0000000 Binary files a/output/三峡能源阿城万兴风电场防雷通道检测项目项目叶片外观、内部、防雷检查报告一期012号2025年08月01日版40.docx and /dev/null differ diff --git a/build/build/report_generator.pkg b/output/三峡能源阿城万兴风电场防雷通道检测项目项目叶片外观、内部、防雷检查报告一期012号2025年08月04日版12.docx similarity index 62% rename from build/build/report_generator.pkg rename to output/三峡能源阿城万兴风电场防雷通道检测项目项目叶片外观、内部、防雷检查报告一期012号2025年08月04日版12.docx index 7757711..ff542ce 100644 Binary files a/build/build/report_generator.pkg and b/output/三峡能源阿城万兴风电场防雷通道检测项目项目叶片外观、内部、防雷检查报告一期012号2025年08月04日版12.docx differ diff --git a/tools/__pycache__/argtool.cpython-310.pyc b/tools/__pycache__/argtool.cpython-310.pyc index d430016..5703a0f 100644 Binary files a/tools/__pycache__/argtool.cpython-310.pyc and b/tools/__pycache__/argtool.cpython-310.pyc differ diff --git a/tools/__pycache__/content_tools.cpython-310.pyc b/tools/__pycache__/content_tools.cpython-310.pyc index ce2cb70..f515434 100644 Binary files a/tools/__pycache__/content_tools.cpython-310.pyc and b/tools/__pycache__/content_tools.cpython-310.pyc differ diff --git a/tools/__pycache__/defines.cpython-310.pyc b/tools/__pycache__/defines.cpython-310.pyc index 3d80324..a8bbb25 100644 Binary files a/tools/__pycache__/defines.cpython-310.pyc and b/tools/__pycache__/defines.cpython-310.pyc differ diff --git a/tools/__pycache__/document_tools.cpython-310.pyc b/tools/__pycache__/document_tools.cpython-310.pyc index 307e6a0..461d5db 100644 Binary files a/tools/__pycache__/document_tools.cpython-310.pyc and b/tools/__pycache__/document_tools.cpython-310.pyc differ diff --git a/tools/argtool.py b/tools/argtool.py index 5398be1..b35a19c 100644 --- a/tools/argtool.py +++ b/tools/argtool.py @@ -104,6 +104,6 @@ def get_default_config() -> Dict[str, Dict[str, Any]]: "if_docx_inspection_picture": True, "if_docx_defect_picture": True, "if_docx_conclusion": True, - "choose_template" : "JF" + "choose_template" : "DT" } } diff --git a/tools/content_tools.py b/tools/content_tools.py index 44264a2..8ef67cf 100644 --- a/tools/content_tools.py +++ b/tools/content_tools.py @@ -361,7 +361,10 @@ def add_picture_to_table( # 添加图片(带异常捕获) try: if width: - run.add_picture(final_bytes, width=Inches(width), height=Inches(height)) + try: + run.add_picture(final_bytes, width=Inches(width), height=Inches(height)) + except: + run.add_picture(final_bytes, width=Inches(width)) else: run.add_picture(final_bytes) except Exception: diff --git a/tools/defines.py b/tools/defines.py index 0977ef5..e15065c 100644 --- a/tools/defines.py +++ b/tools/defines.py @@ -205,6 +205,16 @@ class DocxColors(Enum): def rgb(self): return self.value +DT_EADING_1_CONFIG = { + "alignment": "left", + "font" : { + "name" : "宋体", + "size" : Pt(14), + "bold" : True, + "color" : DocxColors.BLACK.rgb + }, +} + HEADING_1_CONFIG = { "alignment": "left", "font" : { diff --git a/tools/document_tools.py b/tools/document_tools.py index 46122af..ff73db8 100644 --- a/tools/document_tools.py +++ b/tools/document_tools.py @@ -253,7 +253,7 @@ def write_table(target_filename: str, rows: int, cols: int, table_num: int, data if j >= cols + 1: break - if cell_text.endswith((".png", ".jpg", ".jpeg")): + if cell_text is not None and cell_text.endswith((".png", ".jpg", ".jpeg")): target_doc.save(target_filename) target_doc.tables[table_num].cell(i,j).text = "" print(f"在[{i},{j}]处添加图片{cell_text}") @@ -276,7 +276,7 @@ def write_table(target_filename: str, rows: int, cols: int, table_num: int, data print(f"在的[{i},{j}]处写入{str(cell_text)}") target_doc.tables[table_num].cell(i,j).text = str(cell_text) - print(key_words, cell_text) + print(key_words, cell_text) if key_words and key_words.search(str(cell_text)): print(f'{cell_text}包含关键字,已置红') target_doc.tables[table_num].cell(i,j).paragraphs[0].runs[0].font.color.rgb = RGBColor(255, 0, 0) @@ -298,22 +298,6 @@ def write_table(target_filename: str, rows: int, cols: int, table_num: int, data print("表格写入完成") return target_doc -def set_document_para(target_doc: Document) -> Document: - """设置文档的段落格式 - """ - paragraphs_to_remove = [] - for i, paragraph in enumerate(target_doc.paragraphs): - if i <= 11: - continue - if not paragraph.text.strip(): - paragraphs_to_remove.append(paragraph) - - for paragraph in paragraphs_to_remove: - p = paragraph._element - p.getparent().remove(p) - - return target_doc - def add_table_to_document(target_filename: str, source_filename: str, rows: int, cols: int, table_num: int, data: Optional[List[List[str]]] = None, ifadjustheight: Optional[bool] = True, height: Optional[float] = None, key_words: re.Pattern[str] = None, ALIGMENT: Optional[str] = 'CENTER', if_merge : Optional[bool] = True, Report_Enum = 'DT', if_para : Optional[bool] = True, width : Optional[float] = None) -> str: """复制源文件中的文字与表格(先文字后表格格式)到目标文档 Args: @@ -366,11 +350,9 @@ def add_table_to_document(target_filename: str, source_filename: str, rows: int, # 检查 run.font.name 是否为 None if run.font.name is None: # 设置默认的中文字体名称 - run.font.name = '宋体(中文正文)' # 或者使用其他你喜欢的中文字体 + run.font.name = '宋体(中文正文)' rFonts.set(qn('w:eastAsia'), run.font.name) new_run.font.color.rgb = run.font.color.rgb - - # Font size if specified if run.font.size: new_run.font.size = run.font.size @@ -391,8 +373,9 @@ def add_table_to_document(target_filename: str, source_filename: str, rows: int, print(f"{target_filename}写入{data}失败:{str(e)}") target_doc.save(target_filename) return target_doc,f"{target_filename}添加表格{source_doc}成功" + + from docx.document import Document as Document_ -from docx.table import Table def add_table(target_filename: str, source_filename : str | Document_, if_merge = True, REPORT_ENUM = 'DT'): if isinstance(source_filename, str): output_doc = copy_table(Document(source_filename).tables[0], Document(target_filename), True, if_merge=if_merge, REPORT_ENUM = REPORT_ENUM) @@ -468,14 +451,6 @@ def add_table_and_replace( if run.font.size: new_run.font.size = run.font.size - # 复制分页符(处理w:br标签) - for element in run._element: - if element.tag.endswith('br'): - br_type = element.get(qn('type'), '') - if br_type == 'page': - new_br = OxmlElement('w:br') - new_br.set(qn('type'), 'page') - new_run._element.append(new_br) except Exception as e: print(f"添加表格前文章失败:{str(e)}") try:# Copy all tables @@ -629,7 +604,7 @@ async def add_dynamic_table(output_doc, output_dir, table_num, TABLES, JIANCHA_X """ for table_idx, Table in enumerate(TABLES): print(Table) - output_doc, message = await add_table_to_document(output_dir, JIANCHA_XIANGQING_DIR, row, col, i, Table, FLAG) + output_doc, message = add_table_to_document(output_dir, JIANCHA_XIANGQING_DIR, row, col, i, Table, FLAG, if_para=False) print(message) # 获取当前表格对应的图片 current_table_pictures = PICTURES.get(table_idx, []) @@ -645,8 +620,10 @@ async def add_dynamic_table(output_doc, output_dir, table_num, TABLES, JIANCHA_X add_picture_to_table(output_doc, output_dir, 4, 0, picturedir, i, 4.7232) except Exception as e: print(f"添加图片失败:{e}") - - print(await search_and_replace(output_dir, 'tupian_xuhao', f'{xuhao}')) + try: + print(search_and_replace(output_dir, 'tupian_xuhao', f'{xuhao}')) + except Exception as e: + print(f"替换图片序号失败:{e}") table_num += 1 i += 1 xuhao += 1 @@ -683,14 +660,14 @@ async def process_images_table(data_dict, output_dir, start_i, JIANCHA_NEIRONG_P line_index += 1 print(f"当前待插入表格: {JIANCHA_NEIRONG_TEXT}") print(f"当前表格序号为 {i}") - output_doc, message = await add_table_to_document( + output_doc, message = add_table_to_document( output_dir, JIANCHA_NEIRONG_PICTURES_TABLE, 1, 3, i, JIANCHA_NEIRONG_TEXT, False, None, key_words ) i += 1 else: # 图片行(从 items 取图片路径) print(f"当前表格序号为 {i}") - output_doc, message = await add_table_to_document( + output_doc, message = add_table_to_document( output_dir, JIANCHA_NEIRONG_PICTURES_TABLE, 1, 3, i, None, False ) for k in range(3): @@ -758,14 +735,14 @@ async def process_server_images_table(data_list, image_source_list, output_dir, line_index += 1 print(f"当前待插入表格: {JIANCHA_NEIRONG_TEXT}") print(f"当前表格序号为 {i}") - output_doc, message = await add_table_to_document( + output_doc, message = add_table_to_document( output_dir, JIANCHA_NEIRONG_PICTURES_TABLE, 1, 3, i, JIANCHA_NEIRONG_TEXT, False, None, key_words ) i += 1 else: # 图片行(从 items 取图片路径) print(f"当前表格序号为 {i}") - output_doc, message = await add_table_to_document( + output_doc, message = add_table_to_document( output_dir, JIANCHA_NEIRONG_PICTURES_TABLE, 1, 3, i, None, False ) for k in range(3):