je-editor 0.0.57__py3-none-any.whl → 0.0.59__py3-none-any.whl
Sign up to get free protection for your applications and to get access to all the features.
- je_editor/__init__.py +1 -1
- je_editor/pyside_ui/editor_main_ui/main_editor.py +20 -0
- je_editor/pyside_ui/menu/set_menu.py +17 -0
- je_editor/pyside_ui/ui_setting/ui_setting.py +27 -0
- je_editor/start_editor.py +18 -0
- je_editor/tkinter_ui/__init__.py +1 -1
- je_editor/tkinter_ui/editor_main_ui/__init__.py +1 -1
- je_editor/tkinter_ui/editor_main_ui/tkinter_editor.py +1 -4
- je_editor/tkinter_ui/editor_main_ui/ui_setting/ui_setting.py +1 -1
- je_editor/tkinter_ui/ui_event/__init__.py +1 -1
- je_editor/tkinter_ui/ui_event/auto_save/__init__.py +1 -1
- je_editor/tkinter_ui/ui_event/auto_save/start_auto_save/start_auto_save.py +17 -17
- je_editor/tkinter_ui/ui_event/change_font/__init__.py +1 -1
- je_editor/tkinter_ui/ui_event/change_font/change_font.py +38 -38
- je_editor/tkinter_ui/ui_event/close/__init__.py +1 -1
- je_editor/tkinter_ui/ui_event/close/close_event.py +12 -12
- je_editor/tkinter_ui/ui_event/encoding/set_encoding.py +10 -10
- je_editor/tkinter_ui/ui_event/execute/__init__.py +1 -1
- je_editor/tkinter_ui/ui_event/execute/execute_code/__init__.py +1 -1
- je_editor/tkinter_ui/ui_event/execute/execute_code/exec_code.py +22 -22
- je_editor/tkinter_ui/ui_event/execute/execute_shell_command/__init__.py +1 -1
- je_editor/tkinter_ui/ui_event/execute/execute_shell_command/run_on_shell.py +12 -12
- je_editor/tkinter_ui/ui_event/language/__init__.py +1 -1
- je_editor/tkinter_ui/ui_event/language/set_language.py +13 -13
- je_editor/tkinter_ui/ui_event/open_file/__init__.py +1 -1
- je_editor/tkinter_ui/ui_event/open_file/open_file_to_read/__init__.py +1 -1
- je_editor/tkinter_ui/ui_event/open_file/open_file_to_read/open_file_to_read.py +20 -20
- je_editor/tkinter_ui/ui_event/open_file/open_last_edit_file/__init__.py +1 -1
- je_editor/tkinter_ui/ui_event/open_file/open_last_edit_file/open_last_edit_file.py +17 -17
- je_editor/tkinter_ui/ui_event/save_file/save_file_to_open/__init__.py +1 -1
- je_editor/tkinter_ui/ui_event/save_file/save_file_to_open/save_file_to_open.py +19 -19
- je_editor/tkinter_ui/ui_event/tag_keyword/__init__.py +1 -1
- je_editor/tkinter_ui/ui_event/tag_keyword/tag_keyword.py +49 -49
- je_editor/tkinter_ui/ui_event/text_process/program_exec/__init__.py +1 -1
- je_editor/tkinter_ui/ui_event/text_process/program_exec/code_exec_manager.py +169 -169
- je_editor/tkinter_ui/ui_event/text_process/program_exec/process_error.py +10 -10
- je_editor/tkinter_ui/ui_event/text_process/shell/__init__.py +1 -1
- je_editor/utils/__init__.py +1 -1
- je_editor/utils/editor_content/__init__.py +1 -1
- je_editor/utils/editor_content/content_save.py +66 -66
- je_editor/utils/editor_content/editor_content_data.py +19 -19
- je_editor/utils/encoding/__init__.py +1 -1
- je_editor/utils/encoding/encoding_data_module.py +101 -101
- je_editor/utils/exception/__init__.py +1 -1
- je_editor/utils/exception/exception_tags.py +33 -33
- je_editor/utils/exception/exceptions.py +30 -30
- je_editor/utils/file/open/__init__.py +1 -1
- je_editor/utils/file/open/open_file.py +52 -52
- je_editor/utils/file/save/save_file.py +81 -81
- je_editor/utils/font/__init__.py +1 -1
- je_editor/utils/font/font.py +20 -20
- je_editor/utils/json_format/__init__.py +1 -1
- je_editor/utils/json_format/json_process.py +28 -28
- je_editor/utils/keyword/__init__.py +1 -1
- je_editor/utils/keyword/keyword_list.py +4 -4
- je_editor/utils/language/__init__.py +1 -1
- je_editor/utils/language/language_data_module.py +9 -9
- je_editor/utils/language_data_module/__init__.py +1 -1
- je_editor/utils/language_data_module/language_compiler_data_module.py +7 -7
- je_editor/utils/language_data_module/language_param_data_module.py +7 -7
- je_editor/utils/theme/theme.py +6 -6
- {je_editor-0.0.57.dist-info → je_editor-0.0.59.dist-info}/LICENSE +21 -21
- {je_editor-0.0.57.dist-info → je_editor-0.0.59.dist-info}/METADATA +2 -1
- je_editor-0.0.59.dist-info/RECORD +107 -0
- je_editor-0.0.59.dist-info/top_level.txt +1 -0
- deprecation_for_old_python/dev_setup.py +0 -30
- deprecation_for_old_python/setup.py +0 -30
- docs/source/conf.py +0 -54
- je_editor-0.0.57.dist-info/RECORD +0 -3228
- je_editor-0.0.57.dist-info/top_level.txt +0 -6
- start_editor/start_editor.py +0 -3
- test/tkinter_ui/unit_test/extend_test/extend_editor.py +0 -11
- test/tkinter_ui/unit_test/file/save_and_open/save_and_open.py +0 -5
- test/tkinter_ui/unit_test/tkinter_test/editor/editor_with_theme.py +0 -7
- test/tkinter_ui/unit_test/tkinter_test/editor/import_tkinter_test.py +0 -3
- test/tkinter_ui/unit_test/tkinter_test/font/test_font.py +0 -14
- venv/Lib/site-packages/PyInstaller/__init__.py +0 -65
- venv/Lib/site-packages/PyInstaller/__main__.py +0 -198
- venv/Lib/site-packages/PyInstaller/_recursion_too_deep_message.py +0 -45
- venv/Lib/site-packages/PyInstaller/_shared_with_waf.py +0 -86
- venv/Lib/site-packages/PyInstaller/archive/__init__.py +0 -1
- venv/Lib/site-packages/PyInstaller/archive/pyz_crypto.py +0 -48
- venv/Lib/site-packages/PyInstaller/archive/readers.py +0 -242
- venv/Lib/site-packages/PyInstaller/archive/writers.py +0 -583
- venv/Lib/site-packages/PyInstaller/building/__init__.py +0 -1
- venv/Lib/site-packages/PyInstaller/building/api.py +0 -1064
- venv/Lib/site-packages/PyInstaller/building/build_main.py +0 -971
- venv/Lib/site-packages/PyInstaller/building/datastruct.py +0 -295
- venv/Lib/site-packages/PyInstaller/building/icon.py +0 -85
- venv/Lib/site-packages/PyInstaller/building/makespec.py +0 -836
- venv/Lib/site-packages/PyInstaller/building/osx.py +0 -267
- venv/Lib/site-packages/PyInstaller/building/splash.py +0 -486
- venv/Lib/site-packages/PyInstaller/building/splash_templates.py +0 -229
- venv/Lib/site-packages/PyInstaller/building/templates.py +0 -142
- venv/Lib/site-packages/PyInstaller/building/toc_conversion.py +0 -156
- venv/Lib/site-packages/PyInstaller/building/utils.py +0 -741
- venv/Lib/site-packages/PyInstaller/compat.py +0 -771
- venv/Lib/site-packages/PyInstaller/config.py +0 -54
- venv/Lib/site-packages/PyInstaller/configure.py +0 -95
- venv/Lib/site-packages/PyInstaller/depend/__init__.py +0 -1
- venv/Lib/site-packages/PyInstaller/depend/analysis.py +0 -896
- venv/Lib/site-packages/PyInstaller/depend/bindepend.py +0 -1043
- venv/Lib/site-packages/PyInstaller/depend/bytecode.py +0 -318
- venv/Lib/site-packages/PyInstaller/depend/dylib.py +0 -453
- venv/Lib/site-packages/PyInstaller/depend/imphook.py +0 -546
- venv/Lib/site-packages/PyInstaller/depend/imphookapi.py +0 -468
- venv/Lib/site-packages/PyInstaller/depend/utils.py +0 -420
- venv/Lib/site-packages/PyInstaller/exceptions.py +0 -30
- venv/Lib/site-packages/PyInstaller/fake-modules/pyi_splash.py +0 -223
- venv/Lib/site-packages/PyInstaller/hooks/__init__.py +0 -1
- venv/Lib/site-packages/PyInstaller/hooks/hook-PIL.Image.py +0 -17
- venv/Lib/site-packages/PyInstaller/hooks/hook-PIL.ImageFilter.py +0 -13
- venv/Lib/site-packages/PyInstaller/hooks/hook-PIL.SpiderImagePlugin.py +0 -14
- venv/Lib/site-packages/PyInstaller/hooks/hook-PIL.py +0 -21
- venv/Lib/site-packages/PyInstaller/hooks/hook-PyQt5.QAxContainer.py +0 -14
- venv/Lib/site-packages/PyInstaller/hooks/hook-PyQt5.Qsci.py +0 -14
- venv/Lib/site-packages/PyInstaller/hooks/hook-PyQt5.Qt.py +0 -29
- venv/Lib/site-packages/PyInstaller/hooks/hook-PyQt5.Qt3DAnimation.py +0 -14
- venv/Lib/site-packages/PyInstaller/hooks/hook-PyQt5.Qt3DCore.py +0 -14
- venv/Lib/site-packages/PyInstaller/hooks/hook-PyQt5.Qt3DExtras.py +0 -14
- venv/Lib/site-packages/PyInstaller/hooks/hook-PyQt5.Qt3DInput.py +0 -14
- venv/Lib/site-packages/PyInstaller/hooks/hook-PyQt5.Qt3DLogic.py +0 -14
- venv/Lib/site-packages/PyInstaller/hooks/hook-PyQt5.Qt3DRender.py +0 -14
- venv/Lib/site-packages/PyInstaller/hooks/hook-PyQt5.QtBluetooth.py +0 -14
- venv/Lib/site-packages/PyInstaller/hooks/hook-PyQt5.QtChart.py +0 -14
- venv/Lib/site-packages/PyInstaller/hooks/hook-PyQt5.QtCore.py +0 -14
- venv/Lib/site-packages/PyInstaller/hooks/hook-PyQt5.QtDBus.py +0 -14
- venv/Lib/site-packages/PyInstaller/hooks/hook-PyQt5.QtDataVisualization.py +0 -14
- venv/Lib/site-packages/PyInstaller/hooks/hook-PyQt5.QtDesigner.py +0 -14
- venv/Lib/site-packages/PyInstaller/hooks/hook-PyQt5.QtGui.py +0 -14
- venv/Lib/site-packages/PyInstaller/hooks/hook-PyQt5.QtHelp.py +0 -14
- venv/Lib/site-packages/PyInstaller/hooks/hook-PyQt5.QtLocation.py +0 -14
- venv/Lib/site-packages/PyInstaller/hooks/hook-PyQt5.QtMacExtras.py +0 -14
- venv/Lib/site-packages/PyInstaller/hooks/hook-PyQt5.QtMultimedia.py +0 -14
- venv/Lib/site-packages/PyInstaller/hooks/hook-PyQt5.QtMultimediaWidgets.py +0 -14
- venv/Lib/site-packages/PyInstaller/hooks/hook-PyQt5.QtNetwork.py +0 -15
- venv/Lib/site-packages/PyInstaller/hooks/hook-PyQt5.QtNetworkAuth.py +0 -14
- venv/Lib/site-packages/PyInstaller/hooks/hook-PyQt5.QtNfc.py +0 -14
- venv/Lib/site-packages/PyInstaller/hooks/hook-PyQt5.QtOpenGL.py +0 -14
- venv/Lib/site-packages/PyInstaller/hooks/hook-PyQt5.QtPositioning.py +0 -14
- venv/Lib/site-packages/PyInstaller/hooks/hook-PyQt5.QtPrintSupport.py +0 -14
- venv/Lib/site-packages/PyInstaller/hooks/hook-PyQt5.QtPurchasing.py +0 -14
- venv/Lib/site-packages/PyInstaller/hooks/hook-PyQt5.QtQml.py +0 -17
- venv/Lib/site-packages/PyInstaller/hooks/hook-PyQt5.QtQuick.py +0 -14
- venv/Lib/site-packages/PyInstaller/hooks/hook-PyQt5.QtQuick3D.py +0 -14
- venv/Lib/site-packages/PyInstaller/hooks/hook-PyQt5.QtQuickWidgets.py +0 -14
- venv/Lib/site-packages/PyInstaller/hooks/hook-PyQt5.QtRemoteObjects.py +0 -14
- venv/Lib/site-packages/PyInstaller/hooks/hook-PyQt5.QtScript.py +0 -14
- venv/Lib/site-packages/PyInstaller/hooks/hook-PyQt5.QtSensors.py +0 -14
- venv/Lib/site-packages/PyInstaller/hooks/hook-PyQt5.QtSerialPort.py +0 -14
- venv/Lib/site-packages/PyInstaller/hooks/hook-PyQt5.QtSql.py +0 -14
- venv/Lib/site-packages/PyInstaller/hooks/hook-PyQt5.QtSvg.py +0 -14
- venv/Lib/site-packages/PyInstaller/hooks/hook-PyQt5.QtTest.py +0 -14
- venv/Lib/site-packages/PyInstaller/hooks/hook-PyQt5.QtTextToSpeech.py +0 -14
- venv/Lib/site-packages/PyInstaller/hooks/hook-PyQt5.QtWebChannel.py +0 -14
- venv/Lib/site-packages/PyInstaller/hooks/hook-PyQt5.QtWebEngine.py +0 -14
- venv/Lib/site-packages/PyInstaller/hooks/hook-PyQt5.QtWebEngineCore.py +0 -22
- venv/Lib/site-packages/PyInstaller/hooks/hook-PyQt5.QtWebEngineWidgets.py +0 -14
- venv/Lib/site-packages/PyInstaller/hooks/hook-PyQt5.QtWebKit.py +0 -14
- venv/Lib/site-packages/PyInstaller/hooks/hook-PyQt5.QtWebKitWidgets.py +0 -14
- venv/Lib/site-packages/PyInstaller/hooks/hook-PyQt5.QtWebSockets.py +0 -14
- venv/Lib/site-packages/PyInstaller/hooks/hook-PyQt5.QtWidgets.py +0 -14
- venv/Lib/site-packages/PyInstaller/hooks/hook-PyQt5.QtWinExtras.py +0 -14
- venv/Lib/site-packages/PyInstaller/hooks/hook-PyQt5.QtX11Extras.py +0 -14
- venv/Lib/site-packages/PyInstaller/hooks/hook-PyQt5.QtXml.py +0 -14
- venv/Lib/site-packages/PyInstaller/hooks/hook-PyQt5.QtXmlPatterns.py +0 -14
- venv/Lib/site-packages/PyInstaller/hooks/hook-PyQt5.py +0 -26
- venv/Lib/site-packages/PyInstaller/hooks/hook-PyQt5.uic.py +0 -17
- venv/Lib/site-packages/PyInstaller/hooks/hook-PyQt6.QAxContainer.py +0 -14
- venv/Lib/site-packages/PyInstaller/hooks/hook-PyQt6.Qsci.py +0 -14
- venv/Lib/site-packages/PyInstaller/hooks/hook-PyQt6.Qt3DAnimation.py +0 -14
- venv/Lib/site-packages/PyInstaller/hooks/hook-PyQt6.Qt3DCore.py +0 -14
- venv/Lib/site-packages/PyInstaller/hooks/hook-PyQt6.Qt3DExtras.py +0 -14
- venv/Lib/site-packages/PyInstaller/hooks/hook-PyQt6.Qt3DInput.py +0 -14
- venv/Lib/site-packages/PyInstaller/hooks/hook-PyQt6.Qt3DLogic.py +0 -14
- venv/Lib/site-packages/PyInstaller/hooks/hook-PyQt6.Qt3DRender.py +0 -16
- venv/Lib/site-packages/PyInstaller/hooks/hook-PyQt6.QtBluetooth.py +0 -14
- venv/Lib/site-packages/PyInstaller/hooks/hook-PyQt6.QtCharts.py +0 -14
- venv/Lib/site-packages/PyInstaller/hooks/hook-PyQt6.QtCore.py +0 -14
- venv/Lib/site-packages/PyInstaller/hooks/hook-PyQt6.QtDBus.py +0 -14
- venv/Lib/site-packages/PyInstaller/hooks/hook-PyQt6.QtDataVisualization.py +0 -14
- venv/Lib/site-packages/PyInstaller/hooks/hook-PyQt6.QtDesigner.py +0 -14
- venv/Lib/site-packages/PyInstaller/hooks/hook-PyQt6.QtGui.py +0 -14
- venv/Lib/site-packages/PyInstaller/hooks/hook-PyQt6.QtHelp.py +0 -14
- venv/Lib/site-packages/PyInstaller/hooks/hook-PyQt6.QtMultimedia.py +0 -14
- venv/Lib/site-packages/PyInstaller/hooks/hook-PyQt6.QtMultimediaWidgets.py +0 -14
- venv/Lib/site-packages/PyInstaller/hooks/hook-PyQt6.QtNetwork.py +0 -15
- venv/Lib/site-packages/PyInstaller/hooks/hook-PyQt6.QtNetworkAuth.py +0 -14
- venv/Lib/site-packages/PyInstaller/hooks/hook-PyQt6.QtNfc.py +0 -14
- venv/Lib/site-packages/PyInstaller/hooks/hook-PyQt6.QtOpenGL.py +0 -14
- venv/Lib/site-packages/PyInstaller/hooks/hook-PyQt6.QtOpenGLWidgets.py +0 -14
- venv/Lib/site-packages/PyInstaller/hooks/hook-PyQt6.QtPdf.py +0 -14
- venv/Lib/site-packages/PyInstaller/hooks/hook-PyQt6.QtPdfWidgets.py +0 -14
- venv/Lib/site-packages/PyInstaller/hooks/hook-PyQt6.QtPositioning.py +0 -14
- venv/Lib/site-packages/PyInstaller/hooks/hook-PyQt6.QtPrintSupport.py +0 -14
- venv/Lib/site-packages/PyInstaller/hooks/hook-PyQt6.QtQml.py +0 -17
- venv/Lib/site-packages/PyInstaller/hooks/hook-PyQt6.QtQuick.py +0 -14
- venv/Lib/site-packages/PyInstaller/hooks/hook-PyQt6.QtQuick3D.py +0 -14
- venv/Lib/site-packages/PyInstaller/hooks/hook-PyQt6.QtQuickWidgets.py +0 -14
- venv/Lib/site-packages/PyInstaller/hooks/hook-PyQt6.QtRemoteObjects.py +0 -14
- venv/Lib/site-packages/PyInstaller/hooks/hook-PyQt6.QtSensors.py +0 -14
- venv/Lib/site-packages/PyInstaller/hooks/hook-PyQt6.QtSerialPort.py +0 -14
- venv/Lib/site-packages/PyInstaller/hooks/hook-PyQt6.QtSql.py +0 -14
- venv/Lib/site-packages/PyInstaller/hooks/hook-PyQt6.QtSvg.py +0 -14
- venv/Lib/site-packages/PyInstaller/hooks/hook-PyQt6.QtSvgWidgets.py +0 -14
- venv/Lib/site-packages/PyInstaller/hooks/hook-PyQt6.QtTest.py +0 -14
- venv/Lib/site-packages/PyInstaller/hooks/hook-PyQt6.QtWebChannel.py +0 -14
- venv/Lib/site-packages/PyInstaller/hooks/hook-PyQt6.QtWebEngineCore.py +0 -27
- venv/Lib/site-packages/PyInstaller/hooks/hook-PyQt6.QtWebEngineQuick.py +0 -14
- venv/Lib/site-packages/PyInstaller/hooks/hook-PyQt6.QtWebEngineWidgets.py +0 -14
- venv/Lib/site-packages/PyInstaller/hooks/hook-PyQt6.QtWebSockets.py +0 -14
- venv/Lib/site-packages/PyInstaller/hooks/hook-PyQt6.QtWidgets.py +0 -14
- venv/Lib/site-packages/PyInstaller/hooks/hook-PyQt6.QtXml.py +0 -14
- venv/Lib/site-packages/PyInstaller/hooks/hook-PyQt6.py +0 -23
- venv/Lib/site-packages/PyInstaller/hooks/hook-PyQt6.uic.py +0 -17
- venv/Lib/site-packages/PyInstaller/hooks/hook-PySide2.Qt3DAnimation.py +0 -14
- venv/Lib/site-packages/PyInstaller/hooks/hook-PySide2.Qt3DCore.py +0 -14
- venv/Lib/site-packages/PyInstaller/hooks/hook-PySide2.Qt3DExtras.py +0 -14
- venv/Lib/site-packages/PyInstaller/hooks/hook-PySide2.Qt3DInput.py +0 -14
- venv/Lib/site-packages/PyInstaller/hooks/hook-PySide2.Qt3DLogic.py +0 -14
- venv/Lib/site-packages/PyInstaller/hooks/hook-PySide2.Qt3DRender.py +0 -14
- venv/Lib/site-packages/PyInstaller/hooks/hook-PySide2.QtAxContainer.py +0 -14
- venv/Lib/site-packages/PyInstaller/hooks/hook-PySide2.QtCharts.py +0 -14
- venv/Lib/site-packages/PyInstaller/hooks/hook-PySide2.QtConcurrent.py +0 -14
- venv/Lib/site-packages/PyInstaller/hooks/hook-PySide2.QtCore.py +0 -14
- venv/Lib/site-packages/PyInstaller/hooks/hook-PySide2.QtDataVisualization.py +0 -14
- venv/Lib/site-packages/PyInstaller/hooks/hook-PySide2.QtGui.py +0 -14
- venv/Lib/site-packages/PyInstaller/hooks/hook-PySide2.QtHelp.py +0 -14
- venv/Lib/site-packages/PyInstaller/hooks/hook-PySide2.QtLocation.py +0 -14
- venv/Lib/site-packages/PyInstaller/hooks/hook-PySide2.QtMacExtras.py +0 -14
- venv/Lib/site-packages/PyInstaller/hooks/hook-PySide2.QtMultimedia.py +0 -19
- venv/Lib/site-packages/PyInstaller/hooks/hook-PySide2.QtMultimediaWidgets.py +0 -14
- venv/Lib/site-packages/PyInstaller/hooks/hook-PySide2.QtNetwork.py +0 -15
- venv/Lib/site-packages/PyInstaller/hooks/hook-PySide2.QtOpenGL.py +0 -14
- venv/Lib/site-packages/PyInstaller/hooks/hook-PySide2.QtOpenGLFunctions.py +0 -14
- venv/Lib/site-packages/PyInstaller/hooks/hook-PySide2.QtPositioning.py +0 -14
- venv/Lib/site-packages/PyInstaller/hooks/hook-PySide2.QtPrintSupport.py +0 -14
- venv/Lib/site-packages/PyInstaller/hooks/hook-PySide2.QtQml.py +0 -19
- venv/Lib/site-packages/PyInstaller/hooks/hook-PySide2.QtQuick.py +0 -14
- venv/Lib/site-packages/PyInstaller/hooks/hook-PySide2.QtQuickControls2.py +0 -14
- venv/Lib/site-packages/PyInstaller/hooks/hook-PySide2.QtQuickWidgets.py +0 -14
- venv/Lib/site-packages/PyInstaller/hooks/hook-PySide2.QtRemoteObjects.py +0 -14
- venv/Lib/site-packages/PyInstaller/hooks/hook-PySide2.QtScript.py +0 -14
- venv/Lib/site-packages/PyInstaller/hooks/hook-PySide2.QtScriptTools.py +0 -14
- venv/Lib/site-packages/PyInstaller/hooks/hook-PySide2.QtScxml.py +0 -14
- venv/Lib/site-packages/PyInstaller/hooks/hook-PySide2.QtSensors.py +0 -14
- venv/Lib/site-packages/PyInstaller/hooks/hook-PySide2.QtSerialPort.py +0 -14
- venv/Lib/site-packages/PyInstaller/hooks/hook-PySide2.QtSql.py +0 -14
- venv/Lib/site-packages/PyInstaller/hooks/hook-PySide2.QtSvg.py +0 -14
- venv/Lib/site-packages/PyInstaller/hooks/hook-PySide2.QtTest.py +0 -14
- venv/Lib/site-packages/PyInstaller/hooks/hook-PySide2.QtTextToSpeech.py +0 -14
- venv/Lib/site-packages/PyInstaller/hooks/hook-PySide2.QtUiTools.py +0 -15
- venv/Lib/site-packages/PyInstaller/hooks/hook-PySide2.QtWebChannel.py +0 -14
- venv/Lib/site-packages/PyInstaller/hooks/hook-PySide2.QtWebEngine.py +0 -14
- venv/Lib/site-packages/PyInstaller/hooks/hook-PySide2.QtWebEngineCore.py +0 -22
- venv/Lib/site-packages/PyInstaller/hooks/hook-PySide2.QtWebEngineWidgets.py +0 -14
- venv/Lib/site-packages/PyInstaller/hooks/hook-PySide2.QtWebKit.py +0 -14
- venv/Lib/site-packages/PyInstaller/hooks/hook-PySide2.QtWebKitWidgets.py +0 -14
- venv/Lib/site-packages/PyInstaller/hooks/hook-PySide2.QtWebSockets.py +0 -14
- venv/Lib/site-packages/PyInstaller/hooks/hook-PySide2.QtWidgets.py +0 -14
- venv/Lib/site-packages/PyInstaller/hooks/hook-PySide2.QtWinExtras.py +0 -14
- venv/Lib/site-packages/PyInstaller/hooks/hook-PySide2.QtX11Extras.py +0 -14
- venv/Lib/site-packages/PyInstaller/hooks/hook-PySide2.QtXml.py +0 -14
- venv/Lib/site-packages/PyInstaller/hooks/hook-PySide2.QtXmlPatterns.py +0 -14
- venv/Lib/site-packages/PyInstaller/hooks/hook-PySide2.Qwt5.py +0 -31
- venv/Lib/site-packages/PyInstaller/hooks/hook-PySide2.py +0 -22
- venv/Lib/site-packages/PyInstaller/hooks/hook-PySide6.Qt3DAnimation.py +0 -14
- venv/Lib/site-packages/PyInstaller/hooks/hook-PySide6.Qt3DCore.py +0 -14
- venv/Lib/site-packages/PyInstaller/hooks/hook-PySide6.Qt3DExtras.py +0 -14
- venv/Lib/site-packages/PyInstaller/hooks/hook-PySide6.Qt3DInput.py +0 -14
- venv/Lib/site-packages/PyInstaller/hooks/hook-PySide6.Qt3DLogic.py +0 -14
- venv/Lib/site-packages/PyInstaller/hooks/hook-PySide6.Qt3DRender.py +0 -14
- venv/Lib/site-packages/PyInstaller/hooks/hook-PySide6.QtAxContainer.py +0 -14
- venv/Lib/site-packages/PyInstaller/hooks/hook-PySide6.QtBluetooth.py +0 -14
- venv/Lib/site-packages/PyInstaller/hooks/hook-PySide6.QtCharts.py +0 -14
- venv/Lib/site-packages/PyInstaller/hooks/hook-PySide6.QtConcurrent.py +0 -14
- venv/Lib/site-packages/PyInstaller/hooks/hook-PySide6.QtCore.py +0 -14
- venv/Lib/site-packages/PyInstaller/hooks/hook-PySide6.QtDBus.py +0 -14
- venv/Lib/site-packages/PyInstaller/hooks/hook-PySide6.QtDataVisualization.py +0 -14
- venv/Lib/site-packages/PyInstaller/hooks/hook-PySide6.QtDesigner.py +0 -14
- venv/Lib/site-packages/PyInstaller/hooks/hook-PySide6.QtGui.py +0 -14
- venv/Lib/site-packages/PyInstaller/hooks/hook-PySide6.QtHelp.py +0 -14
- venv/Lib/site-packages/PyInstaller/hooks/hook-PySide6.QtHttpServer.py +0 -14
- venv/Lib/site-packages/PyInstaller/hooks/hook-PySide6.QtMultimedia.py +0 -19
- venv/Lib/site-packages/PyInstaller/hooks/hook-PySide6.QtMultimediaWidgets.py +0 -14
- venv/Lib/site-packages/PyInstaller/hooks/hook-PySide6.QtNetwork.py +0 -15
- venv/Lib/site-packages/PyInstaller/hooks/hook-PySide6.QtNetworkAuth.py +0 -14
- venv/Lib/site-packages/PyInstaller/hooks/hook-PySide6.QtNfc.py +0 -14
- venv/Lib/site-packages/PyInstaller/hooks/hook-PySide6.QtOpenGL.py +0 -14
- venv/Lib/site-packages/PyInstaller/hooks/hook-PySide6.QtOpenGLWidgets.py +0 -14
- venv/Lib/site-packages/PyInstaller/hooks/hook-PySide6.QtPdf.py +0 -14
- venv/Lib/site-packages/PyInstaller/hooks/hook-PySide6.QtPdfWidgets.py +0 -14
- venv/Lib/site-packages/PyInstaller/hooks/hook-PySide6.QtPositioning.py +0 -14
- venv/Lib/site-packages/PyInstaller/hooks/hook-PySide6.QtPrintSupport.py +0 -14
- venv/Lib/site-packages/PyInstaller/hooks/hook-PySide6.QtQml.py +0 -17
- venv/Lib/site-packages/PyInstaller/hooks/hook-PySide6.QtQuick.py +0 -14
- venv/Lib/site-packages/PyInstaller/hooks/hook-PySide6.QtQuick3D.py +0 -14
- venv/Lib/site-packages/PyInstaller/hooks/hook-PySide6.QtQuickControls2.py +0 -16
- venv/Lib/site-packages/PyInstaller/hooks/hook-PySide6.QtQuickWidgets.py +0 -14
- venv/Lib/site-packages/PyInstaller/hooks/hook-PySide6.QtRemoteObjects.py +0 -14
- venv/Lib/site-packages/PyInstaller/hooks/hook-PySide6.QtScxml.py +0 -14
- venv/Lib/site-packages/PyInstaller/hooks/hook-PySide6.QtSensors.py +0 -14
- venv/Lib/site-packages/PyInstaller/hooks/hook-PySide6.QtSerialPort.py +0 -14
- venv/Lib/site-packages/PyInstaller/hooks/hook-PySide6.QtSpatialAudio.py +0 -14
- venv/Lib/site-packages/PyInstaller/hooks/hook-PySide6.QtSql.py +0 -14
- venv/Lib/site-packages/PyInstaller/hooks/hook-PySide6.QtStateMachine.py +0 -14
- venv/Lib/site-packages/PyInstaller/hooks/hook-PySide6.QtSvg.py +0 -14
- venv/Lib/site-packages/PyInstaller/hooks/hook-PySide6.QtSvgWidgets.py +0 -14
- venv/Lib/site-packages/PyInstaller/hooks/hook-PySide6.QtTest.py +0 -14
- venv/Lib/site-packages/PyInstaller/hooks/hook-PySide6.QtUiTools.py +0 -14
- venv/Lib/site-packages/PyInstaller/hooks/hook-PySide6.QtWebChannel.py +0 -14
- venv/Lib/site-packages/PyInstaller/hooks/hook-PySide6.QtWebEngineCore.py +0 -29
- venv/Lib/site-packages/PyInstaller/hooks/hook-PySide6.QtWebEngineQuick.py +0 -14
- venv/Lib/site-packages/PyInstaller/hooks/hook-PySide6.QtWebEngineWidgets.py +0 -14
- venv/Lib/site-packages/PyInstaller/hooks/hook-PySide6.QtWebSockets.py +0 -14
- venv/Lib/site-packages/PyInstaller/hooks/hook-PySide6.QtWidgets.py +0 -14
- venv/Lib/site-packages/PyInstaller/hooks/hook-PySide6.QtXml.py +0 -14
- venv/Lib/site-packages/PyInstaller/hooks/hook-PySide6.py +0 -25
- venv/Lib/site-packages/PyInstaller/hooks/hook-_tkinter.py +0 -29
- venv/Lib/site-packages/PyInstaller/hooks/hook-babel.py +0 -16
- venv/Lib/site-packages/PyInstaller/hooks/hook-difflib.py +0 -13
- venv/Lib/site-packages/PyInstaller/hooks/hook-distutils.py +0 -33
- venv/Lib/site-packages/PyInstaller/hooks/hook-distutils.util.py +0 -13
- venv/Lib/site-packages/PyInstaller/hooks/hook-django.contrib.sessions.py +0 -14
- venv/Lib/site-packages/PyInstaller/hooks/hook-django.core.cache.py +0 -14
- venv/Lib/site-packages/PyInstaller/hooks/hook-django.core.mail.py +0 -25
- venv/Lib/site-packages/PyInstaller/hooks/hook-django.core.management.py +0 -19
- venv/Lib/site-packages/PyInstaller/hooks/hook-django.db.backends.mysql.base.py +0 -13
- venv/Lib/site-packages/PyInstaller/hooks/hook-django.db.backends.oracle.base.py +0 -12
- venv/Lib/site-packages/PyInstaller/hooks/hook-django.db.backends.py +0 -25
- venv/Lib/site-packages/PyInstaller/hooks/hook-django.py +0 -92
- venv/Lib/site-packages/PyInstaller/hooks/hook-django.template.loaders.py +0 -14
- venv/Lib/site-packages/PyInstaller/hooks/hook-encodings.py +0 -14
- venv/Lib/site-packages/PyInstaller/hooks/hook-gevent.py +0 -24
- venv/Lib/site-packages/PyInstaller/hooks/hook-gi.py +0 -12
- venv/Lib/site-packages/PyInstaller/hooks/hook-gi.repository.Adw.py +0 -16
- venv/Lib/site-packages/PyInstaller/hooks/hook-gi.repository.Atk.py +0 -29
- venv/Lib/site-packages/PyInstaller/hooks/hook-gi.repository.Champlain.py +0 -16
- venv/Lib/site-packages/PyInstaller/hooks/hook-gi.repository.Clutter.py +0 -16
- venv/Lib/site-packages/PyInstaller/hooks/hook-gi.repository.GIRepository.py +0 -16
- venv/Lib/site-packages/PyInstaller/hooks/hook-gi.repository.GLib.py +0 -42
- venv/Lib/site-packages/PyInstaller/hooks/hook-gi.repository.GModule.py +0 -16
- venv/Lib/site-packages/PyInstaller/hooks/hook-gi.repository.GObject.py +0 -19
- venv/Lib/site-packages/PyInstaller/hooks/hook-gi.repository.Gdk.py +0 -36
- venv/Lib/site-packages/PyInstaller/hooks/hook-gi.repository.GdkPixbuf.py +0 -141
- venv/Lib/site-packages/PyInstaller/hooks/hook-gi.repository.Gio.py +0 -63
- venv/Lib/site-packages/PyInstaller/hooks/hook-gi.repository.Graphene.py +0 -16
- venv/Lib/site-packages/PyInstaller/hooks/hook-gi.repository.Gsk.py +0 -16
- venv/Lib/site-packages/PyInstaller/hooks/hook-gi.repository.Gst.py +0 -93
- venv/Lib/site-packages/PyInstaller/hooks/hook-gi.repository.GstAllocators.py +0 -16
- venv/Lib/site-packages/PyInstaller/hooks/hook-gi.repository.GstApp.py +0 -16
- venv/Lib/site-packages/PyInstaller/hooks/hook-gi.repository.GstAudio.py +0 -16
- venv/Lib/site-packages/PyInstaller/hooks/hook-gi.repository.GstBadAudio.py +0 -16
- venv/Lib/site-packages/PyInstaller/hooks/hook-gi.repository.GstBase.py +0 -16
- venv/Lib/site-packages/PyInstaller/hooks/hook-gi.repository.GstCheck.py +0 -16
- venv/Lib/site-packages/PyInstaller/hooks/hook-gi.repository.GstCodecs.py +0 -16
- venv/Lib/site-packages/PyInstaller/hooks/hook-gi.repository.GstController.py +0 -16
- venv/Lib/site-packages/PyInstaller/hooks/hook-gi.repository.GstGL.py +0 -16
- venv/Lib/site-packages/PyInstaller/hooks/hook-gi.repository.GstGLEGL.py +0 -16
- venv/Lib/site-packages/PyInstaller/hooks/hook-gi.repository.GstGLWayland.py +0 -16
- venv/Lib/site-packages/PyInstaller/hooks/hook-gi.repository.GstGLX11.py +0 -16
- venv/Lib/site-packages/PyInstaller/hooks/hook-gi.repository.GstInsertBin.py +0 -16
- venv/Lib/site-packages/PyInstaller/hooks/hook-gi.repository.GstMpegts.py +0 -16
- venv/Lib/site-packages/PyInstaller/hooks/hook-gi.repository.GstNet.py +0 -16
- venv/Lib/site-packages/PyInstaller/hooks/hook-gi.repository.GstPbutils.py +0 -16
- venv/Lib/site-packages/PyInstaller/hooks/hook-gi.repository.GstPlay.py +0 -16
- venv/Lib/site-packages/PyInstaller/hooks/hook-gi.repository.GstPlayer.py +0 -16
- venv/Lib/site-packages/PyInstaller/hooks/hook-gi.repository.GstRtp.py +0 -16
- venv/Lib/site-packages/PyInstaller/hooks/hook-gi.repository.GstRtsp.py +0 -16
- venv/Lib/site-packages/PyInstaller/hooks/hook-gi.repository.GstRtspServer.py +0 -16
- venv/Lib/site-packages/PyInstaller/hooks/hook-gi.repository.GstSdp.py +0 -16
- venv/Lib/site-packages/PyInstaller/hooks/hook-gi.repository.GstTag.py +0 -16
- venv/Lib/site-packages/PyInstaller/hooks/hook-gi.repository.GstTranscoder.py +0 -16
- venv/Lib/site-packages/PyInstaller/hooks/hook-gi.repository.GstVideo.py +0 -16
- venv/Lib/site-packages/PyInstaller/hooks/hook-gi.repository.GstVulkan.py +0 -16
- venv/Lib/site-packages/PyInstaller/hooks/hook-gi.repository.GstVulkanWayland.py +0 -16
- venv/Lib/site-packages/PyInstaller/hooks/hook-gi.repository.GstVulkanXCB.py +0 -16
- venv/Lib/site-packages/PyInstaller/hooks/hook-gi.repository.GstWebRTC.py +0 -16
- venv/Lib/site-packages/PyInstaller/hooks/hook-gi.repository.Gtk.py +0 -59
- venv/Lib/site-packages/PyInstaller/hooks/hook-gi.repository.GtkChamplain.py +0 -16
- venv/Lib/site-packages/PyInstaller/hooks/hook-gi.repository.GtkClutter.py +0 -16
- venv/Lib/site-packages/PyInstaller/hooks/hook-gi.repository.GtkSource.py +0 -31
- venv/Lib/site-packages/PyInstaller/hooks/hook-gi.repository.GtkosxApplication.py +0 -18
- venv/Lib/site-packages/PyInstaller/hooks/hook-gi.repository.HarfBuzz.py +0 -16
- venv/Lib/site-packages/PyInstaller/hooks/hook-gi.repository.Pango.py +0 -16
- venv/Lib/site-packages/PyInstaller/hooks/hook-gi.repository.PangoCairo.py +0 -16
- venv/Lib/site-packages/PyInstaller/hooks/hook-gi.repository.cairo.py +0 -16
- venv/Lib/site-packages/PyInstaller/hooks/hook-gi.repository.freetype2.py +0 -16
- venv/Lib/site-packages/PyInstaller/hooks/hook-gi.repository.xlib.py +0 -16
- venv/Lib/site-packages/PyInstaller/hooks/hook-heapq.py +0 -13
- venv/Lib/site-packages/PyInstaller/hooks/hook-idlelib.py +0 -14
- venv/Lib/site-packages/PyInstaller/hooks/hook-importlib_metadata.py +0 -24
- venv/Lib/site-packages/PyInstaller/hooks/hook-importlib_resources.py +0 -22
- venv/Lib/site-packages/PyInstaller/hooks/hook-keyring.py +0 -19
- venv/Lib/site-packages/PyInstaller/hooks/hook-kivy.py +0 -25
- venv/Lib/site-packages/PyInstaller/hooks/hook-lib2to3.py +0 -16
- venv/Lib/site-packages/PyInstaller/hooks/hook-matplotlib.backends.py +0 -218
- venv/Lib/site-packages/PyInstaller/hooks/hook-matplotlib.numerix.py +0 -21
- venv/Lib/site-packages/PyInstaller/hooks/hook-matplotlib.py +0 -23
- venv/Lib/site-packages/PyInstaller/hooks/hook-multiprocessing.util.py +0 -16
- venv/Lib/site-packages/PyInstaller/hooks/hook-numpy._pytesttester.py +0 -16
- venv/Lib/site-packages/PyInstaller/hooks/hook-numpy.py +0 -59
- venv/Lib/site-packages/PyInstaller/hooks/hook-packaging.py +0 -13
- venv/Lib/site-packages/PyInstaller/hooks/hook-pandas.io.formats.style.py +0 -18
- venv/Lib/site-packages/PyInstaller/hooks/hook-pandas.plotting.py +0 -18
- venv/Lib/site-packages/PyInstaller/hooks/hook-pandas.py +0 -20
- venv/Lib/site-packages/PyInstaller/hooks/hook-pickle.py +0 -13
- venv/Lib/site-packages/PyInstaller/hooks/hook-pkg_resources.py +0 -57
- venv/Lib/site-packages/PyInstaller/hooks/hook-platform.py +0 -16
- venv/Lib/site-packages/PyInstaller/hooks/hook-pygments.py +0 -29
- venv/Lib/site-packages/PyInstaller/hooks/hook-pytz.py +0 -16
- venv/Lib/site-packages/PyInstaller/hooks/hook-pytzdata.py +0 -14
- venv/Lib/site-packages/PyInstaller/hooks/hook-qtawesome.py +0 -19
- venv/Lib/site-packages/PyInstaller/hooks/hook-scapy.layers.all.py +0 -19
- venv/Lib/site-packages/PyInstaller/hooks/hook-scipy.io.matlab.py +0 -13
- venv/Lib/site-packages/PyInstaller/hooks/hook-scipy.linalg.py +0 -13
- venv/Lib/site-packages/PyInstaller/hooks/hook-scipy.py +0 -35
- venv/Lib/site-packages/PyInstaller/hooks/hook-scipy.sparse.csgraph.py +0 -13
- venv/Lib/site-packages/PyInstaller/hooks/hook-scipy.spatial.transform.rotation.py +0 -17
- venv/Lib/site-packages/PyInstaller/hooks/hook-scipy.special._ellip_harm_2.py +0 -30
- venv/Lib/site-packages/PyInstaller/hooks/hook-scipy.special._ufuncs.py +0 -14
- venv/Lib/site-packages/PyInstaller/hooks/hook-scipy.stats._stats.py +0 -15
- venv/Lib/site-packages/PyInstaller/hooks/hook-scrapy.py +0 -18
- venv/Lib/site-packages/PyInstaller/hooks/hook-setuptools.msvc.py +0 -13
- venv/Lib/site-packages/PyInstaller/hooks/hook-setuptools.py +0 -41
- venv/Lib/site-packages/PyInstaller/hooks/hook-shelve.py +0 -14
- venv/Lib/site-packages/PyInstaller/hooks/hook-sphinx.py +0 -41
- venv/Lib/site-packages/PyInstaller/hooks/hook-sqlalchemy.py +0 -77
- venv/Lib/site-packages/PyInstaller/hooks/hook-sqlite3.py +0 -19
- venv/Lib/site-packages/PyInstaller/hooks/hook-sysconfig.py +0 -29
- venv/Lib/site-packages/PyInstaller/hooks/hook-wcwidth.py +0 -14
- venv/Lib/site-packages/PyInstaller/hooks/hook-win32ctypes.core.py +0 -21
- venv/Lib/site-packages/PyInstaller/hooks/hook-xml.dom.domreg.py +0 -13
- venv/Lib/site-packages/PyInstaller/hooks/hook-xml.etree.cElementTree.py +0 -13
- venv/Lib/site-packages/PyInstaller/hooks/hook-xml.py +0 -12
- venv/Lib/site-packages/PyInstaller/hooks/hook-zope.interface.py +0 -12
- venv/Lib/site-packages/PyInstaller/hooks/pre_find_module_path/__init__.py +0 -1
- venv/Lib/site-packages/PyInstaller/hooks/pre_find_module_path/hook-PyQt5.uic.port_v2.py +0 -15
- venv/Lib/site-packages/PyInstaller/hooks/pre_find_module_path/hook-distutils.py +0 -46
- venv/Lib/site-packages/PyInstaller/hooks/pre_find_module_path/hook-pyi_splash.py +0 -36
- venv/Lib/site-packages/PyInstaller/hooks/pre_safe_import_module/__init__.py +0 -1
- venv/Lib/site-packages/PyInstaller/hooks/pre_safe_import_module/hook-gi.py +0 -37
- venv/Lib/site-packages/PyInstaller/hooks/pre_safe_import_module/hook-gi.repository.Adw.py +0 -16
- venv/Lib/site-packages/PyInstaller/hooks/pre_safe_import_module/hook-gi.repository.Atk.py +0 -16
- venv/Lib/site-packages/PyInstaller/hooks/pre_safe_import_module/hook-gi.repository.Champlain.py +0 -16
- venv/Lib/site-packages/PyInstaller/hooks/pre_safe_import_module/hook-gi.repository.Clutter.py +0 -16
- venv/Lib/site-packages/PyInstaller/hooks/pre_safe_import_module/hook-gi.repository.GIRepository.py +0 -16
- venv/Lib/site-packages/PyInstaller/hooks/pre_safe_import_module/hook-gi.repository.GLib.py +0 -16
- venv/Lib/site-packages/PyInstaller/hooks/pre_safe_import_module/hook-gi.repository.GModule.py +0 -16
- venv/Lib/site-packages/PyInstaller/hooks/pre_safe_import_module/hook-gi.repository.GObject.py +0 -16
- venv/Lib/site-packages/PyInstaller/hooks/pre_safe_import_module/hook-gi.repository.Gdk.py +0 -16
- venv/Lib/site-packages/PyInstaller/hooks/pre_safe_import_module/hook-gi.repository.GdkPixbuf.py +0 -16
- venv/Lib/site-packages/PyInstaller/hooks/pre_safe_import_module/hook-gi.repository.Gio.py +0 -16
- venv/Lib/site-packages/PyInstaller/hooks/pre_safe_import_module/hook-gi.repository.Graphene.py +0 -16
- venv/Lib/site-packages/PyInstaller/hooks/pre_safe_import_module/hook-gi.repository.Gsk.py +0 -16
- venv/Lib/site-packages/PyInstaller/hooks/pre_safe_import_module/hook-gi.repository.Gst.py +0 -16
- venv/Lib/site-packages/PyInstaller/hooks/pre_safe_import_module/hook-gi.repository.GstAllocators.py +0 -16
- venv/Lib/site-packages/PyInstaller/hooks/pre_safe_import_module/hook-gi.repository.GstApp.py +0 -16
- venv/Lib/site-packages/PyInstaller/hooks/pre_safe_import_module/hook-gi.repository.GstAudio.py +0 -16
- venv/Lib/site-packages/PyInstaller/hooks/pre_safe_import_module/hook-gi.repository.GstBadAudio.py +0 -16
- venv/Lib/site-packages/PyInstaller/hooks/pre_safe_import_module/hook-gi.repository.GstBase.py +0 -16
- venv/Lib/site-packages/PyInstaller/hooks/pre_safe_import_module/hook-gi.repository.GstCheck.py +0 -16
- venv/Lib/site-packages/PyInstaller/hooks/pre_safe_import_module/hook-gi.repository.GstCodecs.py +0 -16
- venv/Lib/site-packages/PyInstaller/hooks/pre_safe_import_module/hook-gi.repository.GstController.py +0 -16
- venv/Lib/site-packages/PyInstaller/hooks/pre_safe_import_module/hook-gi.repository.GstGL.py +0 -16
- venv/Lib/site-packages/PyInstaller/hooks/pre_safe_import_module/hook-gi.repository.GstGLEGL.py +0 -16
- venv/Lib/site-packages/PyInstaller/hooks/pre_safe_import_module/hook-gi.repository.GstGLWayland.py +0 -16
- venv/Lib/site-packages/PyInstaller/hooks/pre_safe_import_module/hook-gi.repository.GstGLX11.py +0 -16
- venv/Lib/site-packages/PyInstaller/hooks/pre_safe_import_module/hook-gi.repository.GstInsertBin.py +0 -16
- venv/Lib/site-packages/PyInstaller/hooks/pre_safe_import_module/hook-gi.repository.GstMpegts.py +0 -16
- venv/Lib/site-packages/PyInstaller/hooks/pre_safe_import_module/hook-gi.repository.GstNet.py +0 -16
- venv/Lib/site-packages/PyInstaller/hooks/pre_safe_import_module/hook-gi.repository.GstPbutils.py +0 -16
- venv/Lib/site-packages/PyInstaller/hooks/pre_safe_import_module/hook-gi.repository.GstPlay.py +0 -16
- venv/Lib/site-packages/PyInstaller/hooks/pre_safe_import_module/hook-gi.repository.GstPlayer.py +0 -16
- venv/Lib/site-packages/PyInstaller/hooks/pre_safe_import_module/hook-gi.repository.GstRtp.py +0 -16
- venv/Lib/site-packages/PyInstaller/hooks/pre_safe_import_module/hook-gi.repository.GstRtsp.py +0 -16
- venv/Lib/site-packages/PyInstaller/hooks/pre_safe_import_module/hook-gi.repository.GstRtspServer.py +0 -16
- venv/Lib/site-packages/PyInstaller/hooks/pre_safe_import_module/hook-gi.repository.GstSdp.py +0 -16
- venv/Lib/site-packages/PyInstaller/hooks/pre_safe_import_module/hook-gi.repository.GstTag.py +0 -16
- venv/Lib/site-packages/PyInstaller/hooks/pre_safe_import_module/hook-gi.repository.GstTranscoder.py +0 -16
- venv/Lib/site-packages/PyInstaller/hooks/pre_safe_import_module/hook-gi.repository.GstVideo.py +0 -16
- venv/Lib/site-packages/PyInstaller/hooks/pre_safe_import_module/hook-gi.repository.GstVulkan.py +0 -16
- venv/Lib/site-packages/PyInstaller/hooks/pre_safe_import_module/hook-gi.repository.GstVulkanWayland.py +0 -16
- venv/Lib/site-packages/PyInstaller/hooks/pre_safe_import_module/hook-gi.repository.GstVulkanXCB.py +0 -16
- venv/Lib/site-packages/PyInstaller/hooks/pre_safe_import_module/hook-gi.repository.GstWebRTC.py +0 -16
- venv/Lib/site-packages/PyInstaller/hooks/pre_safe_import_module/hook-gi.repository.Gtk.py +0 -16
- venv/Lib/site-packages/PyInstaller/hooks/pre_safe_import_module/hook-gi.repository.GtkChamplain.py +0 -16
- venv/Lib/site-packages/PyInstaller/hooks/pre_safe_import_module/hook-gi.repository.GtkClutter.py +0 -16
- venv/Lib/site-packages/PyInstaller/hooks/pre_safe_import_module/hook-gi.repository.GtkSource.py +0 -16
- venv/Lib/site-packages/PyInstaller/hooks/pre_safe_import_module/hook-gi.repository.GtkosxApplication.py +0 -16
- venv/Lib/site-packages/PyInstaller/hooks/pre_safe_import_module/hook-gi.repository.HarfBuzz.py +0 -16
- venv/Lib/site-packages/PyInstaller/hooks/pre_safe_import_module/hook-gi.repository.Pango.py +0 -16
- venv/Lib/site-packages/PyInstaller/hooks/pre_safe_import_module/hook-gi.repository.PangoCairo.py +0 -16
- venv/Lib/site-packages/PyInstaller/hooks/pre_safe_import_module/hook-gi.repository.cairo.py +0 -16
- venv/Lib/site-packages/PyInstaller/hooks/pre_safe_import_module/hook-gi.repository.freetype2.py +0 -16
- venv/Lib/site-packages/PyInstaller/hooks/pre_safe_import_module/hook-gi.repository.xlib.py +0 -16
- venv/Lib/site-packages/PyInstaller/hooks/pre_safe_import_module/hook-setuptools.extern.six.moves.py +0 -35
- venv/Lib/site-packages/PyInstaller/hooks/pre_safe_import_module/hook-six.moves.py +0 -60
- venv/Lib/site-packages/PyInstaller/hooks/pre_safe_import_module/hook-urllib3.packages.six.moves.py +0 -30
- venv/Lib/site-packages/PyInstaller/hooks/rthooks/__init__.py +0 -1
- venv/Lib/site-packages/PyInstaller/hooks/rthooks/pyi_rth__tkinter.py +0 -30
- venv/Lib/site-packages/PyInstaller/hooks/rthooks/pyi_rth_django.py +0 -30
- venv/Lib/site-packages/PyInstaller/hooks/rthooks/pyi_rth_gdkpixbuf.py +0 -35
- venv/Lib/site-packages/PyInstaller/hooks/rthooks/pyi_rth_gi.py +0 -15
- venv/Lib/site-packages/PyInstaller/hooks/rthooks/pyi_rth_gio.py +0 -15
- venv/Lib/site-packages/PyInstaller/hooks/rthooks/pyi_rth_glib.py +0 -31
- venv/Lib/site-packages/PyInstaller/hooks/rthooks/pyi_rth_gstreamer.py +0 -26
- venv/Lib/site-packages/PyInstaller/hooks/rthooks/pyi_rth_gtk.py +0 -21
- venv/Lib/site-packages/PyInstaller/hooks/rthooks/pyi_rth_inspect.py +0 -44
- venv/Lib/site-packages/PyInstaller/hooks/rthooks/pyi_rth_kivy.py +0 -18
- venv/Lib/site-packages/PyInstaller/hooks/rthooks/pyi_rth_mplconfig.py +0 -38
- venv/Lib/site-packages/PyInstaller/hooks/rthooks/pyi_rth_multiprocessing.py +0 -95
- venv/Lib/site-packages/PyInstaller/hooks/rthooks/pyi_rth_pkgres.py +0 -200
- venv/Lib/site-packages/PyInstaller/hooks/rthooks/pyi_rth_pkgutil.py +0 -86
- venv/Lib/site-packages/PyInstaller/hooks/rthooks/pyi_rth_pyqt5.py +0 -28
- venv/Lib/site-packages/PyInstaller/hooks/rthooks/pyi_rth_pyqt5webengine.py +0 -32
- venv/Lib/site-packages/PyInstaller/hooks/rthooks/pyi_rth_pyqt6.py +0 -28
- venv/Lib/site-packages/PyInstaller/hooks/rthooks/pyi_rth_pyqt6webengine.py +0 -35
- venv/Lib/site-packages/PyInstaller/hooks/rthooks/pyi_rth_pyside2.py +0 -26
- venv/Lib/site-packages/PyInstaller/hooks/rthooks/pyi_rth_pyside2webengine.py +0 -25
- venv/Lib/site-packages/PyInstaller/hooks/rthooks/pyi_rth_pyside6.py +0 -26
- venv/Lib/site-packages/PyInstaller/hooks/rthooks/pyi_rth_pyside6webengine.py +0 -31
- venv/Lib/site-packages/PyInstaller/hooks/rthooks/pyi_rth_setuptools.py +0 -35
- venv/Lib/site-packages/PyInstaller/hooks/rthooks/pyi_rth_win32comgenpy.py +0 -52
- venv/Lib/site-packages/PyInstaller/isolated/__init__.py +0 -31
- venv/Lib/site-packages/PyInstaller/isolated/_child.py +0 -95
- venv/Lib/site-packages/PyInstaller/isolated/_parent.py +0 -406
- venv/Lib/site-packages/PyInstaller/lib/__init__.py +0 -1
- venv/Lib/site-packages/PyInstaller/lib/modulegraph/__init__.py +0 -1
- venv/Lib/site-packages/PyInstaller/lib/modulegraph/__main__.py +0 -89
- venv/Lib/site-packages/PyInstaller/lib/modulegraph/_compat.py +0 -25
- venv/Lib/site-packages/PyInstaller/lib/modulegraph/find_modules.py +0 -338
- venv/Lib/site-packages/PyInstaller/lib/modulegraph/modulegraph.py +0 -3309
- venv/Lib/site-packages/PyInstaller/lib/modulegraph/util.py +0 -149
- venv/Lib/site-packages/PyInstaller/lib/modulegraph/zipio.py +0 -418
- venv/Lib/site-packages/PyInstaller/loader/__init__.py +0 -1
- venv/Lib/site-packages/PyInstaller/loader/pyiboot01_bootstrap.py +0 -92
- venv/Lib/site-packages/PyInstaller/loader/pyimod01_archive.py +0 -307
- venv/Lib/site-packages/PyInstaller/loader/pyimod02_importers.py +0 -604
- venv/Lib/site-packages/PyInstaller/loader/pyimod03_ctypes.py +0 -131
- venv/Lib/site-packages/PyInstaller/loader/pyimod04_pywin32.py +0 -48
- venv/Lib/site-packages/PyInstaller/log.py +0 -56
- venv/Lib/site-packages/PyInstaller/utils/__init__.py +0 -1
- venv/Lib/site-packages/PyInstaller/utils/_gitrevision.py +0 -10
- venv/Lib/site-packages/PyInstaller/utils/cliutils/__init__.py +0 -1
- venv/Lib/site-packages/PyInstaller/utils/cliutils/archive_viewer.py +0 -271
- venv/Lib/site-packages/PyInstaller/utils/cliutils/bindepend.py +0 -52
- venv/Lib/site-packages/PyInstaller/utils/cliutils/grab_version.py +0 -51
- venv/Lib/site-packages/PyInstaller/utils/cliutils/makespec.py +0 -53
- venv/Lib/site-packages/PyInstaller/utils/cliutils/set_version.py +0 -42
- venv/Lib/site-packages/PyInstaller/utils/conftest.py +0 -576
- venv/Lib/site-packages/PyInstaller/utils/git.py +0 -59
- venv/Lib/site-packages/PyInstaller/utils/hooks/__init__.py +0 -1397
- venv/Lib/site-packages/PyInstaller/utils/hooks/conda.py +0 -400
- venv/Lib/site-packages/PyInstaller/utils/hooks/django.py +0 -151
- venv/Lib/site-packages/PyInstaller/utils/hooks/gi.py +0 -308
- venv/Lib/site-packages/PyInstaller/utils/hooks/qt/__init__.py +0 -845
- venv/Lib/site-packages/PyInstaller/utils/hooks/qt/_modules_info.py +0 -439
- venv/Lib/site-packages/PyInstaller/utils/hooks/tcl_tk.py +0 -253
- venv/Lib/site-packages/PyInstaller/utils/hooks/win32.py +0 -50
- venv/Lib/site-packages/PyInstaller/utils/misc.py +0 -223
- venv/Lib/site-packages/PyInstaller/utils/osx.py +0 -359
- venv/Lib/site-packages/PyInstaller/utils/run_tests.py +0 -69
- venv/Lib/site-packages/PyInstaller/utils/tests.py +0 -154
- venv/Lib/site-packages/PyInstaller/utils/win32/__init__.py +0 -1
- venv/Lib/site-packages/PyInstaller/utils/win32/icon.py +0 -248
- venv/Lib/site-packages/PyInstaller/utils/win32/versioninfo.py +0 -585
- venv/Lib/site-packages/PyInstaller/utils/win32/winmanifest.py +0 -1083
- venv/Lib/site-packages/PyInstaller/utils/win32/winresource.py +0 -245
- venv/Lib/site-packages/PyInstaller/utils/win32/winutils.py +0 -358
- venv/Lib/site-packages/PySide6/__init__.py +0 -124
- venv/Lib/site-packages/PySide6/_config.py +0 -16
- venv/Lib/site-packages/PySide6/_git_pyside_version.py +0 -19
- venv/Lib/site-packages/PySide6/examples/3d/simple3d/simple3d.py +0 -127
- venv/Lib/site-packages/PySide6/examples/axcontainer/axviewer/axviewer.py +0 -47
- venv/Lib/site-packages/PySide6/examples/bluetooth/btscanner/device.py +0 -129
- venv/Lib/site-packages/PySide6/examples/bluetooth/btscanner/main.py +0 -18
- venv/Lib/site-packages/PySide6/examples/bluetooth/btscanner/service.py +0 -48
- venv/Lib/site-packages/PySide6/examples/bluetooth/btscanner/ui_device.py +0 -90
- venv/Lib/site-packages/PySide6/examples/bluetooth/btscanner/ui_service.py +0 -57
- venv/Lib/site-packages/PySide6/examples/bluetooth/heartrate_game/bluetoothbaseclass.py +0 -40
- venv/Lib/site-packages/PySide6/examples/bluetooth/heartrate_game/connectionhandler.py +0 -51
- venv/Lib/site-packages/PySide6/examples/bluetooth/heartrate_game/devicefinder.py +0 -122
- venv/Lib/site-packages/PySide6/examples/bluetooth/heartrate_game/devicehandler.py +0 -307
- venv/Lib/site-packages/PySide6/examples/bluetooth/heartrate_game/deviceinfo.py +0 -38
- venv/Lib/site-packages/PySide6/examples/bluetooth/heartrate_game/heartrate_global.py +0 -6
- venv/Lib/site-packages/PySide6/examples/bluetooth/heartrate_game/main.py +0 -53
- venv/Lib/site-packages/PySide6/examples/bluetooth/heartrate_server/heartrate_server.py +0 -94
- venv/Lib/site-packages/PySide6/examples/charts/areachart/areachart.py +0 -67
- venv/Lib/site-packages/PySide6/examples/charts/audio/audio.py +0 -91
- venv/Lib/site-packages/PySide6/examples/charts/barchart/barchart.py +0 -69
- venv/Lib/site-packages/PySide6/examples/charts/callout/callout.py +0 -220
- venv/Lib/site-packages/PySide6/examples/charts/chartthemes/main.py +0 -369
- venv/Lib/site-packages/PySide6/examples/charts/chartthemes/ui_themewidget.py +0 -91
- venv/Lib/site-packages/PySide6/examples/charts/donutbreakdown/donutbreakdown.py +0 -148
- venv/Lib/site-packages/PySide6/examples/charts/dynamicspline/chart.py +0 -52
- venv/Lib/site-packages/PySide6/examples/charts/dynamicspline/main.py +0 -27
- venv/Lib/site-packages/PySide6/examples/charts/legend/legend.py +0 -225
- venv/Lib/site-packages/PySide6/examples/charts/lineandbar/lineandbar.py +0 -81
- venv/Lib/site-packages/PySide6/examples/charts/linechart/linechart.py +0 -47
- venv/Lib/site-packages/PySide6/examples/charts/logvalueaxis/logvalueaxis.py +0 -57
- venv/Lib/site-packages/PySide6/examples/charts/memoryusage/memoryusage.py +0 -92
- venv/Lib/site-packages/PySide6/examples/charts/modeldata/modeldata.py +0 -144
- venv/Lib/site-packages/PySide6/examples/charts/nesteddonuts/nesteddonuts.py +0 -100
- venv/Lib/site-packages/PySide6/examples/charts/percentbarchart/percentbarchart.py +0 -63
- venv/Lib/site-packages/PySide6/examples/charts/piechart/piechart.py +0 -50
- venv/Lib/site-packages/PySide6/examples/charts/pointselectionandmarkers/pointselectionandmarkers.py +0 -127
- venv/Lib/site-packages/PySide6/examples/charts/pointselectionandmarkers/rc_markers.py +0 -275
- venv/Lib/site-packages/PySide6/examples/charts/pointselectionandmarkers/utilities.py +0 -67
- venv/Lib/site-packages/PySide6/examples/charts/qmlpolarchart/qmlpolarchart.py +0 -28
- venv/Lib/site-packages/PySide6/examples/charts/temperaturerecords/temperaturerecords.py +0 -60
- venv/Lib/site-packages/PySide6/examples/corelib/ipc/sharedmemory/dialog.py +0 -93
- venv/Lib/site-packages/PySide6/examples/corelib/ipc/sharedmemory/main.py +0 -15
- venv/Lib/site-packages/PySide6/examples/corelib/ipc/sharedmemory/ui_dialog.py +0 -57
- venv/Lib/site-packages/PySide6/examples/corelib/mimetypesbrowser/mainwindow.py +0 -161
- venv/Lib/site-packages/PySide6/examples/corelib/mimetypesbrowser/mimetypemodel.py +0 -136
- venv/Lib/site-packages/PySide6/examples/corelib/mimetypesbrowser/mimetypesbrowser.py +0 -24
- venv/Lib/site-packages/PySide6/examples/corelib/settingseditor/settingseditor.py +0 -757
- venv/Lib/site-packages/PySide6/examples/corelib/threads/mandelbrot.py +0 -352
- venv/Lib/site-packages/PySide6/examples/datavisualization/bars3d/bars3d.py +0 -80
- venv/Lib/site-packages/PySide6/examples/datavisualization/minimalsurface/main.py +0 -54
- venv/Lib/site-packages/PySide6/examples/datavisualization/surface/main.py +0 -189
- venv/Lib/site-packages/PySide6/examples/datavisualization/surface/surfacegraph.py +0 -253
- venv/Lib/site-packages/PySide6/examples/datavisualization/surface_model_numpy/main.py +0 -189
- venv/Lib/site-packages/PySide6/examples/datavisualization/surface_model_numpy/surfacegraph.py +0 -295
- venv/Lib/site-packages/PySide6/examples/datavisualization/surface_numpy/main.py +0 -189
- venv/Lib/site-packages/PySide6/examples/datavisualization/surface_numpy/surfacegraph.py +0 -253
- venv/Lib/site-packages/PySide6/examples/dbus/listnames/listnames.py +0 -54
- venv/Lib/site-packages/PySide6/examples/dbus/pingpong/ping.py +0 -39
- venv/Lib/site-packages/PySide6/examples/dbus/pingpong/pong.py +0 -44
- venv/Lib/site-packages/PySide6/examples/designer/taskmenuextension/main.py +0 -16
- venv/Lib/site-packages/PySide6/examples/designer/taskmenuextension/registertictactoe.py +0 -13
- venv/Lib/site-packages/PySide6/examples/designer/taskmenuextension/tictactoe.py +0 -133
- venv/Lib/site-packages/PySide6/examples/designer/taskmenuextension/tictactoeplugin.py +0 -71
- venv/Lib/site-packages/PySide6/examples/designer/taskmenuextension/tictactoetaskmenu.py +0 -68
- venv/Lib/site-packages/PySide6/examples/external/matplotlib/widget3d/widget3d.py +0 -207
- venv/Lib/site-packages/PySide6/examples/external/matplotlib/widget_gaussian/widget_gaussian.py +0 -75
- venv/Lib/site-packages/PySide6/examples/external/networkx/main.py +0 -346
- venv/Lib/site-packages/PySide6/examples/external/opencv/webcam_pattern_detection.py +0 -170
- venv/Lib/site-packages/PySide6/examples/external/pandas/dataframe_model.py +0 -82
- venv/Lib/site-packages/PySide6/examples/external/scikit/staining_colors_separation.py +0 -147
- venv/Lib/site-packages/PySide6/examples/gui/analogclock/main.py +0 -77
- venv/Lib/site-packages/PySide6/examples/httpserver/afterrequest/main.py +0 -36
- venv/Lib/site-packages/PySide6/examples/multimedia/audiooutput/audiooutput.py +0 -272
- venv/Lib/site-packages/PySide6/examples/multimedia/audiosource/audiosource.py +0 -204
- venv/Lib/site-packages/PySide6/examples/multimedia/camera/camera.py +0 -172
- venv/Lib/site-packages/PySide6/examples/multimedia/player/player.py +0 -194
- venv/Lib/site-packages/PySide6/examples/network/blockingfortuneclient/blockingfortuneclient.py +0 -186
- venv/Lib/site-packages/PySide6/examples/network/downloader/downloader.py +0 -178
- venv/Lib/site-packages/PySide6/examples/network/fortuneclient/fortuneclient.py +0 -126
- venv/Lib/site-packages/PySide6/examples/network/fortuneserver/fortuneserver.py +0 -82
- venv/Lib/site-packages/PySide6/examples/network/googlesuggest/googlesuggest.py +0 -137
- venv/Lib/site-packages/PySide6/examples/network/googlesuggest/main.py +0 -14
- venv/Lib/site-packages/PySide6/examples/network/googlesuggest/searchbox.py +0 -27
- venv/Lib/site-packages/PySide6/examples/network/loopback/dialog.py +0 -151
- venv/Lib/site-packages/PySide6/examples/network/loopback/main.py +0 -15
- venv/Lib/site-packages/PySide6/examples/network/threadedfortuneserver/threadedfortuneserver.py +0 -116
- venv/Lib/site-packages/PySide6/examples/networkauth/redditclient/main.py +0 -28
- venv/Lib/site-packages/PySide6/examples/networkauth/redditclient/redditmodel.py +0 -70
- venv/Lib/site-packages/PySide6/examples/networkauth/redditclient/redditwrapper.py +0 -91
- venv/Lib/site-packages/PySide6/examples/opengl/contextinfo/contextinfo.py +0 -262
- venv/Lib/site-packages/PySide6/examples/opengl/hellogl2/hellogl2.py +0 -440
- venv/Lib/site-packages/PySide6/examples/opengl/textures/textures.py +0 -211
- venv/Lib/site-packages/PySide6/examples/opengl/textures/textures_rc.py +0 -762
- venv/Lib/site-packages/PySide6/examples/opengl/threadedqopenglwidget/glwidget.py +0 -79
- venv/Lib/site-packages/PySide6/examples/opengl/threadedqopenglwidget/main.py +0 -93
- venv/Lib/site-packages/PySide6/examples/opengl/threadedqopenglwidget/mainwindow.py +0 -24
- venv/Lib/site-packages/PySide6/examples/opengl/threadedqopenglwidget/renderer.py +0 -326
- venv/Lib/site-packages/PySide6/examples/pdf/quickpdfviewer/main.py +0 -49
- venv/Lib/site-packages/PySide6/examples/pdf/quickpdfviewer/rc_viewer.py +0 -5505
- venv/Lib/site-packages/PySide6/examples/pdfwidgets/pdfviewer/main.py +0 -27
- venv/Lib/site-packages/PySide6/examples/pdfwidgets/pdfviewer/mainwindow.py +0 -141
- venv/Lib/site-packages/PySide6/examples/pdfwidgets/pdfviewer/resources_rc.py +0 -3468
- venv/Lib/site-packages/PySide6/examples/pdfwidgets/pdfviewer/ui_mainwindow.py +0 -259
- venv/Lib/site-packages/PySide6/examples/pdfwidgets/pdfviewer/zoomselector.py +0 -59
- venv/Lib/site-packages/PySide6/examples/qml/editingmodel/main.py +0 -21
- venv/Lib/site-packages/PySide6/examples/qml/editingmodel/model.py +0 -157
- venv/Lib/site-packages/PySide6/examples/qml/referenceexamples/adding/main.py +0 -30
- venv/Lib/site-packages/PySide6/examples/qml/referenceexamples/adding/person.py +0 -35
- venv/Lib/site-packages/PySide6/examples/qml/referenceexamples/attached/birthdayparty.py +0 -63
- venv/Lib/site-packages/PySide6/examples/qml/referenceexamples/attached/main.py +0 -46
- venv/Lib/site-packages/PySide6/examples/qml/referenceexamples/attached/person.py +0 -46
- venv/Lib/site-packages/PySide6/examples/qml/referenceexamples/binding/birthdayparty.py +0 -83
- venv/Lib/site-packages/PySide6/examples/qml/referenceexamples/binding/happybirthdaysong.py +0 -47
- venv/Lib/site-packages/PySide6/examples/qml/referenceexamples/binding/main.py +0 -52
- venv/Lib/site-packages/PySide6/examples/qml/referenceexamples/binding/person.py +0 -53
- venv/Lib/site-packages/PySide6/examples/qml/referenceexamples/coercion/birthdayparty.py +0 -41
- venv/Lib/site-packages/PySide6/examples/qml/referenceexamples/coercion/main.py +0 -36
- venv/Lib/site-packages/PySide6/examples/qml/referenceexamples/coercion/person.py +0 -47
- venv/Lib/site-packages/PySide6/examples/qml/referenceexamples/default/birthdayparty.py +0 -42
- venv/Lib/site-packages/PySide6/examples/qml/referenceexamples/default/main.py +0 -36
- venv/Lib/site-packages/PySide6/examples/qml/referenceexamples/default/person.py +0 -46
- venv/Lib/site-packages/PySide6/examples/qml/referenceexamples/extended/main.py +0 -95
- venv/Lib/site-packages/PySide6/examples/qml/referenceexamples/grouped/birthdayparty.py +0 -42
- venv/Lib/site-packages/PySide6/examples/qml/referenceexamples/grouped/main.py +0 -43
- venv/Lib/site-packages/PySide6/examples/qml/referenceexamples/grouped/person.py +0 -85
- venv/Lib/site-packages/PySide6/examples/qml/referenceexamples/methods/birthdayparty.py +0 -47
- venv/Lib/site-packages/PySide6/examples/qml/referenceexamples/methods/main.py +0 -32
- venv/Lib/site-packages/PySide6/examples/qml/referenceexamples/methods/person.py +0 -34
- venv/Lib/site-packages/PySide6/examples/qml/referenceexamples/properties/birthdayparty.py +0 -41
- venv/Lib/site-packages/PySide6/examples/qml/referenceexamples/properties/main.py +0 -34
- venv/Lib/site-packages/PySide6/examples/qml/referenceexamples/properties/person.py +0 -35
- venv/Lib/site-packages/PySide6/examples/qml/referenceexamples/valuesource/birthdayparty.py +0 -76
- venv/Lib/site-packages/PySide6/examples/qml/referenceexamples/valuesource/happybirthdaysong.py +0 -47
- venv/Lib/site-packages/PySide6/examples/qml/referenceexamples/valuesource/main.py +0 -51
- venv/Lib/site-packages/PySide6/examples/qml/referenceexamples/valuesource/person.py +0 -46
- venv/Lib/site-packages/PySide6/examples/qml/signals/pytoqml1/main.py +0 -31
- venv/Lib/site-packages/PySide6/examples/qml/signals/pytoqml2/main.py +0 -54
- venv/Lib/site-packages/PySide6/examples/qml/signals/qmltopy1/main.py +0 -50
- venv/Lib/site-packages/PySide6/examples/qml/signals/qmltopy2/main.py +0 -45
- venv/Lib/site-packages/PySide6/examples/qml/signals/qmltopy3/main.py +0 -33
- venv/Lib/site-packages/PySide6/examples/qml/signals/qmltopy4/main.py +0 -33
- venv/Lib/site-packages/PySide6/examples/qml/textproperties/main.py +0 -76
- venv/Lib/site-packages/PySide6/examples/qml/tutorials/extending/chapter1-basics/basics.py +0 -68
- venv/Lib/site-packages/PySide6/examples/qml/tutorials/extending/chapter2-methods/methods.py +0 -75
- venv/Lib/site-packages/PySide6/examples/qml/tutorials/extending/chapter3-bindings/bindings.py +0 -79
- venv/Lib/site-packages/PySide6/examples/qml/tutorials/extending/chapter4-customPropertyTypes/customPropertyTypes.py +0 -82
- venv/Lib/site-packages/PySide6/examples/qml/tutorials/extending/chapter5-listproperties/listproperties.py +0 -96
- venv/Lib/site-packages/PySide6/examples/qml/tutorials/extending/chapter6-plugins/Charts/piechart.py +0 -40
- venv/Lib/site-packages/PySide6/examples/qml/tutorials/extending/chapter6-plugins/Charts/pieslice.py +0 -52
- venv/Lib/site-packages/PySide6/examples/qml/usingmodel/usingmodel.py +0 -70
- venv/Lib/site-packages/PySide6/examples/quick/models/objectlistmodel/objectlistmodel.py +0 -61
- venv/Lib/site-packages/PySide6/examples/quick/models/stringlistmodel/stringlistmodel.py +0 -26
- venv/Lib/site-packages/PySide6/examples/quick/painteditem/painteditem.py +0 -75
- venv/Lib/site-packages/PySide6/examples/quick/rendercontrol/rendercontrol_opengl/cuberenderer.py +0 -186
- venv/Lib/site-packages/PySide6/examples/quick/rendercontrol/rendercontrol_opengl/main.py +0 -20
- venv/Lib/site-packages/PySide6/examples/quick/rendercontrol/rendercontrol_opengl/window_singlethreaded.py +0 -275
- venv/Lib/site-packages/PySide6/examples/quick/scenegraph/openglunderqml/main.py +0 -27
- venv/Lib/site-packages/PySide6/examples/quick/scenegraph/openglunderqml/squircle.py +0 -79
- venv/Lib/site-packages/PySide6/examples/quick/scenegraph/openglunderqml/squirclerenderer.py +0 -99
- venv/Lib/site-packages/PySide6/examples/quick/shared/shared_rc.py +0 -1884
- venv/Lib/site-packages/PySide6/examples/quick/window/main.py +0 -37
- venv/Lib/site-packages/PySide6/examples/quick/window/window_rc.py +0 -328
- venv/Lib/site-packages/PySide6/examples/quick3d/customgeometry/examplepoint.py +0 -51
- venv/Lib/site-packages/PySide6/examples/quick3d/customgeometry/exampletriangle.py +0 -188
- venv/Lib/site-packages/PySide6/examples/quick3d/customgeometry/main.py +0 -29
- venv/Lib/site-packages/PySide6/examples/quick3d/customgeometry/resources_rc.py +0 -585
- venv/Lib/site-packages/PySide6/examples/quick3d/intro/main.py +0 -24
- venv/Lib/site-packages/PySide6/examples/quickcontrols2/gallery/gallery.py +0 -52
- venv/Lib/site-packages/PySide6/examples/quickcontrols2/gallery/rc_gallery.py +0 -7855
- venv/Lib/site-packages/PySide6/examples/remoteobjects/modelview/modelviewclient.py +0 -24
- venv/Lib/site-packages/PySide6/examples/remoteobjects/modelview/modelviewserver.py +0 -103
- venv/Lib/site-packages/PySide6/examples/samplebinding/main.py +0 -64
- venv/Lib/site-packages/PySide6/examples/serialport/terminal/console.py +0 -49
- venv/Lib/site-packages/PySide6/examples/serialport/terminal/main.py +0 -17
- venv/Lib/site-packages/PySide6/examples/serialport/terminal/mainwindow.py +0 -108
- venv/Lib/site-packages/PySide6/examples/serialport/terminal/rc_terminal.py +0 -4464
- venv/Lib/site-packages/PySide6/examples/serialport/terminal/settingsdialog.py +0 -179
- venv/Lib/site-packages/PySide6/examples/serialport/terminal/ui_mainwindow.py +0 -149
- venv/Lib/site-packages/PySide6/examples/serialport/terminal/ui_settingsdialog.py +0 -181
- venv/Lib/site-packages/PySide6/examples/spatialaudio/audiopanning/main.py +0 -193
- venv/Lib/site-packages/PySide6/examples/sql/books/bookdelegate.py +0 -94
- venv/Lib/site-packages/PySide6/examples/sql/books/bookwindow.py +0 -98
- venv/Lib/site-packages/PySide6/examples/sql/books/createdb.py +0 -96
- venv/Lib/site-packages/PySide6/examples/sql/books/main.py +0 -16
- venv/Lib/site-packages/PySide6/examples/sql/books/rc_books.py +0 -88
- venv/Lib/site-packages/PySide6/examples/sql/books/ui_bookwindow.py +0 -135
- venv/Lib/site-packages/PySide6/examples/sql/relationaltablemodel/connection.py +0 -18
- venv/Lib/site-packages/PySide6/examples/sql/relationaltablemodel/relationaltablemodel.py +0 -77
- venv/Lib/site-packages/PySide6/examples/statemachine/eventtrans/eventtrans.py +0 -57
- venv/Lib/site-packages/PySide6/examples/statemachine/factstates/factstates.py +0 -89
- venv/Lib/site-packages/PySide6/examples/statemachine/ping_pong/ping_pong.py +0 -70
- venv/Lib/site-packages/PySide6/examples/statemachine/rogue/rogue.py +0 -179
- venv/Lib/site-packages/PySide6/examples/statemachine/trafficlight/trafficlight.py +0 -117
- venv/Lib/site-packages/PySide6/examples/statemachine/twowaybutton/twowaybutton.py +0 -33
- venv/Lib/site-packages/PySide6/examples/texttospeech/hello_speak/hello_speak.py +0 -73
- venv/Lib/site-packages/PySide6/examples/uitools/uiloader/uiloader.py +0 -35
- venv/Lib/site-packages/PySide6/examples/utils/pyside_config.py +0 -338
- venv/Lib/site-packages/PySide6/examples/webchannel/standalone/core.py +0 -25
- venv/Lib/site-packages/PySide6/examples/webchannel/standalone/dialog.py +0 -32
- venv/Lib/site-packages/PySide6/examples/webchannel/standalone/main.py +0 -62
- venv/Lib/site-packages/PySide6/examples/webchannel/standalone/ui_dialog.py +0 -57
- venv/Lib/site-packages/PySide6/examples/webchannel/standalone/websocketclientwrapper.py +0 -35
- venv/Lib/site-packages/PySide6/examples/webchannel/standalone/websockettransport.py +0 -51
- venv/Lib/site-packages/PySide6/examples/webenginequick/nanobrowser/quicknanobrowser.py +0 -65
- venv/Lib/site-packages/PySide6/examples/webenginequick/nanobrowser/rc_resources.py +0 -348
- venv/Lib/site-packages/PySide6/examples/webenginewidgets/markdowneditor/document.py +0 -24
- venv/Lib/site-packages/PySide6/examples/webenginewidgets/markdowneditor/main.py +0 -20
- venv/Lib/site-packages/PySide6/examples/webenginewidgets/markdowneditor/mainwindow.py +0 -136
- venv/Lib/site-packages/PySide6/examples/webenginewidgets/markdowneditor/previewpage.py +0 -18
- venv/Lib/site-packages/PySide6/examples/webenginewidgets/markdowneditor/rc_markdowneditor.py +0 -852
- venv/Lib/site-packages/PySide6/examples/webenginewidgets/markdowneditor/ui_mainwindow.py +0 -115
- venv/Lib/site-packages/PySide6/examples/webenginewidgets/notifications/main.py +0 -57
- venv/Lib/site-packages/PySide6/examples/webenginewidgets/notifications/notificationpopup.py +0 -68
- venv/Lib/site-packages/PySide6/examples/webenginewidgets/simplebrowser/simplebrowser.py +0 -70
- venv/Lib/site-packages/PySide6/examples/webenginewidgets/tabbedbrowser/bookmarkwidget.py +0 -239
- venv/Lib/site-packages/PySide6/examples/webenginewidgets/tabbedbrowser/browsertabwidget.py +0 -212
- venv/Lib/site-packages/PySide6/examples/webenginewidgets/tabbedbrowser/downloadwidget.py +0 -111
- venv/Lib/site-packages/PySide6/examples/webenginewidgets/tabbedbrowser/findtoolbar.py +0 -62
- venv/Lib/site-packages/PySide6/examples/webenginewidgets/tabbedbrowser/historywindow.py +0 -66
- venv/Lib/site-packages/PySide6/examples/webenginewidgets/tabbedbrowser/main.py +0 -358
- venv/Lib/site-packages/PySide6/examples/webenginewidgets/tabbedbrowser/webengineview.py +0 -56
- venv/Lib/site-packages/PySide6/examples/widgetbinding/dialog.py +0 -32
- venv/Lib/site-packages/PySide6/examples/widgetbinding/main.py +0 -14
- venv/Lib/site-packages/PySide6/examples/widgetbinding/registerwigglywidget.py +0 -31
- venv/Lib/site-packages/PySide6/examples/widgetbinding/wigglywidget.py +0 -69
- venv/Lib/site-packages/PySide6/examples/widgets/animation/animatedtiles/animatedtiles.py +0 -230
- venv/Lib/site-packages/PySide6/examples/widgets/animation/animatedtiles/animatedtiles_rc.py +0 -6108
- venv/Lib/site-packages/PySide6/examples/widgets/animation/appchooser/appchooser.py +0 -99
- venv/Lib/site-packages/PySide6/examples/widgets/animation/appchooser/appchooser_rc.py +0 -1424
- venv/Lib/site-packages/PySide6/examples/widgets/animation/easing/easing.py +0 -221
- venv/Lib/site-packages/PySide6/examples/widgets/animation/easing/ui_form.py +0 -178
- venv/Lib/site-packages/PySide6/examples/widgets/animation/states/states.py +0 -235
- venv/Lib/site-packages/PySide6/examples/widgets/animation/states/states_rc.py +0 -2182
- venv/Lib/site-packages/PySide6/examples/widgets/codeeditor/codeeditor.py +0 -104
- venv/Lib/site-packages/PySide6/examples/widgets/codeeditor/main.py +0 -15
- venv/Lib/site-packages/PySide6/examples/widgets/desktop/screenshot/screenshot.py +0 -156
- venv/Lib/site-packages/PySide6/examples/widgets/desktop/systray/main.py +0 -21
- venv/Lib/site-packages/PySide6/examples/widgets/desktop/systray/rc_systray.py +0 -2581
- venv/Lib/site-packages/PySide6/examples/widgets/desktop/systray/window.py +0 -236
- venv/Lib/site-packages/PySide6/examples/widgets/dialogs/classwizard/classwizard.py +0 -380
- venv/Lib/site-packages/PySide6/examples/widgets/dialogs/classwizard/classwizard_rc.py +0 -2316
- venv/Lib/site-packages/PySide6/examples/widgets/dialogs/classwizard/listchooser.py +0 -173
- venv/Lib/site-packages/PySide6/examples/widgets/dialogs/extension/extension.py +0 -77
- venv/Lib/site-packages/PySide6/examples/widgets/dialogs/findfiles/findfiles.py +0 -184
- venv/Lib/site-packages/PySide6/examples/widgets/dialogs/licensewizard/licensewizard.py +0 -298
- venv/Lib/site-packages/PySide6/examples/widgets/dialogs/licensewizard/main.py +0 -15
- venv/Lib/site-packages/PySide6/examples/widgets/dialogs/standarddialogs/standarddialogs.py +0 -415
- venv/Lib/site-packages/PySide6/examples/widgets/dialogs/tabdialog/tabdialog.py +0 -178
- venv/Lib/site-packages/PySide6/examples/widgets/dialogs/trivialwizard/trivialwizard.py +0 -63
- venv/Lib/site-packages/PySide6/examples/widgets/draganddrop/draggableicons/draggableicons.py +0 -128
- venv/Lib/site-packages/PySide6/examples/widgets/draganddrop/draggabletext/draggabletext.py +0 -118
- venv/Lib/site-packages/PySide6/examples/widgets/draganddrop/draggabletext/draggabletext_rc.py +0 -55
- venv/Lib/site-packages/PySide6/examples/widgets/draganddrop/dropsite/droparea.py +0 -67
- venv/Lib/site-packages/PySide6/examples/widgets/draganddrop/dropsite/dropsitewindow.py +0 -115
- venv/Lib/site-packages/PySide6/examples/widgets/draganddrop/dropsite/main.py +0 -15
- venv/Lib/site-packages/PySide6/examples/widgets/effects/blurpicker/blureffect.py +0 -33
- venv/Lib/site-packages/PySide6/examples/widgets/effects/blurpicker/blurpicker.py +0 -105
- venv/Lib/site-packages/PySide6/examples/widgets/effects/blurpicker/main.py +0 -20
- venv/Lib/site-packages/PySide6/examples/widgets/effects/lighting/lighting.py +0 -108
- venv/Lib/site-packages/PySide6/examples/widgets/gettext/main.py +0 -60
- venv/Lib/site-packages/PySide6/examples/widgets/graphicsview/anchorlayout/anchorlayout.py +0 -90
- venv/Lib/site-packages/PySide6/examples/widgets/graphicsview/collidingmice/collidingmice.py +0 -180
- venv/Lib/site-packages/PySide6/examples/widgets/graphicsview/collidingmice/mice_rc.py +0 -232
- venv/Lib/site-packages/PySide6/examples/widgets/graphicsview/diagramscene/diagramscene.py +0 -817
- venv/Lib/site-packages/PySide6/examples/widgets/graphicsview/diagramscene/diagramscene_rc.py +0 -417
- venv/Lib/site-packages/PySide6/examples/widgets/graphicsview/dragdroprobot/dragdroprobot.py +0 -254
- venv/Lib/site-packages/PySide6/examples/widgets/graphicsview/dragdroprobot/dragdroprobot_rc.py +0 -975
- venv/Lib/site-packages/PySide6/examples/widgets/graphicsview/elasticnodes/elasticnodes.py +0 -393
- venv/Lib/site-packages/PySide6/examples/widgets/imageviewer/imageviewer.py +0 -277
- venv/Lib/site-packages/PySide6/examples/widgets/imageviewer/main.py +0 -27
- venv/Lib/site-packages/PySide6/examples/widgets/itemviews/address_book/adddialogwidget.py +0 -65
- venv/Lib/site-packages/PySide6/examples/widgets/itemviews/address_book/address_book.py +0 -96
- venv/Lib/site-packages/PySide6/examples/widgets/itemviews/address_book/addresswidget.py +0 -214
- venv/Lib/site-packages/PySide6/examples/widgets/itemviews/address_book/newaddresstab.py +0 -56
- venv/Lib/site-packages/PySide6/examples/widgets/itemviews/address_book/tablemodel.py +0 -109
- venv/Lib/site-packages/PySide6/examples/widgets/itemviews/basicfiltermodel/basicsortfiltermodel.py +0 -178
- venv/Lib/site-packages/PySide6/examples/widgets/itemviews/dirview/dirview.py +0 -60
- venv/Lib/site-packages/PySide6/examples/widgets/itemviews/editabletreemodel/main.py +0 -14
- venv/Lib/site-packages/PySide6/examples/widgets/itemviews/editabletreemodel/mainwindow.py +0 -163
- venv/Lib/site-packages/PySide6/examples/widgets/itemviews/editabletreemodel/treeitem.py +0 -94
- venv/Lib/site-packages/PySide6/examples/widgets/itemviews/editabletreemodel/treemodel.py +0 -199
- venv/Lib/site-packages/PySide6/examples/widgets/itemviews/fetchmore/fetchmore.py +0 -137
- venv/Lib/site-packages/PySide6/examples/widgets/itemviews/jsonmodel/jsonmodel.py +0 -323
- venv/Lib/site-packages/PySide6/examples/widgets/itemviews/spinboxdelegate/spinboxdelegate.py +0 -78
- venv/Lib/site-packages/PySide6/examples/widgets/itemviews/spreadsheet/main.py +0 -19
- venv/Lib/site-packages/PySide6/examples/widgets/itemviews/spreadsheet/spreadsheet.py +0 -544
- venv/Lib/site-packages/PySide6/examples/widgets/itemviews/spreadsheet/spreadsheetdelegate.py +0 -67
- venv/Lib/site-packages/PySide6/examples/widgets/itemviews/spreadsheet/spreadsheetitem.py +0 -122
- venv/Lib/site-packages/PySide6/examples/widgets/itemviews/stardelegate/stardelegate.py +0 -136
- venv/Lib/site-packages/PySide6/examples/widgets/itemviews/stardelegate/stareditor.py +0 -63
- venv/Lib/site-packages/PySide6/examples/widgets/itemviews/stardelegate/starrating.py +0 -62
- venv/Lib/site-packages/PySide6/examples/widgets/layouts/basiclayouts/basiclayouts.py +0 -99
- venv/Lib/site-packages/PySide6/examples/widgets/layouts/borderlayout/borderlayout.py +0 -248
- venv/Lib/site-packages/PySide6/examples/widgets/layouts/dynamiclayouts/dynamiclayouts.py +0 -132
- venv/Lib/site-packages/PySide6/examples/widgets/layouts/flowlayout/flowlayout.py +0 -120
- venv/Lib/site-packages/PySide6/examples/widgets/linguist/linguist_rc.py +0 -68
- venv/Lib/site-packages/PySide6/examples/widgets/linguist/main.py +0 -55
- venv/Lib/site-packages/PySide6/examples/widgets/mainwindows/application/application.py +0 -259
- venv/Lib/site-packages/PySide6/examples/widgets/mainwindows/application/application_rc.py +0 -608
- venv/Lib/site-packages/PySide6/examples/widgets/mainwindows/dockwidgets/dockwidgets.py +0 -271
- venv/Lib/site-packages/PySide6/examples/widgets/mainwindows/dockwidgets/dockwidgets_rc.py +0 -464
- venv/Lib/site-packages/PySide6/examples/widgets/mainwindows/mdi/mdi.py +0 -439
- venv/Lib/site-packages/PySide6/examples/widgets/mainwindows/mdi/mdi_rc.py +0 -608
- venv/Lib/site-packages/PySide6/examples/widgets/painting/basicdrawing/basicdrawing.py +0 -313
- venv/Lib/site-packages/PySide6/examples/widgets/painting/basicdrawing/basicdrawing_rc.py +0 -135
- venv/Lib/site-packages/PySide6/examples/widgets/painting/concentriccircles/concentriccircles.py +0 -108
- venv/Lib/site-packages/PySide6/examples/widgets/painting/painter/painter.py +0 -202
- venv/Lib/site-packages/PySide6/examples/widgets/painting/plot/plot.py +0 -66
- venv/Lib/site-packages/PySide6/examples/widgets/richtext/orderform/orderform.py +0 -267
- venv/Lib/site-packages/PySide6/examples/widgets/richtext/syntaxhighlighter/syntaxhighlighter.py +0 -109
- venv/Lib/site-packages/PySide6/examples/widgets/richtext/textedit/main.py +0 -42
- venv/Lib/site-packages/PySide6/examples/widgets/richtext/textedit/textedit.py +0 -716
- venv/Lib/site-packages/PySide6/examples/widgets/richtext/textedit/textedit_rc.py +0 -6029
- venv/Lib/site-packages/PySide6/examples/widgets/richtext/textobject/textobject.py +0 -104
- venv/Lib/site-packages/PySide6/examples/widgets/thread_signals/thread_signals.py +0 -62
- venv/Lib/site-packages/PySide6/examples/widgets/tools/regularexpression/regularexpression.py +0 -21
- venv/Lib/site-packages/PySide6/examples/widgets/tools/regularexpression/regularexpressiondialog.py +0 -457
- venv/Lib/site-packages/PySide6/examples/widgets/tutorials/addressbook/part1.py +0 -39
- venv/Lib/site-packages/PySide6/examples/widgets/tutorials/addressbook/part2.py +0 -146
- venv/Lib/site-packages/PySide6/examples/widgets/tutorials/addressbook/part3.py +0 -215
- venv/Lib/site-packages/PySide6/examples/widgets/tutorials/addressbook/part4.py +0 -272
- venv/Lib/site-packages/PySide6/examples/widgets/tutorials/addressbook/part5.py +0 -332
- venv/Lib/site-packages/PySide6/examples/widgets/tutorials/addressbook/part6.py +0 -396
- venv/Lib/site-packages/PySide6/examples/widgets/tutorials/addressbook/part7.py +0 -448
- venv/Lib/site-packages/PySide6/examples/widgets/tutorials/cannon/t1.py +0 -20
- venv/Lib/site-packages/PySide6/examples/widgets/tutorials/cannon/t10.py +0 -152
- venv/Lib/site-packages/PySide6/examples/widgets/tutorials/cannon/t11.py +0 -224
- venv/Lib/site-packages/PySide6/examples/widgets/tutorials/cannon/t12.py +0 -275
- venv/Lib/site-packages/PySide6/examples/widgets/tutorials/cannon/t13.py +0 -356
- venv/Lib/site-packages/PySide6/examples/widgets/tutorials/cannon/t14.py +0 -409
- venv/Lib/site-packages/PySide6/examples/widgets/tutorials/cannon/t2.py +0 -23
- venv/Lib/site-packages/PySide6/examples/widgets/tutorials/cannon/t3.py +0 -25
- venv/Lib/site-packages/PySide6/examples/widgets/tutorials/cannon/t4.py +0 -30
- venv/Lib/site-packages/PySide6/examples/widgets/tutorials/cannon/t5.py +0 -41
- venv/Lib/site-packages/PySide6/examples/widgets/tutorials/cannon/t6.py +0 -51
- venv/Lib/site-packages/PySide6/examples/widgets/tutorials/cannon/t7.py +0 -73
- venv/Lib/site-packages/PySide6/examples/widgets/tutorials/cannon/t8.py +0 -116
- venv/Lib/site-packages/PySide6/examples/widgets/tutorials/cannon/t9.py +0 -122
- venv/Lib/site-packages/PySide6/examples/widgets/tutorials/modelview/1_readonly.py +0 -38
- venv/Lib/site-packages/PySide6/examples/widgets/tutorials/modelview/2_formatting.py +0 -65
- venv/Lib/site-packages/PySide6/examples/widgets/tutorials/modelview/3_changingmodel.py +0 -52
- venv/Lib/site-packages/PySide6/examples/widgets/tutorials/modelview/4_headers.py +0 -43
- venv/Lib/site-packages/PySide6/examples/widgets/tutorials/modelview/5_edit.py +0 -73
- venv/Lib/site-packages/PySide6/examples/widgets/tutorials/modelview/6_treeview.py +0 -41
- venv/Lib/site-packages/PySide6/examples/widgets/tutorials/modelview/7_selections.py +0 -70
- venv/Lib/site-packages/PySide6/examples/widgets/widgets/charactermap/characterwidget.py +0 -133
- venv/Lib/site-packages/PySide6/examples/widgets/widgets/charactermap/fontinfodialog.py +0 -47
- venv/Lib/site-packages/PySide6/examples/widgets/widgets/charactermap/main.py +0 -17
- venv/Lib/site-packages/PySide6/examples/widgets/widgets/charactermap/mainwindow.py +0 -167
- venv/Lib/site-packages/PySide6/examples/widgets/widgets/digitalclock/digitalclock.py +0 -41
- venv/Lib/site-packages/PySide6/examples/widgets/widgets/tetrix/tetrix.py +0 -471
- venv/Lib/site-packages/PySide6/examples/widgets/widgetsgallery/main.py +0 -17
- venv/Lib/site-packages/PySide6/examples/widgets/widgetsgallery/widgetgallery.py +0 -402
- venv/Lib/site-packages/PySide6/examples/xml/dombookmarks/dombookmarks.py +0 -228
- venv/Lib/site-packages/PySide6/scripts/deploy/__init__.py +0 -7
- venv/Lib/site-packages/PySide6/scripts/deploy/commands.py +0 -31
- venv/Lib/site-packages/PySide6/scripts/deploy/config.py +0 -226
- venv/Lib/site-packages/PySide6/scripts/deploy/nuitka_helper.py +0 -51
- venv/Lib/site-packages/PySide6/scripts/deploy/python_helper.py +0 -83
- venv/Lib/site-packages/PySide6/scripts/deploy.py +0 -190
- venv/Lib/site-packages/PySide6/scripts/metaobjectdump.py +0 -406
- venv/Lib/site-packages/PySide6/scripts/project/__init__.py +0 -25
- venv/Lib/site-packages/PySide6/scripts/project/newproject.py +0 -165
- venv/Lib/site-packages/PySide6/scripts/project/project_data.py +0 -215
- venv/Lib/site-packages/PySide6/scripts/project/utils.py +0 -105
- venv/Lib/site-packages/PySide6/scripts/project.py +0 -240
- venv/Lib/site-packages/PySide6/scripts/pyside_tool.py +0 -201
- venv/Lib/site-packages/PySide6/scripts/qml.py +0 -246
- venv/Lib/site-packages/PySide6/scripts/qtpy2cpp.py +0 -62
- venv/Lib/site-packages/PySide6/scripts/qtpy2cpp_lib/astdump.py +0 -111
- venv/Lib/site-packages/PySide6/scripts/qtpy2cpp_lib/formatter.py +0 -265
- venv/Lib/site-packages/PySide6/scripts/qtpy2cpp_lib/nodedump.py +0 -50
- venv/Lib/site-packages/PySide6/scripts/qtpy2cpp_lib/qt.py +0 -56
- venv/Lib/site-packages/PySide6/scripts/qtpy2cpp_lib/tokenizer.py +0 -55
- venv/Lib/site-packages/PySide6/scripts/qtpy2cpp_lib/visitor.py +0 -443
- venv/Lib/site-packages/PySide6/support/__init__.py +0 -6
- venv/Lib/site-packages/PySide6/support/deprecated.py +0 -97
- venv/Lib/site-packages/PySide6/support/generate_pyi.py +0 -92
- venv/Lib/site-packages/_distutils_hack/__init__.py +0 -222
- venv/Lib/site-packages/_distutils_hack/override.py +0 -1
- venv/Lib/site-packages/_pyinstaller_hooks_contrib/__init__.py +0 -15
- venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/__init__.py +0 -23
- venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/pre_find_module_path/__init__.py +0 -11
- venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/pre_safe_import_module/__init__.py +0 -11
- venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/pre_safe_import_module/hook-tensorflow.py +0 -23
- venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/pre_safe_import_module/hook-win32com.py +0 -47
- venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/rthooks/__init__.py +0 -26
- venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/rthooks/pyi_rth_enchant.py +0 -22
- venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/rthooks/pyi_rth_nltk.py +0 -18
- venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/rthooks/pyi_rth_osgeo.py +0 -32
- venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/rthooks/pyi_rth_pygraphviz.py +0 -31
- venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/rthooks/pyi_rth_pyproj.py +0 -26
- venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/rthooks/pyi_rth_pyqtgraph_multiprocess.py +0 -51
- venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/rthooks/pyi_rth_pythoncom.py +0 -24
- venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/rthooks/pyi_rth_pywintypes.py +0 -24
- venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/rthooks/pyi_rth_traitlets.py +0 -24
- venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/rthooks/pyi_rth_usb.py +0 -74
- venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/__init__.py +0 -31
- venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-BTrees.py +0 -17
- venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-Crypto.py +0 -63
- venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-Cryptodome.py +0 -45
- venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-HtmlTestRunner.py +0 -17
- venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-IPython.py +0 -34
- venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-OpenGL.py +0 -70
- venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-OpenGL_accelerate.py +0 -25
- venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-Xlib.py +0 -16
- venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-_mssql.py +0 -13
- venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-_mysql.py +0 -18
- venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-accessible_output2.py +0 -19
- venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-adbutils.py +0 -16
- venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-adios.py +0 -19
- venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-afmformats.py +0 -17
- venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-aliyunsdkcore.py +0 -14
- venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-altair.py +0 -15
- venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-amazonproduct.py +0 -29
- venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-anyio.py +0 -20
- venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-appdirs.py +0 -23
- venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-appy.pod.py +0 -17
- venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-apscheduler.py +0 -28
- venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-argon2.py +0 -13
- venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-astor.py +0 -15
- venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-astroid.py +0 -48
- venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-astropy.py +0 -42
- venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-av.py +0 -35
- venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-avro.py +0 -28
- venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-azurerm.py +0 -22
- venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-backports.zoneinfo.py +0 -18
- venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-bacon.py +0 -49
- venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-bcrypt.py +0 -19
- venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-bleak.py +0 -19
- venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-blspy.py +0 -36
- venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-bokeh.py +0 -24
- venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-boto.py +0 -25
- venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-boto3.py +0 -29
- venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-botocore.py +0 -30
- venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-branca.py +0 -15
- venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-cairocffi.py +0 -40
- venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-cairosvg.py +0 -40
- venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-cassandra.py +0 -22
- venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-certifi.py +0 -21
- venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-cf_units.py +0 -16
- venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-cftime.py +0 -21
- venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-charset_normalizer.py +0 -16
- venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-cloudscraper.py +0 -15
- venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-clr.py +0 -62
- venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-clr_loader.py +0 -24
- venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-compliance_checker.py +0 -22
- venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-countrycode.py +0 -15
- venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-countryinfo.py +0 -15
- venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-cryptography.py +0 -44
- venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-cv2.py +0 -74
- venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-cx_Oracle.py +0 -15
- venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-cytoolz.itertoolz.py +0 -16
- venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-dash.py +0 -15
- venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-dash_bootstrap_components.py +0 -15
- venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-dash_core_components.py +0 -15
- venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-dash_html_components.py +0 -15
- venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-dash_renderer.py +0 -15
- venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-dash_table.py +0 -15
- venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-dash_uploader.py +0 -15
- venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-dask.py +0 -18
- venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-dateparser.utils.strptime.py +0 -17
- venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-dclab.py +0 -17
- venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-discid.py +0 -41
- venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-distorm3.py +0 -20
- venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-dns.rdata.py +0 -17
- venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-docutils.py +0 -20
- venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-docx.py +0 -17
- venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-docx2pdf.py +0 -20
- venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-dynaconf.py +0 -15
- venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-easyocr.py +0 -18
- venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-eel.py +0 -16
- venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-enchant.py +0 -64
- venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-enzyme.parsers.ebml.core.py +0 -26
- venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-eth_abi.py +0 -15
- venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-eth_account.py +0 -15
- venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-eth_hash.py +0 -16
- venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-eth_keyfile.py +0 -15
- venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-eth_utils.py +0 -15
- venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-exchangelib.py +0 -12
- venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-fabric.py +0 -22
- venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-faker.py +0 -19
- venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-ffpyplayer.py +0 -19
- venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-fiona.py +0 -17
- venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-flask_compress.py +0 -15
- venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-flask_restx.py +0 -13
- venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-flex.py +0 -17
- venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-flirpy.py +0 -19
- venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-fmpy.py +0 -27
- venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-folium.py +0 -16
- venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-gadfly.py +0 -14
- venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-gcloud.py +0 -15
- venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-geopandas.py +0 -17
- venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-gitlab.py +0 -22
- venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-gmplot.py +0 -15
- venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-gooey.py +0 -19
- venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-google.api.py +0 -14
- venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-google.api_core.py +0 -14
- venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-google.cloud.bigquery.py +0 -16
- venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-google.cloud.kms_v1.py +0 -18
- venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-google.cloud.pubsub_v1.py +0 -14
- venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-google.cloud.py +0 -14
- venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-google.cloud.speech.py +0 -14
- venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-google.cloud.storage.py +0 -14
- venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-google.cloud.translate.py +0 -14
- venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-googleapiclient.model.py +0 -20
- venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-great_expectations.py +0 -15
- venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-grpc.py +0 -14
- venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-gst._gst.py +0 -48
- venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-gtk.py +0 -17
- venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-h5py.py +0 -19
- venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-hdf5plugin.py +0 -17
- venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-httplib2.py +0 -17
- venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-humanize.py +0 -24
- venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-hydra.py +0 -19
- venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-ijson.py +0 -14
- venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-imageio.py +0 -21
- venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-imageio_ffmpeg.py +0 -17
- venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-iminuit.py +0 -25
- venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-jaraco.text.py +0 -17
- venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-jedi.py +0 -17
- venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-jinja2.py +0 -14
- venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-jinxed.py +0 -15
- venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-jira.py +0 -20
- venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-jsonpath_rw_ext.py +0 -15
- venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-jsonrpcserver.py +0 -17
- venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-jsonschema.py +0 -18
- venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-jupyterlab.py +0 -15
- venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-kaleido.py +0 -15
- venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-kinterbasdb.py +0 -20
- venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-langcodes.py +0 -15
- venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-langdetect.py +0 -15
- venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-lark.py +0 -15
- venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-ldfparser.py +0 -15
- venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-lensfunpy.py +0 -16
- venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-libaudioverse.py +0 -19
- venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-lightgbm.py +0 -27
- venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-limits.py +0 -15
- venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-llvmlite.py +0 -21
- venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-logilab.py +0 -26
- venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-lxml.etree.py +0 -14
- venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-lxml.isoschematron.py +0 -17
- venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-lxml.objectify.py +0 -14
- venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-lxml.py +0 -20
- venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-lz4.py +0 -15
- venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-magic.py +0 -18
- venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-mako.codegen.py +0 -20
- venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-mariadb.py +0 -26
- venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-markdown.py +0 -28
- venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-metpy.py +0 -21
- venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-migrate.py +0 -19
- venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-mimesis.py +0 -17
- venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-mnemonic.py +0 -15
- venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-mpl_toolkits.basemap.py +0 -38
- venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-msoffcrypto.py +0 -18
- venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-nacl.py +0 -33
- venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-names.py +0 -18
- venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-nanite.py +0 -17
- venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-nbconvert.py +0 -18
- venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-nbdime.py +0 -15
- venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-nbformat.py +0 -15
- venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-ncclient.py +0 -27
- venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-netCDF4.py +0 -22
- venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-nltk.py +0 -28
- venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-nnpy.py +0 -19
- venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-notebook.py +0 -27
- venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-numba.py +0 -20
- venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-numcodecs.py +0 -14
- venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-office365.py +0 -19
- venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-openpyxl.py +0 -18
- venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-orjson.py +0 -21
- venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-osgeo.py +0 -82
- venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-pandas_flavor.py +0 -15
- venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-panel.py +0 -18
- venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-parsedatetime.py +0 -29
- venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-parso.py +0 -14
- venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-passlib.py +0 -21
- venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-paste.exceptions.reporter.py +0 -20
- venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-patsy.py +0 -13
- venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-pdfminer.py +0 -15
- venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-pendulum.py +0 -20
- venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-phonenumbers.py +0 -19
- venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-pingouin.py +0 -14
- venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-pint.py +0 -18
- venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-pinyin.py +0 -20
- venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-platformdirs.py +0 -27
- venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-plotly.py +0 -17
- venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-prettytable.py +0 -14
- venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-psychopy.py +0 -16
- venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-psycopg2.py +0 -14
- venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-publicsuffix2.py +0 -15
- venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-pubsub.core.py +0 -15
- venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-puremagic.py +0 -15
- venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-py.py +0 -15
- venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-pyarrow.py +0 -24
- venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-pycountry.py +0 -18
- venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-pycparser.py +0 -23
- venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-pydantic.py +0 -44
- venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-pydivert.py +0 -15
- venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-pyexcel-io.py +0 -17
- venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-pyexcel-ods.py +0 -17
- venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-pyexcel-ods3.py +0 -17
- venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-pyexcel-odsr.py +0 -17
- venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-pyexcel-xls.py +0 -17
- venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-pyexcel-xlsx.py +0 -17
- venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-pyexcel-xlsxw.py +0 -17
- venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-pyexcel.py +0 -30
- venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-pyexcel_io.py +0 -27
- venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-pyexcel_ods.py +0 -17
- venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-pyexcel_ods3.py +0 -17
- venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-pyexcel_odsr.py +0 -17
- venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-pyexcel_xls.py +0 -17
- venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-pyexcel_xlsx.py +0 -17
- venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-pyexcel_xlsxw.py +0 -17
- venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-pyexcelerate.Writer.py +0 -14
- venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-pygraphviz.py +0 -66
- venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-pylint.py +0 -74
- venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-pymediainfo.py +0 -43
- venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-pymssql.py +0 -20
- venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-pynput.py +0 -14
- venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-pyodbc.py +0 -21
- venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-pyopencl.py +0 -17
- venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-pypemicro.py +0 -43
- venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-pyphen.py +0 -15
- venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-pyppeteer.py +0 -16
- venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-pyproj.py +0 -63
- venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-pypsexec.py +0 -18
- venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-pypylon.py +0 -40
- venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-pyqtgraph.py +0 -40
- venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-pyshark.py +0 -24
- venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-pysnmp.py +0 -16
- venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-pystray.py +0 -16
- venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-pytest.py +0 -19
- venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-pythoncom.py +0 -31
- venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-pyttsx.py +0 -26
- venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-pyttsx3.py +0 -30
- venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-pyviz_comms.py +0 -15
- venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-pyvjoy.py +0 -14
- venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-pywintypes.py +0 -31
- venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-pywt.py +0 -21
- venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-qtmodern.py +0 -15
- venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-radicale.py +0 -16
- venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-raven.py +0 -14
- venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-rawpy.py +0 -16
- venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-rdflib.py +0 -16
- venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-redmine.py +0 -14
- venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-regex.py +0 -14
- venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-reportlab.lib.utils.py +0 -17
- venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-reportlab.pdfbase._fontdata.py +0 -18
- venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-resampy.py +0 -17
- venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-rpy2.py +0 -19
- venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-rtree.py +0 -18
- venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-sacremoses.py +0 -15
- venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-selenium.py +0 -16
- venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-sentry_sdk.py +0 -40
- venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-shapely.py +0 -106
- venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-shotgun_api3.py +0 -23
- venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-skimage.feature.py +0 -15
- venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-skimage.filters.py +0 -18
- venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-skimage.graph.py +0 -15
- venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-skimage.io.py +0 -20
- venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-skimage.transform.py +0 -21
- venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-sklearn.cluster.py +0 -18
- venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-sklearn.linear_model.py +0 -18
- venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-sklearn.metrics.cluster.py +0 -27
- venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-sklearn.metrics.pairwise.py +0 -21
- venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-sklearn.metrics.py +0 -19
- venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-sklearn.neighbors.py +0 -36
- venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-sklearn.py +0 -16
- venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-sklearn.tree.py +0 -13
- venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-sklearn.utils.py +0 -13
- venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-sound_lib.py +0 -19
- venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-sounddevice.py +0 -63
- venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-soundfile.py +0 -63
- venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-spacy.py +0 -19
- venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-speech_recognition.py +0 -18
- venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-spiceypy.py +0 -18
- venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-spnego.py +0 -15
- venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-srsly.msgpack._packer.py +0 -17
- venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-statsmodels.tsa.statespace.py +0 -16
- venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-stdnum.py +0 -15
- venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-storm.database.py +0 -23
- venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-sunpy.py +0 -20
- venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-swagger_spec_validator.py +0 -15
- venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-tableauhyperapi.py +0 -15
- venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-tables.py +0 -15
- venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-tcod.py +0 -20
- venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-tensorflow.py +0 -79
- venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-text_unidecode.py +0 -27
- venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-textdistance.py +0 -17
- venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-thinc.backends.numpy_ops.py +0 -17
- venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-thinc.py +0 -18
- venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-timezonefinder.py +0 -15
- venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-tinycss2.py +0 -23
- venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-torch.py +0 -15
- venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-torchvision.ops.py +0 -15
- venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-trimesh.py +0 -17
- venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-ttkthemes.py +0 -57
- venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-ttkwidgets.py +0 -39
- venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-tzdata.py +0 -22
- venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-u1db.py +0 -32
- venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-umap.py +0 -16
- venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-unidecode.py +0 -21
- venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-uniseg.py +0 -16
- venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-usb.py +0 -89
- venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-uvicorn.py +0 -15
- venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-uvloop.py +0 -19
- venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-vtkpython.py +0 -18
- venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-wavefile.py +0 -19
- venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-weasyprint.py +0 -85
- venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-web3.py +0 -15
- venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-webassets.py +0 -14
- venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-webrtcvad.py +0 -15
- venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-websockets.py +0 -16
- venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-webview.py +0 -20
- venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-win32com.py +0 -21
- venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-workflow.py +0 -14
- venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-wx.lib.activex.py +0 -17
- venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-wx.lib.pubsub.py +0 -28
- venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-wx.xrc.py +0 -13
- venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-xml.dom.html.HTMLDocument.py +0 -68
- venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-xml.sax.saxexts.py +0 -26
- venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-xmldiff.py +0 -15
- venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-xsge_gui.py +0 -17
- venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-yt_dlp.py +0 -17
- venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-zeep.py +0 -17
- venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-zmq.py +0 -65
- venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-zoneinfo.py +0 -18
- venv/Lib/site-packages/_pyinstaller_hooks_contrib/tests/__init__.py +0 -28
- venv/Lib/site-packages/_pyinstaller_hooks_contrib/tests/conftest.py +0 -13
- venv/Lib/site-packages/_pyinstaller_hooks_contrib/tests/scripts/pyi_lib_boto.py +0 -45
- venv/Lib/site-packages/_pyinstaller_hooks_contrib/tests/scripts/pyi_lib_enchant.py +0 -43
- venv/Lib/site-packages/_pyinstaller_hooks_contrib/tests/scripts/pyi_lib_pycparser.py +0 -54
- venv/Lib/site-packages/_pyinstaller_hooks_contrib/tests/scripts/pyi_lib_tensorflow_layer.py +0 -36
- venv/Lib/site-packages/_pyinstaller_hooks_contrib/tests/scripts/pyi_lib_tensorflow_mnist.py +0 -51
- venv/Lib/site-packages/_pyinstaller_hooks_contrib/tests/test_libraries.py +0 -1479
- venv/Lib/site-packages/_virtualenv.py +0 -130
- venv/Lib/site-packages/altgraph/Dot.py +0 -321
- venv/Lib/site-packages/altgraph/Graph.py +0 -682
- venv/Lib/site-packages/altgraph/GraphAlgo.py +0 -171
- venv/Lib/site-packages/altgraph/GraphStat.py +0 -73
- venv/Lib/site-packages/altgraph/GraphUtil.py +0 -139
- venv/Lib/site-packages/altgraph/ObjectGraph.py +0 -212
- venv/Lib/site-packages/altgraph/__init__.py +0 -148
- venv/Lib/site-packages/bleach/__init__.py +0 -125
- venv/Lib/site-packages/bleach/_vendor/html5lib/__init__.py +0 -35
- venv/Lib/site-packages/bleach/_vendor/html5lib/_ihatexml.py +0 -289
- venv/Lib/site-packages/bleach/_vendor/html5lib/_inputstream.py +0 -918
- venv/Lib/site-packages/bleach/_vendor/html5lib/_tokenizer.py +0 -1735
- venv/Lib/site-packages/bleach/_vendor/html5lib/_trie/__init__.py +0 -5
- venv/Lib/site-packages/bleach/_vendor/html5lib/_trie/_base.py +0 -40
- venv/Lib/site-packages/bleach/_vendor/html5lib/_trie/py.py +0 -67
- venv/Lib/site-packages/bleach/_vendor/html5lib/_utils.py +0 -159
- venv/Lib/site-packages/bleach/_vendor/html5lib/constants.py +0 -2946
- venv/Lib/site-packages/bleach/_vendor/html5lib/filters/__init__.py +0 -0
- venv/Lib/site-packages/bleach/_vendor/html5lib/filters/alphabeticalattributes.py +0 -29
- venv/Lib/site-packages/bleach/_vendor/html5lib/filters/base.py +0 -12
- venv/Lib/site-packages/bleach/_vendor/html5lib/filters/inject_meta_charset.py +0 -73
- venv/Lib/site-packages/bleach/_vendor/html5lib/filters/lint.py +0 -93
- venv/Lib/site-packages/bleach/_vendor/html5lib/filters/optionaltags.py +0 -207
- venv/Lib/site-packages/bleach/_vendor/html5lib/filters/sanitizer.py +0 -916
- venv/Lib/site-packages/bleach/_vendor/html5lib/filters/whitespace.py +0 -38
- venv/Lib/site-packages/bleach/_vendor/html5lib/html5parser.py +0 -2795
- venv/Lib/site-packages/bleach/_vendor/html5lib/serializer.py +0 -409
- venv/Lib/site-packages/bleach/_vendor/html5lib/treeadapters/__init__.py +0 -30
- venv/Lib/site-packages/bleach/_vendor/html5lib/treeadapters/genshi.py +0 -54
- venv/Lib/site-packages/bleach/_vendor/html5lib/treeadapters/sax.py +0 -50
- venv/Lib/site-packages/bleach/_vendor/html5lib/treebuilders/__init__.py +0 -88
- venv/Lib/site-packages/bleach/_vendor/html5lib/treebuilders/base.py +0 -417
- venv/Lib/site-packages/bleach/_vendor/html5lib/treebuilders/dom.py +0 -239
- venv/Lib/site-packages/bleach/_vendor/html5lib/treebuilders/etree.py +0 -343
- venv/Lib/site-packages/bleach/_vendor/html5lib/treebuilders/etree_lxml.py +0 -392
- venv/Lib/site-packages/bleach/_vendor/html5lib/treewalkers/__init__.py +0 -154
- venv/Lib/site-packages/bleach/_vendor/html5lib/treewalkers/base.py +0 -252
- venv/Lib/site-packages/bleach/_vendor/html5lib/treewalkers/dom.py +0 -43
- venv/Lib/site-packages/bleach/_vendor/html5lib/treewalkers/etree.py +0 -131
- venv/Lib/site-packages/bleach/_vendor/html5lib/treewalkers/etree_lxml.py +0 -215
- venv/Lib/site-packages/bleach/_vendor/html5lib/treewalkers/genshi.py +0 -69
- venv/Lib/site-packages/bleach/_vendor/parse.py +0 -1078
- venv/Lib/site-packages/bleach/callbacks.py +0 -32
- venv/Lib/site-packages/bleach/css_sanitizer.py +0 -104
- venv/Lib/site-packages/bleach/html5lib_shim.py +0 -741
- venv/Lib/site-packages/bleach/linkifier.py +0 -633
- venv/Lib/site-packages/bleach/parse_shim.py +0 -1
- venv/Lib/site-packages/bleach/sanitizer.py +0 -638
- venv/Lib/site-packages/build/__init__.py +0 -511
- venv/Lib/site-packages/build/__main__.py +0 -399
- venv/Lib/site-packages/build/env.py +0 -343
- venv/Lib/site-packages/build/util.py +0 -61
- venv/Lib/site-packages/certifi/__init__.py +0 -4
- venv/Lib/site-packages/certifi/__main__.py +0 -12
- venv/Lib/site-packages/certifi/core.py +0 -108
- venv/Lib/site-packages/charset_normalizer/__init__.py +0 -45
- venv/Lib/site-packages/charset_normalizer/api.py +0 -553
- venv/Lib/site-packages/charset_normalizer/assets/__init__.py +0 -1440
- venv/Lib/site-packages/charset_normalizer/cd.py +0 -391
- venv/Lib/site-packages/charset_normalizer/cli/__init__.py +0 -0
- venv/Lib/site-packages/charset_normalizer/cli/normalizer.py +0 -298
- venv/Lib/site-packages/charset_normalizer/constant.py +0 -495
- venv/Lib/site-packages/charset_normalizer/legacy.py +0 -43
- venv/Lib/site-packages/charset_normalizer/md.py +0 -571
- venv/Lib/site-packages/charset_normalizer/models.py +0 -337
- venv/Lib/site-packages/charset_normalizer/utils.py +0 -418
- venv/Lib/site-packages/charset_normalizer/version.py +0 -6
- venv/Lib/site-packages/colorama/__init__.py +0 -7
- venv/Lib/site-packages/colorama/ansi.py +0 -102
- venv/Lib/site-packages/colorama/ansitowin32.py +0 -277
- venv/Lib/site-packages/colorama/initialise.py +0 -121
- venv/Lib/site-packages/colorama/tests/__init__.py +0 -1
- venv/Lib/site-packages/colorama/tests/ansi_test.py +0 -76
- venv/Lib/site-packages/colorama/tests/ansitowin32_test.py +0 -294
- venv/Lib/site-packages/colorama/tests/initialise_test.py +0 -189
- venv/Lib/site-packages/colorama/tests/isatty_test.py +0 -57
- venv/Lib/site-packages/colorama/tests/utils.py +0 -49
- venv/Lib/site-packages/colorama/tests/winterm_test.py +0 -131
- venv/Lib/site-packages/colorama/win32.py +0 -180
- venv/Lib/site-packages/colorama/winterm.py +0 -195
- venv/Lib/site-packages/commonmark/__init__.py +0 -8
- venv/Lib/site-packages/commonmark/blocks.py +0 -908
- venv/Lib/site-packages/commonmark/cmark.py +0 -53
- venv/Lib/site-packages/commonmark/common.py +0 -113
- venv/Lib/site-packages/commonmark/dump.py +0 -108
- venv/Lib/site-packages/commonmark/entitytrans.py +0 -2353
- venv/Lib/site-packages/commonmark/inlines.py +0 -882
- venv/Lib/site-packages/commonmark/main.py +0 -41
- venv/Lib/site-packages/commonmark/node.py +0 -179
- venv/Lib/site-packages/commonmark/normalize_reference.py +0 -165
- venv/Lib/site-packages/commonmark/render/__init__.py +0 -0
- venv/Lib/site-packages/commonmark/render/html.py +0 -228
- venv/Lib/site-packages/commonmark/render/renderer.py +0 -43
- venv/Lib/site-packages/commonmark/render/rst.py +0 -159
- venv/Lib/site-packages/commonmark/tests/__init__.py +0 -0
- venv/Lib/site-packages/commonmark/tests/rst_tests.py +0 -172
- venv/Lib/site-packages/commonmark/tests/run_spec_tests.py +0 -242
- venv/Lib/site-packages/commonmark/tests/unit_tests.py +0 -157
- venv/Lib/site-packages/docutils/__init__.py +0 -284
- venv/Lib/site-packages/docutils/__main__.py +0 -96
- venv/Lib/site-packages/docutils/core.py +0 -714
- venv/Lib/site-packages/docutils/examples.py +0 -99
- venv/Lib/site-packages/docutils/frontend.py +0 -951
- venv/Lib/site-packages/docutils/io.py +0 -611
- venv/Lib/site-packages/docutils/languages/__init__.py +0 -83
- venv/Lib/site-packages/docutils/languages/af.py +0 -58
- venv/Lib/site-packages/docutils/languages/ar.py +0 -60
- venv/Lib/site-packages/docutils/languages/ca.py +0 -60
- venv/Lib/site-packages/docutils/languages/cs.py +0 -60
- venv/Lib/site-packages/docutils/languages/da.py +0 -61
- venv/Lib/site-packages/docutils/languages/de.py +0 -58
- venv/Lib/site-packages/docutils/languages/en.py +0 -60
- venv/Lib/site-packages/docutils/languages/eo.py +0 -61
- venv/Lib/site-packages/docutils/languages/es.py +0 -58
- venv/Lib/site-packages/docutils/languages/fa.py +0 -60
- venv/Lib/site-packages/docutils/languages/fi.py +0 -60
- venv/Lib/site-packages/docutils/languages/fr.py +0 -58
- venv/Lib/site-packages/docutils/languages/gl.py +0 -62
- venv/Lib/site-packages/docutils/languages/he.py +0 -61
- venv/Lib/site-packages/docutils/languages/it.py +0 -58
- venv/Lib/site-packages/docutils/languages/ja.py +0 -60
- venv/Lib/site-packages/docutils/languages/ko.py +0 -60
- venv/Lib/site-packages/docutils/languages/lt.py +0 -60
- venv/Lib/site-packages/docutils/languages/lv.py +0 -59
- venv/Lib/site-packages/docutils/languages/nl.py +0 -60
- venv/Lib/site-packages/docutils/languages/pl.py +0 -60
- venv/Lib/site-packages/docutils/languages/pt_br.py +0 -60
- venv/Lib/site-packages/docutils/languages/ru.py +0 -58
- venv/Lib/site-packages/docutils/languages/sk.py +0 -58
- venv/Lib/site-packages/docutils/languages/sv.py +0 -59
- venv/Lib/site-packages/docutils/languages/zh_cn.py +0 -66
- venv/Lib/site-packages/docutils/languages/zh_tw.py +0 -65
- venv/Lib/site-packages/docutils/nodes.py +0 -2314
- venv/Lib/site-packages/docutils/parsers/__init__.py +0 -92
- venv/Lib/site-packages/docutils/parsers/commonmark_wrapper.py +0 -56
- venv/Lib/site-packages/docutils/parsers/null.py +0 -20
- venv/Lib/site-packages/docutils/parsers/recommonmark_wrapper.py +0 -136
- venv/Lib/site-packages/docutils/parsers/rst/__init__.py +0 -414
- venv/Lib/site-packages/docutils/parsers/rst/directives/__init__.py +0 -460
- venv/Lib/site-packages/docutils/parsers/rst/directives/admonitions.py +0 -99
- venv/Lib/site-packages/docutils/parsers/rst/directives/body.py +0 -304
- venv/Lib/site-packages/docutils/parsers/rst/directives/html.py +0 -21
- venv/Lib/site-packages/docutils/parsers/rst/directives/images.py +0 -163
- venv/Lib/site-packages/docutils/parsers/rst/directives/misc.py +0 -635
- venv/Lib/site-packages/docutils/parsers/rst/directives/parts.py +0 -126
- venv/Lib/site-packages/docutils/parsers/rst/directives/references.py +0 -29
- venv/Lib/site-packages/docutils/parsers/rst/directives/tables.py +0 -513
- venv/Lib/site-packages/docutils/parsers/rst/languages/__init__.py +0 -40
- venv/Lib/site-packages/docutils/parsers/rst/languages/af.py +0 -107
- venv/Lib/site-packages/docutils/parsers/rst/languages/ar.py +0 -99
- venv/Lib/site-packages/docutils/parsers/rst/languages/ca.py +0 -126
- venv/Lib/site-packages/docutils/parsers/rst/languages/cs.py +0 -110
- venv/Lib/site-packages/docutils/parsers/rst/languages/da.py +0 -113
- venv/Lib/site-packages/docutils/parsers/rst/languages/de.py +0 -106
- venv/Lib/site-packages/docutils/parsers/rst/languages/en.py +0 -111
- venv/Lib/site-packages/docutils/parsers/rst/languages/eo.py +0 -118
- venv/Lib/site-packages/docutils/parsers/rst/languages/es.py +0 -122
- venv/Lib/site-packages/docutils/parsers/rst/languages/fa.py +0 -102
- venv/Lib/site-packages/docutils/parsers/rst/languages/fi.py +0 -98
- venv/Lib/site-packages/docutils/parsers/rst/languages/fr.py +0 -104
- venv/Lib/site-packages/docutils/parsers/rst/languages/gl.py +0 -111
- venv/Lib/site-packages/docutils/parsers/rst/languages/he.py +0 -109
- venv/Lib/site-packages/docutils/parsers/rst/languages/it.py +0 -98
- venv/Lib/site-packages/docutils/parsers/rst/languages/ja.py +0 -119
- venv/Lib/site-packages/docutils/parsers/rst/languages/ko.py +0 -111
- venv/Lib/site-packages/docutils/parsers/rst/languages/lt.py +0 -109
- venv/Lib/site-packages/docutils/parsers/rst/languages/lv.py +0 -108
- venv/Lib/site-packages/docutils/parsers/rst/languages/nl.py +0 -113
- venv/Lib/site-packages/docutils/parsers/rst/languages/pl.py +0 -100
- venv/Lib/site-packages/docutils/parsers/rst/languages/pt_br.py +0 -109
- venv/Lib/site-packages/docutils/parsers/rst/languages/ru.py +0 -90
- venv/Lib/site-packages/docutils/parsers/rst/languages/sk.py +0 -96
- venv/Lib/site-packages/docutils/parsers/rst/languages/sv.py +0 -96
- venv/Lib/site-packages/docutils/parsers/rst/languages/zh_cn.py +0 -104
- venv/Lib/site-packages/docutils/parsers/rst/languages/zh_tw.py +0 -109
- venv/Lib/site-packages/docutils/parsers/rst/roles.py +0 -439
- venv/Lib/site-packages/docutils/parsers/rst/states.py +0 -3135
- venv/Lib/site-packages/docutils/parsers/rst/tableparser.py +0 -539
- venv/Lib/site-packages/docutils/readers/__init__.py +0 -113
- venv/Lib/site-packages/docutils/readers/doctree.py +0 -46
- venv/Lib/site-packages/docutils/readers/pep.py +0 -48
- venv/Lib/site-packages/docutils/readers/standalone.py +0 -65
- venv/Lib/site-packages/docutils/statemachine.py +0 -1525
- venv/Lib/site-packages/docutils/transforms/__init__.py +0 -174
- venv/Lib/site-packages/docutils/transforms/components.py +0 -54
- venv/Lib/site-packages/docutils/transforms/frontmatter.py +0 -545
- venv/Lib/site-packages/docutils/transforms/misc.py +0 -144
- venv/Lib/site-packages/docutils/transforms/parts.py +0 -176
- venv/Lib/site-packages/docutils/transforms/peps.py +0 -308
- venv/Lib/site-packages/docutils/transforms/references.py +0 -919
- venv/Lib/site-packages/docutils/transforms/universal.py +0 -338
- venv/Lib/site-packages/docutils/transforms/writer_aux.py +0 -99
- venv/Lib/site-packages/docutils/utils/__init__.py +0 -821
- venv/Lib/site-packages/docutils/utils/code_analyzer.py +0 -138
- venv/Lib/site-packages/docutils/utils/error_reporting.py +0 -222
- venv/Lib/site-packages/docutils/utils/math/__init__.py +0 -52
- venv/Lib/site-packages/docutils/utils/math/latex2mathml.py +0 -1430
- venv/Lib/site-packages/docutils/utils/math/math2html.py +0 -3171
- venv/Lib/site-packages/docutils/utils/math/tex2mathml_extern.py +0 -152
- venv/Lib/site-packages/docutils/utils/math/tex2unichar.py +0 -704
- venv/Lib/site-packages/docutils/utils/math/unichar2tex.py +0 -808
- venv/Lib/site-packages/docutils/utils/punctuation_chars.py +0 -122
- venv/Lib/site-packages/docutils/utils/roman.py +0 -86
- venv/Lib/site-packages/docutils/utils/smartquotes.py +0 -991
- venv/Lib/site-packages/docutils/utils/urischemes.py +0 -138
- venv/Lib/site-packages/docutils/writers/__init__.py +0 -151
- venv/Lib/site-packages/docutils/writers/_html_base.py +0 -1781
- venv/Lib/site-packages/docutils/writers/docutils_xml.py +0 -188
- venv/Lib/site-packages/docutils/writers/html4css1/__init__.py +0 -947
- venv/Lib/site-packages/docutils/writers/html5_polyglot/__init__.py +0 -454
- venv/Lib/site-packages/docutils/writers/latex2e/__init__.py +0 -3295
- venv/Lib/site-packages/docutils/writers/manpage.py +0 -1181
- venv/Lib/site-packages/docutils/writers/null.py +0 -21
- venv/Lib/site-packages/docutils/writers/odf_odt/__init__.py +0 -3468
- venv/Lib/site-packages/docutils/writers/odf_odt/pygmentsformatter.py +0 -109
- venv/Lib/site-packages/docutils/writers/pep_html/__init__.py +0 -103
- venv/Lib/site-packages/docutils/writers/pseudoxml.py +0 -40
- venv/Lib/site-packages/docutils/writers/s5_html/__init__.py +0 -352
- venv/Lib/site-packages/docutils/writers/xetex/__init__.py +0 -149
- venv/Lib/site-packages/future/__init__.py +0 -93
- venv/Lib/site-packages/future/backports/__init__.py +0 -26
- venv/Lib/site-packages/future/backports/_markupbase.py +0 -422
- venv/Lib/site-packages/future/backports/datetime.py +0 -2152
- venv/Lib/site-packages/future/backports/email/__init__.py +0 -78
- venv/Lib/site-packages/future/backports/email/_encoded_words.py +0 -232
- venv/Lib/site-packages/future/backports/email/_header_value_parser.py +0 -2965
- venv/Lib/site-packages/future/backports/email/_parseaddr.py +0 -546
- venv/Lib/site-packages/future/backports/email/_policybase.py +0 -365
- venv/Lib/site-packages/future/backports/email/base64mime.py +0 -121
- venv/Lib/site-packages/future/backports/email/charset.py +0 -409
- venv/Lib/site-packages/future/backports/email/encoders.py +0 -90
- venv/Lib/site-packages/future/backports/email/errors.py +0 -111
- venv/Lib/site-packages/future/backports/email/feedparser.py +0 -525
- venv/Lib/site-packages/future/backports/email/generator.py +0 -498
- venv/Lib/site-packages/future/backports/email/header.py +0 -581
- venv/Lib/site-packages/future/backports/email/headerregistry.py +0 -592
- venv/Lib/site-packages/future/backports/email/iterators.py +0 -74
- venv/Lib/site-packages/future/backports/email/message.py +0 -882
- venv/Lib/site-packages/future/backports/email/mime/__init__.py +0 -0
- venv/Lib/site-packages/future/backports/email/mime/application.py +0 -39
- venv/Lib/site-packages/future/backports/email/mime/audio.py +0 -74
- venv/Lib/site-packages/future/backports/email/mime/base.py +0 -25
- venv/Lib/site-packages/future/backports/email/mime/image.py +0 -48
- venv/Lib/site-packages/future/backports/email/mime/message.py +0 -36
- venv/Lib/site-packages/future/backports/email/mime/multipart.py +0 -49
- venv/Lib/site-packages/future/backports/email/mime/nonmultipart.py +0 -24
- venv/Lib/site-packages/future/backports/email/mime/text.py +0 -44
- venv/Lib/site-packages/future/backports/email/parser.py +0 -135
- venv/Lib/site-packages/future/backports/email/policy.py +0 -193
- venv/Lib/site-packages/future/backports/email/quoprimime.py +0 -326
- venv/Lib/site-packages/future/backports/email/utils.py +0 -400
- venv/Lib/site-packages/future/backports/html/__init__.py +0 -27
- venv/Lib/site-packages/future/backports/html/entities.py +0 -2514
- venv/Lib/site-packages/future/backports/html/parser.py +0 -536
- venv/Lib/site-packages/future/backports/http/__init__.py +0 -0
- venv/Lib/site-packages/future/backports/http/client.py +0 -1346
- venv/Lib/site-packages/future/backports/http/cookiejar.py +0 -2116
- venv/Lib/site-packages/future/backports/http/cookies.py +0 -598
- venv/Lib/site-packages/future/backports/http/server.py +0 -1226
- venv/Lib/site-packages/future/backports/misc.py +0 -958
- venv/Lib/site-packages/future/backports/socket.py +0 -454
- venv/Lib/site-packages/future/backports/socketserver.py +0 -747
- venv/Lib/site-packages/future/backports/test/__init__.py +0 -9
- venv/Lib/site-packages/future/backports/test/pystone.py +0 -272
- venv/Lib/site-packages/future/backports/test/ssl_servers.py +0 -207
- venv/Lib/site-packages/future/backports/test/support.py +0 -2048
- venv/Lib/site-packages/future/backports/total_ordering.py +0 -38
- venv/Lib/site-packages/future/backports/urllib/__init__.py +0 -0
- venv/Lib/site-packages/future/backports/urllib/error.py +0 -75
- venv/Lib/site-packages/future/backports/urllib/parse.py +0 -991
- venv/Lib/site-packages/future/backports/urllib/request.py +0 -2647
- venv/Lib/site-packages/future/backports/urllib/response.py +0 -103
- venv/Lib/site-packages/future/backports/urllib/robotparser.py +0 -211
- venv/Lib/site-packages/future/backports/xmlrpc/__init__.py +0 -1
- venv/Lib/site-packages/future/backports/xmlrpc/client.py +0 -1496
- venv/Lib/site-packages/future/backports/xmlrpc/server.py +0 -999
- venv/Lib/site-packages/future/builtins/__init__.py +0 -51
- venv/Lib/site-packages/future/builtins/disabled.py +0 -66
- venv/Lib/site-packages/future/builtins/iterators.py +0 -52
- venv/Lib/site-packages/future/builtins/misc.py +0 -135
- venv/Lib/site-packages/future/builtins/new_min_max.py +0 -59
- venv/Lib/site-packages/future/builtins/newnext.py +0 -70
- venv/Lib/site-packages/future/builtins/newround.py +0 -105
- venv/Lib/site-packages/future/builtins/newsuper.py +0 -113
- venv/Lib/site-packages/future/moves/__init__.py +0 -8
- venv/Lib/site-packages/future/moves/_dummy_thread.py +0 -8
- venv/Lib/site-packages/future/moves/_markupbase.py +0 -8
- venv/Lib/site-packages/future/moves/_thread.py +0 -8
- venv/Lib/site-packages/future/moves/builtins.py +0 -10
- venv/Lib/site-packages/future/moves/collections.py +0 -18
- venv/Lib/site-packages/future/moves/configparser.py +0 -8
- venv/Lib/site-packages/future/moves/copyreg.py +0 -12
- venv/Lib/site-packages/future/moves/dbm/__init__.py +0 -20
- venv/Lib/site-packages/future/moves/dbm/dumb.py +0 -9
- venv/Lib/site-packages/future/moves/dbm/gnu.py +0 -9
- venv/Lib/site-packages/future/moves/dbm/ndbm.py +0 -9
- venv/Lib/site-packages/future/moves/html/__init__.py +0 -31
- venv/Lib/site-packages/future/moves/html/entities.py +0 -8
- venv/Lib/site-packages/future/moves/html/parser.py +0 -8
- venv/Lib/site-packages/future/moves/http/__init__.py +0 -4
- venv/Lib/site-packages/future/moves/http/client.py +0 -8
- venv/Lib/site-packages/future/moves/http/cookiejar.py +0 -8
- venv/Lib/site-packages/future/moves/http/cookies.py +0 -9
- venv/Lib/site-packages/future/moves/http/server.py +0 -20
- venv/Lib/site-packages/future/moves/itertools.py +0 -8
- venv/Lib/site-packages/future/moves/pickle.py +0 -11
- venv/Lib/site-packages/future/moves/queue.py +0 -8
- venv/Lib/site-packages/future/moves/reprlib.py +0 -8
- venv/Lib/site-packages/future/moves/socketserver.py +0 -8
- venv/Lib/site-packages/future/moves/subprocess.py +0 -11
- venv/Lib/site-packages/future/moves/sys.py +0 -8
- venv/Lib/site-packages/future/moves/test/__init__.py +0 -5
- venv/Lib/site-packages/future/moves/test/support.py +0 -10
- venv/Lib/site-packages/future/moves/tkinter/__init__.py +0 -27
- venv/Lib/site-packages/future/moves/tkinter/colorchooser.py +0 -12
- venv/Lib/site-packages/future/moves/tkinter/commondialog.py +0 -12
- venv/Lib/site-packages/future/moves/tkinter/constants.py +0 -12
- venv/Lib/site-packages/future/moves/tkinter/dialog.py +0 -12
- venv/Lib/site-packages/future/moves/tkinter/dnd.py +0 -12
- venv/Lib/site-packages/future/moves/tkinter/filedialog.py +0 -18
- venv/Lib/site-packages/future/moves/tkinter/font.py +0 -12
- venv/Lib/site-packages/future/moves/tkinter/messagebox.py +0 -12
- venv/Lib/site-packages/future/moves/tkinter/scrolledtext.py +0 -12
- venv/Lib/site-packages/future/moves/tkinter/simpledialog.py +0 -12
- venv/Lib/site-packages/future/moves/tkinter/tix.py +0 -12
- venv/Lib/site-packages/future/moves/tkinter/ttk.py +0 -12
- venv/Lib/site-packages/future/moves/urllib/__init__.py +0 -5
- venv/Lib/site-packages/future/moves/urllib/error.py +0 -16
- venv/Lib/site-packages/future/moves/urllib/parse.py +0 -28
- venv/Lib/site-packages/future/moves/urllib/request.py +0 -94
- venv/Lib/site-packages/future/moves/urllib/response.py +0 -12
- venv/Lib/site-packages/future/moves/urllib/robotparser.py +0 -8
- venv/Lib/site-packages/future/moves/winreg.py +0 -8
- venv/Lib/site-packages/future/moves/xmlrpc/__init__.py +0 -0
- venv/Lib/site-packages/future/moves/xmlrpc/client.py +0 -7
- venv/Lib/site-packages/future/moves/xmlrpc/server.py +0 -7
- venv/Lib/site-packages/future/standard_library/__init__.py +0 -815
- venv/Lib/site-packages/future/tests/__init__.py +0 -0
- venv/Lib/site-packages/future/tests/base.py +0 -539
- venv/Lib/site-packages/future/types/__init__.py +0 -257
- venv/Lib/site-packages/future/types/newbytes.py +0 -460
- venv/Lib/site-packages/future/types/newdict.py +0 -76
- venv/Lib/site-packages/future/types/newint.py +0 -384
- venv/Lib/site-packages/future/types/newlist.py +0 -95
- venv/Lib/site-packages/future/types/newmemoryview.py +0 -29
- venv/Lib/site-packages/future/types/newobject.py +0 -117
- venv/Lib/site-packages/future/types/newopen.py +0 -32
- venv/Lib/site-packages/future/types/newrange.py +0 -170
- venv/Lib/site-packages/future/types/newstr.py +0 -426
- venv/Lib/site-packages/future/utils/__init__.py +0 -770
- venv/Lib/site-packages/future/utils/surrogateescape.py +0 -198
- venv/Lib/site-packages/idna/__init__.py +0 -44
- venv/Lib/site-packages/idna/codec.py +0 -112
- venv/Lib/site-packages/idna/compat.py +0 -13
- venv/Lib/site-packages/idna/core.py +0 -400
- venv/Lib/site-packages/idna/idnadata.py +0 -2151
- venv/Lib/site-packages/idna/intranges.py +0 -54
- venv/Lib/site-packages/idna/package_data.py +0 -2
- venv/Lib/site-packages/idna/uts46data.py +0 -8600
- venv/Lib/site-packages/importlib_metadata/__init__.py +0 -1095
- venv/Lib/site-packages/importlib_metadata/_adapters.py +0 -68
- venv/Lib/site-packages/importlib_metadata/_collections.py +0 -30
- venv/Lib/site-packages/importlib_metadata/_compat.py +0 -72
- venv/Lib/site-packages/importlib_metadata/_functools.py +0 -104
- venv/Lib/site-packages/importlib_metadata/_itertools.py +0 -73
- venv/Lib/site-packages/importlib_metadata/_meta.py +0 -48
- venv/Lib/site-packages/importlib_metadata/_text.py +0 -99
- venv/Lib/site-packages/jaraco/classes/__init__.py +0 -0
- venv/Lib/site-packages/jaraco/classes/ancestry.py +0 -68
- venv/Lib/site-packages/jaraco/classes/meta.py +0 -66
- venv/Lib/site-packages/jaraco/classes/properties.py +0 -170
- venv/Lib/site-packages/je_editor/__init__.py +0 -25
- venv/Lib/site-packages/je_editor/__main__.py +0 -18
- venv/Lib/site-packages/je_editor/ui/__init__.py +0 -1
- venv/Lib/site-packages/je_editor/ui/editor_main_ui/__init__.py +0 -1
- venv/Lib/site-packages/je_editor/ui/editor_main_ui/content_init/__init__.py +0 -0
- venv/Lib/site-packages/je_editor/ui/editor_main_ui/content_init/content_init.py +0 -80
- venv/Lib/site-packages/je_editor/ui/editor_main_ui/menu/__init__.py +0 -0
- venv/Lib/site-packages/je_editor/ui/editor_main_ui/menu/build_menu.py +0 -10
- venv/Lib/site-packages/je_editor/ui/editor_main_ui/menu/file_menu/__init__.py +0 -0
- venv/Lib/site-packages/je_editor/ui/editor_main_ui/menu/file_menu/build_file_menu.py +0 -65
- venv/Lib/site-packages/je_editor/ui/editor_main_ui/menu/popup_menu/__init__.py +0 -0
- venv/Lib/site-packages/je_editor/ui/editor_main_ui/menu/popup_menu/build_popup_menu.py +0 -13
- venv/Lib/site-packages/je_editor/ui/editor_main_ui/menu/run_menu/__init__.py +0 -0
- venv/Lib/site-packages/je_editor/ui/editor_main_ui/menu/run_menu/build_run_menu.py +0 -35
- venv/Lib/site-packages/je_editor/ui/editor_main_ui/protocal_setting/__init__.py +0 -0
- venv/Lib/site-packages/je_editor/ui/editor_main_ui/protocal_setting/set_ui_protocol.py +0 -8
- venv/Lib/site-packages/je_editor/ui/editor_main_ui/redirect_output/__init__.py +0 -0
- venv/Lib/site-packages/je_editor/ui/editor_main_ui/redirect_output/redirect_output_to_tkinter_ui.py +0 -26
- venv/Lib/site-packages/je_editor/ui/editor_main_ui/tkinter_editor.py +0 -148
- venv/Lib/site-packages/je_editor/ui/editor_main_ui/ui_event_bind/__init__.py +0 -0
- venv/Lib/site-packages/je_editor/ui/editor_main_ui/ui_event_bind/event_bind.py +0 -26
- venv/Lib/site-packages/je_editor/ui/editor_main_ui/ui_grid/__init__.py +0 -0
- venv/Lib/site-packages/je_editor/ui/editor_main_ui/ui_grid/build_ui_grid.py +0 -24
- venv/Lib/site-packages/je_editor/ui/editor_main_ui/ui_setting/__init__.py +0 -0
- venv/Lib/site-packages/je_editor/ui/editor_main_ui/ui_setting/ui_setting.py +0 -41
- venv/Lib/site-packages/je_editor/ui/ui_event/__init__.py +0 -1
- venv/Lib/site-packages/je_editor/ui/ui_event/auto_save/__init__.py +0 -1
- venv/Lib/site-packages/je_editor/ui/ui_event/auto_save/start_auto_save/__init__.py +0 -0
- venv/Lib/site-packages/je_editor/ui/ui_event/auto_save/start_auto_save/start_auto_save.py +0 -17
- venv/Lib/site-packages/je_editor/ui/ui_event/change_font/__init__.py +0 -1
- venv/Lib/site-packages/je_editor/ui/ui_event/change_font/change_font.py +0 -38
- venv/Lib/site-packages/je_editor/ui/ui_event/clear_result/__init__.py +0 -0
- venv/Lib/site-packages/je_editor/ui/ui_event/clear_result/clear_result.py +0 -8
- venv/Lib/site-packages/je_editor/ui/ui_event/close/__init__.py +0 -1
- venv/Lib/site-packages/je_editor/ui/ui_event/close/close_event.py +0 -12
- venv/Lib/site-packages/je_editor/ui/ui_event/encoding/__init__.py +0 -0
- venv/Lib/site-packages/je_editor/ui/ui_event/encoding/set_encoding.py +0 -10
- venv/Lib/site-packages/je_editor/ui/ui_event/execute/__init__.py +0 -1
- venv/Lib/site-packages/je_editor/ui/ui_event/execute/execute_code/__init__.py +0 -1
- venv/Lib/site-packages/je_editor/ui/ui_event/execute/execute_code/exec_code.py +0 -22
- venv/Lib/site-packages/je_editor/ui/ui_event/execute/execute_shell_command/__init__.py +0 -1
- venv/Lib/site-packages/je_editor/ui/ui_event/execute/execute_shell_command/run_on_shell.py +0 -12
- venv/Lib/site-packages/je_editor/ui/ui_event/language/__init__.py +0 -1
- venv/Lib/site-packages/je_editor/ui/ui_event/language/set_language.py +0 -13
- venv/Lib/site-packages/je_editor/ui/ui_event/open_file/__init__.py +0 -1
- venv/Lib/site-packages/je_editor/ui/ui_event/open_file/open_file_to_read/__init__.py +0 -1
- venv/Lib/site-packages/je_editor/ui/ui_event/open_file/open_file_to_read/open_file_to_read.py +0 -20
- venv/Lib/site-packages/je_editor/ui/ui_event/open_file/open_last_edit_file/__init__.py +0 -1
- venv/Lib/site-packages/je_editor/ui/ui_event/open_file/open_last_edit_file/open_last_edit_file.py +0 -17
- venv/Lib/site-packages/je_editor/ui/ui_event/save_file/__init__.py +0 -0
- venv/Lib/site-packages/je_editor/ui/ui_event/save_file/save_file_to_open/__init__.py +0 -1
- venv/Lib/site-packages/je_editor/ui/ui_event/save_file/save_file_to_open/save_file_to_open.py +0 -19
- venv/Lib/site-packages/je_editor/ui/ui_event/tag_keyword/__init__.py +0 -1
- venv/Lib/site-packages/je_editor/ui/ui_event/tag_keyword/tag_keyword.py +0 -49
- venv/Lib/site-packages/je_editor/ui/ui_event/text_process/__init__.py +0 -0
- venv/Lib/site-packages/je_editor/ui/ui_event/text_process/program_exec/__init__.py +0 -1
- venv/Lib/site-packages/je_editor/ui/ui_event/text_process/program_exec/code_exec_manager.py +0 -169
- venv/Lib/site-packages/je_editor/ui/ui_event/text_process/program_exec/process_error.py +0 -10
- venv/Lib/site-packages/je_editor/ui/ui_event/text_process/shell/__init__.py +0 -1
- venv/Lib/site-packages/je_editor/ui/ui_event/text_process/shell/shell_exec_manager.py +0 -130
- venv/Lib/site-packages/je_editor/utils/__init__.py +0 -1
- venv/Lib/site-packages/je_editor/utils/editor_content/__init__.py +0 -1
- venv/Lib/site-packages/je_editor/utils/editor_content/content_save.py +0 -66
- venv/Lib/site-packages/je_editor/utils/editor_content/editor_content_data.py +0 -19
- venv/Lib/site-packages/je_editor/utils/encoding/__init__.py +0 -1
- venv/Lib/site-packages/je_editor/utils/encoding/encoding_data_module.py +0 -101
- venv/Lib/site-packages/je_editor/utils/exception/__init__.py +0 -1
- venv/Lib/site-packages/je_editor/utils/exception/exception_tags.py +0 -33
- venv/Lib/site-packages/je_editor/utils/exception/exceptions.py +0 -30
- venv/Lib/site-packages/je_editor/utils/file/__init__.py +0 -0
- venv/Lib/site-packages/je_editor/utils/file/open/__init__.py +0 -1
- venv/Lib/site-packages/je_editor/utils/file/open/open_file.py +0 -52
- venv/Lib/site-packages/je_editor/utils/file/save/__init__.py +0 -1
- venv/Lib/site-packages/je_editor/utils/file/save/save_file.py +0 -81
- venv/Lib/site-packages/je_editor/utils/font/__init__.py +0 -1
- venv/Lib/site-packages/je_editor/utils/font/font.py +0 -20
- venv/Lib/site-packages/je_editor/utils/json_format/__init__.py +0 -1
- venv/Lib/site-packages/je_editor/utils/json_format/json_process.py +0 -28
- venv/Lib/site-packages/je_editor/utils/keyword/__init__.py +0 -1
- venv/Lib/site-packages/je_editor/utils/keyword/keyword_list.py +0 -4
- venv/Lib/site-packages/je_editor/utils/language/__init__.py +0 -1
- venv/Lib/site-packages/je_editor/utils/language/language_data_module.py +0 -9
- venv/Lib/site-packages/je_editor/utils/language_data_module/__init__.py +0 -1
- venv/Lib/site-packages/je_editor/utils/language_data_module/language_compiler_data_module.py +0 -7
- venv/Lib/site-packages/je_editor/utils/language_data_module/language_param_data_module.py +0 -7
- venv/Lib/site-packages/je_editor/utils/project/__init__.py +0 -0
- venv/Lib/site-packages/je_editor/utils/project/create_project.py +0 -16
- venv/Lib/site-packages/je_editor/utils/redirect_manager/__init__.py +0 -0
- venv/Lib/site-packages/je_editor/utils/redirect_manager/redirect_manager_class.py +0 -70
- venv/Lib/site-packages/je_editor/utils/string_translate/__init__.py +0 -1
- venv/Lib/site-packages/je_editor/utils/string_translate/used_string.py +0 -4
- venv/Lib/site-packages/je_editor/utils/theme/__init__.py +0 -0
- venv/Lib/site-packages/je_editor/utils/theme/theme.py +0 -6
- venv/Lib/site-packages/keyring/__init__.py +0 -17
- venv/Lib/site-packages/keyring/__main__.py +0 -4
- venv/Lib/site-packages/keyring/_compat.py +0 -7
- venv/Lib/site-packages/keyring/_properties_compat.py +0 -169
- venv/Lib/site-packages/keyring/backend.py +0 -256
- venv/Lib/site-packages/keyring/backends/OS_X.py +0 -13
- venv/Lib/site-packages/keyring/backends/SecretService.py +0 -119
- venv/Lib/site-packages/keyring/backends/Windows.py +0 -170
- venv/Lib/site-packages/keyring/backends/__init__.py +0 -0
- venv/Lib/site-packages/keyring/backends/chainer.py +0 -71
- venv/Lib/site-packages/keyring/backends/fail.py +0 -27
- venv/Lib/site-packages/keyring/backends/kwallet.py +0 -165
- venv/Lib/site-packages/keyring/backends/libsecret.py +0 -152
- venv/Lib/site-packages/keyring/backends/macOS/__init__.py +0 -76
- venv/Lib/site-packages/keyring/backends/macOS/api.py +0 -172
- venv/Lib/site-packages/keyring/backends/null.py +0 -17
- venv/Lib/site-packages/keyring/cli.py +0 -136
- venv/Lib/site-packages/keyring/core.py +0 -186
- venv/Lib/site-packages/keyring/credentials.py +0 -70
- venv/Lib/site-packages/keyring/devpi_client.py +0 -19
- venv/Lib/site-packages/keyring/errors.py +0 -61
- venv/Lib/site-packages/keyring/http.py +0 -39
- venv/Lib/site-packages/keyring/py310compat.py +0 -10
- venv/Lib/site-packages/keyring/testing/__init__.py +0 -0
- venv/Lib/site-packages/keyring/testing/backend.py +0 -172
- venv/Lib/site-packages/keyring/testing/util.py +0 -71
- venv/Lib/site-packages/keyring/util/__init__.py +0 -37
- venv/Lib/site-packages/keyring/util/platform_.py +0 -68
- venv/Lib/site-packages/keyring/util/properties.py +0 -18
- venv/Lib/site-packages/libfuturize/__init__.py +0 -1
- venv/Lib/site-packages/libfuturize/fixer_util.py +0 -520
- venv/Lib/site-packages/libfuturize/fixes/__init__.py +0 -97
- venv/Lib/site-packages/libfuturize/fixes/fix_UserDict.py +0 -102
- venv/Lib/site-packages/libfuturize/fixes/fix_absolute_import.py +0 -91
- venv/Lib/site-packages/libfuturize/fixes/fix_add__future__imports_except_unicode_literals.py +0 -26
- venv/Lib/site-packages/libfuturize/fixes/fix_basestring.py +0 -17
- venv/Lib/site-packages/libfuturize/fixes/fix_bytes.py +0 -24
- venv/Lib/site-packages/libfuturize/fixes/fix_cmp.py +0 -33
- venv/Lib/site-packages/libfuturize/fixes/fix_division.py +0 -12
- venv/Lib/site-packages/libfuturize/fixes/fix_division_safe.py +0 -109
- venv/Lib/site-packages/libfuturize/fixes/fix_execfile.py +0 -37
- venv/Lib/site-packages/libfuturize/fixes/fix_future_builtins.py +0 -59
- venv/Lib/site-packages/libfuturize/fixes/fix_future_standard_library.py +0 -24
- venv/Lib/site-packages/libfuturize/fixes/fix_future_standard_library_urllib.py +0 -28
- venv/Lib/site-packages/libfuturize/fixes/fix_input.py +0 -32
- venv/Lib/site-packages/libfuturize/fixes/fix_metaclass.py +0 -262
- venv/Lib/site-packages/libfuturize/fixes/fix_next_call.py +0 -104
- venv/Lib/site-packages/libfuturize/fixes/fix_object.py +0 -17
- venv/Lib/site-packages/libfuturize/fixes/fix_oldstr_wrap.py +0 -39
- venv/Lib/site-packages/libfuturize/fixes/fix_order___future__imports.py +0 -36
- venv/Lib/site-packages/libfuturize/fixes/fix_print.py +0 -104
- venv/Lib/site-packages/libfuturize/fixes/fix_print_with_import.py +0 -22
- venv/Lib/site-packages/libfuturize/fixes/fix_raise.py +0 -107
- venv/Lib/site-packages/libfuturize/fixes/fix_remove_old__future__imports.py +0 -26
- venv/Lib/site-packages/libfuturize/fixes/fix_unicode_keep_u.py +0 -24
- venv/Lib/site-packages/libfuturize/fixes/fix_unicode_literals_import.py +0 -18
- venv/Lib/site-packages/libfuturize/fixes/fix_xrange_with_import.py +0 -20
- venv/Lib/site-packages/libfuturize/main.py +0 -322
- venv/Lib/site-packages/libpasteurize/__init__.py +0 -1
- venv/Lib/site-packages/libpasteurize/fixes/__init__.py +0 -54
- venv/Lib/site-packages/libpasteurize/fixes/feature_base.py +0 -57
- venv/Lib/site-packages/libpasteurize/fixes/fix_add_all__future__imports.py +0 -24
- venv/Lib/site-packages/libpasteurize/fixes/fix_add_all_future_builtins.py +0 -37
- venv/Lib/site-packages/libpasteurize/fixes/fix_add_future_standard_library_import.py +0 -23
- venv/Lib/site-packages/libpasteurize/fixes/fix_annotations.py +0 -48
- venv/Lib/site-packages/libpasteurize/fixes/fix_division.py +0 -28
- venv/Lib/site-packages/libpasteurize/fixes/fix_features.py +0 -86
- venv/Lib/site-packages/libpasteurize/fixes/fix_fullargspec.py +0 -16
- venv/Lib/site-packages/libpasteurize/fixes/fix_future_builtins.py +0 -46
- venv/Lib/site-packages/libpasteurize/fixes/fix_getcwd.py +0 -26
- venv/Lib/site-packages/libpasteurize/fixes/fix_imports.py +0 -112
- venv/Lib/site-packages/libpasteurize/fixes/fix_imports2.py +0 -174
- venv/Lib/site-packages/libpasteurize/fixes/fix_kwargs.py +0 -147
- venv/Lib/site-packages/libpasteurize/fixes/fix_memoryview.py +0 -21
- venv/Lib/site-packages/libpasteurize/fixes/fix_metaclass.py +0 -78
- venv/Lib/site-packages/libpasteurize/fixes/fix_newstyle.py +0 -33
- venv/Lib/site-packages/libpasteurize/fixes/fix_next.py +0 -43
- venv/Lib/site-packages/libpasteurize/fixes/fix_printfunction.py +0 -17
- venv/Lib/site-packages/libpasteurize/fixes/fix_raise.py +0 -25
- venv/Lib/site-packages/libpasteurize/fixes/fix_raise_.py +0 -35
- venv/Lib/site-packages/libpasteurize/fixes/fix_throw.py +0 -23
- venv/Lib/site-packages/libpasteurize/fixes/fix_unpacking.py +0 -120
- venv/Lib/site-packages/libpasteurize/main.py +0 -204
- venv/Lib/site-packages/more_itertools/__init__.py +0 -6
- venv/Lib/site-packages/more_itertools/more.py +0 -4347
- venv/Lib/site-packages/more_itertools/recipes.py +0 -841
- venv/Lib/site-packages/ordlookup/__init__.py +0 -45
- venv/Lib/site-packages/ordlookup/oleaut32.py +0 -400
- venv/Lib/site-packages/ordlookup/ws2_32.py +0 -119
- venv/Lib/site-packages/packaging/__init__.py +0 -15
- venv/Lib/site-packages/packaging/_elffile.py +0 -108
- venv/Lib/site-packages/packaging/_manylinux.py +0 -238
- venv/Lib/site-packages/packaging/_musllinux.py +0 -80
- venv/Lib/site-packages/packaging/_parser.py +0 -328
- venv/Lib/site-packages/packaging/_structures.py +0 -61
- venv/Lib/site-packages/packaging/_tokenizer.py +0 -188
- venv/Lib/site-packages/packaging/markers.py +0 -245
- venv/Lib/site-packages/packaging/requirements.py +0 -95
- venv/Lib/site-packages/packaging/specifiers.py +0 -1005
- venv/Lib/site-packages/packaging/tags.py +0 -546
- venv/Lib/site-packages/packaging/utils.py +0 -141
- venv/Lib/site-packages/packaging/version.py +0 -563
- venv/Lib/site-packages/past/__init__.py +0 -90
- venv/Lib/site-packages/past/builtins/__init__.py +0 -72
- venv/Lib/site-packages/past/builtins/misc.py +0 -161
- venv/Lib/site-packages/past/builtins/noniterators.py +0 -272
- venv/Lib/site-packages/past/translation/__init__.py +0 -485
- venv/Lib/site-packages/past/types/__init__.py +0 -29
- venv/Lib/site-packages/past/types/basestring.py +0 -38
- venv/Lib/site-packages/past/types/olddict.py +0 -96
- venv/Lib/site-packages/past/types/oldstr.py +0 -135
- venv/Lib/site-packages/past/utils/__init__.py +0 -97
- venv/Lib/site-packages/pefile.py +0 -7437
- venv/Lib/site-packages/peutils.py +0 -592
- venv/Lib/site-packages/pip/__init__.py +0 -13
- venv/Lib/site-packages/pip/__main__.py +0 -31
- venv/Lib/site-packages/pip/__pip-runner__.py +0 -50
- venv/Lib/site-packages/pip/_internal/__init__.py +0 -19
- venv/Lib/site-packages/pip/_internal/build_env.py +0 -310
- venv/Lib/site-packages/pip/_internal/cache.py +0 -293
- venv/Lib/site-packages/pip/_internal/cli/__init__.py +0 -4
- venv/Lib/site-packages/pip/_internal/cli/autocompletion.py +0 -171
- venv/Lib/site-packages/pip/_internal/cli/base_command.py +0 -216
- venv/Lib/site-packages/pip/_internal/cli/cmdoptions.py +0 -1049
- venv/Lib/site-packages/pip/_internal/cli/command_context.py +0 -27
- venv/Lib/site-packages/pip/_internal/cli/main.py +0 -70
- venv/Lib/site-packages/pip/_internal/cli/main_parser.py +0 -134
- venv/Lib/site-packages/pip/_internal/cli/parser.py +0 -294
- venv/Lib/site-packages/pip/_internal/cli/progress_bars.py +0 -68
- venv/Lib/site-packages/pip/_internal/cli/req_command.py +0 -502
- venv/Lib/site-packages/pip/_internal/cli/spinners.py +0 -159
- venv/Lib/site-packages/pip/_internal/cli/status_codes.py +0 -6
- venv/Lib/site-packages/pip/_internal/commands/__init__.py +0 -132
- venv/Lib/site-packages/pip/_internal/commands/cache.py +0 -223
- venv/Lib/site-packages/pip/_internal/commands/check.py +0 -53
- venv/Lib/site-packages/pip/_internal/commands/completion.py +0 -126
- venv/Lib/site-packages/pip/_internal/commands/configuration.py +0 -282
- venv/Lib/site-packages/pip/_internal/commands/debug.py +0 -199
- venv/Lib/site-packages/pip/_internal/commands/download.py +0 -149
- venv/Lib/site-packages/pip/_internal/commands/freeze.py +0 -97
- venv/Lib/site-packages/pip/_internal/commands/hash.py +0 -59
- venv/Lib/site-packages/pip/_internal/commands/help.py +0 -41
- venv/Lib/site-packages/pip/_internal/commands/index.py +0 -138
- venv/Lib/site-packages/pip/_internal/commands/inspect.py +0 -97
- venv/Lib/site-packages/pip/_internal/commands/install.py +0 -860
- venv/Lib/site-packages/pip/_internal/commands/list.py +0 -365
- venv/Lib/site-packages/pip/_internal/commands/search.py +0 -174
- venv/Lib/site-packages/pip/_internal/commands/show.py +0 -183
- venv/Lib/site-packages/pip/_internal/commands/uninstall.py +0 -106
- venv/Lib/site-packages/pip/_internal/commands/wheel.py +0 -203
- venv/Lib/site-packages/pip/_internal/configuration.py +0 -374
- venv/Lib/site-packages/pip/_internal/distributions/__init__.py +0 -21
- venv/Lib/site-packages/pip/_internal/distributions/base.py +0 -39
- venv/Lib/site-packages/pip/_internal/distributions/installed.py +0 -23
- venv/Lib/site-packages/pip/_internal/distributions/sdist.py +0 -150
- venv/Lib/site-packages/pip/_internal/distributions/wheel.py +0 -34
- venv/Lib/site-packages/pip/_internal/exceptions.py +0 -660
- venv/Lib/site-packages/pip/_internal/index/__init__.py +0 -2
- venv/Lib/site-packages/pip/_internal/index/collector.py +0 -505
- venv/Lib/site-packages/pip/_internal/index/package_finder.py +0 -1025
- venv/Lib/site-packages/pip/_internal/index/sources.py +0 -224
- venv/Lib/site-packages/pip/_internal/locations/__init__.py +0 -528
- venv/Lib/site-packages/pip/_internal/locations/_distutils.py +0 -180
- venv/Lib/site-packages/pip/_internal/locations/_sysconfig.py +0 -218
- venv/Lib/site-packages/pip/_internal/locations/base.py +0 -81
- venv/Lib/site-packages/pip/_internal/main.py +0 -12
- venv/Lib/site-packages/pip/_internal/metadata/__init__.py +0 -127
- venv/Lib/site-packages/pip/_internal/metadata/_json.py +0 -84
- venv/Lib/site-packages/pip/_internal/metadata/base.py +0 -688
- venv/Lib/site-packages/pip/_internal/metadata/importlib/__init__.py +0 -4
- venv/Lib/site-packages/pip/_internal/metadata/importlib/_compat.py +0 -55
- venv/Lib/site-packages/pip/_internal/metadata/importlib/_dists.py +0 -224
- venv/Lib/site-packages/pip/_internal/metadata/importlib/_envs.py +0 -188
- venv/Lib/site-packages/pip/_internal/metadata/pkg_resources.py +0 -270
- venv/Lib/site-packages/pip/_internal/models/__init__.py +0 -2
- venv/Lib/site-packages/pip/_internal/models/candidate.py +0 -34
- venv/Lib/site-packages/pip/_internal/models/direct_url.py +0 -212
- venv/Lib/site-packages/pip/_internal/models/format_control.py +0 -80
- venv/Lib/site-packages/pip/_internal/models/index.py +0 -28
- venv/Lib/site-packages/pip/_internal/models/installation_report.py +0 -53
- venv/Lib/site-packages/pip/_internal/models/link.py +0 -507
- venv/Lib/site-packages/pip/_internal/models/scheme.py +0 -31
- venv/Lib/site-packages/pip/_internal/models/search_scope.py +0 -133
- venv/Lib/site-packages/pip/_internal/models/selection_prefs.py +0 -51
- venv/Lib/site-packages/pip/_internal/models/target_python.py +0 -110
- venv/Lib/site-packages/pip/_internal/models/wheel.py +0 -92
- venv/Lib/site-packages/pip/_internal/network/__init__.py +0 -2
- venv/Lib/site-packages/pip/_internal/network/auth.py +0 -323
- venv/Lib/site-packages/pip/_internal/network/cache.py +0 -69
- venv/Lib/site-packages/pip/_internal/network/download.py +0 -186
- venv/Lib/site-packages/pip/_internal/network/lazy_wheel.py +0 -210
- venv/Lib/site-packages/pip/_internal/network/session.py +0 -518
- venv/Lib/site-packages/pip/_internal/network/utils.py +0 -96
- venv/Lib/site-packages/pip/_internal/network/xmlrpc.py +0 -60
- venv/Lib/site-packages/pip/_internal/operations/__init__.py +0 -0
- venv/Lib/site-packages/pip/_internal/operations/build/__init__.py +0 -0
- venv/Lib/site-packages/pip/_internal/operations/build/build_tracker.py +0 -124
- venv/Lib/site-packages/pip/_internal/operations/build/metadata.py +0 -39
- venv/Lib/site-packages/pip/_internal/operations/build/metadata_editable.py +0 -41
- venv/Lib/site-packages/pip/_internal/operations/build/metadata_legacy.py +0 -74
- venv/Lib/site-packages/pip/_internal/operations/build/wheel.py +0 -37
- venv/Lib/site-packages/pip/_internal/operations/build/wheel_editable.py +0 -46
- venv/Lib/site-packages/pip/_internal/operations/build/wheel_legacy.py +0 -102
- venv/Lib/site-packages/pip/_internal/operations/check.py +0 -149
- venv/Lib/site-packages/pip/_internal/operations/freeze.py +0 -254
- venv/Lib/site-packages/pip/_internal/operations/install/__init__.py +0 -2
- venv/Lib/site-packages/pip/_internal/operations/install/editable_legacy.py +0 -47
- venv/Lib/site-packages/pip/_internal/operations/install/legacy.py +0 -120
- venv/Lib/site-packages/pip/_internal/operations/install/wheel.py +0 -738
- venv/Lib/site-packages/pip/_internal/operations/prepare.py +0 -667
- venv/Lib/site-packages/pip/_internal/pyproject.py +0 -175
- venv/Lib/site-packages/pip/_internal/req/__init__.py +0 -94
- venv/Lib/site-packages/pip/_internal/req/constructors.py +0 -501
- venv/Lib/site-packages/pip/_internal/req/req_file.py +0 -544
- venv/Lib/site-packages/pip/_internal/req/req_install.py +0 -942
- venv/Lib/site-packages/pip/_internal/req/req_set.py +0 -82
- venv/Lib/site-packages/pip/_internal/req/req_uninstall.py +0 -640
- venv/Lib/site-packages/pip/_internal/resolution/__init__.py +0 -0
- venv/Lib/site-packages/pip/_internal/resolution/base.py +0 -20
- venv/Lib/site-packages/pip/_internal/resolution/legacy/__init__.py +0 -0
- venv/Lib/site-packages/pip/_internal/resolution/legacy/resolver.py +0 -600
- venv/Lib/site-packages/pip/_internal/resolution/resolvelib/__init__.py +0 -0
- venv/Lib/site-packages/pip/_internal/resolution/resolvelib/base.py +0 -141
- venv/Lib/site-packages/pip/_internal/resolution/resolvelib/candidates.py +0 -556
- venv/Lib/site-packages/pip/_internal/resolution/resolvelib/factory.py +0 -731
- venv/Lib/site-packages/pip/_internal/resolution/resolvelib/found_candidates.py +0 -155
- venv/Lib/site-packages/pip/_internal/resolution/resolvelib/provider.py +0 -248
- venv/Lib/site-packages/pip/_internal/resolution/resolvelib/reporter.py +0 -68
- venv/Lib/site-packages/pip/_internal/resolution/resolvelib/requirements.py +0 -166
- venv/Lib/site-packages/pip/_internal/resolution/resolvelib/resolver.py +0 -296
- venv/Lib/site-packages/pip/_internal/self_outdated_check.py +0 -239
- venv/Lib/site-packages/pip/_internal/utils/__init__.py +0 -0
- venv/Lib/site-packages/pip/_internal/utils/_log.py +0 -38
- venv/Lib/site-packages/pip/_internal/utils/appdirs.py +0 -52
- venv/Lib/site-packages/pip/_internal/utils/compat.py +0 -63
- venv/Lib/site-packages/pip/_internal/utils/compatibility_tags.py +0 -165
- venv/Lib/site-packages/pip/_internal/utils/datetime.py +0 -11
- venv/Lib/site-packages/pip/_internal/utils/deprecation.py +0 -188
- venv/Lib/site-packages/pip/_internal/utils/direct_url_helpers.py +0 -87
- venv/Lib/site-packages/pip/_internal/utils/distutils_args.py +0 -43
- venv/Lib/site-packages/pip/_internal/utils/egg_link.py +0 -75
- venv/Lib/site-packages/pip/_internal/utils/encoding.py +0 -36
- venv/Lib/site-packages/pip/_internal/utils/entrypoints.py +0 -84
- venv/Lib/site-packages/pip/_internal/utils/filesystem.py +0 -153
- venv/Lib/site-packages/pip/_internal/utils/filetypes.py +0 -27
- venv/Lib/site-packages/pip/_internal/utils/glibc.py +0 -88
- venv/Lib/site-packages/pip/_internal/utils/hashes.py +0 -144
- venv/Lib/site-packages/pip/_internal/utils/inject_securetransport.py +0 -35
- venv/Lib/site-packages/pip/_internal/utils/logging.py +0 -348
- venv/Lib/site-packages/pip/_internal/utils/misc.py +0 -723
- venv/Lib/site-packages/pip/_internal/utils/models.py +0 -39
- venv/Lib/site-packages/pip/_internal/utils/packaging.py +0 -57
- venv/Lib/site-packages/pip/_internal/utils/setuptools_build.py +0 -195
- venv/Lib/site-packages/pip/_internal/utils/subprocess.py +0 -260
- venv/Lib/site-packages/pip/_internal/utils/temp_dir.py +0 -246
- venv/Lib/site-packages/pip/_internal/utils/unpacking.py +0 -257
- venv/Lib/site-packages/pip/_internal/utils/urls.py +0 -62
- venv/Lib/site-packages/pip/_internal/utils/virtualenv.py +0 -104
- venv/Lib/site-packages/pip/_internal/utils/wheel.py +0 -136
- venv/Lib/site-packages/pip/_internal/vcs/__init__.py +0 -15
- venv/Lib/site-packages/pip/_internal/vcs/bazaar.py +0 -112
- venv/Lib/site-packages/pip/_internal/vcs/git.py +0 -526
- venv/Lib/site-packages/pip/_internal/vcs/mercurial.py +0 -163
- venv/Lib/site-packages/pip/_internal/vcs/subversion.py +0 -324
- venv/Lib/site-packages/pip/_internal/vcs/versioncontrol.py +0 -705
- venv/Lib/site-packages/pip/_internal/wheel_builder.py +0 -382
- venv/Lib/site-packages/pip/_vendor/__init__.py +0 -120
- venv/Lib/site-packages/pip/_vendor/cachecontrol/__init__.py +0 -18
- venv/Lib/site-packages/pip/_vendor/cachecontrol/_cmd.py +0 -61
- venv/Lib/site-packages/pip/_vendor/cachecontrol/adapter.py +0 -137
- venv/Lib/site-packages/pip/_vendor/cachecontrol/cache.py +0 -65
- venv/Lib/site-packages/pip/_vendor/cachecontrol/caches/__init__.py +0 -9
- venv/Lib/site-packages/pip/_vendor/cachecontrol/caches/file_cache.py +0 -188
- venv/Lib/site-packages/pip/_vendor/cachecontrol/caches/redis_cache.py +0 -39
- venv/Lib/site-packages/pip/_vendor/cachecontrol/compat.py +0 -32
- venv/Lib/site-packages/pip/_vendor/cachecontrol/controller.py +0 -439
- venv/Lib/site-packages/pip/_vendor/cachecontrol/filewrapper.py +0 -111
- venv/Lib/site-packages/pip/_vendor/cachecontrol/heuristics.py +0 -139
- venv/Lib/site-packages/pip/_vendor/cachecontrol/serialize.py +0 -190
- venv/Lib/site-packages/pip/_vendor/cachecontrol/wrapper.py +0 -33
- venv/Lib/site-packages/pip/_vendor/certifi/__init__.py +0 -4
- venv/Lib/site-packages/pip/_vendor/certifi/__main__.py +0 -12
- venv/Lib/site-packages/pip/_vendor/certifi/core.py +0 -108
- venv/Lib/site-packages/pip/_vendor/chardet/__init__.py +0 -93
- venv/Lib/site-packages/pip/_vendor/chardet/big5freq.py +0 -386
- venv/Lib/site-packages/pip/_vendor/chardet/big5prober.py +0 -47
- venv/Lib/site-packages/pip/_vendor/chardet/chardistribution.py +0 -259
- venv/Lib/site-packages/pip/_vendor/chardet/charsetgroupprober.py +0 -109
- venv/Lib/site-packages/pip/_vendor/chardet/charsetprober.py +0 -138
- venv/Lib/site-packages/pip/_vendor/chardet/cli/__init__.py +0 -0
- venv/Lib/site-packages/pip/_vendor/chardet/cli/chardetect.py +0 -86
- venv/Lib/site-packages/pip/_vendor/chardet/codingstatemachine.py +0 -88
- venv/Lib/site-packages/pip/_vendor/chardet/cp949prober.py +0 -49
- venv/Lib/site-packages/pip/_vendor/chardet/enums.py +0 -82
- venv/Lib/site-packages/pip/_vendor/chardet/escprober.py +0 -102
- venv/Lib/site-packages/pip/_vendor/chardet/escsm.py +0 -260
- venv/Lib/site-packages/pip/_vendor/chardet/eucjpprober.py +0 -95
- venv/Lib/site-packages/pip/_vendor/chardet/euckrfreq.py +0 -196
- venv/Lib/site-packages/pip/_vendor/chardet/euckrprober.py +0 -47
- venv/Lib/site-packages/pip/_vendor/chardet/euctwfreq.py +0 -388
- venv/Lib/site-packages/pip/_vendor/chardet/euctwprober.py +0 -47
- venv/Lib/site-packages/pip/_vendor/chardet/gb2312freq.py +0 -284
- venv/Lib/site-packages/pip/_vendor/chardet/gb2312prober.py +0 -47
- venv/Lib/site-packages/pip/_vendor/chardet/hebrewprober.py +0 -302
- venv/Lib/site-packages/pip/_vendor/chardet/jisfreq.py +0 -325
- venv/Lib/site-packages/pip/_vendor/chardet/johabfreq.py +0 -2382
- venv/Lib/site-packages/pip/_vendor/chardet/johabprober.py +0 -47
- venv/Lib/site-packages/pip/_vendor/chardet/jpcntx.py +0 -237
- venv/Lib/site-packages/pip/_vendor/chardet/langbulgarianmodel.py +0 -4649
- venv/Lib/site-packages/pip/_vendor/chardet/langgreekmodel.py +0 -4397
- venv/Lib/site-packages/pip/_vendor/chardet/langhebrewmodel.py +0 -4380
- venv/Lib/site-packages/pip/_vendor/chardet/langhungarianmodel.py +0 -4649
- venv/Lib/site-packages/pip/_vendor/chardet/langrussianmodel.py +0 -5725
- venv/Lib/site-packages/pip/_vendor/chardet/langthaimodel.py +0 -4380
- venv/Lib/site-packages/pip/_vendor/chardet/langturkishmodel.py +0 -4380
- venv/Lib/site-packages/pip/_vendor/chardet/latin1prober.py +0 -145
- venv/Lib/site-packages/pip/_vendor/chardet/mbcharsetprober.py +0 -95
- venv/Lib/site-packages/pip/_vendor/chardet/mbcsgroupprober.py +0 -56
- venv/Lib/site-packages/pip/_vendor/chardet/mbcssm.py +0 -660
- venv/Lib/site-packages/pip/_vendor/chardet/metadata/__init__.py +0 -0
- venv/Lib/site-packages/pip/_vendor/chardet/metadata/languages.py +0 -351
- venv/Lib/site-packages/pip/_vendor/chardet/sbcharsetprober.py +0 -160
- venv/Lib/site-packages/pip/_vendor/chardet/sbcsgroupprober.py +0 -88
- venv/Lib/site-packages/pip/_vendor/chardet/sjisprober.py +0 -98
- venv/Lib/site-packages/pip/_vendor/chardet/universaldetector.py +0 -328
- venv/Lib/site-packages/pip/_vendor/chardet/utf1632prober.py +0 -223
- venv/Lib/site-packages/pip/_vendor/chardet/utf8prober.py +0 -80
- venv/Lib/site-packages/pip/_vendor/chardet/version.py +0 -9
- venv/Lib/site-packages/pip/_vendor/colorama/__init__.py +0 -6
- venv/Lib/site-packages/pip/_vendor/colorama/ansi.py +0 -102
- venv/Lib/site-packages/pip/_vendor/colorama/ansitowin32.py +0 -266
- venv/Lib/site-packages/pip/_vendor/colorama/initialise.py +0 -80
- venv/Lib/site-packages/pip/_vendor/colorama/win32.py +0 -152
- venv/Lib/site-packages/pip/_vendor/colorama/winterm.py +0 -169
- venv/Lib/site-packages/pip/_vendor/distlib/__init__.py +0 -23
- venv/Lib/site-packages/pip/_vendor/distlib/compat.py +0 -1116
- venv/Lib/site-packages/pip/_vendor/distlib/database.py +0 -1350
- venv/Lib/site-packages/pip/_vendor/distlib/index.py +0 -508
- venv/Lib/site-packages/pip/_vendor/distlib/locators.py +0 -1300
- venv/Lib/site-packages/pip/_vendor/distlib/manifest.py +0 -393
- venv/Lib/site-packages/pip/_vendor/distlib/markers.py +0 -152
- venv/Lib/site-packages/pip/_vendor/distlib/metadata.py +0 -1076
- venv/Lib/site-packages/pip/_vendor/distlib/resources.py +0 -358
- venv/Lib/site-packages/pip/_vendor/distlib/scripts.py +0 -437
- venv/Lib/site-packages/pip/_vendor/distlib/util.py +0 -1932
- venv/Lib/site-packages/pip/_vendor/distlib/version.py +0 -739
- venv/Lib/site-packages/pip/_vendor/distlib/wheel.py +0 -1082
- venv/Lib/site-packages/pip/_vendor/distro/__init__.py +0 -54
- venv/Lib/site-packages/pip/_vendor/distro/__main__.py +0 -4
- venv/Lib/site-packages/pip/_vendor/distro/distro.py +0 -1374
- venv/Lib/site-packages/pip/_vendor/idna/__init__.py +0 -44
- venv/Lib/site-packages/pip/_vendor/idna/codec.py +0 -112
- venv/Lib/site-packages/pip/_vendor/idna/compat.py +0 -13
- venv/Lib/site-packages/pip/_vendor/idna/core.py +0 -400
- venv/Lib/site-packages/pip/_vendor/idna/idnadata.py +0 -2151
- venv/Lib/site-packages/pip/_vendor/idna/intranges.py +0 -54
- venv/Lib/site-packages/pip/_vendor/idna/package_data.py +0 -2
- venv/Lib/site-packages/pip/_vendor/idna/uts46data.py +0 -8600
- venv/Lib/site-packages/pip/_vendor/msgpack/__init__.py +0 -57
- venv/Lib/site-packages/pip/_vendor/msgpack/exceptions.py +0 -48
- venv/Lib/site-packages/pip/_vendor/msgpack/ext.py +0 -193
- venv/Lib/site-packages/pip/_vendor/msgpack/fallback.py +0 -1010
- venv/Lib/site-packages/pip/_vendor/packaging/__about__.py +0 -26
- venv/Lib/site-packages/pip/_vendor/packaging/__init__.py +0 -25
- venv/Lib/site-packages/pip/_vendor/packaging/_manylinux.py +0 -301
- venv/Lib/site-packages/pip/_vendor/packaging/_musllinux.py +0 -136
- venv/Lib/site-packages/pip/_vendor/packaging/_structures.py +0 -61
- venv/Lib/site-packages/pip/_vendor/packaging/markers.py +0 -304
- venv/Lib/site-packages/pip/_vendor/packaging/requirements.py +0 -146
- venv/Lib/site-packages/pip/_vendor/packaging/specifiers.py +0 -802
- venv/Lib/site-packages/pip/_vendor/packaging/tags.py +0 -487
- venv/Lib/site-packages/pip/_vendor/packaging/utils.py +0 -136
- venv/Lib/site-packages/pip/_vendor/packaging/version.py +0 -504
- venv/Lib/site-packages/pip/_vendor/pep517/__init__.py +0 -6
- venv/Lib/site-packages/pip/_vendor/pep517/_compat.py +0 -8
- venv/Lib/site-packages/pip/_vendor/pep517/build.py +0 -126
- venv/Lib/site-packages/pip/_vendor/pep517/check.py +0 -207
- venv/Lib/site-packages/pip/_vendor/pep517/colorlog.py +0 -113
- venv/Lib/site-packages/pip/_vendor/pep517/dirtools.py +0 -19
- venv/Lib/site-packages/pip/_vendor/pep517/envbuild.py +0 -170
- venv/Lib/site-packages/pip/_vendor/pep517/in_process/__init__.py +0 -26
- venv/Lib/site-packages/pip/_vendor/pep517/in_process/_in_process.py +0 -351
- venv/Lib/site-packages/pip/_vendor/pep517/meta.py +0 -93
- venv/Lib/site-packages/pip/_vendor/pep517/wrappers.py +0 -362
- venv/Lib/site-packages/pip/_vendor/pkg_resources/__init__.py +0 -3296
- venv/Lib/site-packages/pip/_vendor/pkg_resources/py31compat.py +0 -23
- venv/Lib/site-packages/pip/_vendor/platformdirs/__init__.py +0 -340
- venv/Lib/site-packages/pip/_vendor/platformdirs/__main__.py +0 -46
- venv/Lib/site-packages/pip/_vendor/platformdirs/android.py +0 -120
- venv/Lib/site-packages/pip/_vendor/platformdirs/api.py +0 -156
- venv/Lib/site-packages/pip/_vendor/platformdirs/macos.py +0 -64
- venv/Lib/site-packages/pip/_vendor/platformdirs/unix.py +0 -181
- venv/Lib/site-packages/pip/_vendor/platformdirs/version.py +0 -4
- venv/Lib/site-packages/pip/_vendor/platformdirs/windows.py +0 -182
- venv/Lib/site-packages/pip/_vendor/pygments/__init__.py +0 -82
- venv/Lib/site-packages/pip/_vendor/pygments/__main__.py +0 -17
- venv/Lib/site-packages/pip/_vendor/pygments/cmdline.py +0 -668
- venv/Lib/site-packages/pip/_vendor/pygments/console.py +0 -70
- venv/Lib/site-packages/pip/_vendor/pygments/filter.py +0 -71
- venv/Lib/site-packages/pip/_vendor/pygments/filters/__init__.py +0 -940
- venv/Lib/site-packages/pip/_vendor/pygments/formatter.py +0 -94
- venv/Lib/site-packages/pip/_vendor/pygments/formatters/__init__.py +0 -143
- venv/Lib/site-packages/pip/_vendor/pygments/formatters/_mapping.py +0 -23
- venv/Lib/site-packages/pip/_vendor/pygments/formatters/bbcode.py +0 -108
- venv/Lib/site-packages/pip/_vendor/pygments/formatters/groff.py +0 -170
- venv/Lib/site-packages/pip/_vendor/pygments/formatters/html.py +0 -989
- venv/Lib/site-packages/pip/_vendor/pygments/formatters/img.py +0 -645
- venv/Lib/site-packages/pip/_vendor/pygments/formatters/irc.py +0 -179
- venv/Lib/site-packages/pip/_vendor/pygments/formatters/latex.py +0 -521
- venv/Lib/site-packages/pip/_vendor/pygments/formatters/other.py +0 -161
- venv/Lib/site-packages/pip/_vendor/pygments/formatters/pangomarkup.py +0 -83
- venv/Lib/site-packages/pip/_vendor/pygments/formatters/rtf.py +0 -146
- venv/Lib/site-packages/pip/_vendor/pygments/formatters/svg.py +0 -188
- venv/Lib/site-packages/pip/_vendor/pygments/formatters/terminal.py +0 -127
- venv/Lib/site-packages/pip/_vendor/pygments/formatters/terminal256.py +0 -338
- venv/Lib/site-packages/pip/_vendor/pygments/lexer.py +0 -882
- venv/Lib/site-packages/pip/_vendor/pygments/lexers/__init__.py +0 -335
- venv/Lib/site-packages/pip/_vendor/pygments/lexers/_mapping.py +0 -541
- venv/Lib/site-packages/pip/_vendor/pygments/lexers/python.py +0 -1204
- venv/Lib/site-packages/pip/_vendor/pygments/modeline.py +0 -43
- venv/Lib/site-packages/pip/_vendor/pygments/plugin.py +0 -88
- venv/Lib/site-packages/pip/_vendor/pygments/regexopt.py +0 -91
- venv/Lib/site-packages/pip/_vendor/pygments/scanner.py +0 -104
- venv/Lib/site-packages/pip/_vendor/pygments/sphinxext.py +0 -155
- venv/Lib/site-packages/pip/_vendor/pygments/style.py +0 -197
- venv/Lib/site-packages/pip/_vendor/pygments/styles/__init__.py +0 -97
- venv/Lib/site-packages/pip/_vendor/pygments/token.py +0 -213
- venv/Lib/site-packages/pip/_vendor/pygments/unistring.py +0 -153
- venv/Lib/site-packages/pip/_vendor/pygments/util.py +0 -308
- venv/Lib/site-packages/pip/_vendor/pyparsing/__init__.py +0 -331
- venv/Lib/site-packages/pip/_vendor/pyparsing/actions.py +0 -207
- venv/Lib/site-packages/pip/_vendor/pyparsing/common.py +0 -424
- venv/Lib/site-packages/pip/_vendor/pyparsing/core.py +0 -5814
- venv/Lib/site-packages/pip/_vendor/pyparsing/diagram/__init__.py +0 -642
- venv/Lib/site-packages/pip/_vendor/pyparsing/exceptions.py +0 -267
- venv/Lib/site-packages/pip/_vendor/pyparsing/helpers.py +0 -1088
- venv/Lib/site-packages/pip/_vendor/pyparsing/results.py +0 -760
- venv/Lib/site-packages/pip/_vendor/pyparsing/testing.py +0 -331
- venv/Lib/site-packages/pip/_vendor/pyparsing/unicode.py +0 -352
- venv/Lib/site-packages/pip/_vendor/pyparsing/util.py +0 -235
- venv/Lib/site-packages/pip/_vendor/requests/__init__.py +0 -182
- venv/Lib/site-packages/pip/_vendor/requests/__version__.py +0 -14
- venv/Lib/site-packages/pip/_vendor/requests/_internal_utils.py +0 -48
- venv/Lib/site-packages/pip/_vendor/requests/adapters.py +0 -584
- venv/Lib/site-packages/pip/_vendor/requests/api.py +0 -157
- venv/Lib/site-packages/pip/_vendor/requests/auth.py +0 -315
- venv/Lib/site-packages/pip/_vendor/requests/certs.py +0 -24
- venv/Lib/site-packages/pip/_vendor/requests/compat.py +0 -67
- venv/Lib/site-packages/pip/_vendor/requests/cookies.py +0 -561
- venv/Lib/site-packages/pip/_vendor/requests/exceptions.py +0 -141
- venv/Lib/site-packages/pip/_vendor/requests/help.py +0 -131
- venv/Lib/site-packages/pip/_vendor/requests/hooks.py +0 -33
- venv/Lib/site-packages/pip/_vendor/requests/models.py +0 -1034
- venv/Lib/site-packages/pip/_vendor/requests/packages.py +0 -16
- venv/Lib/site-packages/pip/_vendor/requests/sessions.py +0 -831
- venv/Lib/site-packages/pip/_vendor/requests/status_codes.py +0 -128
- venv/Lib/site-packages/pip/_vendor/requests/structures.py +0 -99
- venv/Lib/site-packages/pip/_vendor/requests/utils.py +0 -1086
- venv/Lib/site-packages/pip/_vendor/resolvelib/__init__.py +0 -26
- venv/Lib/site-packages/pip/_vendor/resolvelib/compat/__init__.py +0 -0
- venv/Lib/site-packages/pip/_vendor/resolvelib/compat/collections_abc.py +0 -6
- venv/Lib/site-packages/pip/_vendor/resolvelib/providers.py +0 -133
- venv/Lib/site-packages/pip/_vendor/resolvelib/reporters.py +0 -43
- venv/Lib/site-packages/pip/_vendor/resolvelib/resolvers.py +0 -482
- venv/Lib/site-packages/pip/_vendor/resolvelib/structs.py +0 -165
- venv/Lib/site-packages/pip/_vendor/rich/__init__.py +0 -176
- venv/Lib/site-packages/pip/_vendor/rich/__main__.py +0 -282
- venv/Lib/site-packages/pip/_vendor/rich/_cell_widths.py +0 -451
- venv/Lib/site-packages/pip/_vendor/rich/_emoji_codes.py +0 -3610
- venv/Lib/site-packages/pip/_vendor/rich/_emoji_replace.py +0 -32
- venv/Lib/site-packages/pip/_vendor/rich/_export_format.py +0 -78
- venv/Lib/site-packages/pip/_vendor/rich/_extension.py +0 -10
- venv/Lib/site-packages/pip/_vendor/rich/_inspect.py +0 -270
- venv/Lib/site-packages/pip/_vendor/rich/_log_render.py +0 -94
- venv/Lib/site-packages/pip/_vendor/rich/_loop.py +0 -43
- venv/Lib/site-packages/pip/_vendor/rich/_palettes.py +0 -309
- venv/Lib/site-packages/pip/_vendor/rich/_pick.py +0 -17
- venv/Lib/site-packages/pip/_vendor/rich/_ratio.py +0 -160
- venv/Lib/site-packages/pip/_vendor/rich/_spinners.py +0 -482
- venv/Lib/site-packages/pip/_vendor/rich/_stack.py +0 -16
- venv/Lib/site-packages/pip/_vendor/rich/_timer.py +0 -19
- venv/Lib/site-packages/pip/_vendor/rich/_win32_console.py +0 -662
- venv/Lib/site-packages/pip/_vendor/rich/_windows.py +0 -72
- venv/Lib/site-packages/pip/_vendor/rich/_windows_renderer.py +0 -56
- venv/Lib/site-packages/pip/_vendor/rich/_wrap.py +0 -56
- venv/Lib/site-packages/pip/_vendor/rich/abc.py +0 -33
- venv/Lib/site-packages/pip/_vendor/rich/align.py +0 -311
- venv/Lib/site-packages/pip/_vendor/rich/ansi.py +0 -237
- venv/Lib/site-packages/pip/_vendor/rich/bar.py +0 -94
- venv/Lib/site-packages/pip/_vendor/rich/box.py +0 -517
- venv/Lib/site-packages/pip/_vendor/rich/cells.py +0 -154
- venv/Lib/site-packages/pip/_vendor/rich/color.py +0 -615
- venv/Lib/site-packages/pip/_vendor/rich/color_triplet.py +0 -38
- venv/Lib/site-packages/pip/_vendor/rich/columns.py +0 -187
- venv/Lib/site-packages/pip/_vendor/rich/console.py +0 -2572
- venv/Lib/site-packages/pip/_vendor/rich/constrain.py +0 -37
- venv/Lib/site-packages/pip/_vendor/rich/containers.py +0 -167
- venv/Lib/site-packages/pip/_vendor/rich/control.py +0 -225
- venv/Lib/site-packages/pip/_vendor/rich/default_styles.py +0 -188
- venv/Lib/site-packages/pip/_vendor/rich/diagnose.py +0 -37
- venv/Lib/site-packages/pip/_vendor/rich/emoji.py +0 -96
- venv/Lib/site-packages/pip/_vendor/rich/errors.py +0 -34
- venv/Lib/site-packages/pip/_vendor/rich/file_proxy.py +0 -54
- venv/Lib/site-packages/pip/_vendor/rich/filesize.py +0 -89
- venv/Lib/site-packages/pip/_vendor/rich/highlighter.py +0 -232
- venv/Lib/site-packages/pip/_vendor/rich/json.py +0 -140
- venv/Lib/site-packages/pip/_vendor/rich/jupyter.py +0 -101
- venv/Lib/site-packages/pip/_vendor/rich/layout.py +0 -445
- venv/Lib/site-packages/pip/_vendor/rich/live.py +0 -373
- venv/Lib/site-packages/pip/_vendor/rich/live_render.py +0 -113
- venv/Lib/site-packages/pip/_vendor/rich/logging.py +0 -280
- venv/Lib/site-packages/pip/_vendor/rich/markup.py +0 -246
- venv/Lib/site-packages/pip/_vendor/rich/measure.py +0 -151
- venv/Lib/site-packages/pip/_vendor/rich/padding.py +0 -141
- venv/Lib/site-packages/pip/_vendor/rich/pager.py +0 -34
- venv/Lib/site-packages/pip/_vendor/rich/palette.py +0 -100
- venv/Lib/site-packages/pip/_vendor/rich/panel.py +0 -251
- venv/Lib/site-packages/pip/_vendor/rich/pretty.py +0 -1010
- venv/Lib/site-packages/pip/_vendor/rich/progress.py +0 -1703
- venv/Lib/site-packages/pip/_vendor/rich/progress_bar.py +0 -224
- venv/Lib/site-packages/pip/_vendor/rich/prompt.py +0 -376
- venv/Lib/site-packages/pip/_vendor/rich/protocol.py +0 -42
- venv/Lib/site-packages/pip/_vendor/rich/region.py +0 -10
- venv/Lib/site-packages/pip/_vendor/rich/repr.py +0 -152
- venv/Lib/site-packages/pip/_vendor/rich/rule.py +0 -134
- venv/Lib/site-packages/pip/_vendor/rich/scope.py +0 -86
- venv/Lib/site-packages/pip/_vendor/rich/screen.py +0 -54
- venv/Lib/site-packages/pip/_vendor/rich/segment.py +0 -739
- venv/Lib/site-packages/pip/_vendor/rich/spinner.py +0 -136
- venv/Lib/site-packages/pip/_vendor/rich/status.py +0 -132
- venv/Lib/site-packages/pip/_vendor/rich/style.py +0 -771
- venv/Lib/site-packages/pip/_vendor/rich/styled.py +0 -42
- venv/Lib/site-packages/pip/_vendor/rich/syntax.py +0 -934
- venv/Lib/site-packages/pip/_vendor/rich/table.py +0 -996
- venv/Lib/site-packages/pip/_vendor/rich/terminal_theme.py +0 -153
- venv/Lib/site-packages/pip/_vendor/rich/text.py +0 -1286
- venv/Lib/site-packages/pip/_vendor/rich/theme.py +0 -112
- venv/Lib/site-packages/pip/_vendor/rich/themes.py +0 -5
- venv/Lib/site-packages/pip/_vendor/rich/traceback.py +0 -679
- venv/Lib/site-packages/pip/_vendor/rich/tree.py +0 -251
- venv/Lib/site-packages/pip/_vendor/six.py +0 -998
- venv/Lib/site-packages/pip/_vendor/tenacity/__init__.py +0 -519
- venv/Lib/site-packages/pip/_vendor/tenacity/_asyncio.py +0 -92
- venv/Lib/site-packages/pip/_vendor/tenacity/_utils.py +0 -68
- venv/Lib/site-packages/pip/_vendor/tenacity/after.py +0 -46
- venv/Lib/site-packages/pip/_vendor/tenacity/before.py +0 -41
- venv/Lib/site-packages/pip/_vendor/tenacity/before_sleep.py +0 -58
- venv/Lib/site-packages/pip/_vendor/tenacity/nap.py +0 -43
- venv/Lib/site-packages/pip/_vendor/tenacity/retry.py +0 -240
- venv/Lib/site-packages/pip/_vendor/tenacity/stop.py +0 -96
- venv/Lib/site-packages/pip/_vendor/tenacity/tornadoweb.py +0 -59
- venv/Lib/site-packages/pip/_vendor/tenacity/wait.py +0 -232
- venv/Lib/site-packages/pip/_vendor/tomli/__init__.py +0 -11
- venv/Lib/site-packages/pip/_vendor/tomli/_parser.py +0 -691
- venv/Lib/site-packages/pip/_vendor/tomli/_re.py +0 -107
- venv/Lib/site-packages/pip/_vendor/tomli/_types.py +0 -10
- venv/Lib/site-packages/pip/_vendor/typing_extensions.py +0 -2209
- venv/Lib/site-packages/pip/_vendor/urllib3/__init__.py +0 -102
- venv/Lib/site-packages/pip/_vendor/urllib3/_collections.py +0 -337
- venv/Lib/site-packages/pip/_vendor/urllib3/_version.py +0 -2
- venv/Lib/site-packages/pip/_vendor/urllib3/connection.py +0 -567
- venv/Lib/site-packages/pip/_vendor/urllib3/connectionpool.py +0 -1110
- venv/Lib/site-packages/pip/_vendor/urllib3/contrib/__init__.py +0 -0
- venv/Lib/site-packages/pip/_vendor/urllib3/contrib/_appengine_environ.py +0 -36
- venv/Lib/site-packages/pip/_vendor/urllib3/contrib/_securetransport/__init__.py +0 -0
- venv/Lib/site-packages/pip/_vendor/urllib3/contrib/_securetransport/bindings.py +0 -519
- venv/Lib/site-packages/pip/_vendor/urllib3/contrib/_securetransport/low_level.py +0 -397
- venv/Lib/site-packages/pip/_vendor/urllib3/contrib/appengine.py +0 -314
- venv/Lib/site-packages/pip/_vendor/urllib3/contrib/ntlmpool.py +0 -130
- venv/Lib/site-packages/pip/_vendor/urllib3/contrib/pyopenssl.py +0 -519
- venv/Lib/site-packages/pip/_vendor/urllib3/contrib/securetransport.py +0 -921
- venv/Lib/site-packages/pip/_vendor/urllib3/contrib/socks.py +0 -216
- venv/Lib/site-packages/pip/_vendor/urllib3/exceptions.py +0 -323
- venv/Lib/site-packages/pip/_vendor/urllib3/fields.py +0 -274
- venv/Lib/site-packages/pip/_vendor/urllib3/filepost.py +0 -98
- venv/Lib/site-packages/pip/_vendor/urllib3/packages/__init__.py +0 -0
- venv/Lib/site-packages/pip/_vendor/urllib3/packages/backports/__init__.py +0 -0
- venv/Lib/site-packages/pip/_vendor/urllib3/packages/backports/makefile.py +0 -51
- venv/Lib/site-packages/pip/_vendor/urllib3/packages/six.py +0 -1076
- venv/Lib/site-packages/pip/_vendor/urllib3/poolmanager.py +0 -537
- venv/Lib/site-packages/pip/_vendor/urllib3/request.py +0 -170
- venv/Lib/site-packages/pip/_vendor/urllib3/response.py +0 -866
- venv/Lib/site-packages/pip/_vendor/urllib3/util/__init__.py +0 -49
- venv/Lib/site-packages/pip/_vendor/urllib3/util/connection.py +0 -149
- venv/Lib/site-packages/pip/_vendor/urllib3/util/proxy.py +0 -57
- venv/Lib/site-packages/pip/_vendor/urllib3/util/queue.py +0 -22
- venv/Lib/site-packages/pip/_vendor/urllib3/util/request.py +0 -137
- venv/Lib/site-packages/pip/_vendor/urllib3/util/response.py +0 -107
- venv/Lib/site-packages/pip/_vendor/urllib3/util/retry.py +0 -620
- venv/Lib/site-packages/pip/_vendor/urllib3/util/ssl_.py +0 -495
- venv/Lib/site-packages/pip/_vendor/urllib3/util/ssl_match_hostname.py +0 -159
- venv/Lib/site-packages/pip/_vendor/urllib3/util/ssltransport.py +0 -221
- venv/Lib/site-packages/pip/_vendor/urllib3/util/timeout.py +0 -268
- venv/Lib/site-packages/pip/_vendor/urllib3/util/url.py +0 -435
- venv/Lib/site-packages/pip/_vendor/urllib3/util/wait.py +0 -152
- venv/Lib/site-packages/pip/_vendor/webencodings/__init__.py +0 -342
- venv/Lib/site-packages/pip/_vendor/webencodings/labels.py +0 -231
- venv/Lib/site-packages/pip/_vendor/webencodings/mklabels.py +0 -59
- venv/Lib/site-packages/pip/_vendor/webencodings/tests.py +0 -153
- venv/Lib/site-packages/pip/_vendor/webencodings/x_user_defined.py +0 -325
- venv/Lib/site-packages/pkg_resources/__init__.py +0 -3357
- venv/Lib/site-packages/pkg_resources/_vendor/__init__.py +0 -0
- venv/Lib/site-packages/pkg_resources/_vendor/importlib_resources/__init__.py +0 -36
- venv/Lib/site-packages/pkg_resources/_vendor/importlib_resources/_adapters.py +0 -170
- venv/Lib/site-packages/pkg_resources/_vendor/importlib_resources/_common.py +0 -207
- venv/Lib/site-packages/pkg_resources/_vendor/importlib_resources/_compat.py +0 -108
- venv/Lib/site-packages/pkg_resources/_vendor/importlib_resources/_itertools.py +0 -35
- venv/Lib/site-packages/pkg_resources/_vendor/importlib_resources/_legacy.py +0 -120
- venv/Lib/site-packages/pkg_resources/_vendor/importlib_resources/abc.py +0 -170
- venv/Lib/site-packages/pkg_resources/_vendor/importlib_resources/readers.py +0 -120
- venv/Lib/site-packages/pkg_resources/_vendor/importlib_resources/simple.py +0 -106
- venv/Lib/site-packages/pkg_resources/_vendor/jaraco/__init__.py +0 -0
- venv/Lib/site-packages/pkg_resources/_vendor/jaraco/context.py +0 -288
- venv/Lib/site-packages/pkg_resources/_vendor/jaraco/functools.py +0 -525
- venv/Lib/site-packages/pkg_resources/_vendor/jaraco/text/__init__.py +0 -599
- venv/Lib/site-packages/pkg_resources/_vendor/more_itertools/__init__.py +0 -6
- venv/Lib/site-packages/pkg_resources/_vendor/more_itertools/more.py +0 -4346
- venv/Lib/site-packages/pkg_resources/_vendor/more_itertools/recipes.py +0 -841
- venv/Lib/site-packages/pkg_resources/_vendor/packaging/__init__.py +0 -15
- venv/Lib/site-packages/pkg_resources/_vendor/packaging/_elffile.py +0 -108
- venv/Lib/site-packages/pkg_resources/_vendor/packaging/_manylinux.py +0 -238
- venv/Lib/site-packages/pkg_resources/_vendor/packaging/_musllinux.py +0 -80
- venv/Lib/site-packages/pkg_resources/_vendor/packaging/_parser.py +0 -328
- venv/Lib/site-packages/pkg_resources/_vendor/packaging/_structures.py +0 -61
- venv/Lib/site-packages/pkg_resources/_vendor/packaging/_tokenizer.py +0 -188
- venv/Lib/site-packages/pkg_resources/_vendor/packaging/markers.py +0 -245
- venv/Lib/site-packages/pkg_resources/_vendor/packaging/requirements.py +0 -95
- venv/Lib/site-packages/pkg_resources/_vendor/packaging/specifiers.py +0 -1005
- venv/Lib/site-packages/pkg_resources/_vendor/packaging/tags.py +0 -546
- venv/Lib/site-packages/pkg_resources/_vendor/packaging/utils.py +0 -141
- venv/Lib/site-packages/pkg_resources/_vendor/packaging/version.py +0 -563
- venv/Lib/site-packages/pkg_resources/_vendor/platformdirs/__init__.py +0 -342
- venv/Lib/site-packages/pkg_resources/_vendor/platformdirs/__main__.py +0 -46
- venv/Lib/site-packages/pkg_resources/_vendor/platformdirs/android.py +0 -120
- venv/Lib/site-packages/pkg_resources/_vendor/platformdirs/api.py +0 -156
- venv/Lib/site-packages/pkg_resources/_vendor/platformdirs/macos.py +0 -64
- venv/Lib/site-packages/pkg_resources/_vendor/platformdirs/unix.py +0 -181
- venv/Lib/site-packages/pkg_resources/_vendor/platformdirs/version.py +0 -4
- venv/Lib/site-packages/pkg_resources/_vendor/platformdirs/windows.py +0 -184
- venv/Lib/site-packages/pkg_resources/_vendor/typing_extensions.py +0 -2209
- venv/Lib/site-packages/pkg_resources/_vendor/zipp.py +0 -329
- venv/Lib/site-packages/pkg_resources/extern/__init__.py +0 -80
- venv/Lib/site-packages/pkginfo/__init__.py +0 -9
- venv/Lib/site-packages/pkginfo/bdist.py +0 -39
- venv/Lib/site-packages/pkginfo/commandline.py +0 -229
- venv/Lib/site-packages/pkginfo/develop.py +0 -46
- venv/Lib/site-packages/pkginfo/distribution.py +0 -162
- venv/Lib/site-packages/pkginfo/index.py +0 -15
- venv/Lib/site-packages/pkginfo/installed.py +0 -62
- venv/Lib/site-packages/pkginfo/sdist.py +0 -75
- venv/Lib/site-packages/pkginfo/tests/__init__.py +0 -37
- venv/Lib/site-packages/pkginfo/tests/test_bdist.py +0 -60
- venv/Lib/site-packages/pkginfo/tests/test_commandline.py +0 -345
- venv/Lib/site-packages/pkginfo/tests/test_develop.py +0 -27
- venv/Lib/site-packages/pkginfo/tests/test_distribution.py +0 -477
- venv/Lib/site-packages/pkginfo/tests/test_index.py +0 -76
- venv/Lib/site-packages/pkginfo/tests/test_installed.py +0 -139
- venv/Lib/site-packages/pkginfo/tests/test_sdist.py +0 -156
- venv/Lib/site-packages/pkginfo/tests/test_utils.py +0 -176
- venv/Lib/site-packages/pkginfo/tests/test_wheel.py +0 -117
- venv/Lib/site-packages/pkginfo/utils.py +0 -62
- venv/Lib/site-packages/pkginfo/wheel.py +0 -55
- venv/Lib/site-packages/pygments/__init__.py +0 -82
- venv/Lib/site-packages/pygments/__main__.py +0 -17
- venv/Lib/site-packages/pygments/cmdline.py +0 -668
- venv/Lib/site-packages/pygments/console.py +0 -70
- venv/Lib/site-packages/pygments/filter.py +0 -71
- venv/Lib/site-packages/pygments/filters/__init__.py +0 -940
- venv/Lib/site-packages/pygments/formatter.py +0 -94
- venv/Lib/site-packages/pygments/formatters/__init__.py +0 -142
- venv/Lib/site-packages/pygments/formatters/_mapping.py +0 -23
- venv/Lib/site-packages/pygments/formatters/bbcode.py +0 -108
- venv/Lib/site-packages/pygments/formatters/groff.py +0 -170
- venv/Lib/site-packages/pygments/formatters/html.py +0 -991
- venv/Lib/site-packages/pygments/formatters/img.py +0 -645
- venv/Lib/site-packages/pygments/formatters/irc.py +0 -154
- venv/Lib/site-packages/pygments/formatters/latex.py +0 -521
- venv/Lib/site-packages/pygments/formatters/other.py +0 -161
- venv/Lib/site-packages/pygments/formatters/pangomarkup.py +0 -83
- venv/Lib/site-packages/pygments/formatters/rtf.py +0 -146
- venv/Lib/site-packages/pygments/formatters/svg.py +0 -188
- venv/Lib/site-packages/pygments/formatters/terminal.py +0 -127
- venv/Lib/site-packages/pygments/formatters/terminal256.py +0 -338
- venv/Lib/site-packages/pygments/lexer.py +0 -883
- venv/Lib/site-packages/pygments/lexers/__init__.py +0 -334
- venv/Lib/site-packages/pygments/lexers/_ada_builtins.py +0 -103
- venv/Lib/site-packages/pygments/lexers/_asy_builtins.py +0 -1644
- venv/Lib/site-packages/pygments/lexers/_cl_builtins.py +0 -231
- venv/Lib/site-packages/pygments/lexers/_cocoa_builtins.py +0 -75
- venv/Lib/site-packages/pygments/lexers/_csound_builtins.py +0 -1780
- venv/Lib/site-packages/pygments/lexers/_css_builtins.py +0 -558
- venv/Lib/site-packages/pygments/lexers/_julia_builtins.py +0 -411
- venv/Lib/site-packages/pygments/lexers/_lasso_builtins.py +0 -5326
- venv/Lib/site-packages/pygments/lexers/_lilypond_builtins.py +0 -4886
- venv/Lib/site-packages/pygments/lexers/_lua_builtins.py +0 -285
- venv/Lib/site-packages/pygments/lexers/_mapping.py +0 -553
- venv/Lib/site-packages/pygments/lexers/_mql_builtins.py +0 -1171
- venv/Lib/site-packages/pygments/lexers/_mysql_builtins.py +0 -1335
- venv/Lib/site-packages/pygments/lexers/_openedge_builtins.py +0 -2600
- venv/Lib/site-packages/pygments/lexers/_php_builtins.py +0 -3325
- venv/Lib/site-packages/pygments/lexers/_postgres_builtins.py +0 -684
- venv/Lib/site-packages/pygments/lexers/_qlik_builtins.py +0 -666
- venv/Lib/site-packages/pygments/lexers/_scheme_builtins.py +0 -1609
- venv/Lib/site-packages/pygments/lexers/_scilab_builtins.py +0 -3093
- venv/Lib/site-packages/pygments/lexers/_sourcemod_builtins.py +0 -1151
- venv/Lib/site-packages/pygments/lexers/_stan_builtins.py +0 -648
- venv/Lib/site-packages/pygments/lexers/_stata_builtins.py +0 -457
- venv/Lib/site-packages/pygments/lexers/_tsql_builtins.py +0 -1003
- venv/Lib/site-packages/pygments/lexers/_usd_builtins.py +0 -112
- venv/Lib/site-packages/pygments/lexers/_vbscript_builtins.py +0 -279
- venv/Lib/site-packages/pygments/lexers/_vim_builtins.py +0 -1938
- venv/Lib/site-packages/pygments/lexers/actionscript.py +0 -245
- venv/Lib/site-packages/pygments/lexers/ada.py +0 -144
- venv/Lib/site-packages/pygments/lexers/agile.py +0 -23
- venv/Lib/site-packages/pygments/lexers/algebra.py +0 -302
- venv/Lib/site-packages/pygments/lexers/ambient.py +0 -76
- venv/Lib/site-packages/pygments/lexers/amdgpu.py +0 -53
- venv/Lib/site-packages/pygments/lexers/ampl.py +0 -88
- venv/Lib/site-packages/pygments/lexers/apdlexer.py +0 -447
- venv/Lib/site-packages/pygments/lexers/apl.py +0 -104
- venv/Lib/site-packages/pygments/lexers/archetype.py +0 -319
- venv/Lib/site-packages/pygments/lexers/arrow.py +0 -117
- venv/Lib/site-packages/pygments/lexers/arturo.py +0 -250
- venv/Lib/site-packages/pygments/lexers/asc.py +0 -55
- venv/Lib/site-packages/pygments/lexers/asm.py +0 -1037
- venv/Lib/site-packages/pygments/lexers/automation.py +0 -381
- venv/Lib/site-packages/pygments/lexers/bare.py +0 -102
- venv/Lib/site-packages/pygments/lexers/basic.py +0 -665
- venv/Lib/site-packages/pygments/lexers/bdd.py +0 -58
- venv/Lib/site-packages/pygments/lexers/berry.py +0 -99
- venv/Lib/site-packages/pygments/lexers/bibtex.py +0 -159
- venv/Lib/site-packages/pygments/lexers/boa.py +0 -97
- venv/Lib/site-packages/pygments/lexers/business.py +0 -626
- venv/Lib/site-packages/pygments/lexers/c_cpp.py +0 -409
- venv/Lib/site-packages/pygments/lexers/c_like.py +0 -666
- venv/Lib/site-packages/pygments/lexers/capnproto.py +0 -75
- venv/Lib/site-packages/pygments/lexers/cddl.py +0 -173
- venv/Lib/site-packages/pygments/lexers/chapel.py +0 -136
- venv/Lib/site-packages/pygments/lexers/clean.py +0 -179
- venv/Lib/site-packages/pygments/lexers/comal.py +0 -80
- venv/Lib/site-packages/pygments/lexers/compiled.py +0 -34
- venv/Lib/site-packages/pygments/lexers/configs.py +0 -1174
- venv/Lib/site-packages/pygments/lexers/console.py +0 -114
- venv/Lib/site-packages/pygments/lexers/cplint.py +0 -44
- venv/Lib/site-packages/pygments/lexers/crystal.py +0 -365
- venv/Lib/site-packages/pygments/lexers/csound.py +0 -468
- venv/Lib/site-packages/pygments/lexers/css.py +0 -602
- venv/Lib/site-packages/pygments/lexers/d.py +0 -258
- venv/Lib/site-packages/pygments/lexers/dalvik.py +0 -127
- venv/Lib/site-packages/pygments/lexers/data.py +0 -767
- venv/Lib/site-packages/pygments/lexers/devicetree.py +0 -109
- venv/Lib/site-packages/pygments/lexers/diff.py +0 -165
- venv/Lib/site-packages/pygments/lexers/dotnet.py +0 -729
- venv/Lib/site-packages/pygments/lexers/dsls.py +0 -981
- venv/Lib/site-packages/pygments/lexers/dylan.py +0 -287
- venv/Lib/site-packages/pygments/lexers/ecl.py +0 -145
- venv/Lib/site-packages/pygments/lexers/eiffel.py +0 -69
- venv/Lib/site-packages/pygments/lexers/elm.py +0 -124
- venv/Lib/site-packages/pygments/lexers/elpi.py +0 -165
- venv/Lib/site-packages/pygments/lexers/email.py +0 -132
- venv/Lib/site-packages/pygments/lexers/erlang.py +0 -528
- venv/Lib/site-packages/pygments/lexers/esoteric.py +0 -301
- venv/Lib/site-packages/pygments/lexers/ezhil.py +0 -77
- venv/Lib/site-packages/pygments/lexers/factor.py +0 -364
- venv/Lib/site-packages/pygments/lexers/fantom.py +0 -251
- venv/Lib/site-packages/pygments/lexers/felix.py +0 -276
- venv/Lib/site-packages/pygments/lexers/fift.py +0 -67
- venv/Lib/site-packages/pygments/lexers/floscript.py +0 -82
- venv/Lib/site-packages/pygments/lexers/forth.py +0 -179
- venv/Lib/site-packages/pygments/lexers/fortran.py +0 -213
- venv/Lib/site-packages/pygments/lexers/foxpro.py +0 -427
- venv/Lib/site-packages/pygments/lexers/freefem.py +0 -894
- venv/Lib/site-packages/pygments/lexers/func.py +0 -108
- venv/Lib/site-packages/pygments/lexers/functional.py +0 -20
- venv/Lib/site-packages/pygments/lexers/futhark.py +0 -106
- venv/Lib/site-packages/pygments/lexers/gcodelexer.py +0 -35
- venv/Lib/site-packages/pygments/lexers/gdscript.py +0 -188
- venv/Lib/site-packages/pygments/lexers/go.py +0 -98
- venv/Lib/site-packages/pygments/lexers/grammar_notation.py +0 -265
- venv/Lib/site-packages/pygments/lexers/graph.py +0 -105
- venv/Lib/site-packages/pygments/lexers/graphics.py +0 -797
- venv/Lib/site-packages/pygments/lexers/graphviz.py +0 -59
- venv/Lib/site-packages/pygments/lexers/gsql.py +0 -104
- venv/Lib/site-packages/pygments/lexers/haskell.py +0 -871
- venv/Lib/site-packages/pygments/lexers/haxe.py +0 -937
- venv/Lib/site-packages/pygments/lexers/hdl.py +0 -465
- venv/Lib/site-packages/pygments/lexers/hexdump.py +0 -102
- venv/Lib/site-packages/pygments/lexers/html.py +0 -605
- venv/Lib/site-packages/pygments/lexers/idl.py +0 -285
- venv/Lib/site-packages/pygments/lexers/igor.py +0 -420
- venv/Lib/site-packages/pygments/lexers/inferno.py +0 -96
- venv/Lib/site-packages/pygments/lexers/installers.py +0 -327
- venv/Lib/site-packages/pygments/lexers/int_fiction.py +0 -1382
- venv/Lib/site-packages/pygments/lexers/iolang.py +0 -62
- venv/Lib/site-packages/pygments/lexers/j.py +0 -152
- venv/Lib/site-packages/pygments/lexers/javascript.py +0 -1588
- venv/Lib/site-packages/pygments/lexers/jmespath.py +0 -68
- venv/Lib/site-packages/pygments/lexers/jslt.py +0 -95
- venv/Lib/site-packages/pygments/lexers/jsonnet.py +0 -168
- venv/Lib/site-packages/pygments/lexers/julia.py +0 -294
- venv/Lib/site-packages/pygments/lexers/jvm.py +0 -1820
- venv/Lib/site-packages/pygments/lexers/kuin.py +0 -333
- venv/Lib/site-packages/pygments/lexers/lilypond.py +0 -226
- venv/Lib/site-packages/pygments/lexers/lisp.py +0 -2838
- venv/Lib/site-packages/pygments/lexers/macaulay2.py +0 -1739
- venv/Lib/site-packages/pygments/lexers/make.py +0 -209
- venv/Lib/site-packages/pygments/lexers/markup.py +0 -765
- venv/Lib/site-packages/pygments/lexers/math.py +0 -20
- venv/Lib/site-packages/pygments/lexers/matlab.py +0 -3308
- venv/Lib/site-packages/pygments/lexers/maxima.py +0 -85
- venv/Lib/site-packages/pygments/lexers/meson.py +0 -140
- venv/Lib/site-packages/pygments/lexers/mime.py +0 -210
- venv/Lib/site-packages/pygments/lexers/minecraft.py +0 -394
- venv/Lib/site-packages/pygments/lexers/mips.py +0 -128
- venv/Lib/site-packages/pygments/lexers/ml.py +0 -960
- venv/Lib/site-packages/pygments/lexers/modeling.py +0 -369
- venv/Lib/site-packages/pygments/lexers/modula2.py +0 -1580
- venv/Lib/site-packages/pygments/lexers/monte.py +0 -204
- venv/Lib/site-packages/pygments/lexers/mosel.py +0 -447
- venv/Lib/site-packages/pygments/lexers/ncl.py +0 -893
- venv/Lib/site-packages/pygments/lexers/nimrod.py +0 -200
- venv/Lib/site-packages/pygments/lexers/nit.py +0 -64
- venv/Lib/site-packages/pygments/lexers/nix.py +0 -135
- venv/Lib/site-packages/pygments/lexers/oberon.py +0 -120
- venv/Lib/site-packages/pygments/lexers/objective.py +0 -505
- venv/Lib/site-packages/pygments/lexers/ooc.py +0 -85
- venv/Lib/site-packages/pygments/lexers/other.py +0 -40
- venv/Lib/site-packages/pygments/lexers/parasail.py +0 -79
- venv/Lib/site-packages/pygments/lexers/parsers.py +0 -801
- venv/Lib/site-packages/pygments/lexers/pascal.py +0 -641
- venv/Lib/site-packages/pygments/lexers/pawn.py +0 -202
- venv/Lib/site-packages/pygments/lexers/perl.py +0 -733
- venv/Lib/site-packages/pygments/lexers/phix.py +0 -364
- venv/Lib/site-packages/pygments/lexers/php.py +0 -319
- venv/Lib/site-packages/pygments/lexers/pointless.py +0 -71
- venv/Lib/site-packages/pygments/lexers/pony.py +0 -93
- venv/Lib/site-packages/pygments/lexers/praat.py +0 -304
- venv/Lib/site-packages/pygments/lexers/procfile.py +0 -42
- venv/Lib/site-packages/pygments/lexers/prolog.py +0 -304
- venv/Lib/site-packages/pygments/lexers/promql.py +0 -175
- venv/Lib/site-packages/pygments/lexers/python.py +0 -1204
- venv/Lib/site-packages/pygments/lexers/q.py +0 -188
- venv/Lib/site-packages/pygments/lexers/qlik.py +0 -117
- venv/Lib/site-packages/pygments/lexers/qvt.py +0 -151
- venv/Lib/site-packages/pygments/lexers/r.py +0 -190
- venv/Lib/site-packages/pygments/lexers/rdf.py +0 -462
- venv/Lib/site-packages/pygments/lexers/rebol.py +0 -430
- venv/Lib/site-packages/pygments/lexers/resource.py +0 -84
- venv/Lib/site-packages/pygments/lexers/ride.py +0 -139
- venv/Lib/site-packages/pygments/lexers/rita.py +0 -43
- venv/Lib/site-packages/pygments/lexers/rnc.py +0 -67
- venv/Lib/site-packages/pygments/lexers/roboconf.py +0 -81
- venv/Lib/site-packages/pygments/lexers/robotframework.py +0 -552
- venv/Lib/site-packages/pygments/lexers/ruby.py +0 -523
- venv/Lib/site-packages/pygments/lexers/rust.py +0 -223
- venv/Lib/site-packages/pygments/lexers/sas.py +0 -227
- venv/Lib/site-packages/pygments/lexers/savi.py +0 -170
- venv/Lib/site-packages/pygments/lexers/scdoc.py +0 -79
- venv/Lib/site-packages/pygments/lexers/scripting.py +0 -1286
- venv/Lib/site-packages/pygments/lexers/sgf.py +0 -60
- venv/Lib/site-packages/pygments/lexers/shell.py +0 -918
- venv/Lib/site-packages/pygments/lexers/sieve.py +0 -78
- venv/Lib/site-packages/pygments/lexers/slash.py +0 -184
- venv/Lib/site-packages/pygments/lexers/smalltalk.py +0 -196
- venv/Lib/site-packages/pygments/lexers/smithy.py +0 -78
- venv/Lib/site-packages/pygments/lexers/smv.py +0 -78
- venv/Lib/site-packages/pygments/lexers/snobol.py +0 -82
- venv/Lib/site-packages/pygments/lexers/solidity.py +0 -87
- venv/Lib/site-packages/pygments/lexers/sophia.py +0 -103
- venv/Lib/site-packages/pygments/lexers/special.py +0 -116
- venv/Lib/site-packages/pygments/lexers/spice.py +0 -71
- venv/Lib/site-packages/pygments/lexers/sql.py +0 -838
- venv/Lib/site-packages/pygments/lexers/srcinfo.py +0 -62
- venv/Lib/site-packages/pygments/lexers/stata.py +0 -171
- venv/Lib/site-packages/pygments/lexers/supercollider.py +0 -95
- venv/Lib/site-packages/pygments/lexers/tal.py +0 -74
- venv/Lib/site-packages/pygments/lexers/tcl.py +0 -149
- venv/Lib/site-packages/pygments/lexers/teal.py +0 -89
- venv/Lib/site-packages/pygments/lexers/templates.py +0 -2300
- venv/Lib/site-packages/pygments/lexers/teraterm.py +0 -326
- venv/Lib/site-packages/pygments/lexers/testing.py +0 -210
- venv/Lib/site-packages/pygments/lexers/text.py +0 -26
- venv/Lib/site-packages/pygments/lexers/textedit.py +0 -202
- venv/Lib/site-packages/pygments/lexers/textfmts.py +0 -431
- venv/Lib/site-packages/pygments/lexers/theorem.py +0 -484
- venv/Lib/site-packages/pygments/lexers/thingsdb.py +0 -116
- venv/Lib/site-packages/pygments/lexers/tlb.py +0 -57
- venv/Lib/site-packages/pygments/lexers/tnt.py +0 -271
- venv/Lib/site-packages/pygments/lexers/trafficscript.py +0 -51
- venv/Lib/site-packages/pygments/lexers/typoscript.py +0 -217
- venv/Lib/site-packages/pygments/lexers/ul4.py +0 -267
- venv/Lib/site-packages/pygments/lexers/unicon.py +0 -411
- venv/Lib/site-packages/pygments/lexers/urbi.py +0 -145
- venv/Lib/site-packages/pygments/lexers/usd.py +0 -90
- venv/Lib/site-packages/pygments/lexers/varnish.py +0 -189
- venv/Lib/site-packages/pygments/lexers/verification.py +0 -114
- venv/Lib/site-packages/pygments/lexers/web.py +0 -23
- venv/Lib/site-packages/pygments/lexers/webassembly.py +0 -120
- venv/Lib/site-packages/pygments/lexers/webidl.py +0 -299
- venv/Lib/site-packages/pygments/lexers/webmisc.py +0 -1010
- venv/Lib/site-packages/pygments/lexers/whiley.py +0 -116
- venv/Lib/site-packages/pygments/lexers/wowtoc.py +0 -120
- venv/Lib/site-packages/pygments/lexers/wren.py +0 -99
- venv/Lib/site-packages/pygments/lexers/x10.py +0 -67
- venv/Lib/site-packages/pygments/lexers/xorg.py +0 -37
- venv/Lib/site-packages/pygments/lexers/yang.py +0 -104
- venv/Lib/site-packages/pygments/lexers/zig.py +0 -124
- venv/Lib/site-packages/pygments/modeline.py +0 -43
- venv/Lib/site-packages/pygments/plugin.py +0 -88
- venv/Lib/site-packages/pygments/regexopt.py +0 -91
- venv/Lib/site-packages/pygments/scanner.py +0 -104
- venv/Lib/site-packages/pygments/sphinxext.py +0 -217
- venv/Lib/site-packages/pygments/style.py +0 -197
- venv/Lib/site-packages/pygments/styles/__init__.py +0 -97
- venv/Lib/site-packages/pygments/styles/abap.py +0 -28
- venv/Lib/site-packages/pygments/styles/algol.py +0 -61
- venv/Lib/site-packages/pygments/styles/algol_nu.py +0 -61
- venv/Lib/site-packages/pygments/styles/arduino.py +0 -96
- venv/Lib/site-packages/pygments/styles/autumn.py +0 -62
- venv/Lib/site-packages/pygments/styles/borland.py +0 -48
- venv/Lib/site-packages/pygments/styles/bw.py +0 -47
- venv/Lib/site-packages/pygments/styles/colorful.py +0 -78
- venv/Lib/site-packages/pygments/styles/default.py +0 -71
- venv/Lib/site-packages/pygments/styles/dracula.py +0 -102
- venv/Lib/site-packages/pygments/styles/emacs.py +0 -70
- venv/Lib/site-packages/pygments/styles/friendly.py +0 -71
- venv/Lib/site-packages/pygments/styles/friendly_grayscale.py +0 -75
- venv/Lib/site-packages/pygments/styles/fruity.py +0 -41
- venv/Lib/site-packages/pygments/styles/gh_dark.py +0 -107
- venv/Lib/site-packages/pygments/styles/gruvbox.py +0 -109
- venv/Lib/site-packages/pygments/styles/igor.py +0 -27
- venv/Lib/site-packages/pygments/styles/inkpot.py +0 -67
- venv/Lib/site-packages/pygments/styles/lilypond.py +0 -56
- venv/Lib/site-packages/pygments/styles/lovelace.py +0 -94
- venv/Lib/site-packages/pygments/styles/manni.py +0 -74
- venv/Lib/site-packages/pygments/styles/material.py +0 -117
- venv/Lib/site-packages/pygments/styles/monokai.py +0 -106
- venv/Lib/site-packages/pygments/styles/murphy.py +0 -77
- venv/Lib/site-packages/pygments/styles/native.py +0 -65
- venv/Lib/site-packages/pygments/styles/nord.py +0 -150
- venv/Lib/site-packages/pygments/styles/onedark.py +0 -59
- venv/Lib/site-packages/pygments/styles/paraiso_dark.py +0 -119
- venv/Lib/site-packages/pygments/styles/paraiso_light.py +0 -119
- venv/Lib/site-packages/pygments/styles/pastie.py +0 -72
- venv/Lib/site-packages/pygments/styles/perldoc.py +0 -67
- venv/Lib/site-packages/pygments/styles/rainbow_dash.py +0 -88
- venv/Lib/site-packages/pygments/styles/rrt.py +0 -33
- venv/Lib/site-packages/pygments/styles/sas.py +0 -41
- venv/Lib/site-packages/pygments/styles/solarized.py +0 -136
- venv/Lib/site-packages/pygments/styles/staroffice.py +0 -26
- venv/Lib/site-packages/pygments/styles/stata_dark.py +0 -38
- venv/Lib/site-packages/pygments/styles/stata_light.py +0 -37
- venv/Lib/site-packages/pygments/styles/tango.py +0 -139
- venv/Lib/site-packages/pygments/styles/trac.py +0 -60
- venv/Lib/site-packages/pygments/styles/vim.py +0 -61
- venv/Lib/site-packages/pygments/styles/vs.py +0 -36
- venv/Lib/site-packages/pygments/styles/xcode.py +0 -48
- venv/Lib/site-packages/pygments/styles/zenburn.py +0 -78
- venv/Lib/site-packages/pygments/token.py +0 -213
- venv/Lib/site-packages/pygments/unistring.py +0 -153
- venv/Lib/site-packages/pygments/util.py +0 -308
- venv/Lib/site-packages/pyproject_hooks/__init__.py +0 -23
- venv/Lib/site-packages/pyproject_hooks/_compat.py +0 -8
- venv/Lib/site-packages/pyproject_hooks/_impl.py +0 -330
- venv/Lib/site-packages/pyproject_hooks/_in_process/__init__.py +0 -18
- venv/Lib/site-packages/pyproject_hooks/_in_process/_in_process.py +0 -353
- venv/Lib/site-packages/readme_renderer/__about__.py +0 -38
- venv/Lib/site-packages/readme_renderer/__init__.py +0 -13
- venv/Lib/site-packages/readme_renderer/__main__.py +0 -19
- venv/Lib/site-packages/readme_renderer/clean.py +0 -132
- venv/Lib/site-packages/readme_renderer/markdown.py +0 -123
- venv/Lib/site-packages/readme_renderer/rst.py +0 -135
- venv/Lib/site-packages/readme_renderer/txt.py +0 -24
- venv/Lib/site-packages/requests/__init__.py +0 -180
- venv/Lib/site-packages/requests/__version__.py +0 -14
- venv/Lib/site-packages/requests/_internal_utils.py +0 -48
- venv/Lib/site-packages/requests/adapters.py +0 -584
- venv/Lib/site-packages/requests/api.py +0 -157
- venv/Lib/site-packages/requests/auth.py +0 -315
- venv/Lib/site-packages/requests/certs.py +0 -17
- venv/Lib/site-packages/requests/compat.py +0 -79
- venv/Lib/site-packages/requests/cookies.py +0 -561
- venv/Lib/site-packages/requests/exceptions.py +0 -141
- venv/Lib/site-packages/requests/help.py +0 -134
- venv/Lib/site-packages/requests/hooks.py +0 -33
- venv/Lib/site-packages/requests/models.py +0 -1034
- venv/Lib/site-packages/requests/packages.py +0 -28
- venv/Lib/site-packages/requests/sessions.py +0 -831
- venv/Lib/site-packages/requests/status_codes.py +0 -128
- venv/Lib/site-packages/requests/structures.py +0 -99
- venv/Lib/site-packages/requests/utils.py +0 -1086
- venv/Lib/site-packages/requests_toolbelt/__init__.py +0 -34
- venv/Lib/site-packages/requests_toolbelt/_compat.py +0 -311
- venv/Lib/site-packages/requests_toolbelt/adapters/__init__.py +0 -15
- venv/Lib/site-packages/requests_toolbelt/adapters/appengine.py +0 -206
- venv/Lib/site-packages/requests_toolbelt/adapters/fingerprint.py +0 -48
- venv/Lib/site-packages/requests_toolbelt/adapters/host_header_ssl.py +0 -43
- venv/Lib/site-packages/requests_toolbelt/adapters/socket_options.py +0 -129
- venv/Lib/site-packages/requests_toolbelt/adapters/source.py +0 -67
- venv/Lib/site-packages/requests_toolbelt/adapters/ssl.py +0 -66
- venv/Lib/site-packages/requests_toolbelt/adapters/x509.py +0 -196
- venv/Lib/site-packages/requests_toolbelt/auth/__init__.py +0 -0
- venv/Lib/site-packages/requests_toolbelt/auth/_digest_auth_compat.py +0 -29
- venv/Lib/site-packages/requests_toolbelt/auth/guess.py +0 -146
- venv/Lib/site-packages/requests_toolbelt/auth/handler.py +0 -142
- venv/Lib/site-packages/requests_toolbelt/auth/http_proxy_digest.py +0 -103
- venv/Lib/site-packages/requests_toolbelt/cookies/__init__.py +0 -0
- venv/Lib/site-packages/requests_toolbelt/cookies/forgetful.py +0 -7
- venv/Lib/site-packages/requests_toolbelt/downloadutils/__init__.py +0 -0
- venv/Lib/site-packages/requests_toolbelt/downloadutils/stream.py +0 -176
- venv/Lib/site-packages/requests_toolbelt/downloadutils/tee.py +0 -123
- venv/Lib/site-packages/requests_toolbelt/exceptions.py +0 -37
- venv/Lib/site-packages/requests_toolbelt/multipart/__init__.py +0 -31
- venv/Lib/site-packages/requests_toolbelt/multipart/decoder.py +0 -156
- venv/Lib/site-packages/requests_toolbelt/multipart/encoder.py +0 -655
- venv/Lib/site-packages/requests_toolbelt/sessions.py +0 -89
- venv/Lib/site-packages/requests_toolbelt/streaming_iterator.py +0 -116
- venv/Lib/site-packages/requests_toolbelt/threaded/__init__.py +0 -97
- venv/Lib/site-packages/requests_toolbelt/threaded/pool.py +0 -211
- venv/Lib/site-packages/requests_toolbelt/threaded/thread.py +0 -53
- venv/Lib/site-packages/requests_toolbelt/utils/__init__.py +0 -0
- venv/Lib/site-packages/requests_toolbelt/utils/deprecated.py +0 -91
- venv/Lib/site-packages/requests_toolbelt/utils/dump.py +0 -198
- venv/Lib/site-packages/requests_toolbelt/utils/formdata.py +0 -108
- venv/Lib/site-packages/requests_toolbelt/utils/user_agent.py +0 -143
- venv/Lib/site-packages/rfc3986/__init__.py +0 -53
- venv/Lib/site-packages/rfc3986/_mixin.py +0 -373
- venv/Lib/site-packages/rfc3986/abnf_regexp.py +0 -275
- venv/Lib/site-packages/rfc3986/api.py +0 -104
- venv/Lib/site-packages/rfc3986/builder.py +0 -388
- venv/Lib/site-packages/rfc3986/compat.py +0 -59
- venv/Lib/site-packages/rfc3986/exceptions.py +0 -120
- venv/Lib/site-packages/rfc3986/iri.py +0 -161
- venv/Lib/site-packages/rfc3986/misc.py +0 -131
- venv/Lib/site-packages/rfc3986/normalizers.py +0 -171
- venv/Lib/site-packages/rfc3986/parseresult.py +0 -474
- venv/Lib/site-packages/rfc3986/uri.py +0 -160
- venv/Lib/site-packages/rfc3986/validators.py +0 -440
- venv/Lib/site-packages/rich/__init__.py +0 -176
- venv/Lib/site-packages/rich/__main__.py +0 -282
- venv/Lib/site-packages/rich/_cell_widths.py +0 -451
- venv/Lib/site-packages/rich/_emoji_codes.py +0 -3610
- venv/Lib/site-packages/rich/_emoji_replace.py +0 -32
- venv/Lib/site-packages/rich/_export_format.py +0 -78
- venv/Lib/site-packages/rich/_extension.py +0 -10
- venv/Lib/site-packages/rich/_inspect.py +0 -270
- venv/Lib/site-packages/rich/_log_render.py +0 -94
- venv/Lib/site-packages/rich/_loop.py +0 -43
- venv/Lib/site-packages/rich/_palettes.py +0 -309
- venv/Lib/site-packages/rich/_pick.py +0 -17
- venv/Lib/site-packages/rich/_ratio.py +0 -160
- venv/Lib/site-packages/rich/_spinners.py +0 -482
- venv/Lib/site-packages/rich/_stack.py +0 -16
- venv/Lib/site-packages/rich/_timer.py +0 -19
- venv/Lib/site-packages/rich/_win32_console.py +0 -662
- venv/Lib/site-packages/rich/_windows.py +0 -72
- venv/Lib/site-packages/rich/_windows_renderer.py +0 -56
- venv/Lib/site-packages/rich/_wrap.py +0 -56
- venv/Lib/site-packages/rich/abc.py +0 -33
- venv/Lib/site-packages/rich/align.py +0 -311
- venv/Lib/site-packages/rich/ansi.py +0 -237
- venv/Lib/site-packages/rich/bar.py +0 -94
- venv/Lib/site-packages/rich/box.py +0 -517
- venv/Lib/site-packages/rich/cells.py +0 -154
- venv/Lib/site-packages/rich/color.py +0 -615
- venv/Lib/site-packages/rich/color_triplet.py +0 -38
- venv/Lib/site-packages/rich/columns.py +0 -187
- venv/Lib/site-packages/rich/console.py +0 -2572
- venv/Lib/site-packages/rich/constrain.py +0 -37
- venv/Lib/site-packages/rich/containers.py +0 -167
- venv/Lib/site-packages/rich/control.py +0 -225
- venv/Lib/site-packages/rich/default_styles.py +0 -188
- venv/Lib/site-packages/rich/diagnose.py +0 -37
- venv/Lib/site-packages/rich/emoji.py +0 -96
- venv/Lib/site-packages/rich/errors.py +0 -34
- venv/Lib/site-packages/rich/file_proxy.py +0 -54
- venv/Lib/site-packages/rich/filesize.py +0 -89
- venv/Lib/site-packages/rich/highlighter.py +0 -232
- venv/Lib/site-packages/rich/json.py +0 -140
- venv/Lib/site-packages/rich/jupyter.py +0 -101
- venv/Lib/site-packages/rich/layout.py +0 -445
- venv/Lib/site-packages/rich/live.py +0 -373
- venv/Lib/site-packages/rich/live_render.py +0 -113
- venv/Lib/site-packages/rich/logging.py +0 -280
- venv/Lib/site-packages/rich/markdown.py +0 -625
- venv/Lib/site-packages/rich/markup.py +0 -246
- venv/Lib/site-packages/rich/measure.py +0 -151
- venv/Lib/site-packages/rich/padding.py +0 -141
- venv/Lib/site-packages/rich/pager.py +0 -34
- venv/Lib/site-packages/rich/palette.py +0 -100
- venv/Lib/site-packages/rich/panel.py +0 -251
- venv/Lib/site-packages/rich/pretty.py +0 -1010
- venv/Lib/site-packages/rich/progress.py +0 -1703
- venv/Lib/site-packages/rich/progress_bar.py +0 -224
- venv/Lib/site-packages/rich/prompt.py +0 -376
- venv/Lib/site-packages/rich/protocol.py +0 -42
- venv/Lib/site-packages/rich/region.py +0 -10
- venv/Lib/site-packages/rich/repr.py +0 -152
- venv/Lib/site-packages/rich/rule.py +0 -134
- venv/Lib/site-packages/rich/scope.py +0 -86
- venv/Lib/site-packages/rich/screen.py +0 -54
- venv/Lib/site-packages/rich/segment.py +0 -739
- venv/Lib/site-packages/rich/spinner.py +0 -136
- venv/Lib/site-packages/rich/status.py +0 -132
- venv/Lib/site-packages/rich/style.py +0 -771
- venv/Lib/site-packages/rich/styled.py +0 -42
- venv/Lib/site-packages/rich/syntax.py +0 -934
- venv/Lib/site-packages/rich/table.py +0 -996
- venv/Lib/site-packages/rich/terminal_theme.py +0 -153
- venv/Lib/site-packages/rich/text.py +0 -1286
- venv/Lib/site-packages/rich/theme.py +0 -112
- venv/Lib/site-packages/rich/themes.py +0 -5
- venv/Lib/site-packages/rich/traceback.py +0 -679
- venv/Lib/site-packages/rich/tree.py +0 -251
- venv/Lib/site-packages/setuptools/__init__.py +0 -268
- venv/Lib/site-packages/setuptools/_deprecation_warning.py +0 -7
- venv/Lib/site-packages/setuptools/_distutils/__init__.py +0 -14
- venv/Lib/site-packages/setuptools/_distutils/_collections.py +0 -194
- venv/Lib/site-packages/setuptools/_distutils/_functools.py +0 -20
- venv/Lib/site-packages/setuptools/_distutils/_log.py +0 -4
- venv/Lib/site-packages/setuptools/_distutils/_macos_compat.py +0 -12
- venv/Lib/site-packages/setuptools/_distutils/_msvccompiler.py +0 -568
- venv/Lib/site-packages/setuptools/_distutils/archive_util.py +0 -280
- venv/Lib/site-packages/setuptools/_distutils/bcppcompiler.py +0 -401
- venv/Lib/site-packages/setuptools/_distutils/ccompiler.py +0 -1254
- venv/Lib/site-packages/setuptools/_distutils/cmd.py +0 -435
- venv/Lib/site-packages/setuptools/_distutils/command/__init__.py +0 -25
- venv/Lib/site-packages/setuptools/_distutils/command/_framework_compat.py +0 -55
- venv/Lib/site-packages/setuptools/_distutils/command/bdist.py +0 -156
- venv/Lib/site-packages/setuptools/_distutils/command/bdist_dumb.py +0 -143
- venv/Lib/site-packages/setuptools/_distutils/command/bdist_rpm.py +0 -614
- venv/Lib/site-packages/setuptools/_distutils/command/build.py +0 -152
- venv/Lib/site-packages/setuptools/_distutils/command/build_clib.py +0 -207
- venv/Lib/site-packages/setuptools/_distutils/command/build_ext.py +0 -788
- venv/Lib/site-packages/setuptools/_distutils/command/build_py.py +0 -406
- venv/Lib/site-packages/setuptools/_distutils/command/build_scripts.py +0 -172
- venv/Lib/site-packages/setuptools/_distutils/command/check.py +0 -151
- venv/Lib/site-packages/setuptools/_distutils/command/clean.py +0 -75
- venv/Lib/site-packages/setuptools/_distutils/command/config.py +0 -376
- venv/Lib/site-packages/setuptools/_distutils/command/install.py +0 -813
- venv/Lib/site-packages/setuptools/_distutils/command/install_data.py +0 -83
- venv/Lib/site-packages/setuptools/_distutils/command/install_egg_info.py +0 -92
- venv/Lib/site-packages/setuptools/_distutils/command/install_headers.py +0 -44
- venv/Lib/site-packages/setuptools/_distutils/command/install_lib.py +0 -237
- venv/Lib/site-packages/setuptools/_distutils/command/install_scripts.py +0 -60
- venv/Lib/site-packages/setuptools/_distutils/command/py37compat.py +0 -31
- venv/Lib/site-packages/setuptools/_distutils/command/register.py +0 -320
- venv/Lib/site-packages/setuptools/_distutils/command/sdist.py +0 -530
- venv/Lib/site-packages/setuptools/_distutils/command/upload.py +0 -206
- venv/Lib/site-packages/setuptools/_distutils/config.py +0 -139
- venv/Lib/site-packages/setuptools/_distutils/core.py +0 -291
- venv/Lib/site-packages/setuptools/_distutils/cygwinccompiler.py +0 -356
- venv/Lib/site-packages/setuptools/_distutils/debug.py +0 -5
- venv/Lib/site-packages/setuptools/_distutils/dep_util.py +0 -96
- venv/Lib/site-packages/setuptools/_distutils/dir_util.py +0 -243
- venv/Lib/site-packages/setuptools/_distutils/dist.py +0 -1287
- venv/Lib/site-packages/setuptools/_distutils/errors.py +0 -127
- venv/Lib/site-packages/setuptools/_distutils/extension.py +0 -248
- venv/Lib/site-packages/setuptools/_distutils/fancy_getopt.py +0 -470
- venv/Lib/site-packages/setuptools/_distutils/file_util.py +0 -248
- venv/Lib/site-packages/setuptools/_distutils/filelist.py +0 -371
- venv/Lib/site-packages/setuptools/_distutils/log.py +0 -57
- venv/Lib/site-packages/setuptools/_distutils/msvc9compiler.py +0 -829
- venv/Lib/site-packages/setuptools/_distutils/msvccompiler.py +0 -692
- venv/Lib/site-packages/setuptools/_distutils/py38compat.py +0 -8
- venv/Lib/site-packages/setuptools/_distutils/py39compat.py +0 -22
- venv/Lib/site-packages/setuptools/_distutils/spawn.py +0 -109
- venv/Lib/site-packages/setuptools/_distutils/sysconfig.py +0 -559
- venv/Lib/site-packages/setuptools/_distutils/text_file.py +0 -286
- venv/Lib/site-packages/setuptools/_distutils/unixccompiler.py +0 -400
- venv/Lib/site-packages/setuptools/_distutils/util.py +0 -513
- venv/Lib/site-packages/setuptools/_distutils/version.py +0 -357
- venv/Lib/site-packages/setuptools/_distutils/versionpredicate.py +0 -175
- venv/Lib/site-packages/setuptools/_entry_points.py +0 -94
- venv/Lib/site-packages/setuptools/_imp.py +0 -82
- venv/Lib/site-packages/setuptools/_importlib.py +0 -47
- venv/Lib/site-packages/setuptools/_itertools.py +0 -23
- venv/Lib/site-packages/setuptools/_normalization.py +0 -117
- venv/Lib/site-packages/setuptools/_path.py +0 -37
- venv/Lib/site-packages/setuptools/_reqs.py +0 -33
- venv/Lib/site-packages/setuptools/_vendor/__init__.py +0 -0
- venv/Lib/site-packages/setuptools/_vendor/importlib_metadata/__init__.py +0 -904
- venv/Lib/site-packages/setuptools/_vendor/importlib_metadata/_adapters.py +0 -90
- venv/Lib/site-packages/setuptools/_vendor/importlib_metadata/_collections.py +0 -30
- venv/Lib/site-packages/setuptools/_vendor/importlib_metadata/_compat.py +0 -72
- venv/Lib/site-packages/setuptools/_vendor/importlib_metadata/_functools.py +0 -104
- venv/Lib/site-packages/setuptools/_vendor/importlib_metadata/_itertools.py +0 -73
- venv/Lib/site-packages/setuptools/_vendor/importlib_metadata/_meta.py +0 -49
- venv/Lib/site-packages/setuptools/_vendor/importlib_metadata/_py39compat.py +0 -35
- venv/Lib/site-packages/setuptools/_vendor/importlib_metadata/_text.py +0 -99
- venv/Lib/site-packages/setuptools/_vendor/importlib_resources/__init__.py +0 -36
- venv/Lib/site-packages/setuptools/_vendor/importlib_resources/_adapters.py +0 -170
- venv/Lib/site-packages/setuptools/_vendor/importlib_resources/_common.py +0 -207
- venv/Lib/site-packages/setuptools/_vendor/importlib_resources/_compat.py +0 -108
- venv/Lib/site-packages/setuptools/_vendor/importlib_resources/_itertools.py +0 -35
- venv/Lib/site-packages/setuptools/_vendor/importlib_resources/_legacy.py +0 -120
- venv/Lib/site-packages/setuptools/_vendor/importlib_resources/abc.py +0 -170
- venv/Lib/site-packages/setuptools/_vendor/importlib_resources/readers.py +0 -120
- venv/Lib/site-packages/setuptools/_vendor/importlib_resources/simple.py +0 -106
- venv/Lib/site-packages/setuptools/_vendor/jaraco/__init__.py +0 -0
- venv/Lib/site-packages/setuptools/_vendor/jaraco/context.py +0 -288
- venv/Lib/site-packages/setuptools/_vendor/jaraco/functools.py +0 -525
- venv/Lib/site-packages/setuptools/_vendor/jaraco/text/__init__.py +0 -599
- venv/Lib/site-packages/setuptools/_vendor/more_itertools/__init__.py +0 -4
- venv/Lib/site-packages/setuptools/_vendor/more_itertools/more.py +0 -3824
- venv/Lib/site-packages/setuptools/_vendor/more_itertools/recipes.py +0 -620
- venv/Lib/site-packages/setuptools/_vendor/ordered_set.py +0 -488
- venv/Lib/site-packages/setuptools/_vendor/packaging/__init__.py +0 -15
- venv/Lib/site-packages/setuptools/_vendor/packaging/_elffile.py +0 -108
- venv/Lib/site-packages/setuptools/_vendor/packaging/_manylinux.py +0 -238
- venv/Lib/site-packages/setuptools/_vendor/packaging/_musllinux.py +0 -80
- venv/Lib/site-packages/setuptools/_vendor/packaging/_parser.py +0 -328
- venv/Lib/site-packages/setuptools/_vendor/packaging/_structures.py +0 -61
- venv/Lib/site-packages/setuptools/_vendor/packaging/_tokenizer.py +0 -188
- venv/Lib/site-packages/setuptools/_vendor/packaging/markers.py +0 -245
- venv/Lib/site-packages/setuptools/_vendor/packaging/requirements.py +0 -95
- venv/Lib/site-packages/setuptools/_vendor/packaging/specifiers.py +0 -1005
- venv/Lib/site-packages/setuptools/_vendor/packaging/tags.py +0 -546
- venv/Lib/site-packages/setuptools/_vendor/packaging/utils.py +0 -141
- venv/Lib/site-packages/setuptools/_vendor/packaging/version.py +0 -563
- venv/Lib/site-packages/setuptools/_vendor/tomli/__init__.py +0 -11
- venv/Lib/site-packages/setuptools/_vendor/tomli/_parser.py +0 -691
- venv/Lib/site-packages/setuptools/_vendor/tomli/_re.py +0 -107
- venv/Lib/site-packages/setuptools/_vendor/tomli/_types.py +0 -10
- venv/Lib/site-packages/setuptools/_vendor/typing_extensions.py +0 -2296
- venv/Lib/site-packages/setuptools/_vendor/zipp.py +0 -329
- venv/Lib/site-packages/setuptools/archive_util.py +0 -213
- venv/Lib/site-packages/setuptools/build_meta.py +0 -512
- venv/Lib/site-packages/setuptools/command/__init__.py +0 -12
- venv/Lib/site-packages/setuptools/command/alias.py +0 -78
- venv/Lib/site-packages/setuptools/command/bdist_egg.py +0 -456
- venv/Lib/site-packages/setuptools/command/bdist_rpm.py +0 -40
- venv/Lib/site-packages/setuptools/command/build.py +0 -146
- venv/Lib/site-packages/setuptools/command/build_clib.py +0 -101
- venv/Lib/site-packages/setuptools/command/build_ext.py +0 -383
- venv/Lib/site-packages/setuptools/command/build_py.py +0 -368
- venv/Lib/site-packages/setuptools/command/develop.py +0 -194
- venv/Lib/site-packages/setuptools/command/dist_info.py +0 -118
- venv/Lib/site-packages/setuptools/command/easy_install.py +0 -2312
- venv/Lib/site-packages/setuptools/command/editable_wheel.py +0 -856
- venv/Lib/site-packages/setuptools/command/egg_info.py +0 -791
- venv/Lib/site-packages/setuptools/command/install.py +0 -139
- venv/Lib/site-packages/setuptools/command/install_egg_info.py +0 -60
- venv/Lib/site-packages/setuptools/command/install_lib.py +0 -122
- venv/Lib/site-packages/setuptools/command/install_scripts.py +0 -73
- venv/Lib/site-packages/setuptools/command/py36compat.py +0 -134
- venv/Lib/site-packages/setuptools/command/register.py +0 -18
- venv/Lib/site-packages/setuptools/command/rotate.py +0 -64
- venv/Lib/site-packages/setuptools/command/saveopts.py +0 -22
- venv/Lib/site-packages/setuptools/command/sdist.py +0 -210
- venv/Lib/site-packages/setuptools/command/setopt.py +0 -149
- venv/Lib/site-packages/setuptools/command/test.py +0 -251
- venv/Lib/site-packages/setuptools/command/upload.py +0 -17
- venv/Lib/site-packages/setuptools/command/upload_docs.py +0 -212
- venv/Lib/site-packages/setuptools/config/__init__.py +0 -35
- venv/Lib/site-packages/setuptools/config/_apply_pyprojecttoml.py +0 -384
- venv/Lib/site-packages/setuptools/config/_validate_pyproject/__init__.py +0 -34
- venv/Lib/site-packages/setuptools/config/_validate_pyproject/error_reporting.py +0 -318
- venv/Lib/site-packages/setuptools/config/_validate_pyproject/extra_validations.py +0 -36
- venv/Lib/site-packages/setuptools/config/_validate_pyproject/fastjsonschema_exceptions.py +0 -51
- venv/Lib/site-packages/setuptools/config/_validate_pyproject/fastjsonschema_validations.py +0 -1053
- venv/Lib/site-packages/setuptools/config/_validate_pyproject/formats.py +0 -275
- venv/Lib/site-packages/setuptools/config/expand.py +0 -462
- venv/Lib/site-packages/setuptools/config/pyprojecttoml.py +0 -498
- venv/Lib/site-packages/setuptools/config/setupcfg.py +0 -768
- venv/Lib/site-packages/setuptools/dep_util.py +0 -25
- venv/Lib/site-packages/setuptools/depends.py +0 -176
- venv/Lib/site-packages/setuptools/discovery.py +0 -611
- venv/Lib/site-packages/setuptools/dist.py +0 -1226
- venv/Lib/site-packages/setuptools/errors.py +0 -58
- venv/Lib/site-packages/setuptools/extension.py +0 -148
- venv/Lib/site-packages/setuptools/extern/__init__.py +0 -83
- venv/Lib/site-packages/setuptools/glob.py +0 -167
- venv/Lib/site-packages/setuptools/installer.py +0 -142
- venv/Lib/site-packages/setuptools/launch.py +0 -36
- venv/Lib/site-packages/setuptools/logging.py +0 -37
- venv/Lib/site-packages/setuptools/monkey.py +0 -159
- venv/Lib/site-packages/setuptools/msvc.py +0 -1686
- venv/Lib/site-packages/setuptools/namespaces.py +0 -107
- venv/Lib/site-packages/setuptools/package_index.py +0 -1162
- venv/Lib/site-packages/setuptools/py34compat.py +0 -13
- venv/Lib/site-packages/setuptools/sandbox.py +0 -530
- venv/Lib/site-packages/setuptools/unicode_utils.py +0 -42
- venv/Lib/site-packages/setuptools/version.py +0 -6
- venv/Lib/site-packages/setuptools/wheel.py +0 -231
- venv/Lib/site-packages/setuptools/windows_support.py +0 -29
- venv/Lib/site-packages/shiboken6/__init__.py +0 -27
- venv/Lib/site-packages/shiboken6/_config.py +0 -11
- venv/Lib/site-packages/shiboken6/_git_shiboken_module_version.py +0 -19
- venv/Lib/site-packages/six.py +0 -998
- venv/Lib/site-packages/tomli/__init__.py +0 -11
- venv/Lib/site-packages/tomli/_parser.py +0 -691
- venv/Lib/site-packages/tomli/_re.py +0 -107
- venv/Lib/site-packages/tomli/_types.py +0 -10
- venv/Lib/site-packages/twine/__init__.py +0 -43
- venv/Lib/site-packages/twine/__main__.py +0 -51
- venv/Lib/site-packages/twine/auth.py +0 -101
- venv/Lib/site-packages/twine/cli.py +0 -123
- venv/Lib/site-packages/twine/commands/__init__.py +0 -53
- venv/Lib/site-packages/twine/commands/check.py +0 -183
- venv/Lib/site-packages/twine/commands/register.py +0 -86
- venv/Lib/site-packages/twine/commands/upload.py +0 -198
- venv/Lib/site-packages/twine/exceptions.py +0 -124
- venv/Lib/site-packages/twine/package.py +0 -316
- venv/Lib/site-packages/twine/repository.py +0 -250
- venv/Lib/site-packages/twine/settings.py +0 -335
- venv/Lib/site-packages/twine/utils.py +0 -324
- venv/Lib/site-packages/twine/wheel.py +0 -91
- venv/Lib/site-packages/twine/wininst.py +0 -61
- venv/Lib/site-packages/typing_extensions.py +0 -2209
- venv/Lib/site-packages/urllib3/__init__.py +0 -102
- venv/Lib/site-packages/urllib3/_collections.py +0 -337
- venv/Lib/site-packages/urllib3/_version.py +0 -2
- venv/Lib/site-packages/urllib3/connection.py +0 -567
- venv/Lib/site-packages/urllib3/connectionpool.py +0 -1110
- venv/Lib/site-packages/urllib3/contrib/__init__.py +0 -0
- venv/Lib/site-packages/urllib3/contrib/_appengine_environ.py +0 -36
- venv/Lib/site-packages/urllib3/contrib/_securetransport/__init__.py +0 -0
- venv/Lib/site-packages/urllib3/contrib/_securetransport/bindings.py +0 -519
- venv/Lib/site-packages/urllib3/contrib/_securetransport/low_level.py +0 -397
- venv/Lib/site-packages/urllib3/contrib/appengine.py +0 -314
- venv/Lib/site-packages/urllib3/contrib/ntlmpool.py +0 -130
- venv/Lib/site-packages/urllib3/contrib/pyopenssl.py +0 -518
- venv/Lib/site-packages/urllib3/contrib/securetransport.py +0 -921
- venv/Lib/site-packages/urllib3/contrib/socks.py +0 -216
- venv/Lib/site-packages/urllib3/exceptions.py +0 -323
- venv/Lib/site-packages/urllib3/fields.py +0 -274
- venv/Lib/site-packages/urllib3/filepost.py +0 -98
- venv/Lib/site-packages/urllib3/packages/__init__.py +0 -0
- venv/Lib/site-packages/urllib3/packages/backports/__init__.py +0 -0
- venv/Lib/site-packages/urllib3/packages/backports/makefile.py +0 -51
- venv/Lib/site-packages/urllib3/packages/six.py +0 -1076
- venv/Lib/site-packages/urllib3/poolmanager.py +0 -537
- venv/Lib/site-packages/urllib3/request.py +0 -170
- venv/Lib/site-packages/urllib3/response.py +0 -885
- venv/Lib/site-packages/urllib3/util/__init__.py +0 -49
- venv/Lib/site-packages/urllib3/util/connection.py +0 -149
- venv/Lib/site-packages/urllib3/util/proxy.py +0 -57
- venv/Lib/site-packages/urllib3/util/queue.py +0 -22
- venv/Lib/site-packages/urllib3/util/request.py +0 -146
- venv/Lib/site-packages/urllib3/util/response.py +0 -107
- venv/Lib/site-packages/urllib3/util/retry.py +0 -620
- venv/Lib/site-packages/urllib3/util/ssl_.py +0 -495
- venv/Lib/site-packages/urllib3/util/ssl_match_hostname.py +0 -159
- venv/Lib/site-packages/urllib3/util/ssltransport.py +0 -221
- venv/Lib/site-packages/urllib3/util/timeout.py +0 -268
- venv/Lib/site-packages/urllib3/util/url.py +0 -435
- venv/Lib/site-packages/urllib3/util/wait.py +0 -152
- venv/Lib/site-packages/webencodings/__init__.py +0 -342
- venv/Lib/site-packages/webencodings/labels.py +0 -231
- venv/Lib/site-packages/webencodings/mklabels.py +0 -59
- venv/Lib/site-packages/webencodings/tests.py +0 -153
- venv/Lib/site-packages/webencodings/x_user_defined.py +0 -325
- venv/Lib/site-packages/wheel/__init__.py +0 -3
- venv/Lib/site-packages/wheel/__main__.py +0 -23
- venv/Lib/site-packages/wheel/_setuptools_logging.py +0 -26
- venv/Lib/site-packages/wheel/bdist_wheel.py +0 -550
- venv/Lib/site-packages/wheel/cli/__init__.py +0 -96
- venv/Lib/site-packages/wheel/cli/convert.py +0 -273
- venv/Lib/site-packages/wheel/cli/pack.py +0 -90
- venv/Lib/site-packages/wheel/cli/unpack.py +0 -23
- venv/Lib/site-packages/wheel/macosx_libfile.py +0 -471
- venv/Lib/site-packages/wheel/metadata.py +0 -109
- venv/Lib/site-packages/wheel/util.py +0 -26
- venv/Lib/site-packages/wheel/vendored/__init__.py +0 -0
- venv/Lib/site-packages/wheel/vendored/packaging/__init__.py +0 -0
- venv/Lib/site-packages/wheel/vendored/packaging/_manylinux.py +0 -303
- venv/Lib/site-packages/wheel/vendored/packaging/_musllinux.py +0 -138
- venv/Lib/site-packages/wheel/vendored/packaging/tags.py +0 -478
- venv/Lib/site-packages/wheel/wheelfile.py +0 -191
- venv/Lib/site-packages/win32ctypes/__init__.py +0 -8
- venv/Lib/site-packages/win32ctypes/core/__init__.py +0 -67
- venv/Lib/site-packages/win32ctypes/core/_winerrors.py +0 -9
- venv/Lib/site-packages/win32ctypes/core/cffi/__init__.py +0 -0
- venv/Lib/site-packages/win32ctypes/core/cffi/_authentication.py +0 -162
- venv/Lib/site-packages/win32ctypes/core/cffi/_common.py +0 -27
- venv/Lib/site-packages/win32ctypes/core/cffi/_dll.py +0 -33
- venv/Lib/site-packages/win32ctypes/core/cffi/_nl_support.py +0 -20
- venv/Lib/site-packages/win32ctypes/core/cffi/_resource.py +0 -134
- venv/Lib/site-packages/win32ctypes/core/cffi/_system_information.py +0 -34
- venv/Lib/site-packages/win32ctypes/core/cffi/_time.py +0 -20
- venv/Lib/site-packages/win32ctypes/core/cffi/_util.py +0 -108
- venv/Lib/site-packages/win32ctypes/core/compat.py +0 -31
- venv/Lib/site-packages/win32ctypes/core/ctypes/__init__.py +0 -0
- venv/Lib/site-packages/win32ctypes/core/ctypes/_authentication.py +0 -116
- venv/Lib/site-packages/win32ctypes/core/ctypes/_common.py +0 -62
- venv/Lib/site-packages/win32ctypes/core/ctypes/_dll.py +0 -23
- venv/Lib/site-packages/win32ctypes/core/ctypes/_nl_support.py +0 -14
- venv/Lib/site-packages/win32ctypes/core/ctypes/_resource.py +0 -148
- venv/Lib/site-packages/win32ctypes/core/ctypes/_system_information.py +0 -38
- venv/Lib/site-packages/win32ctypes/core/ctypes/_time.py +0 -17
- venv/Lib/site-packages/win32ctypes/core/ctypes/_util.py +0 -81
- venv/Lib/site-packages/win32ctypes/pywin32/__init__.py +0 -14
- venv/Lib/site-packages/win32ctypes/pywin32/pywintypes.py +0 -37
- venv/Lib/site-packages/win32ctypes/pywin32/win32api.py +0 -297
- venv/Lib/site-packages/win32ctypes/pywin32/win32cred.py +0 -94
- venv/Lib/site-packages/win32ctypes/pywintypes.py +0 -13
- venv/Lib/site-packages/win32ctypes/tests/__init__.py +0 -20
- venv/Lib/site-packages/win32ctypes/tests/compat.py +0 -84
- venv/Lib/site-packages/win32ctypes/tests/test_win32api.py +0 -284
- venv/Lib/site-packages/win32ctypes/tests/test_win32cred.py +0 -159
- venv/Lib/site-packages/win32ctypes/version.py +0 -1
- venv/Lib/site-packages/win32ctypes/win32api.py +0 -13
- venv/Lib/site-packages/win32ctypes/win32cred.py +0 -13
- venv/Lib/site-packages/zipp/__init__.py +0 -386
- venv/Lib/site-packages/zipp/py310compat.py +0 -12
- venv/Scripts/activate_this.py +0 -32
- venv/Scripts/rst2html.py +0 -23
- venv/Scripts/rst2html4.py +0 -26
- venv/Scripts/rst2html5.py +0 -34
- venv/Scripts/rst2latex.py +0 -27
- venv/Scripts/rst2man.py +0 -28
- venv/Scripts/rst2odt.py +0 -27
- venv/Scripts/rst2odt_prepstyles.py +0 -65
- venv/Scripts/rst2pseudoxml.py +0 -23
- venv/Scripts/rst2s5.py +0 -24
- venv/Scripts/rst2xetex.py +0 -28
- venv/Scripts/rst2xml.py +0 -23
- venv/Scripts/rstpep2html.py +0 -25
- {venv/Lib/site-packages/PySide6/scripts → je_editor/pyside_ui/menu}/__init__.py +0 -0
- {venv/Lib/site-packages/bleach/_vendor → je_editor/pyside_ui/ui_setting}/__init__.py +0 -0
- {je_editor-0.0.57.dist-info → je_editor-0.0.59.dist-info}/WHEEL +0 -0
@@ -1,3296 +0,0 @@
|
|
1
|
-
# coding: utf-8
|
2
|
-
"""
|
3
|
-
Package resource API
|
4
|
-
--------------------
|
5
|
-
|
6
|
-
A resource is a logical file contained within a package, or a logical
|
7
|
-
subdirectory thereof. The package resource API expects resource names
|
8
|
-
to have their path parts separated with ``/``, *not* whatever the local
|
9
|
-
path separator is. Do not use os.path operations to manipulate resource
|
10
|
-
names being passed into the API.
|
11
|
-
|
12
|
-
The package resource API is designed to work with normal filesystem packages,
|
13
|
-
.egg files, and unpacked .egg files. It can also work in a limited way with
|
14
|
-
.zip files and with custom PEP 302 loaders that support the ``get_data()``
|
15
|
-
method.
|
16
|
-
"""
|
17
|
-
|
18
|
-
from __future__ import absolute_import
|
19
|
-
|
20
|
-
import sys
|
21
|
-
import os
|
22
|
-
import io
|
23
|
-
import time
|
24
|
-
import re
|
25
|
-
import types
|
26
|
-
import zipfile
|
27
|
-
import zipimport
|
28
|
-
import warnings
|
29
|
-
import stat
|
30
|
-
import functools
|
31
|
-
import pkgutil
|
32
|
-
import operator
|
33
|
-
import platform
|
34
|
-
import collections
|
35
|
-
import plistlib
|
36
|
-
import email.parser
|
37
|
-
import errno
|
38
|
-
import tempfile
|
39
|
-
import textwrap
|
40
|
-
import itertools
|
41
|
-
import inspect
|
42
|
-
import ntpath
|
43
|
-
import posixpath
|
44
|
-
from pkgutil import get_importer
|
45
|
-
|
46
|
-
try:
|
47
|
-
import _imp
|
48
|
-
except ImportError:
|
49
|
-
# Python 3.2 compatibility
|
50
|
-
import imp as _imp
|
51
|
-
|
52
|
-
try:
|
53
|
-
FileExistsError
|
54
|
-
except NameError:
|
55
|
-
FileExistsError = OSError
|
56
|
-
|
57
|
-
from pip._vendor import six
|
58
|
-
from pip._vendor.six.moves import urllib, map, filter
|
59
|
-
|
60
|
-
# capture these to bypass sandboxing
|
61
|
-
from os import utime
|
62
|
-
try:
|
63
|
-
from os import mkdir, rename, unlink
|
64
|
-
WRITE_SUPPORT = True
|
65
|
-
except ImportError:
|
66
|
-
# no write support, probably under GAE
|
67
|
-
WRITE_SUPPORT = False
|
68
|
-
|
69
|
-
from os import open as os_open
|
70
|
-
from os.path import isdir, split
|
71
|
-
|
72
|
-
try:
|
73
|
-
import importlib.machinery as importlib_machinery
|
74
|
-
# access attribute to force import under delayed import mechanisms.
|
75
|
-
importlib_machinery.__name__
|
76
|
-
except ImportError:
|
77
|
-
importlib_machinery = None
|
78
|
-
|
79
|
-
from . import py31compat
|
80
|
-
from pip._vendor import platformdirs
|
81
|
-
from pip._vendor import packaging
|
82
|
-
__import__('pip._vendor.packaging.version')
|
83
|
-
__import__('pip._vendor.packaging.specifiers')
|
84
|
-
__import__('pip._vendor.packaging.requirements')
|
85
|
-
__import__('pip._vendor.packaging.markers')
|
86
|
-
|
87
|
-
|
88
|
-
__metaclass__ = type
|
89
|
-
|
90
|
-
|
91
|
-
if (3, 0) < sys.version_info < (3, 5):
|
92
|
-
raise RuntimeError("Python 3.5 or later is required")
|
93
|
-
|
94
|
-
if six.PY2:
|
95
|
-
# Those builtin exceptions are only defined in Python 3
|
96
|
-
PermissionError = None
|
97
|
-
NotADirectoryError = None
|
98
|
-
|
99
|
-
# declare some globals that will be defined later to
|
100
|
-
# satisfy the linters.
|
101
|
-
require = None
|
102
|
-
working_set = None
|
103
|
-
add_activation_listener = None
|
104
|
-
resources_stream = None
|
105
|
-
cleanup_resources = None
|
106
|
-
resource_dir = None
|
107
|
-
resource_stream = None
|
108
|
-
set_extraction_path = None
|
109
|
-
resource_isdir = None
|
110
|
-
resource_string = None
|
111
|
-
iter_entry_points = None
|
112
|
-
resource_listdir = None
|
113
|
-
resource_filename = None
|
114
|
-
resource_exists = None
|
115
|
-
_distribution_finders = None
|
116
|
-
_namespace_handlers = None
|
117
|
-
_namespace_packages = None
|
118
|
-
|
119
|
-
|
120
|
-
class PEP440Warning(RuntimeWarning):
|
121
|
-
"""
|
122
|
-
Used when there is an issue with a version or specifier not complying with
|
123
|
-
PEP 440.
|
124
|
-
"""
|
125
|
-
|
126
|
-
|
127
|
-
def parse_version(v):
|
128
|
-
try:
|
129
|
-
return packaging.version.Version(v)
|
130
|
-
except packaging.version.InvalidVersion:
|
131
|
-
return packaging.version.LegacyVersion(v)
|
132
|
-
|
133
|
-
|
134
|
-
_state_vars = {}
|
135
|
-
|
136
|
-
|
137
|
-
def _declare_state(vartype, **kw):
|
138
|
-
globals().update(kw)
|
139
|
-
_state_vars.update(dict.fromkeys(kw, vartype))
|
140
|
-
|
141
|
-
|
142
|
-
def __getstate__():
|
143
|
-
state = {}
|
144
|
-
g = globals()
|
145
|
-
for k, v in _state_vars.items():
|
146
|
-
state[k] = g['_sget_' + v](g[k])
|
147
|
-
return state
|
148
|
-
|
149
|
-
|
150
|
-
def __setstate__(state):
|
151
|
-
g = globals()
|
152
|
-
for k, v in state.items():
|
153
|
-
g['_sset_' + _state_vars[k]](k, g[k], v)
|
154
|
-
return state
|
155
|
-
|
156
|
-
|
157
|
-
def _sget_dict(val):
|
158
|
-
return val.copy()
|
159
|
-
|
160
|
-
|
161
|
-
def _sset_dict(key, ob, state):
|
162
|
-
ob.clear()
|
163
|
-
ob.update(state)
|
164
|
-
|
165
|
-
|
166
|
-
def _sget_object(val):
|
167
|
-
return val.__getstate__()
|
168
|
-
|
169
|
-
|
170
|
-
def _sset_object(key, ob, state):
|
171
|
-
ob.__setstate__(state)
|
172
|
-
|
173
|
-
|
174
|
-
_sget_none = _sset_none = lambda *args: None
|
175
|
-
|
176
|
-
|
177
|
-
def get_supported_platform():
|
178
|
-
"""Return this platform's maximum compatible version.
|
179
|
-
|
180
|
-
distutils.util.get_platform() normally reports the minimum version
|
181
|
-
of Mac OS X that would be required to *use* extensions produced by
|
182
|
-
distutils. But what we want when checking compatibility is to know the
|
183
|
-
version of Mac OS X that we are *running*. To allow usage of packages that
|
184
|
-
explicitly require a newer version of Mac OS X, we must also know the
|
185
|
-
current version of the OS.
|
186
|
-
|
187
|
-
If this condition occurs for any other platform with a version in its
|
188
|
-
platform strings, this function should be extended accordingly.
|
189
|
-
"""
|
190
|
-
plat = get_build_platform()
|
191
|
-
m = macosVersionString.match(plat)
|
192
|
-
if m is not None and sys.platform == "darwin":
|
193
|
-
try:
|
194
|
-
plat = 'macosx-%s-%s' % ('.'.join(_macosx_vers()[:2]), m.group(3))
|
195
|
-
except ValueError:
|
196
|
-
# not Mac OS X
|
197
|
-
pass
|
198
|
-
return plat
|
199
|
-
|
200
|
-
|
201
|
-
__all__ = [
|
202
|
-
# Basic resource access and distribution/entry point discovery
|
203
|
-
'require', 'run_script', 'get_provider', 'get_distribution',
|
204
|
-
'load_entry_point', 'get_entry_map', 'get_entry_info',
|
205
|
-
'iter_entry_points',
|
206
|
-
'resource_string', 'resource_stream', 'resource_filename',
|
207
|
-
'resource_listdir', 'resource_exists', 'resource_isdir',
|
208
|
-
|
209
|
-
# Environmental control
|
210
|
-
'declare_namespace', 'working_set', 'add_activation_listener',
|
211
|
-
'find_distributions', 'set_extraction_path', 'cleanup_resources',
|
212
|
-
'get_default_cache',
|
213
|
-
|
214
|
-
# Primary implementation classes
|
215
|
-
'Environment', 'WorkingSet', 'ResourceManager',
|
216
|
-
'Distribution', 'Requirement', 'EntryPoint',
|
217
|
-
|
218
|
-
# Exceptions
|
219
|
-
'ResolutionError', 'VersionConflict', 'DistributionNotFound',
|
220
|
-
'UnknownExtra', 'ExtractionError',
|
221
|
-
|
222
|
-
# Warnings
|
223
|
-
'PEP440Warning',
|
224
|
-
|
225
|
-
# Parsing functions and string utilities
|
226
|
-
'parse_requirements', 'parse_version', 'safe_name', 'safe_version',
|
227
|
-
'get_platform', 'compatible_platforms', 'yield_lines', 'split_sections',
|
228
|
-
'safe_extra', 'to_filename', 'invalid_marker', 'evaluate_marker',
|
229
|
-
|
230
|
-
# filesystem utilities
|
231
|
-
'ensure_directory', 'normalize_path',
|
232
|
-
|
233
|
-
# Distribution "precedence" constants
|
234
|
-
'EGG_DIST', 'BINARY_DIST', 'SOURCE_DIST', 'CHECKOUT_DIST', 'DEVELOP_DIST',
|
235
|
-
|
236
|
-
# "Provider" interfaces, implementations, and registration/lookup APIs
|
237
|
-
'IMetadataProvider', 'IResourceProvider', 'FileMetadata',
|
238
|
-
'PathMetadata', 'EggMetadata', 'EmptyProvider', 'empty_provider',
|
239
|
-
'NullProvider', 'EggProvider', 'DefaultProvider', 'ZipProvider',
|
240
|
-
'register_finder', 'register_namespace_handler', 'register_loader_type',
|
241
|
-
'fixup_namespace_packages', 'get_importer',
|
242
|
-
|
243
|
-
# Warnings
|
244
|
-
'PkgResourcesDeprecationWarning',
|
245
|
-
|
246
|
-
# Deprecated/backward compatibility only
|
247
|
-
'run_main', 'AvailableDistributions',
|
248
|
-
]
|
249
|
-
|
250
|
-
|
251
|
-
class ResolutionError(Exception):
|
252
|
-
"""Abstract base for dependency resolution errors"""
|
253
|
-
|
254
|
-
def __repr__(self):
|
255
|
-
return self.__class__.__name__ + repr(self.args)
|
256
|
-
|
257
|
-
|
258
|
-
class VersionConflict(ResolutionError):
|
259
|
-
"""
|
260
|
-
An already-installed version conflicts with the requested version.
|
261
|
-
|
262
|
-
Should be initialized with the installed Distribution and the requested
|
263
|
-
Requirement.
|
264
|
-
"""
|
265
|
-
|
266
|
-
_template = "{self.dist} is installed but {self.req} is required"
|
267
|
-
|
268
|
-
@property
|
269
|
-
def dist(self):
|
270
|
-
return self.args[0]
|
271
|
-
|
272
|
-
@property
|
273
|
-
def req(self):
|
274
|
-
return self.args[1]
|
275
|
-
|
276
|
-
def report(self):
|
277
|
-
return self._template.format(**locals())
|
278
|
-
|
279
|
-
def with_context(self, required_by):
|
280
|
-
"""
|
281
|
-
If required_by is non-empty, return a version of self that is a
|
282
|
-
ContextualVersionConflict.
|
283
|
-
"""
|
284
|
-
if not required_by:
|
285
|
-
return self
|
286
|
-
args = self.args + (required_by,)
|
287
|
-
return ContextualVersionConflict(*args)
|
288
|
-
|
289
|
-
|
290
|
-
class ContextualVersionConflict(VersionConflict):
|
291
|
-
"""
|
292
|
-
A VersionConflict that accepts a third parameter, the set of the
|
293
|
-
requirements that required the installed Distribution.
|
294
|
-
"""
|
295
|
-
|
296
|
-
_template = VersionConflict._template + ' by {self.required_by}'
|
297
|
-
|
298
|
-
@property
|
299
|
-
def required_by(self):
|
300
|
-
return self.args[2]
|
301
|
-
|
302
|
-
|
303
|
-
class DistributionNotFound(ResolutionError):
|
304
|
-
"""A requested distribution was not found"""
|
305
|
-
|
306
|
-
_template = ("The '{self.req}' distribution was not found "
|
307
|
-
"and is required by {self.requirers_str}")
|
308
|
-
|
309
|
-
@property
|
310
|
-
def req(self):
|
311
|
-
return self.args[0]
|
312
|
-
|
313
|
-
@property
|
314
|
-
def requirers(self):
|
315
|
-
return self.args[1]
|
316
|
-
|
317
|
-
@property
|
318
|
-
def requirers_str(self):
|
319
|
-
if not self.requirers:
|
320
|
-
return 'the application'
|
321
|
-
return ', '.join(self.requirers)
|
322
|
-
|
323
|
-
def report(self):
|
324
|
-
return self._template.format(**locals())
|
325
|
-
|
326
|
-
def __str__(self):
|
327
|
-
return self.report()
|
328
|
-
|
329
|
-
|
330
|
-
class UnknownExtra(ResolutionError):
|
331
|
-
"""Distribution doesn't have an "extra feature" of the given name"""
|
332
|
-
|
333
|
-
|
334
|
-
_provider_factories = {}
|
335
|
-
|
336
|
-
PY_MAJOR = '{}.{}'.format(*sys.version_info)
|
337
|
-
EGG_DIST = 3
|
338
|
-
BINARY_DIST = 2
|
339
|
-
SOURCE_DIST = 1
|
340
|
-
CHECKOUT_DIST = 0
|
341
|
-
DEVELOP_DIST = -1
|
342
|
-
|
343
|
-
|
344
|
-
def register_loader_type(loader_type, provider_factory):
|
345
|
-
"""Register `provider_factory` to make providers for `loader_type`
|
346
|
-
|
347
|
-
`loader_type` is the type or class of a PEP 302 ``module.__loader__``,
|
348
|
-
and `provider_factory` is a function that, passed a *module* object,
|
349
|
-
returns an ``IResourceProvider`` for that module.
|
350
|
-
"""
|
351
|
-
_provider_factories[loader_type] = provider_factory
|
352
|
-
|
353
|
-
|
354
|
-
def get_provider(moduleOrReq):
|
355
|
-
"""Return an IResourceProvider for the named module or requirement"""
|
356
|
-
if isinstance(moduleOrReq, Requirement):
|
357
|
-
return working_set.find(moduleOrReq) or require(str(moduleOrReq))[0]
|
358
|
-
try:
|
359
|
-
module = sys.modules[moduleOrReq]
|
360
|
-
except KeyError:
|
361
|
-
__import__(moduleOrReq)
|
362
|
-
module = sys.modules[moduleOrReq]
|
363
|
-
loader = getattr(module, '__loader__', None)
|
364
|
-
return _find_adapter(_provider_factories, loader)(module)
|
365
|
-
|
366
|
-
|
367
|
-
def _macosx_vers(_cache=[]):
|
368
|
-
if not _cache:
|
369
|
-
version = platform.mac_ver()[0]
|
370
|
-
# fallback for MacPorts
|
371
|
-
if version == '':
|
372
|
-
plist = '/System/Library/CoreServices/SystemVersion.plist'
|
373
|
-
if os.path.exists(plist):
|
374
|
-
if hasattr(plistlib, 'readPlist'):
|
375
|
-
plist_content = plistlib.readPlist(plist)
|
376
|
-
if 'ProductVersion' in plist_content:
|
377
|
-
version = plist_content['ProductVersion']
|
378
|
-
|
379
|
-
_cache.append(version.split('.'))
|
380
|
-
return _cache[0]
|
381
|
-
|
382
|
-
|
383
|
-
def _macosx_arch(machine):
|
384
|
-
return {'PowerPC': 'ppc', 'Power_Macintosh': 'ppc'}.get(machine, machine)
|
385
|
-
|
386
|
-
|
387
|
-
def get_build_platform():
|
388
|
-
"""Return this platform's string for platform-specific distributions
|
389
|
-
|
390
|
-
XXX Currently this is the same as ``distutils.util.get_platform()``, but it
|
391
|
-
needs some hacks for Linux and Mac OS X.
|
392
|
-
"""
|
393
|
-
from sysconfig import get_platform
|
394
|
-
|
395
|
-
plat = get_platform()
|
396
|
-
if sys.platform == "darwin" and not plat.startswith('macosx-'):
|
397
|
-
try:
|
398
|
-
version = _macosx_vers()
|
399
|
-
machine = os.uname()[4].replace(" ", "_")
|
400
|
-
return "macosx-%d.%d-%s" % (
|
401
|
-
int(version[0]), int(version[1]),
|
402
|
-
_macosx_arch(machine),
|
403
|
-
)
|
404
|
-
except ValueError:
|
405
|
-
# if someone is running a non-Mac darwin system, this will fall
|
406
|
-
# through to the default implementation
|
407
|
-
pass
|
408
|
-
return plat
|
409
|
-
|
410
|
-
|
411
|
-
macosVersionString = re.compile(r"macosx-(\d+)\.(\d+)-(.*)")
|
412
|
-
darwinVersionString = re.compile(r"darwin-(\d+)\.(\d+)\.(\d+)-(.*)")
|
413
|
-
# XXX backward compat
|
414
|
-
get_platform = get_build_platform
|
415
|
-
|
416
|
-
|
417
|
-
def compatible_platforms(provided, required):
|
418
|
-
"""Can code for the `provided` platform run on the `required` platform?
|
419
|
-
|
420
|
-
Returns true if either platform is ``None``, or the platforms are equal.
|
421
|
-
|
422
|
-
XXX Needs compatibility checks for Linux and other unixy OSes.
|
423
|
-
"""
|
424
|
-
if provided is None or required is None or provided == required:
|
425
|
-
# easy case
|
426
|
-
return True
|
427
|
-
|
428
|
-
# Mac OS X special cases
|
429
|
-
reqMac = macosVersionString.match(required)
|
430
|
-
if reqMac:
|
431
|
-
provMac = macosVersionString.match(provided)
|
432
|
-
|
433
|
-
# is this a Mac package?
|
434
|
-
if not provMac:
|
435
|
-
# this is backwards compatibility for packages built before
|
436
|
-
# setuptools 0.6. All packages built after this point will
|
437
|
-
# use the new macosx designation.
|
438
|
-
provDarwin = darwinVersionString.match(provided)
|
439
|
-
if provDarwin:
|
440
|
-
dversion = int(provDarwin.group(1))
|
441
|
-
macosversion = "%s.%s" % (reqMac.group(1), reqMac.group(2))
|
442
|
-
if dversion == 7 and macosversion >= "10.3" or \
|
443
|
-
dversion == 8 and macosversion >= "10.4":
|
444
|
-
return True
|
445
|
-
# egg isn't macosx or legacy darwin
|
446
|
-
return False
|
447
|
-
|
448
|
-
# are they the same major version and machine type?
|
449
|
-
if provMac.group(1) != reqMac.group(1) or \
|
450
|
-
provMac.group(3) != reqMac.group(3):
|
451
|
-
return False
|
452
|
-
|
453
|
-
# is the required OS major update >= the provided one?
|
454
|
-
if int(provMac.group(2)) > int(reqMac.group(2)):
|
455
|
-
return False
|
456
|
-
|
457
|
-
return True
|
458
|
-
|
459
|
-
# XXX Linux and other platforms' special cases should go here
|
460
|
-
return False
|
461
|
-
|
462
|
-
|
463
|
-
def run_script(dist_spec, script_name):
|
464
|
-
"""Locate distribution `dist_spec` and run its `script_name` script"""
|
465
|
-
ns = sys._getframe(1).f_globals
|
466
|
-
name = ns['__name__']
|
467
|
-
ns.clear()
|
468
|
-
ns['__name__'] = name
|
469
|
-
require(dist_spec)[0].run_script(script_name, ns)
|
470
|
-
|
471
|
-
|
472
|
-
# backward compatibility
|
473
|
-
run_main = run_script
|
474
|
-
|
475
|
-
|
476
|
-
def get_distribution(dist):
|
477
|
-
"""Return a current distribution object for a Requirement or string"""
|
478
|
-
if isinstance(dist, six.string_types):
|
479
|
-
dist = Requirement.parse(dist)
|
480
|
-
if isinstance(dist, Requirement):
|
481
|
-
dist = get_provider(dist)
|
482
|
-
if not isinstance(dist, Distribution):
|
483
|
-
raise TypeError("Expected string, Requirement, or Distribution", dist)
|
484
|
-
return dist
|
485
|
-
|
486
|
-
|
487
|
-
def load_entry_point(dist, group, name):
|
488
|
-
"""Return `name` entry point of `group` for `dist` or raise ImportError"""
|
489
|
-
return get_distribution(dist).load_entry_point(group, name)
|
490
|
-
|
491
|
-
|
492
|
-
def get_entry_map(dist, group=None):
|
493
|
-
"""Return the entry point map for `group`, or the full entry map"""
|
494
|
-
return get_distribution(dist).get_entry_map(group)
|
495
|
-
|
496
|
-
|
497
|
-
def get_entry_info(dist, group, name):
|
498
|
-
"""Return the EntryPoint object for `group`+`name`, or ``None``"""
|
499
|
-
return get_distribution(dist).get_entry_info(group, name)
|
500
|
-
|
501
|
-
|
502
|
-
class IMetadataProvider:
|
503
|
-
def has_metadata(name):
|
504
|
-
"""Does the package's distribution contain the named metadata?"""
|
505
|
-
|
506
|
-
def get_metadata(name):
|
507
|
-
"""The named metadata resource as a string"""
|
508
|
-
|
509
|
-
def get_metadata_lines(name):
|
510
|
-
"""Yield named metadata resource as list of non-blank non-comment lines
|
511
|
-
|
512
|
-
Leading and trailing whitespace is stripped from each line, and lines
|
513
|
-
with ``#`` as the first non-blank character are omitted."""
|
514
|
-
|
515
|
-
def metadata_isdir(name):
|
516
|
-
"""Is the named metadata a directory? (like ``os.path.isdir()``)"""
|
517
|
-
|
518
|
-
def metadata_listdir(name):
|
519
|
-
"""List of metadata names in the directory (like ``os.listdir()``)"""
|
520
|
-
|
521
|
-
def run_script(script_name, namespace):
|
522
|
-
"""Execute the named script in the supplied namespace dictionary"""
|
523
|
-
|
524
|
-
|
525
|
-
class IResourceProvider(IMetadataProvider):
|
526
|
-
"""An object that provides access to package resources"""
|
527
|
-
|
528
|
-
def get_resource_filename(manager, resource_name):
|
529
|
-
"""Return a true filesystem path for `resource_name`
|
530
|
-
|
531
|
-
`manager` must be an ``IResourceManager``"""
|
532
|
-
|
533
|
-
def get_resource_stream(manager, resource_name):
|
534
|
-
"""Return a readable file-like object for `resource_name`
|
535
|
-
|
536
|
-
`manager` must be an ``IResourceManager``"""
|
537
|
-
|
538
|
-
def get_resource_string(manager, resource_name):
|
539
|
-
"""Return a string containing the contents of `resource_name`
|
540
|
-
|
541
|
-
`manager` must be an ``IResourceManager``"""
|
542
|
-
|
543
|
-
def has_resource(resource_name):
|
544
|
-
"""Does the package contain the named resource?"""
|
545
|
-
|
546
|
-
def resource_isdir(resource_name):
|
547
|
-
"""Is the named resource a directory? (like ``os.path.isdir()``)"""
|
548
|
-
|
549
|
-
def resource_listdir(resource_name):
|
550
|
-
"""List of resource names in the directory (like ``os.listdir()``)"""
|
551
|
-
|
552
|
-
|
553
|
-
class WorkingSet:
|
554
|
-
"""A collection of active distributions on sys.path (or a similar list)"""
|
555
|
-
|
556
|
-
def __init__(self, entries=None):
|
557
|
-
"""Create working set from list of path entries (default=sys.path)"""
|
558
|
-
self.entries = []
|
559
|
-
self.entry_keys = {}
|
560
|
-
self.by_key = {}
|
561
|
-
self.callbacks = []
|
562
|
-
|
563
|
-
if entries is None:
|
564
|
-
entries = sys.path
|
565
|
-
|
566
|
-
for entry in entries:
|
567
|
-
self.add_entry(entry)
|
568
|
-
|
569
|
-
@classmethod
|
570
|
-
def _build_master(cls):
|
571
|
-
"""
|
572
|
-
Prepare the master working set.
|
573
|
-
"""
|
574
|
-
ws = cls()
|
575
|
-
try:
|
576
|
-
from __main__ import __requires__
|
577
|
-
except ImportError:
|
578
|
-
# The main program does not list any requirements
|
579
|
-
return ws
|
580
|
-
|
581
|
-
# ensure the requirements are met
|
582
|
-
try:
|
583
|
-
ws.require(__requires__)
|
584
|
-
except VersionConflict:
|
585
|
-
return cls._build_from_requirements(__requires__)
|
586
|
-
|
587
|
-
return ws
|
588
|
-
|
589
|
-
@classmethod
|
590
|
-
def _build_from_requirements(cls, req_spec):
|
591
|
-
"""
|
592
|
-
Build a working set from a requirement spec. Rewrites sys.path.
|
593
|
-
"""
|
594
|
-
# try it without defaults already on sys.path
|
595
|
-
# by starting with an empty path
|
596
|
-
ws = cls([])
|
597
|
-
reqs = parse_requirements(req_spec)
|
598
|
-
dists = ws.resolve(reqs, Environment())
|
599
|
-
for dist in dists:
|
600
|
-
ws.add(dist)
|
601
|
-
|
602
|
-
# add any missing entries from sys.path
|
603
|
-
for entry in sys.path:
|
604
|
-
if entry not in ws.entries:
|
605
|
-
ws.add_entry(entry)
|
606
|
-
|
607
|
-
# then copy back to sys.path
|
608
|
-
sys.path[:] = ws.entries
|
609
|
-
return ws
|
610
|
-
|
611
|
-
def add_entry(self, entry):
|
612
|
-
"""Add a path item to ``.entries``, finding any distributions on it
|
613
|
-
|
614
|
-
``find_distributions(entry, True)`` is used to find distributions
|
615
|
-
corresponding to the path entry, and they are added. `entry` is
|
616
|
-
always appended to ``.entries``, even if it is already present.
|
617
|
-
(This is because ``sys.path`` can contain the same value more than
|
618
|
-
once, and the ``.entries`` of the ``sys.path`` WorkingSet should always
|
619
|
-
equal ``sys.path``.)
|
620
|
-
"""
|
621
|
-
self.entry_keys.setdefault(entry, [])
|
622
|
-
self.entries.append(entry)
|
623
|
-
for dist in find_distributions(entry, True):
|
624
|
-
self.add(dist, entry, False)
|
625
|
-
|
626
|
-
def __contains__(self, dist):
|
627
|
-
"""True if `dist` is the active distribution for its project"""
|
628
|
-
return self.by_key.get(dist.key) == dist
|
629
|
-
|
630
|
-
def find(self, req):
|
631
|
-
"""Find a distribution matching requirement `req`
|
632
|
-
|
633
|
-
If there is an active distribution for the requested project, this
|
634
|
-
returns it as long as it meets the version requirement specified by
|
635
|
-
`req`. But, if there is an active distribution for the project and it
|
636
|
-
does *not* meet the `req` requirement, ``VersionConflict`` is raised.
|
637
|
-
If there is no active distribution for the requested project, ``None``
|
638
|
-
is returned.
|
639
|
-
"""
|
640
|
-
dist = self.by_key.get(req.key)
|
641
|
-
if dist is not None and dist not in req:
|
642
|
-
# XXX add more info
|
643
|
-
raise VersionConflict(dist, req)
|
644
|
-
return dist
|
645
|
-
|
646
|
-
def iter_entry_points(self, group, name=None):
|
647
|
-
"""Yield entry point objects from `group` matching `name`
|
648
|
-
|
649
|
-
If `name` is None, yields all entry points in `group` from all
|
650
|
-
distributions in the working set, otherwise only ones matching
|
651
|
-
both `group` and `name` are yielded (in distribution order).
|
652
|
-
"""
|
653
|
-
return (
|
654
|
-
entry
|
655
|
-
for dist in self
|
656
|
-
for entry in dist.get_entry_map(group).values()
|
657
|
-
if name is None or name == entry.name
|
658
|
-
)
|
659
|
-
|
660
|
-
def run_script(self, requires, script_name):
|
661
|
-
"""Locate distribution for `requires` and run `script_name` script"""
|
662
|
-
ns = sys._getframe(1).f_globals
|
663
|
-
name = ns['__name__']
|
664
|
-
ns.clear()
|
665
|
-
ns['__name__'] = name
|
666
|
-
self.require(requires)[0].run_script(script_name, ns)
|
667
|
-
|
668
|
-
def __iter__(self):
|
669
|
-
"""Yield distributions for non-duplicate projects in the working set
|
670
|
-
|
671
|
-
The yield order is the order in which the items' path entries were
|
672
|
-
added to the working set.
|
673
|
-
"""
|
674
|
-
seen = {}
|
675
|
-
for item in self.entries:
|
676
|
-
if item not in self.entry_keys:
|
677
|
-
# workaround a cache issue
|
678
|
-
continue
|
679
|
-
|
680
|
-
for key in self.entry_keys[item]:
|
681
|
-
if key not in seen:
|
682
|
-
seen[key] = 1
|
683
|
-
yield self.by_key[key]
|
684
|
-
|
685
|
-
def add(self, dist, entry=None, insert=True, replace=False):
|
686
|
-
"""Add `dist` to working set, associated with `entry`
|
687
|
-
|
688
|
-
If `entry` is unspecified, it defaults to the ``.location`` of `dist`.
|
689
|
-
On exit from this routine, `entry` is added to the end of the working
|
690
|
-
set's ``.entries`` (if it wasn't already present).
|
691
|
-
|
692
|
-
`dist` is only added to the working set if it's for a project that
|
693
|
-
doesn't already have a distribution in the set, unless `replace=True`.
|
694
|
-
If it's added, any callbacks registered with the ``subscribe()`` method
|
695
|
-
will be called.
|
696
|
-
"""
|
697
|
-
if insert:
|
698
|
-
dist.insert_on(self.entries, entry, replace=replace)
|
699
|
-
|
700
|
-
if entry is None:
|
701
|
-
entry = dist.location
|
702
|
-
keys = self.entry_keys.setdefault(entry, [])
|
703
|
-
keys2 = self.entry_keys.setdefault(dist.location, [])
|
704
|
-
if not replace and dist.key in self.by_key:
|
705
|
-
# ignore hidden distros
|
706
|
-
return
|
707
|
-
|
708
|
-
self.by_key[dist.key] = dist
|
709
|
-
if dist.key not in keys:
|
710
|
-
keys.append(dist.key)
|
711
|
-
if dist.key not in keys2:
|
712
|
-
keys2.append(dist.key)
|
713
|
-
self._added_new(dist)
|
714
|
-
|
715
|
-
def resolve(self, requirements, env=None, installer=None,
|
716
|
-
replace_conflicting=False, extras=None):
|
717
|
-
"""List all distributions needed to (recursively) meet `requirements`
|
718
|
-
|
719
|
-
`requirements` must be a sequence of ``Requirement`` objects. `env`,
|
720
|
-
if supplied, should be an ``Environment`` instance. If
|
721
|
-
not supplied, it defaults to all distributions available within any
|
722
|
-
entry or distribution in the working set. `installer`, if supplied,
|
723
|
-
will be invoked with each requirement that cannot be met by an
|
724
|
-
already-installed distribution; it should return a ``Distribution`` or
|
725
|
-
``None``.
|
726
|
-
|
727
|
-
Unless `replace_conflicting=True`, raises a VersionConflict exception
|
728
|
-
if
|
729
|
-
any requirements are found on the path that have the correct name but
|
730
|
-
the wrong version. Otherwise, if an `installer` is supplied it will be
|
731
|
-
invoked to obtain the correct version of the requirement and activate
|
732
|
-
it.
|
733
|
-
|
734
|
-
`extras` is a list of the extras to be used with these requirements.
|
735
|
-
This is important because extra requirements may look like `my_req;
|
736
|
-
extra = "my_extra"`, which would otherwise be interpreted as a purely
|
737
|
-
optional requirement. Instead, we want to be able to assert that these
|
738
|
-
requirements are truly required.
|
739
|
-
"""
|
740
|
-
|
741
|
-
# set up the stack
|
742
|
-
requirements = list(requirements)[::-1]
|
743
|
-
# set of processed requirements
|
744
|
-
processed = {}
|
745
|
-
# key -> dist
|
746
|
-
best = {}
|
747
|
-
to_activate = []
|
748
|
-
|
749
|
-
req_extras = _ReqExtras()
|
750
|
-
|
751
|
-
# Mapping of requirement to set of distributions that required it;
|
752
|
-
# useful for reporting info about conflicts.
|
753
|
-
required_by = collections.defaultdict(set)
|
754
|
-
|
755
|
-
while requirements:
|
756
|
-
# process dependencies breadth-first
|
757
|
-
req = requirements.pop(0)
|
758
|
-
if req in processed:
|
759
|
-
# Ignore cyclic or redundant dependencies
|
760
|
-
continue
|
761
|
-
|
762
|
-
if not req_extras.markers_pass(req, extras):
|
763
|
-
continue
|
764
|
-
|
765
|
-
dist = best.get(req.key)
|
766
|
-
if dist is None:
|
767
|
-
# Find the best distribution and add it to the map
|
768
|
-
dist = self.by_key.get(req.key)
|
769
|
-
if dist is None or (dist not in req and replace_conflicting):
|
770
|
-
ws = self
|
771
|
-
if env is None:
|
772
|
-
if dist is None:
|
773
|
-
env = Environment(self.entries)
|
774
|
-
else:
|
775
|
-
# Use an empty environment and workingset to avoid
|
776
|
-
# any further conflicts with the conflicting
|
777
|
-
# distribution
|
778
|
-
env = Environment([])
|
779
|
-
ws = WorkingSet([])
|
780
|
-
dist = best[req.key] = env.best_match(
|
781
|
-
req, ws, installer,
|
782
|
-
replace_conflicting=replace_conflicting
|
783
|
-
)
|
784
|
-
if dist is None:
|
785
|
-
requirers = required_by.get(req, None)
|
786
|
-
raise DistributionNotFound(req, requirers)
|
787
|
-
to_activate.append(dist)
|
788
|
-
if dist not in req:
|
789
|
-
# Oops, the "best" so far conflicts with a dependency
|
790
|
-
dependent_req = required_by[req]
|
791
|
-
raise VersionConflict(dist, req).with_context(dependent_req)
|
792
|
-
|
793
|
-
# push the new requirements onto the stack
|
794
|
-
new_requirements = dist.requires(req.extras)[::-1]
|
795
|
-
requirements.extend(new_requirements)
|
796
|
-
|
797
|
-
# Register the new requirements needed by req
|
798
|
-
for new_requirement in new_requirements:
|
799
|
-
required_by[new_requirement].add(req.project_name)
|
800
|
-
req_extras[new_requirement] = req.extras
|
801
|
-
|
802
|
-
processed[req] = True
|
803
|
-
|
804
|
-
# return list of distros to activate
|
805
|
-
return to_activate
|
806
|
-
|
807
|
-
def find_plugins(
|
808
|
-
self, plugin_env, full_env=None, installer=None, fallback=True):
|
809
|
-
"""Find all activatable distributions in `plugin_env`
|
810
|
-
|
811
|
-
Example usage::
|
812
|
-
|
813
|
-
distributions, errors = working_set.find_plugins(
|
814
|
-
Environment(plugin_dirlist)
|
815
|
-
)
|
816
|
-
# add plugins+libs to sys.path
|
817
|
-
map(working_set.add, distributions)
|
818
|
-
# display errors
|
819
|
-
print('Could not load', errors)
|
820
|
-
|
821
|
-
The `plugin_env` should be an ``Environment`` instance that contains
|
822
|
-
only distributions that are in the project's "plugin directory" or
|
823
|
-
directories. The `full_env`, if supplied, should be an ``Environment``
|
824
|
-
contains all currently-available distributions. If `full_env` is not
|
825
|
-
supplied, one is created automatically from the ``WorkingSet`` this
|
826
|
-
method is called on, which will typically mean that every directory on
|
827
|
-
``sys.path`` will be scanned for distributions.
|
828
|
-
|
829
|
-
`installer` is a standard installer callback as used by the
|
830
|
-
``resolve()`` method. The `fallback` flag indicates whether we should
|
831
|
-
attempt to resolve older versions of a plugin if the newest version
|
832
|
-
cannot be resolved.
|
833
|
-
|
834
|
-
This method returns a 2-tuple: (`distributions`, `error_info`), where
|
835
|
-
`distributions` is a list of the distributions found in `plugin_env`
|
836
|
-
that were loadable, along with any other distributions that are needed
|
837
|
-
to resolve their dependencies. `error_info` is a dictionary mapping
|
838
|
-
unloadable plugin distributions to an exception instance describing the
|
839
|
-
error that occurred. Usually this will be a ``DistributionNotFound`` or
|
840
|
-
``VersionConflict`` instance.
|
841
|
-
"""
|
842
|
-
|
843
|
-
plugin_projects = list(plugin_env)
|
844
|
-
# scan project names in alphabetic order
|
845
|
-
plugin_projects.sort()
|
846
|
-
|
847
|
-
error_info = {}
|
848
|
-
distributions = {}
|
849
|
-
|
850
|
-
if full_env is None:
|
851
|
-
env = Environment(self.entries)
|
852
|
-
env += plugin_env
|
853
|
-
else:
|
854
|
-
env = full_env + plugin_env
|
855
|
-
|
856
|
-
shadow_set = self.__class__([])
|
857
|
-
# put all our entries in shadow_set
|
858
|
-
list(map(shadow_set.add, self))
|
859
|
-
|
860
|
-
for project_name in plugin_projects:
|
861
|
-
|
862
|
-
for dist in plugin_env[project_name]:
|
863
|
-
|
864
|
-
req = [dist.as_requirement()]
|
865
|
-
|
866
|
-
try:
|
867
|
-
resolvees = shadow_set.resolve(req, env, installer)
|
868
|
-
|
869
|
-
except ResolutionError as v:
|
870
|
-
# save error info
|
871
|
-
error_info[dist] = v
|
872
|
-
if fallback:
|
873
|
-
# try the next older version of project
|
874
|
-
continue
|
875
|
-
else:
|
876
|
-
# give up on this project, keep going
|
877
|
-
break
|
878
|
-
|
879
|
-
else:
|
880
|
-
list(map(shadow_set.add, resolvees))
|
881
|
-
distributions.update(dict.fromkeys(resolvees))
|
882
|
-
|
883
|
-
# success, no need to try any more versions of this project
|
884
|
-
break
|
885
|
-
|
886
|
-
distributions = list(distributions)
|
887
|
-
distributions.sort()
|
888
|
-
|
889
|
-
return distributions, error_info
|
890
|
-
|
891
|
-
def require(self, *requirements):
|
892
|
-
"""Ensure that distributions matching `requirements` are activated
|
893
|
-
|
894
|
-
`requirements` must be a string or a (possibly-nested) sequence
|
895
|
-
thereof, specifying the distributions and versions required. The
|
896
|
-
return value is a sequence of the distributions that needed to be
|
897
|
-
activated to fulfill the requirements; all relevant distributions are
|
898
|
-
included, even if they were already activated in this working set.
|
899
|
-
"""
|
900
|
-
needed = self.resolve(parse_requirements(requirements))
|
901
|
-
|
902
|
-
for dist in needed:
|
903
|
-
self.add(dist)
|
904
|
-
|
905
|
-
return needed
|
906
|
-
|
907
|
-
def subscribe(self, callback, existing=True):
|
908
|
-
"""Invoke `callback` for all distributions
|
909
|
-
|
910
|
-
If `existing=True` (default),
|
911
|
-
call on all existing ones, as well.
|
912
|
-
"""
|
913
|
-
if callback in self.callbacks:
|
914
|
-
return
|
915
|
-
self.callbacks.append(callback)
|
916
|
-
if not existing:
|
917
|
-
return
|
918
|
-
for dist in self:
|
919
|
-
callback(dist)
|
920
|
-
|
921
|
-
def _added_new(self, dist):
|
922
|
-
for callback in self.callbacks:
|
923
|
-
callback(dist)
|
924
|
-
|
925
|
-
def __getstate__(self):
|
926
|
-
return (
|
927
|
-
self.entries[:], self.entry_keys.copy(), self.by_key.copy(),
|
928
|
-
self.callbacks[:]
|
929
|
-
)
|
930
|
-
|
931
|
-
def __setstate__(self, e_k_b_c):
|
932
|
-
entries, keys, by_key, callbacks = e_k_b_c
|
933
|
-
self.entries = entries[:]
|
934
|
-
self.entry_keys = keys.copy()
|
935
|
-
self.by_key = by_key.copy()
|
936
|
-
self.callbacks = callbacks[:]
|
937
|
-
|
938
|
-
|
939
|
-
class _ReqExtras(dict):
|
940
|
-
"""
|
941
|
-
Map each requirement to the extras that demanded it.
|
942
|
-
"""
|
943
|
-
|
944
|
-
def markers_pass(self, req, extras=None):
|
945
|
-
"""
|
946
|
-
Evaluate markers for req against each extra that
|
947
|
-
demanded it.
|
948
|
-
|
949
|
-
Return False if the req has a marker and fails
|
950
|
-
evaluation. Otherwise, return True.
|
951
|
-
"""
|
952
|
-
extra_evals = (
|
953
|
-
req.marker.evaluate({'extra': extra})
|
954
|
-
for extra in self.get(req, ()) + (extras or (None,))
|
955
|
-
)
|
956
|
-
return not req.marker or any(extra_evals)
|
957
|
-
|
958
|
-
|
959
|
-
class Environment:
|
960
|
-
"""Searchable snapshot of distributions on a search path"""
|
961
|
-
|
962
|
-
def __init__(
|
963
|
-
self, search_path=None, platform=get_supported_platform(),
|
964
|
-
python=PY_MAJOR):
|
965
|
-
"""Snapshot distributions available on a search path
|
966
|
-
|
967
|
-
Any distributions found on `search_path` are added to the environment.
|
968
|
-
`search_path` should be a sequence of ``sys.path`` items. If not
|
969
|
-
supplied, ``sys.path`` is used.
|
970
|
-
|
971
|
-
`platform` is an optional string specifying the name of the platform
|
972
|
-
that platform-specific distributions must be compatible with. If
|
973
|
-
unspecified, it defaults to the current platform. `python` is an
|
974
|
-
optional string naming the desired version of Python (e.g. ``'3.6'``);
|
975
|
-
it defaults to the current version.
|
976
|
-
|
977
|
-
You may explicitly set `platform` (and/or `python`) to ``None`` if you
|
978
|
-
wish to map *all* distributions, not just those compatible with the
|
979
|
-
running platform or Python version.
|
980
|
-
"""
|
981
|
-
self._distmap = {}
|
982
|
-
self.platform = platform
|
983
|
-
self.python = python
|
984
|
-
self.scan(search_path)
|
985
|
-
|
986
|
-
def can_add(self, dist):
|
987
|
-
"""Is distribution `dist` acceptable for this environment?
|
988
|
-
|
989
|
-
The distribution must match the platform and python version
|
990
|
-
requirements specified when this environment was created, or False
|
991
|
-
is returned.
|
992
|
-
"""
|
993
|
-
py_compat = (
|
994
|
-
self.python is None
|
995
|
-
or dist.py_version is None
|
996
|
-
or dist.py_version == self.python
|
997
|
-
)
|
998
|
-
return py_compat and compatible_platforms(dist.platform, self.platform)
|
999
|
-
|
1000
|
-
def remove(self, dist):
|
1001
|
-
"""Remove `dist` from the environment"""
|
1002
|
-
self._distmap[dist.key].remove(dist)
|
1003
|
-
|
1004
|
-
def scan(self, search_path=None):
|
1005
|
-
"""Scan `search_path` for distributions usable in this environment
|
1006
|
-
|
1007
|
-
Any distributions found are added to the environment.
|
1008
|
-
`search_path` should be a sequence of ``sys.path`` items. If not
|
1009
|
-
supplied, ``sys.path`` is used. Only distributions conforming to
|
1010
|
-
the platform/python version defined at initialization are added.
|
1011
|
-
"""
|
1012
|
-
if search_path is None:
|
1013
|
-
search_path = sys.path
|
1014
|
-
|
1015
|
-
for item in search_path:
|
1016
|
-
for dist in find_distributions(item):
|
1017
|
-
self.add(dist)
|
1018
|
-
|
1019
|
-
def __getitem__(self, project_name):
|
1020
|
-
"""Return a newest-to-oldest list of distributions for `project_name`
|
1021
|
-
|
1022
|
-
Uses case-insensitive `project_name` comparison, assuming all the
|
1023
|
-
project's distributions use their project's name converted to all
|
1024
|
-
lowercase as their key.
|
1025
|
-
|
1026
|
-
"""
|
1027
|
-
distribution_key = project_name.lower()
|
1028
|
-
return self._distmap.get(distribution_key, [])
|
1029
|
-
|
1030
|
-
def add(self, dist):
|
1031
|
-
"""Add `dist` if we ``can_add()`` it and it has not already been added
|
1032
|
-
"""
|
1033
|
-
if self.can_add(dist) and dist.has_version():
|
1034
|
-
dists = self._distmap.setdefault(dist.key, [])
|
1035
|
-
if dist not in dists:
|
1036
|
-
dists.append(dist)
|
1037
|
-
dists.sort(key=operator.attrgetter('hashcmp'), reverse=True)
|
1038
|
-
|
1039
|
-
def best_match(
|
1040
|
-
self, req, working_set, installer=None, replace_conflicting=False):
|
1041
|
-
"""Find distribution best matching `req` and usable on `working_set`
|
1042
|
-
|
1043
|
-
This calls the ``find(req)`` method of the `working_set` to see if a
|
1044
|
-
suitable distribution is already active. (This may raise
|
1045
|
-
``VersionConflict`` if an unsuitable version of the project is already
|
1046
|
-
active in the specified `working_set`.) If a suitable distribution
|
1047
|
-
isn't active, this method returns the newest distribution in the
|
1048
|
-
environment that meets the ``Requirement`` in `req`. If no suitable
|
1049
|
-
distribution is found, and `installer` is supplied, then the result of
|
1050
|
-
calling the environment's ``obtain(req, installer)`` method will be
|
1051
|
-
returned.
|
1052
|
-
"""
|
1053
|
-
try:
|
1054
|
-
dist = working_set.find(req)
|
1055
|
-
except VersionConflict:
|
1056
|
-
if not replace_conflicting:
|
1057
|
-
raise
|
1058
|
-
dist = None
|
1059
|
-
if dist is not None:
|
1060
|
-
return dist
|
1061
|
-
for dist in self[req.key]:
|
1062
|
-
if dist in req:
|
1063
|
-
return dist
|
1064
|
-
# try to download/install
|
1065
|
-
return self.obtain(req, installer)
|
1066
|
-
|
1067
|
-
def obtain(self, requirement, installer=None):
|
1068
|
-
"""Obtain a distribution matching `requirement` (e.g. via download)
|
1069
|
-
|
1070
|
-
Obtain a distro that matches requirement (e.g. via download). In the
|
1071
|
-
base ``Environment`` class, this routine just returns
|
1072
|
-
``installer(requirement)``, unless `installer` is None, in which case
|
1073
|
-
None is returned instead. This method is a hook that allows subclasses
|
1074
|
-
to attempt other ways of obtaining a distribution before falling back
|
1075
|
-
to the `installer` argument."""
|
1076
|
-
if installer is not None:
|
1077
|
-
return installer(requirement)
|
1078
|
-
|
1079
|
-
def __iter__(self):
|
1080
|
-
"""Yield the unique project names of the available distributions"""
|
1081
|
-
for key in self._distmap.keys():
|
1082
|
-
if self[key]:
|
1083
|
-
yield key
|
1084
|
-
|
1085
|
-
def __iadd__(self, other):
|
1086
|
-
"""In-place addition of a distribution or environment"""
|
1087
|
-
if isinstance(other, Distribution):
|
1088
|
-
self.add(other)
|
1089
|
-
elif isinstance(other, Environment):
|
1090
|
-
for project in other:
|
1091
|
-
for dist in other[project]:
|
1092
|
-
self.add(dist)
|
1093
|
-
else:
|
1094
|
-
raise TypeError("Can't add %r to environment" % (other,))
|
1095
|
-
return self
|
1096
|
-
|
1097
|
-
def __add__(self, other):
|
1098
|
-
"""Add an environment or distribution to an environment"""
|
1099
|
-
new = self.__class__([], platform=None, python=None)
|
1100
|
-
for env in self, other:
|
1101
|
-
new += env
|
1102
|
-
return new
|
1103
|
-
|
1104
|
-
|
1105
|
-
# XXX backward compatibility
|
1106
|
-
AvailableDistributions = Environment
|
1107
|
-
|
1108
|
-
|
1109
|
-
class ExtractionError(RuntimeError):
|
1110
|
-
"""An error occurred extracting a resource
|
1111
|
-
|
1112
|
-
The following attributes are available from instances of this exception:
|
1113
|
-
|
1114
|
-
manager
|
1115
|
-
The resource manager that raised this exception
|
1116
|
-
|
1117
|
-
cache_path
|
1118
|
-
The base directory for resource extraction
|
1119
|
-
|
1120
|
-
original_error
|
1121
|
-
The exception instance that caused extraction to fail
|
1122
|
-
"""
|
1123
|
-
|
1124
|
-
|
1125
|
-
class ResourceManager:
|
1126
|
-
"""Manage resource extraction and packages"""
|
1127
|
-
extraction_path = None
|
1128
|
-
|
1129
|
-
def __init__(self):
|
1130
|
-
self.cached_files = {}
|
1131
|
-
|
1132
|
-
def resource_exists(self, package_or_requirement, resource_name):
|
1133
|
-
"""Does the named resource exist?"""
|
1134
|
-
return get_provider(package_or_requirement).has_resource(resource_name)
|
1135
|
-
|
1136
|
-
def resource_isdir(self, package_or_requirement, resource_name):
|
1137
|
-
"""Is the named resource an existing directory?"""
|
1138
|
-
return get_provider(package_or_requirement).resource_isdir(
|
1139
|
-
resource_name
|
1140
|
-
)
|
1141
|
-
|
1142
|
-
def resource_filename(self, package_or_requirement, resource_name):
|
1143
|
-
"""Return a true filesystem path for specified resource"""
|
1144
|
-
return get_provider(package_or_requirement).get_resource_filename(
|
1145
|
-
self, resource_name
|
1146
|
-
)
|
1147
|
-
|
1148
|
-
def resource_stream(self, package_or_requirement, resource_name):
|
1149
|
-
"""Return a readable file-like object for specified resource"""
|
1150
|
-
return get_provider(package_or_requirement).get_resource_stream(
|
1151
|
-
self, resource_name
|
1152
|
-
)
|
1153
|
-
|
1154
|
-
def resource_string(self, package_or_requirement, resource_name):
|
1155
|
-
"""Return specified resource as a string"""
|
1156
|
-
return get_provider(package_or_requirement).get_resource_string(
|
1157
|
-
self, resource_name
|
1158
|
-
)
|
1159
|
-
|
1160
|
-
def resource_listdir(self, package_or_requirement, resource_name):
|
1161
|
-
"""List the contents of the named resource directory"""
|
1162
|
-
return get_provider(package_or_requirement).resource_listdir(
|
1163
|
-
resource_name
|
1164
|
-
)
|
1165
|
-
|
1166
|
-
def extraction_error(self):
|
1167
|
-
"""Give an error message for problems extracting file(s)"""
|
1168
|
-
|
1169
|
-
old_exc = sys.exc_info()[1]
|
1170
|
-
cache_path = self.extraction_path or get_default_cache()
|
1171
|
-
|
1172
|
-
tmpl = textwrap.dedent("""
|
1173
|
-
Can't extract file(s) to egg cache
|
1174
|
-
|
1175
|
-
The following error occurred while trying to extract file(s)
|
1176
|
-
to the Python egg cache:
|
1177
|
-
|
1178
|
-
{old_exc}
|
1179
|
-
|
1180
|
-
The Python egg cache directory is currently set to:
|
1181
|
-
|
1182
|
-
{cache_path}
|
1183
|
-
|
1184
|
-
Perhaps your account does not have write access to this directory?
|
1185
|
-
You can change the cache directory by setting the PYTHON_EGG_CACHE
|
1186
|
-
environment variable to point to an accessible directory.
|
1187
|
-
""").lstrip()
|
1188
|
-
err = ExtractionError(tmpl.format(**locals()))
|
1189
|
-
err.manager = self
|
1190
|
-
err.cache_path = cache_path
|
1191
|
-
err.original_error = old_exc
|
1192
|
-
raise err
|
1193
|
-
|
1194
|
-
def get_cache_path(self, archive_name, names=()):
|
1195
|
-
"""Return absolute location in cache for `archive_name` and `names`
|
1196
|
-
|
1197
|
-
The parent directory of the resulting path will be created if it does
|
1198
|
-
not already exist. `archive_name` should be the base filename of the
|
1199
|
-
enclosing egg (which may not be the name of the enclosing zipfile!),
|
1200
|
-
including its ".egg" extension. `names`, if provided, should be a
|
1201
|
-
sequence of path name parts "under" the egg's extraction location.
|
1202
|
-
|
1203
|
-
This method should only be called by resource providers that need to
|
1204
|
-
obtain an extraction location, and only for names they intend to
|
1205
|
-
extract, as it tracks the generated names for possible cleanup later.
|
1206
|
-
"""
|
1207
|
-
extract_path = self.extraction_path or get_default_cache()
|
1208
|
-
target_path = os.path.join(extract_path, archive_name + '-tmp', *names)
|
1209
|
-
try:
|
1210
|
-
_bypass_ensure_directory(target_path)
|
1211
|
-
except Exception:
|
1212
|
-
self.extraction_error()
|
1213
|
-
|
1214
|
-
self._warn_unsafe_extraction_path(extract_path)
|
1215
|
-
|
1216
|
-
self.cached_files[target_path] = 1
|
1217
|
-
return target_path
|
1218
|
-
|
1219
|
-
@staticmethod
|
1220
|
-
def _warn_unsafe_extraction_path(path):
|
1221
|
-
"""
|
1222
|
-
If the default extraction path is overridden and set to an insecure
|
1223
|
-
location, such as /tmp, it opens up an opportunity for an attacker to
|
1224
|
-
replace an extracted file with an unauthorized payload. Warn the user
|
1225
|
-
if a known insecure location is used.
|
1226
|
-
|
1227
|
-
See Distribute #375 for more details.
|
1228
|
-
"""
|
1229
|
-
if os.name == 'nt' and not path.startswith(os.environ['windir']):
|
1230
|
-
# On Windows, permissions are generally restrictive by default
|
1231
|
-
# and temp directories are not writable by other users, so
|
1232
|
-
# bypass the warning.
|
1233
|
-
return
|
1234
|
-
mode = os.stat(path).st_mode
|
1235
|
-
if mode & stat.S_IWOTH or mode & stat.S_IWGRP:
|
1236
|
-
msg = (
|
1237
|
-
"%s is writable by group/others and vulnerable to attack "
|
1238
|
-
"when "
|
1239
|
-
"used with get_resource_filename. Consider a more secure "
|
1240
|
-
"location (set with .set_extraction_path or the "
|
1241
|
-
"PYTHON_EGG_CACHE environment variable)." % path
|
1242
|
-
)
|
1243
|
-
warnings.warn(msg, UserWarning)
|
1244
|
-
|
1245
|
-
def postprocess(self, tempname, filename):
|
1246
|
-
"""Perform any platform-specific postprocessing of `tempname`
|
1247
|
-
|
1248
|
-
This is where Mac header rewrites should be done; other platforms don't
|
1249
|
-
have anything special they should do.
|
1250
|
-
|
1251
|
-
Resource providers should call this method ONLY after successfully
|
1252
|
-
extracting a compressed resource. They must NOT call it on resources
|
1253
|
-
that are already in the filesystem.
|
1254
|
-
|
1255
|
-
`tempname` is the current (temporary) name of the file, and `filename`
|
1256
|
-
is the name it will be renamed to by the caller after this routine
|
1257
|
-
returns.
|
1258
|
-
"""
|
1259
|
-
|
1260
|
-
if os.name == 'posix':
|
1261
|
-
# Make the resource executable
|
1262
|
-
mode = ((os.stat(tempname).st_mode) | 0o555) & 0o7777
|
1263
|
-
os.chmod(tempname, mode)
|
1264
|
-
|
1265
|
-
def set_extraction_path(self, path):
|
1266
|
-
"""Set the base path where resources will be extracted to, if needed.
|
1267
|
-
|
1268
|
-
If you do not call this routine before any extractions take place, the
|
1269
|
-
path defaults to the return value of ``get_default_cache()``. (Which
|
1270
|
-
is based on the ``PYTHON_EGG_CACHE`` environment variable, with various
|
1271
|
-
platform-specific fallbacks. See that routine's documentation for more
|
1272
|
-
details.)
|
1273
|
-
|
1274
|
-
Resources are extracted to subdirectories of this path based upon
|
1275
|
-
information given by the ``IResourceProvider``. You may set this to a
|
1276
|
-
temporary directory, but then you must call ``cleanup_resources()`` to
|
1277
|
-
delete the extracted files when done. There is no guarantee that
|
1278
|
-
``cleanup_resources()`` will be able to remove all extracted files.
|
1279
|
-
|
1280
|
-
(Note: you may not change the extraction path for a given resource
|
1281
|
-
manager once resources have been extracted, unless you first call
|
1282
|
-
``cleanup_resources()``.)
|
1283
|
-
"""
|
1284
|
-
if self.cached_files:
|
1285
|
-
raise ValueError(
|
1286
|
-
"Can't change extraction path, files already extracted"
|
1287
|
-
)
|
1288
|
-
|
1289
|
-
self.extraction_path = path
|
1290
|
-
|
1291
|
-
def cleanup_resources(self, force=False):
|
1292
|
-
"""
|
1293
|
-
Delete all extracted resource files and directories, returning a list
|
1294
|
-
of the file and directory names that could not be successfully removed.
|
1295
|
-
This function does not have any concurrency protection, so it should
|
1296
|
-
generally only be called when the extraction path is a temporary
|
1297
|
-
directory exclusive to a single process. This method is not
|
1298
|
-
automatically called; you must call it explicitly or register it as an
|
1299
|
-
``atexit`` function if you wish to ensure cleanup of a temporary
|
1300
|
-
directory used for extractions.
|
1301
|
-
"""
|
1302
|
-
# XXX
|
1303
|
-
|
1304
|
-
|
1305
|
-
def get_default_cache():
|
1306
|
-
"""
|
1307
|
-
Return the ``PYTHON_EGG_CACHE`` environment variable
|
1308
|
-
or a platform-relevant user cache dir for an app
|
1309
|
-
named "Python-Eggs".
|
1310
|
-
"""
|
1311
|
-
return (
|
1312
|
-
os.environ.get('PYTHON_EGG_CACHE')
|
1313
|
-
or platformdirs.user_cache_dir(appname='Python-Eggs')
|
1314
|
-
)
|
1315
|
-
|
1316
|
-
|
1317
|
-
def safe_name(name):
|
1318
|
-
"""Convert an arbitrary string to a standard distribution name
|
1319
|
-
|
1320
|
-
Any runs of non-alphanumeric/. characters are replaced with a single '-'.
|
1321
|
-
"""
|
1322
|
-
return re.sub('[^A-Za-z0-9.]+', '-', name)
|
1323
|
-
|
1324
|
-
|
1325
|
-
def safe_version(version):
|
1326
|
-
"""
|
1327
|
-
Convert an arbitrary string to a standard version string
|
1328
|
-
"""
|
1329
|
-
try:
|
1330
|
-
# normalize the version
|
1331
|
-
return str(packaging.version.Version(version))
|
1332
|
-
except packaging.version.InvalidVersion:
|
1333
|
-
version = version.replace(' ', '.')
|
1334
|
-
return re.sub('[^A-Za-z0-9.]+', '-', version)
|
1335
|
-
|
1336
|
-
|
1337
|
-
def safe_extra(extra):
|
1338
|
-
"""Convert an arbitrary string to a standard 'extra' name
|
1339
|
-
|
1340
|
-
Any runs of non-alphanumeric characters are replaced with a single '_',
|
1341
|
-
and the result is always lowercased.
|
1342
|
-
"""
|
1343
|
-
return re.sub('[^A-Za-z0-9.-]+', '_', extra).lower()
|
1344
|
-
|
1345
|
-
|
1346
|
-
def to_filename(name):
|
1347
|
-
"""Convert a project or version name to its filename-escaped form
|
1348
|
-
|
1349
|
-
Any '-' characters are currently replaced with '_'.
|
1350
|
-
"""
|
1351
|
-
return name.replace('-', '_')
|
1352
|
-
|
1353
|
-
|
1354
|
-
def invalid_marker(text):
|
1355
|
-
"""
|
1356
|
-
Validate text as a PEP 508 environment marker; return an exception
|
1357
|
-
if invalid or False otherwise.
|
1358
|
-
"""
|
1359
|
-
try:
|
1360
|
-
evaluate_marker(text)
|
1361
|
-
except SyntaxError as e:
|
1362
|
-
e.filename = None
|
1363
|
-
e.lineno = None
|
1364
|
-
return e
|
1365
|
-
return False
|
1366
|
-
|
1367
|
-
|
1368
|
-
def evaluate_marker(text, extra=None):
|
1369
|
-
"""
|
1370
|
-
Evaluate a PEP 508 environment marker.
|
1371
|
-
Return a boolean indicating the marker result in this environment.
|
1372
|
-
Raise SyntaxError if marker is invalid.
|
1373
|
-
|
1374
|
-
This implementation uses the 'pyparsing' module.
|
1375
|
-
"""
|
1376
|
-
try:
|
1377
|
-
marker = packaging.markers.Marker(text)
|
1378
|
-
return marker.evaluate()
|
1379
|
-
except packaging.markers.InvalidMarker as e:
|
1380
|
-
raise SyntaxError(e)
|
1381
|
-
|
1382
|
-
|
1383
|
-
class NullProvider:
|
1384
|
-
"""Try to implement resources and metadata for arbitrary PEP 302 loaders"""
|
1385
|
-
|
1386
|
-
egg_name = None
|
1387
|
-
egg_info = None
|
1388
|
-
loader = None
|
1389
|
-
|
1390
|
-
def __init__(self, module):
|
1391
|
-
self.loader = getattr(module, '__loader__', None)
|
1392
|
-
self.module_path = os.path.dirname(getattr(module, '__file__', ''))
|
1393
|
-
|
1394
|
-
def get_resource_filename(self, manager, resource_name):
|
1395
|
-
return self._fn(self.module_path, resource_name)
|
1396
|
-
|
1397
|
-
def get_resource_stream(self, manager, resource_name):
|
1398
|
-
return io.BytesIO(self.get_resource_string(manager, resource_name))
|
1399
|
-
|
1400
|
-
def get_resource_string(self, manager, resource_name):
|
1401
|
-
return self._get(self._fn(self.module_path, resource_name))
|
1402
|
-
|
1403
|
-
def has_resource(self, resource_name):
|
1404
|
-
return self._has(self._fn(self.module_path, resource_name))
|
1405
|
-
|
1406
|
-
def _get_metadata_path(self, name):
|
1407
|
-
return self._fn(self.egg_info, name)
|
1408
|
-
|
1409
|
-
def has_metadata(self, name):
|
1410
|
-
if not self.egg_info:
|
1411
|
-
return self.egg_info
|
1412
|
-
|
1413
|
-
path = self._get_metadata_path(name)
|
1414
|
-
return self._has(path)
|
1415
|
-
|
1416
|
-
def get_metadata(self, name):
|
1417
|
-
if not self.egg_info:
|
1418
|
-
return ""
|
1419
|
-
path = self._get_metadata_path(name)
|
1420
|
-
value = self._get(path)
|
1421
|
-
if six.PY2:
|
1422
|
-
return value
|
1423
|
-
try:
|
1424
|
-
return value.decode('utf-8')
|
1425
|
-
except UnicodeDecodeError as exc:
|
1426
|
-
# Include the path in the error message to simplify
|
1427
|
-
# troubleshooting, and without changing the exception type.
|
1428
|
-
exc.reason += ' in {} file at path: {}'.format(name, path)
|
1429
|
-
raise
|
1430
|
-
|
1431
|
-
def get_metadata_lines(self, name):
|
1432
|
-
return yield_lines(self.get_metadata(name))
|
1433
|
-
|
1434
|
-
def resource_isdir(self, resource_name):
|
1435
|
-
return self._isdir(self._fn(self.module_path, resource_name))
|
1436
|
-
|
1437
|
-
def metadata_isdir(self, name):
|
1438
|
-
return self.egg_info and self._isdir(self._fn(self.egg_info, name))
|
1439
|
-
|
1440
|
-
def resource_listdir(self, resource_name):
|
1441
|
-
return self._listdir(self._fn(self.module_path, resource_name))
|
1442
|
-
|
1443
|
-
def metadata_listdir(self, name):
|
1444
|
-
if self.egg_info:
|
1445
|
-
return self._listdir(self._fn(self.egg_info, name))
|
1446
|
-
return []
|
1447
|
-
|
1448
|
-
def run_script(self, script_name, namespace):
|
1449
|
-
script = 'scripts/' + script_name
|
1450
|
-
if not self.has_metadata(script):
|
1451
|
-
raise ResolutionError(
|
1452
|
-
"Script {script!r} not found in metadata at {self.egg_info!r}"
|
1453
|
-
.format(**locals()),
|
1454
|
-
)
|
1455
|
-
script_text = self.get_metadata(script).replace('\r\n', '\n')
|
1456
|
-
script_text = script_text.replace('\r', '\n')
|
1457
|
-
script_filename = self._fn(self.egg_info, script)
|
1458
|
-
namespace['__file__'] = script_filename
|
1459
|
-
if os.path.exists(script_filename):
|
1460
|
-
source = open(script_filename).read()
|
1461
|
-
code = compile(source, script_filename, 'exec')
|
1462
|
-
exec(code, namespace, namespace)
|
1463
|
-
else:
|
1464
|
-
from linecache import cache
|
1465
|
-
cache[script_filename] = (
|
1466
|
-
len(script_text), 0, script_text.split('\n'), script_filename
|
1467
|
-
)
|
1468
|
-
script_code = compile(script_text, script_filename, 'exec')
|
1469
|
-
exec(script_code, namespace, namespace)
|
1470
|
-
|
1471
|
-
def _has(self, path):
|
1472
|
-
raise NotImplementedError(
|
1473
|
-
"Can't perform this operation for unregistered loader type"
|
1474
|
-
)
|
1475
|
-
|
1476
|
-
def _isdir(self, path):
|
1477
|
-
raise NotImplementedError(
|
1478
|
-
"Can't perform this operation for unregistered loader type"
|
1479
|
-
)
|
1480
|
-
|
1481
|
-
def _listdir(self, path):
|
1482
|
-
raise NotImplementedError(
|
1483
|
-
"Can't perform this operation for unregistered loader type"
|
1484
|
-
)
|
1485
|
-
|
1486
|
-
def _fn(self, base, resource_name):
|
1487
|
-
self._validate_resource_path(resource_name)
|
1488
|
-
if resource_name:
|
1489
|
-
return os.path.join(base, *resource_name.split('/'))
|
1490
|
-
return base
|
1491
|
-
|
1492
|
-
@staticmethod
|
1493
|
-
def _validate_resource_path(path):
|
1494
|
-
"""
|
1495
|
-
Validate the resource paths according to the docs.
|
1496
|
-
https://setuptools.readthedocs.io/en/latest/pkg_resources.html#basic-resource-access
|
1497
|
-
|
1498
|
-
>>> warned = getfixture('recwarn')
|
1499
|
-
>>> warnings.simplefilter('always')
|
1500
|
-
>>> vrp = NullProvider._validate_resource_path
|
1501
|
-
>>> vrp('foo/bar.txt')
|
1502
|
-
>>> bool(warned)
|
1503
|
-
False
|
1504
|
-
>>> vrp('../foo/bar.txt')
|
1505
|
-
>>> bool(warned)
|
1506
|
-
True
|
1507
|
-
>>> warned.clear()
|
1508
|
-
>>> vrp('/foo/bar.txt')
|
1509
|
-
>>> bool(warned)
|
1510
|
-
True
|
1511
|
-
>>> vrp('foo/../../bar.txt')
|
1512
|
-
>>> bool(warned)
|
1513
|
-
True
|
1514
|
-
>>> warned.clear()
|
1515
|
-
>>> vrp('foo/f../bar.txt')
|
1516
|
-
>>> bool(warned)
|
1517
|
-
False
|
1518
|
-
|
1519
|
-
Windows path separators are straight-up disallowed.
|
1520
|
-
>>> vrp(r'\\foo/bar.txt')
|
1521
|
-
Traceback (most recent call last):
|
1522
|
-
...
|
1523
|
-
ValueError: Use of .. or absolute path in a resource path \
|
1524
|
-
is not allowed.
|
1525
|
-
|
1526
|
-
>>> vrp(r'C:\\foo/bar.txt')
|
1527
|
-
Traceback (most recent call last):
|
1528
|
-
...
|
1529
|
-
ValueError: Use of .. or absolute path in a resource path \
|
1530
|
-
is not allowed.
|
1531
|
-
|
1532
|
-
Blank values are allowed
|
1533
|
-
|
1534
|
-
>>> vrp('')
|
1535
|
-
>>> bool(warned)
|
1536
|
-
False
|
1537
|
-
|
1538
|
-
Non-string values are not.
|
1539
|
-
|
1540
|
-
>>> vrp(None)
|
1541
|
-
Traceback (most recent call last):
|
1542
|
-
...
|
1543
|
-
AttributeError: ...
|
1544
|
-
"""
|
1545
|
-
invalid = (
|
1546
|
-
os.path.pardir in path.split(posixpath.sep) or
|
1547
|
-
posixpath.isabs(path) or
|
1548
|
-
ntpath.isabs(path)
|
1549
|
-
)
|
1550
|
-
if not invalid:
|
1551
|
-
return
|
1552
|
-
|
1553
|
-
msg = "Use of .. or absolute path in a resource path is not allowed."
|
1554
|
-
|
1555
|
-
# Aggressively disallow Windows absolute paths
|
1556
|
-
if ntpath.isabs(path) and not posixpath.isabs(path):
|
1557
|
-
raise ValueError(msg)
|
1558
|
-
|
1559
|
-
# for compatibility, warn; in future
|
1560
|
-
# raise ValueError(msg)
|
1561
|
-
warnings.warn(
|
1562
|
-
msg[:-1] + " and will raise exceptions in a future release.",
|
1563
|
-
DeprecationWarning,
|
1564
|
-
stacklevel=4,
|
1565
|
-
)
|
1566
|
-
|
1567
|
-
def _get(self, path):
|
1568
|
-
if hasattr(self.loader, 'get_data'):
|
1569
|
-
return self.loader.get_data(path)
|
1570
|
-
raise NotImplementedError(
|
1571
|
-
"Can't perform this operation for loaders without 'get_data()'"
|
1572
|
-
)
|
1573
|
-
|
1574
|
-
|
1575
|
-
register_loader_type(object, NullProvider)
|
1576
|
-
|
1577
|
-
|
1578
|
-
class EggProvider(NullProvider):
|
1579
|
-
"""Provider based on a virtual filesystem"""
|
1580
|
-
|
1581
|
-
def __init__(self, module):
|
1582
|
-
NullProvider.__init__(self, module)
|
1583
|
-
self._setup_prefix()
|
1584
|
-
|
1585
|
-
def _setup_prefix(self):
|
1586
|
-
# we assume here that our metadata may be nested inside a "basket"
|
1587
|
-
# of multiple eggs; that's why we use module_path instead of .archive
|
1588
|
-
path = self.module_path
|
1589
|
-
old = None
|
1590
|
-
while path != old:
|
1591
|
-
if _is_egg_path(path):
|
1592
|
-
self.egg_name = os.path.basename(path)
|
1593
|
-
self.egg_info = os.path.join(path, 'EGG-INFO')
|
1594
|
-
self.egg_root = path
|
1595
|
-
break
|
1596
|
-
old = path
|
1597
|
-
path, base = os.path.split(path)
|
1598
|
-
|
1599
|
-
|
1600
|
-
class DefaultProvider(EggProvider):
|
1601
|
-
"""Provides access to package resources in the filesystem"""
|
1602
|
-
|
1603
|
-
def _has(self, path):
|
1604
|
-
return os.path.exists(path)
|
1605
|
-
|
1606
|
-
def _isdir(self, path):
|
1607
|
-
return os.path.isdir(path)
|
1608
|
-
|
1609
|
-
def _listdir(self, path):
|
1610
|
-
return os.listdir(path)
|
1611
|
-
|
1612
|
-
def get_resource_stream(self, manager, resource_name):
|
1613
|
-
return open(self._fn(self.module_path, resource_name), 'rb')
|
1614
|
-
|
1615
|
-
def _get(self, path):
|
1616
|
-
with open(path, 'rb') as stream:
|
1617
|
-
return stream.read()
|
1618
|
-
|
1619
|
-
@classmethod
|
1620
|
-
def _register(cls):
|
1621
|
-
loader_names = 'SourceFileLoader', 'SourcelessFileLoader',
|
1622
|
-
for name in loader_names:
|
1623
|
-
loader_cls = getattr(importlib_machinery, name, type(None))
|
1624
|
-
register_loader_type(loader_cls, cls)
|
1625
|
-
|
1626
|
-
|
1627
|
-
DefaultProvider._register()
|
1628
|
-
|
1629
|
-
|
1630
|
-
class EmptyProvider(NullProvider):
|
1631
|
-
"""Provider that returns nothing for all requests"""
|
1632
|
-
|
1633
|
-
module_path = None
|
1634
|
-
|
1635
|
-
_isdir = _has = lambda self, path: False
|
1636
|
-
|
1637
|
-
def _get(self, path):
|
1638
|
-
return ''
|
1639
|
-
|
1640
|
-
def _listdir(self, path):
|
1641
|
-
return []
|
1642
|
-
|
1643
|
-
def __init__(self):
|
1644
|
-
pass
|
1645
|
-
|
1646
|
-
|
1647
|
-
empty_provider = EmptyProvider()
|
1648
|
-
|
1649
|
-
|
1650
|
-
class ZipManifests(dict):
|
1651
|
-
"""
|
1652
|
-
zip manifest builder
|
1653
|
-
"""
|
1654
|
-
|
1655
|
-
@classmethod
|
1656
|
-
def build(cls, path):
|
1657
|
-
"""
|
1658
|
-
Build a dictionary similar to the zipimport directory
|
1659
|
-
caches, except instead of tuples, store ZipInfo objects.
|
1660
|
-
|
1661
|
-
Use a platform-specific path separator (os.sep) for the path keys
|
1662
|
-
for compatibility with pypy on Windows.
|
1663
|
-
"""
|
1664
|
-
with zipfile.ZipFile(path) as zfile:
|
1665
|
-
items = (
|
1666
|
-
(
|
1667
|
-
name.replace('/', os.sep),
|
1668
|
-
zfile.getinfo(name),
|
1669
|
-
)
|
1670
|
-
for name in zfile.namelist()
|
1671
|
-
)
|
1672
|
-
return dict(items)
|
1673
|
-
|
1674
|
-
load = build
|
1675
|
-
|
1676
|
-
|
1677
|
-
class MemoizedZipManifests(ZipManifests):
|
1678
|
-
"""
|
1679
|
-
Memoized zipfile manifests.
|
1680
|
-
"""
|
1681
|
-
manifest_mod = collections.namedtuple('manifest_mod', 'manifest mtime')
|
1682
|
-
|
1683
|
-
def load(self, path):
|
1684
|
-
"""
|
1685
|
-
Load a manifest at path or return a suitable manifest already loaded.
|
1686
|
-
"""
|
1687
|
-
path = os.path.normpath(path)
|
1688
|
-
mtime = os.stat(path).st_mtime
|
1689
|
-
|
1690
|
-
if path not in self or self[path].mtime != mtime:
|
1691
|
-
manifest = self.build(path)
|
1692
|
-
self[path] = self.manifest_mod(manifest, mtime)
|
1693
|
-
|
1694
|
-
return self[path].manifest
|
1695
|
-
|
1696
|
-
|
1697
|
-
class ZipProvider(EggProvider):
|
1698
|
-
"""Resource support for zips and eggs"""
|
1699
|
-
|
1700
|
-
eagers = None
|
1701
|
-
_zip_manifests = MemoizedZipManifests()
|
1702
|
-
|
1703
|
-
def __init__(self, module):
|
1704
|
-
EggProvider.__init__(self, module)
|
1705
|
-
self.zip_pre = self.loader.archive + os.sep
|
1706
|
-
|
1707
|
-
def _zipinfo_name(self, fspath):
|
1708
|
-
# Convert a virtual filename (full path to file) into a zipfile subpath
|
1709
|
-
# usable with the zipimport directory cache for our target archive
|
1710
|
-
fspath = fspath.rstrip(os.sep)
|
1711
|
-
if fspath == self.loader.archive:
|
1712
|
-
return ''
|
1713
|
-
if fspath.startswith(self.zip_pre):
|
1714
|
-
return fspath[len(self.zip_pre):]
|
1715
|
-
raise AssertionError(
|
1716
|
-
"%s is not a subpath of %s" % (fspath, self.zip_pre)
|
1717
|
-
)
|
1718
|
-
|
1719
|
-
def _parts(self, zip_path):
|
1720
|
-
# Convert a zipfile subpath into an egg-relative path part list.
|
1721
|
-
# pseudo-fs path
|
1722
|
-
fspath = self.zip_pre + zip_path
|
1723
|
-
if fspath.startswith(self.egg_root + os.sep):
|
1724
|
-
return fspath[len(self.egg_root) + 1:].split(os.sep)
|
1725
|
-
raise AssertionError(
|
1726
|
-
"%s is not a subpath of %s" % (fspath, self.egg_root)
|
1727
|
-
)
|
1728
|
-
|
1729
|
-
@property
|
1730
|
-
def zipinfo(self):
|
1731
|
-
return self._zip_manifests.load(self.loader.archive)
|
1732
|
-
|
1733
|
-
def get_resource_filename(self, manager, resource_name):
|
1734
|
-
if not self.egg_name:
|
1735
|
-
raise NotImplementedError(
|
1736
|
-
"resource_filename() only supported for .egg, not .zip"
|
1737
|
-
)
|
1738
|
-
# no need to lock for extraction, since we use temp names
|
1739
|
-
zip_path = self._resource_to_zip(resource_name)
|
1740
|
-
eagers = self._get_eager_resources()
|
1741
|
-
if '/'.join(self._parts(zip_path)) in eagers:
|
1742
|
-
for name in eagers:
|
1743
|
-
self._extract_resource(manager, self._eager_to_zip(name))
|
1744
|
-
return self._extract_resource(manager, zip_path)
|
1745
|
-
|
1746
|
-
@staticmethod
|
1747
|
-
def _get_date_and_size(zip_stat):
|
1748
|
-
size = zip_stat.file_size
|
1749
|
-
# ymdhms+wday, yday, dst
|
1750
|
-
date_time = zip_stat.date_time + (0, 0, -1)
|
1751
|
-
# 1980 offset already done
|
1752
|
-
timestamp = time.mktime(date_time)
|
1753
|
-
return timestamp, size
|
1754
|
-
|
1755
|
-
def _extract_resource(self, manager, zip_path):
|
1756
|
-
|
1757
|
-
if zip_path in self._index():
|
1758
|
-
for name in self._index()[zip_path]:
|
1759
|
-
last = self._extract_resource(
|
1760
|
-
manager, os.path.join(zip_path, name)
|
1761
|
-
)
|
1762
|
-
# return the extracted directory name
|
1763
|
-
return os.path.dirname(last)
|
1764
|
-
|
1765
|
-
timestamp, size = self._get_date_and_size(self.zipinfo[zip_path])
|
1766
|
-
|
1767
|
-
if not WRITE_SUPPORT:
|
1768
|
-
raise IOError('"os.rename" and "os.unlink" are not supported '
|
1769
|
-
'on this platform')
|
1770
|
-
try:
|
1771
|
-
|
1772
|
-
real_path = manager.get_cache_path(
|
1773
|
-
self.egg_name, self._parts(zip_path)
|
1774
|
-
)
|
1775
|
-
|
1776
|
-
if self._is_current(real_path, zip_path):
|
1777
|
-
return real_path
|
1778
|
-
|
1779
|
-
outf, tmpnam = _mkstemp(
|
1780
|
-
".$extract",
|
1781
|
-
dir=os.path.dirname(real_path),
|
1782
|
-
)
|
1783
|
-
os.write(outf, self.loader.get_data(zip_path))
|
1784
|
-
os.close(outf)
|
1785
|
-
utime(tmpnam, (timestamp, timestamp))
|
1786
|
-
manager.postprocess(tmpnam, real_path)
|
1787
|
-
|
1788
|
-
try:
|
1789
|
-
rename(tmpnam, real_path)
|
1790
|
-
|
1791
|
-
except os.error:
|
1792
|
-
if os.path.isfile(real_path):
|
1793
|
-
if self._is_current(real_path, zip_path):
|
1794
|
-
# the file became current since it was checked above,
|
1795
|
-
# so proceed.
|
1796
|
-
return real_path
|
1797
|
-
# Windows, del old file and retry
|
1798
|
-
elif os.name == 'nt':
|
1799
|
-
unlink(real_path)
|
1800
|
-
rename(tmpnam, real_path)
|
1801
|
-
return real_path
|
1802
|
-
raise
|
1803
|
-
|
1804
|
-
except os.error:
|
1805
|
-
# report a user-friendly error
|
1806
|
-
manager.extraction_error()
|
1807
|
-
|
1808
|
-
return real_path
|
1809
|
-
|
1810
|
-
def _is_current(self, file_path, zip_path):
|
1811
|
-
"""
|
1812
|
-
Return True if the file_path is current for this zip_path
|
1813
|
-
"""
|
1814
|
-
timestamp, size = self._get_date_and_size(self.zipinfo[zip_path])
|
1815
|
-
if not os.path.isfile(file_path):
|
1816
|
-
return False
|
1817
|
-
stat = os.stat(file_path)
|
1818
|
-
if stat.st_size != size or stat.st_mtime != timestamp:
|
1819
|
-
return False
|
1820
|
-
# check that the contents match
|
1821
|
-
zip_contents = self.loader.get_data(zip_path)
|
1822
|
-
with open(file_path, 'rb') as f:
|
1823
|
-
file_contents = f.read()
|
1824
|
-
return zip_contents == file_contents
|
1825
|
-
|
1826
|
-
def _get_eager_resources(self):
|
1827
|
-
if self.eagers is None:
|
1828
|
-
eagers = []
|
1829
|
-
for name in ('native_libs.txt', 'eager_resources.txt'):
|
1830
|
-
if self.has_metadata(name):
|
1831
|
-
eagers.extend(self.get_metadata_lines(name))
|
1832
|
-
self.eagers = eagers
|
1833
|
-
return self.eagers
|
1834
|
-
|
1835
|
-
def _index(self):
|
1836
|
-
try:
|
1837
|
-
return self._dirindex
|
1838
|
-
except AttributeError:
|
1839
|
-
ind = {}
|
1840
|
-
for path in self.zipinfo:
|
1841
|
-
parts = path.split(os.sep)
|
1842
|
-
while parts:
|
1843
|
-
parent = os.sep.join(parts[:-1])
|
1844
|
-
if parent in ind:
|
1845
|
-
ind[parent].append(parts[-1])
|
1846
|
-
break
|
1847
|
-
else:
|
1848
|
-
ind[parent] = [parts.pop()]
|
1849
|
-
self._dirindex = ind
|
1850
|
-
return ind
|
1851
|
-
|
1852
|
-
def _has(self, fspath):
|
1853
|
-
zip_path = self._zipinfo_name(fspath)
|
1854
|
-
return zip_path in self.zipinfo or zip_path in self._index()
|
1855
|
-
|
1856
|
-
def _isdir(self, fspath):
|
1857
|
-
return self._zipinfo_name(fspath) in self._index()
|
1858
|
-
|
1859
|
-
def _listdir(self, fspath):
|
1860
|
-
return list(self._index().get(self._zipinfo_name(fspath), ()))
|
1861
|
-
|
1862
|
-
def _eager_to_zip(self, resource_name):
|
1863
|
-
return self._zipinfo_name(self._fn(self.egg_root, resource_name))
|
1864
|
-
|
1865
|
-
def _resource_to_zip(self, resource_name):
|
1866
|
-
return self._zipinfo_name(self._fn(self.module_path, resource_name))
|
1867
|
-
|
1868
|
-
|
1869
|
-
register_loader_type(zipimport.zipimporter, ZipProvider)
|
1870
|
-
|
1871
|
-
|
1872
|
-
class FileMetadata(EmptyProvider):
|
1873
|
-
"""Metadata handler for standalone PKG-INFO files
|
1874
|
-
|
1875
|
-
Usage::
|
1876
|
-
|
1877
|
-
metadata = FileMetadata("/path/to/PKG-INFO")
|
1878
|
-
|
1879
|
-
This provider rejects all data and metadata requests except for PKG-INFO,
|
1880
|
-
which is treated as existing, and will be the contents of the file at
|
1881
|
-
the provided location.
|
1882
|
-
"""
|
1883
|
-
|
1884
|
-
def __init__(self, path):
|
1885
|
-
self.path = path
|
1886
|
-
|
1887
|
-
def _get_metadata_path(self, name):
|
1888
|
-
return self.path
|
1889
|
-
|
1890
|
-
def has_metadata(self, name):
|
1891
|
-
return name == 'PKG-INFO' and os.path.isfile(self.path)
|
1892
|
-
|
1893
|
-
def get_metadata(self, name):
|
1894
|
-
if name != 'PKG-INFO':
|
1895
|
-
raise KeyError("No metadata except PKG-INFO is available")
|
1896
|
-
|
1897
|
-
with io.open(self.path, encoding='utf-8', errors="replace") as f:
|
1898
|
-
metadata = f.read()
|
1899
|
-
self._warn_on_replacement(metadata)
|
1900
|
-
return metadata
|
1901
|
-
|
1902
|
-
def _warn_on_replacement(self, metadata):
|
1903
|
-
# Python 2.7 compat for: replacement_char = '�'
|
1904
|
-
replacement_char = b'\xef\xbf\xbd'.decode('utf-8')
|
1905
|
-
if replacement_char in metadata:
|
1906
|
-
tmpl = "{self.path} could not be properly decoded in UTF-8"
|
1907
|
-
msg = tmpl.format(**locals())
|
1908
|
-
warnings.warn(msg)
|
1909
|
-
|
1910
|
-
def get_metadata_lines(self, name):
|
1911
|
-
return yield_lines(self.get_metadata(name))
|
1912
|
-
|
1913
|
-
|
1914
|
-
class PathMetadata(DefaultProvider):
|
1915
|
-
"""Metadata provider for egg directories
|
1916
|
-
|
1917
|
-
Usage::
|
1918
|
-
|
1919
|
-
# Development eggs:
|
1920
|
-
|
1921
|
-
egg_info = "/path/to/PackageName.egg-info"
|
1922
|
-
base_dir = os.path.dirname(egg_info)
|
1923
|
-
metadata = PathMetadata(base_dir, egg_info)
|
1924
|
-
dist_name = os.path.splitext(os.path.basename(egg_info))[0]
|
1925
|
-
dist = Distribution(basedir, project_name=dist_name, metadata=metadata)
|
1926
|
-
|
1927
|
-
# Unpacked egg directories:
|
1928
|
-
|
1929
|
-
egg_path = "/path/to/PackageName-ver-pyver-etc.egg"
|
1930
|
-
metadata = PathMetadata(egg_path, os.path.join(egg_path,'EGG-INFO'))
|
1931
|
-
dist = Distribution.from_filename(egg_path, metadata=metadata)
|
1932
|
-
"""
|
1933
|
-
|
1934
|
-
def __init__(self, path, egg_info):
|
1935
|
-
self.module_path = path
|
1936
|
-
self.egg_info = egg_info
|
1937
|
-
|
1938
|
-
|
1939
|
-
class EggMetadata(ZipProvider):
|
1940
|
-
"""Metadata provider for .egg files"""
|
1941
|
-
|
1942
|
-
def __init__(self, importer):
|
1943
|
-
"""Create a metadata provider from a zipimporter"""
|
1944
|
-
|
1945
|
-
self.zip_pre = importer.archive + os.sep
|
1946
|
-
self.loader = importer
|
1947
|
-
if importer.prefix:
|
1948
|
-
self.module_path = os.path.join(importer.archive, importer.prefix)
|
1949
|
-
else:
|
1950
|
-
self.module_path = importer.archive
|
1951
|
-
self._setup_prefix()
|
1952
|
-
|
1953
|
-
|
1954
|
-
_declare_state('dict', _distribution_finders={})
|
1955
|
-
|
1956
|
-
|
1957
|
-
def register_finder(importer_type, distribution_finder):
|
1958
|
-
"""Register `distribution_finder` to find distributions in sys.path items
|
1959
|
-
|
1960
|
-
`importer_type` is the type or class of a PEP 302 "Importer" (sys.path item
|
1961
|
-
handler), and `distribution_finder` is a callable that, passed a path
|
1962
|
-
item and the importer instance, yields ``Distribution`` instances found on
|
1963
|
-
that path item. See ``pkg_resources.find_on_path`` for an example."""
|
1964
|
-
_distribution_finders[importer_type] = distribution_finder
|
1965
|
-
|
1966
|
-
|
1967
|
-
def find_distributions(path_item, only=False):
|
1968
|
-
"""Yield distributions accessible via `path_item`"""
|
1969
|
-
importer = get_importer(path_item)
|
1970
|
-
finder = _find_adapter(_distribution_finders, importer)
|
1971
|
-
return finder(importer, path_item, only)
|
1972
|
-
|
1973
|
-
|
1974
|
-
def find_eggs_in_zip(importer, path_item, only=False):
|
1975
|
-
"""
|
1976
|
-
Find eggs in zip files; possibly multiple nested eggs.
|
1977
|
-
"""
|
1978
|
-
if importer.archive.endswith('.whl'):
|
1979
|
-
# wheels are not supported with this finder
|
1980
|
-
# they don't have PKG-INFO metadata, and won't ever contain eggs
|
1981
|
-
return
|
1982
|
-
metadata = EggMetadata(importer)
|
1983
|
-
if metadata.has_metadata('PKG-INFO'):
|
1984
|
-
yield Distribution.from_filename(path_item, metadata=metadata)
|
1985
|
-
if only:
|
1986
|
-
# don't yield nested distros
|
1987
|
-
return
|
1988
|
-
for subitem in metadata.resource_listdir(''):
|
1989
|
-
if _is_egg_path(subitem):
|
1990
|
-
subpath = os.path.join(path_item, subitem)
|
1991
|
-
dists = find_eggs_in_zip(zipimport.zipimporter(subpath), subpath)
|
1992
|
-
for dist in dists:
|
1993
|
-
yield dist
|
1994
|
-
elif subitem.lower().endswith('.dist-info'):
|
1995
|
-
subpath = os.path.join(path_item, subitem)
|
1996
|
-
submeta = EggMetadata(zipimport.zipimporter(subpath))
|
1997
|
-
submeta.egg_info = subpath
|
1998
|
-
yield Distribution.from_location(path_item, subitem, submeta)
|
1999
|
-
|
2000
|
-
|
2001
|
-
register_finder(zipimport.zipimporter, find_eggs_in_zip)
|
2002
|
-
|
2003
|
-
|
2004
|
-
def find_nothing(importer, path_item, only=False):
|
2005
|
-
return ()
|
2006
|
-
|
2007
|
-
|
2008
|
-
register_finder(object, find_nothing)
|
2009
|
-
|
2010
|
-
|
2011
|
-
def _by_version_descending(names):
|
2012
|
-
"""
|
2013
|
-
Given a list of filenames, return them in descending order
|
2014
|
-
by version number.
|
2015
|
-
|
2016
|
-
>>> names = 'bar', 'foo', 'Python-2.7.10.egg', 'Python-2.7.2.egg'
|
2017
|
-
>>> _by_version_descending(names)
|
2018
|
-
['Python-2.7.10.egg', 'Python-2.7.2.egg', 'foo', 'bar']
|
2019
|
-
>>> names = 'Setuptools-1.2.3b1.egg', 'Setuptools-1.2.3.egg'
|
2020
|
-
>>> _by_version_descending(names)
|
2021
|
-
['Setuptools-1.2.3.egg', 'Setuptools-1.2.3b1.egg']
|
2022
|
-
>>> names = 'Setuptools-1.2.3b1.egg', 'Setuptools-1.2.3.post1.egg'
|
2023
|
-
>>> _by_version_descending(names)
|
2024
|
-
['Setuptools-1.2.3.post1.egg', 'Setuptools-1.2.3b1.egg']
|
2025
|
-
"""
|
2026
|
-
def _by_version(name):
|
2027
|
-
"""
|
2028
|
-
Parse each component of the filename
|
2029
|
-
"""
|
2030
|
-
name, ext = os.path.splitext(name)
|
2031
|
-
parts = itertools.chain(name.split('-'), [ext])
|
2032
|
-
return [packaging.version.parse(part) for part in parts]
|
2033
|
-
|
2034
|
-
return sorted(names, key=_by_version, reverse=True)
|
2035
|
-
|
2036
|
-
|
2037
|
-
def find_on_path(importer, path_item, only=False):
|
2038
|
-
"""Yield distributions accessible on a sys.path directory"""
|
2039
|
-
path_item = _normalize_cached(path_item)
|
2040
|
-
|
2041
|
-
if _is_unpacked_egg(path_item):
|
2042
|
-
yield Distribution.from_filename(
|
2043
|
-
path_item, metadata=PathMetadata(
|
2044
|
-
path_item, os.path.join(path_item, 'EGG-INFO')
|
2045
|
-
)
|
2046
|
-
)
|
2047
|
-
return
|
2048
|
-
|
2049
|
-
entries = safe_listdir(path_item)
|
2050
|
-
|
2051
|
-
# for performance, before sorting by version,
|
2052
|
-
# screen entries for only those that will yield
|
2053
|
-
# distributions
|
2054
|
-
filtered = (
|
2055
|
-
entry
|
2056
|
-
for entry in entries
|
2057
|
-
if dist_factory(path_item, entry, only)
|
2058
|
-
)
|
2059
|
-
|
2060
|
-
# scan for .egg and .egg-info in directory
|
2061
|
-
path_item_entries = _by_version_descending(filtered)
|
2062
|
-
for entry in path_item_entries:
|
2063
|
-
fullpath = os.path.join(path_item, entry)
|
2064
|
-
factory = dist_factory(path_item, entry, only)
|
2065
|
-
for dist in factory(fullpath):
|
2066
|
-
yield dist
|
2067
|
-
|
2068
|
-
|
2069
|
-
def dist_factory(path_item, entry, only):
|
2070
|
-
"""
|
2071
|
-
Return a dist_factory for a path_item and entry
|
2072
|
-
"""
|
2073
|
-
lower = entry.lower()
|
2074
|
-
is_meta = any(map(lower.endswith, ('.egg-info', '.dist-info')))
|
2075
|
-
return (
|
2076
|
-
distributions_from_metadata
|
2077
|
-
if is_meta else
|
2078
|
-
find_distributions
|
2079
|
-
if not only and _is_egg_path(entry) else
|
2080
|
-
resolve_egg_link
|
2081
|
-
if not only and lower.endswith('.egg-link') else
|
2082
|
-
NoDists()
|
2083
|
-
)
|
2084
|
-
|
2085
|
-
|
2086
|
-
class NoDists:
|
2087
|
-
"""
|
2088
|
-
>>> bool(NoDists())
|
2089
|
-
False
|
2090
|
-
|
2091
|
-
>>> list(NoDists()('anything'))
|
2092
|
-
[]
|
2093
|
-
"""
|
2094
|
-
def __bool__(self):
|
2095
|
-
return False
|
2096
|
-
if six.PY2:
|
2097
|
-
__nonzero__ = __bool__
|
2098
|
-
|
2099
|
-
def __call__(self, fullpath):
|
2100
|
-
return iter(())
|
2101
|
-
|
2102
|
-
|
2103
|
-
def safe_listdir(path):
|
2104
|
-
"""
|
2105
|
-
Attempt to list contents of path, but suppress some exceptions.
|
2106
|
-
"""
|
2107
|
-
try:
|
2108
|
-
return os.listdir(path)
|
2109
|
-
except (PermissionError, NotADirectoryError):
|
2110
|
-
pass
|
2111
|
-
except OSError as e:
|
2112
|
-
# Ignore the directory if does not exist, not a directory or
|
2113
|
-
# permission denied
|
2114
|
-
ignorable = (
|
2115
|
-
e.errno in (errno.ENOTDIR, errno.EACCES, errno.ENOENT)
|
2116
|
-
# Python 2 on Windows needs to be handled this way :(
|
2117
|
-
or getattr(e, "winerror", None) == 267
|
2118
|
-
)
|
2119
|
-
if not ignorable:
|
2120
|
-
raise
|
2121
|
-
return ()
|
2122
|
-
|
2123
|
-
|
2124
|
-
def distributions_from_metadata(path):
|
2125
|
-
root = os.path.dirname(path)
|
2126
|
-
if os.path.isdir(path):
|
2127
|
-
if len(os.listdir(path)) == 0:
|
2128
|
-
# empty metadata dir; skip
|
2129
|
-
return
|
2130
|
-
metadata = PathMetadata(root, path)
|
2131
|
-
else:
|
2132
|
-
metadata = FileMetadata(path)
|
2133
|
-
entry = os.path.basename(path)
|
2134
|
-
yield Distribution.from_location(
|
2135
|
-
root, entry, metadata, precedence=DEVELOP_DIST,
|
2136
|
-
)
|
2137
|
-
|
2138
|
-
|
2139
|
-
def non_empty_lines(path):
|
2140
|
-
"""
|
2141
|
-
Yield non-empty lines from file at path
|
2142
|
-
"""
|
2143
|
-
with open(path) as f:
|
2144
|
-
for line in f:
|
2145
|
-
line = line.strip()
|
2146
|
-
if line:
|
2147
|
-
yield line
|
2148
|
-
|
2149
|
-
|
2150
|
-
def resolve_egg_link(path):
|
2151
|
-
"""
|
2152
|
-
Given a path to an .egg-link, resolve distributions
|
2153
|
-
present in the referenced path.
|
2154
|
-
"""
|
2155
|
-
referenced_paths = non_empty_lines(path)
|
2156
|
-
resolved_paths = (
|
2157
|
-
os.path.join(os.path.dirname(path), ref)
|
2158
|
-
for ref in referenced_paths
|
2159
|
-
)
|
2160
|
-
dist_groups = map(find_distributions, resolved_paths)
|
2161
|
-
return next(dist_groups, ())
|
2162
|
-
|
2163
|
-
|
2164
|
-
register_finder(pkgutil.ImpImporter, find_on_path)
|
2165
|
-
|
2166
|
-
if hasattr(importlib_machinery, 'FileFinder'):
|
2167
|
-
register_finder(importlib_machinery.FileFinder, find_on_path)
|
2168
|
-
|
2169
|
-
_declare_state('dict', _namespace_handlers={})
|
2170
|
-
_declare_state('dict', _namespace_packages={})
|
2171
|
-
|
2172
|
-
|
2173
|
-
def register_namespace_handler(importer_type, namespace_handler):
|
2174
|
-
"""Register `namespace_handler` to declare namespace packages
|
2175
|
-
|
2176
|
-
`importer_type` is the type or class of a PEP 302 "Importer" (sys.path item
|
2177
|
-
handler), and `namespace_handler` is a callable like this::
|
2178
|
-
|
2179
|
-
def namespace_handler(importer, path_entry, moduleName, module):
|
2180
|
-
# return a path_entry to use for child packages
|
2181
|
-
|
2182
|
-
Namespace handlers are only called if the importer object has already
|
2183
|
-
agreed that it can handle the relevant path item, and they should only
|
2184
|
-
return a subpath if the module __path__ does not already contain an
|
2185
|
-
equivalent subpath. For an example namespace handler, see
|
2186
|
-
``pkg_resources.file_ns_handler``.
|
2187
|
-
"""
|
2188
|
-
_namespace_handlers[importer_type] = namespace_handler
|
2189
|
-
|
2190
|
-
|
2191
|
-
def _handle_ns(packageName, path_item):
|
2192
|
-
"""Ensure that named package includes a subpath of path_item (if needed)"""
|
2193
|
-
|
2194
|
-
importer = get_importer(path_item)
|
2195
|
-
if importer is None:
|
2196
|
-
return None
|
2197
|
-
|
2198
|
-
# capture warnings due to #1111
|
2199
|
-
with warnings.catch_warnings():
|
2200
|
-
warnings.simplefilter("ignore")
|
2201
|
-
loader = importer.find_module(packageName)
|
2202
|
-
|
2203
|
-
if loader is None:
|
2204
|
-
return None
|
2205
|
-
module = sys.modules.get(packageName)
|
2206
|
-
if module is None:
|
2207
|
-
module = sys.modules[packageName] = types.ModuleType(packageName)
|
2208
|
-
module.__path__ = []
|
2209
|
-
_set_parent_ns(packageName)
|
2210
|
-
elif not hasattr(module, '__path__'):
|
2211
|
-
raise TypeError("Not a package:", packageName)
|
2212
|
-
handler = _find_adapter(_namespace_handlers, importer)
|
2213
|
-
subpath = handler(importer, path_item, packageName, module)
|
2214
|
-
if subpath is not None:
|
2215
|
-
path = module.__path__
|
2216
|
-
path.append(subpath)
|
2217
|
-
loader.load_module(packageName)
|
2218
|
-
_rebuild_mod_path(path, packageName, module)
|
2219
|
-
return subpath
|
2220
|
-
|
2221
|
-
|
2222
|
-
def _rebuild_mod_path(orig_path, package_name, module):
|
2223
|
-
"""
|
2224
|
-
Rebuild module.__path__ ensuring that all entries are ordered
|
2225
|
-
corresponding to their sys.path order
|
2226
|
-
"""
|
2227
|
-
sys_path = [_normalize_cached(p) for p in sys.path]
|
2228
|
-
|
2229
|
-
def safe_sys_path_index(entry):
|
2230
|
-
"""
|
2231
|
-
Workaround for #520 and #513.
|
2232
|
-
"""
|
2233
|
-
try:
|
2234
|
-
return sys_path.index(entry)
|
2235
|
-
except ValueError:
|
2236
|
-
return float('inf')
|
2237
|
-
|
2238
|
-
def position_in_sys_path(path):
|
2239
|
-
"""
|
2240
|
-
Return the ordinal of the path based on its position in sys.path
|
2241
|
-
"""
|
2242
|
-
path_parts = path.split(os.sep)
|
2243
|
-
module_parts = package_name.count('.') + 1
|
2244
|
-
parts = path_parts[:-module_parts]
|
2245
|
-
return safe_sys_path_index(_normalize_cached(os.sep.join(parts)))
|
2246
|
-
|
2247
|
-
new_path = sorted(orig_path, key=position_in_sys_path)
|
2248
|
-
new_path = [_normalize_cached(p) for p in new_path]
|
2249
|
-
|
2250
|
-
if isinstance(module.__path__, list):
|
2251
|
-
module.__path__[:] = new_path
|
2252
|
-
else:
|
2253
|
-
module.__path__ = new_path
|
2254
|
-
|
2255
|
-
|
2256
|
-
def declare_namespace(packageName):
|
2257
|
-
"""Declare that package 'packageName' is a namespace package"""
|
2258
|
-
|
2259
|
-
_imp.acquire_lock()
|
2260
|
-
try:
|
2261
|
-
if packageName in _namespace_packages:
|
2262
|
-
return
|
2263
|
-
|
2264
|
-
path = sys.path
|
2265
|
-
parent, _, _ = packageName.rpartition('.')
|
2266
|
-
|
2267
|
-
if parent:
|
2268
|
-
declare_namespace(parent)
|
2269
|
-
if parent not in _namespace_packages:
|
2270
|
-
__import__(parent)
|
2271
|
-
try:
|
2272
|
-
path = sys.modules[parent].__path__
|
2273
|
-
except AttributeError:
|
2274
|
-
raise TypeError("Not a package:", parent)
|
2275
|
-
|
2276
|
-
# Track what packages are namespaces, so when new path items are added,
|
2277
|
-
# they can be updated
|
2278
|
-
_namespace_packages.setdefault(parent or None, []).append(packageName)
|
2279
|
-
_namespace_packages.setdefault(packageName, [])
|
2280
|
-
|
2281
|
-
for path_item in path:
|
2282
|
-
# Ensure all the parent's path items are reflected in the child,
|
2283
|
-
# if they apply
|
2284
|
-
_handle_ns(packageName, path_item)
|
2285
|
-
|
2286
|
-
finally:
|
2287
|
-
_imp.release_lock()
|
2288
|
-
|
2289
|
-
|
2290
|
-
def fixup_namespace_packages(path_item, parent=None):
|
2291
|
-
"""Ensure that previously-declared namespace packages include path_item"""
|
2292
|
-
_imp.acquire_lock()
|
2293
|
-
try:
|
2294
|
-
for package in _namespace_packages.get(parent, ()):
|
2295
|
-
subpath = _handle_ns(package, path_item)
|
2296
|
-
if subpath:
|
2297
|
-
fixup_namespace_packages(subpath, package)
|
2298
|
-
finally:
|
2299
|
-
_imp.release_lock()
|
2300
|
-
|
2301
|
-
|
2302
|
-
def file_ns_handler(importer, path_item, packageName, module):
|
2303
|
-
"""Compute an ns-package subpath for a filesystem or zipfile importer"""
|
2304
|
-
|
2305
|
-
subpath = os.path.join(path_item, packageName.split('.')[-1])
|
2306
|
-
normalized = _normalize_cached(subpath)
|
2307
|
-
for item in module.__path__:
|
2308
|
-
if _normalize_cached(item) == normalized:
|
2309
|
-
break
|
2310
|
-
else:
|
2311
|
-
# Only return the path if it's not already there
|
2312
|
-
return subpath
|
2313
|
-
|
2314
|
-
|
2315
|
-
register_namespace_handler(pkgutil.ImpImporter, file_ns_handler)
|
2316
|
-
register_namespace_handler(zipimport.zipimporter, file_ns_handler)
|
2317
|
-
|
2318
|
-
if hasattr(importlib_machinery, 'FileFinder'):
|
2319
|
-
register_namespace_handler(importlib_machinery.FileFinder, file_ns_handler)
|
2320
|
-
|
2321
|
-
|
2322
|
-
def null_ns_handler(importer, path_item, packageName, module):
|
2323
|
-
return None
|
2324
|
-
|
2325
|
-
|
2326
|
-
register_namespace_handler(object, null_ns_handler)
|
2327
|
-
|
2328
|
-
|
2329
|
-
def normalize_path(filename):
|
2330
|
-
"""Normalize a file/dir name for comparison purposes"""
|
2331
|
-
return os.path.normcase(os.path.realpath(os.path.normpath(_cygwin_patch(filename))))
|
2332
|
-
|
2333
|
-
|
2334
|
-
def _cygwin_patch(filename): # pragma: nocover
|
2335
|
-
"""
|
2336
|
-
Contrary to POSIX 2008, on Cygwin, getcwd (3) contains
|
2337
|
-
symlink components. Using
|
2338
|
-
os.path.abspath() works around this limitation. A fix in os.getcwd()
|
2339
|
-
would probably better, in Cygwin even more so, except
|
2340
|
-
that this seems to be by design...
|
2341
|
-
"""
|
2342
|
-
return os.path.abspath(filename) if sys.platform == 'cygwin' else filename
|
2343
|
-
|
2344
|
-
|
2345
|
-
def _normalize_cached(filename, _cache={}):
|
2346
|
-
try:
|
2347
|
-
return _cache[filename]
|
2348
|
-
except KeyError:
|
2349
|
-
_cache[filename] = result = normalize_path(filename)
|
2350
|
-
return result
|
2351
|
-
|
2352
|
-
|
2353
|
-
def _is_egg_path(path):
|
2354
|
-
"""
|
2355
|
-
Determine if given path appears to be an egg.
|
2356
|
-
"""
|
2357
|
-
return path.lower().endswith('.egg')
|
2358
|
-
|
2359
|
-
|
2360
|
-
def _is_unpacked_egg(path):
|
2361
|
-
"""
|
2362
|
-
Determine if given path appears to be an unpacked egg.
|
2363
|
-
"""
|
2364
|
-
return (
|
2365
|
-
_is_egg_path(path) and
|
2366
|
-
os.path.isfile(os.path.join(path, 'EGG-INFO', 'PKG-INFO'))
|
2367
|
-
)
|
2368
|
-
|
2369
|
-
|
2370
|
-
def _set_parent_ns(packageName):
|
2371
|
-
parts = packageName.split('.')
|
2372
|
-
name = parts.pop()
|
2373
|
-
if parts:
|
2374
|
-
parent = '.'.join(parts)
|
2375
|
-
setattr(sys.modules[parent], name, sys.modules[packageName])
|
2376
|
-
|
2377
|
-
|
2378
|
-
def yield_lines(strs):
|
2379
|
-
"""Yield non-empty/non-comment lines of a string or sequence"""
|
2380
|
-
if isinstance(strs, six.string_types):
|
2381
|
-
for s in strs.splitlines():
|
2382
|
-
s = s.strip()
|
2383
|
-
# skip blank lines/comments
|
2384
|
-
if s and not s.startswith('#'):
|
2385
|
-
yield s
|
2386
|
-
else:
|
2387
|
-
for ss in strs:
|
2388
|
-
for s in yield_lines(ss):
|
2389
|
-
yield s
|
2390
|
-
|
2391
|
-
|
2392
|
-
MODULE = re.compile(r"\w+(\.\w+)*$").match
|
2393
|
-
EGG_NAME = re.compile(
|
2394
|
-
r"""
|
2395
|
-
(?P<name>[^-]+) (
|
2396
|
-
-(?P<ver>[^-]+) (
|
2397
|
-
-py(?P<pyver>[^-]+) (
|
2398
|
-
-(?P<plat>.+)
|
2399
|
-
)?
|
2400
|
-
)?
|
2401
|
-
)?
|
2402
|
-
""",
|
2403
|
-
re.VERBOSE | re.IGNORECASE,
|
2404
|
-
).match
|
2405
|
-
|
2406
|
-
|
2407
|
-
class EntryPoint:
|
2408
|
-
"""Object representing an advertised importable object"""
|
2409
|
-
|
2410
|
-
def __init__(self, name, module_name, attrs=(), extras=(), dist=None):
|
2411
|
-
if not MODULE(module_name):
|
2412
|
-
raise ValueError("Invalid module name", module_name)
|
2413
|
-
self.name = name
|
2414
|
-
self.module_name = module_name
|
2415
|
-
self.attrs = tuple(attrs)
|
2416
|
-
self.extras = tuple(extras)
|
2417
|
-
self.dist = dist
|
2418
|
-
|
2419
|
-
def __str__(self):
|
2420
|
-
s = "%s = %s" % (self.name, self.module_name)
|
2421
|
-
if self.attrs:
|
2422
|
-
s += ':' + '.'.join(self.attrs)
|
2423
|
-
if self.extras:
|
2424
|
-
s += ' [%s]' % ','.join(self.extras)
|
2425
|
-
return s
|
2426
|
-
|
2427
|
-
def __repr__(self):
|
2428
|
-
return "EntryPoint.parse(%r)" % str(self)
|
2429
|
-
|
2430
|
-
def load(self, require=True, *args, **kwargs):
|
2431
|
-
"""
|
2432
|
-
Require packages for this EntryPoint, then resolve it.
|
2433
|
-
"""
|
2434
|
-
if not require or args or kwargs:
|
2435
|
-
warnings.warn(
|
2436
|
-
"Parameters to load are deprecated. Call .resolve and "
|
2437
|
-
".require separately.",
|
2438
|
-
PkgResourcesDeprecationWarning,
|
2439
|
-
stacklevel=2,
|
2440
|
-
)
|
2441
|
-
if require:
|
2442
|
-
self.require(*args, **kwargs)
|
2443
|
-
return self.resolve()
|
2444
|
-
|
2445
|
-
def resolve(self):
|
2446
|
-
"""
|
2447
|
-
Resolve the entry point from its module and attrs.
|
2448
|
-
"""
|
2449
|
-
module = __import__(self.module_name, fromlist=['__name__'], level=0)
|
2450
|
-
try:
|
2451
|
-
return functools.reduce(getattr, self.attrs, module)
|
2452
|
-
except AttributeError as exc:
|
2453
|
-
raise ImportError(str(exc))
|
2454
|
-
|
2455
|
-
def require(self, env=None, installer=None):
|
2456
|
-
if self.extras and not self.dist:
|
2457
|
-
raise UnknownExtra("Can't require() without a distribution", self)
|
2458
|
-
|
2459
|
-
# Get the requirements for this entry point with all its extras and
|
2460
|
-
# then resolve them. We have to pass `extras` along when resolving so
|
2461
|
-
# that the working set knows what extras we want. Otherwise, for
|
2462
|
-
# dist-info distributions, the working set will assume that the
|
2463
|
-
# requirements for that extra are purely optional and skip over them.
|
2464
|
-
reqs = self.dist.requires(self.extras)
|
2465
|
-
items = working_set.resolve(reqs, env, installer, extras=self.extras)
|
2466
|
-
list(map(working_set.add, items))
|
2467
|
-
|
2468
|
-
pattern = re.compile(
|
2469
|
-
r'\s*'
|
2470
|
-
r'(?P<name>.+?)\s*'
|
2471
|
-
r'=\s*'
|
2472
|
-
r'(?P<module>[\w.]+)\s*'
|
2473
|
-
r'(:\s*(?P<attr>[\w.]+))?\s*'
|
2474
|
-
r'(?P<extras>\[.*\])?\s*$'
|
2475
|
-
)
|
2476
|
-
|
2477
|
-
@classmethod
|
2478
|
-
def parse(cls, src, dist=None):
|
2479
|
-
"""Parse a single entry point from string `src`
|
2480
|
-
|
2481
|
-
Entry point syntax follows the form::
|
2482
|
-
|
2483
|
-
name = some.module:some.attr [extra1, extra2]
|
2484
|
-
|
2485
|
-
The entry name and module name are required, but the ``:attrs`` and
|
2486
|
-
``[extras]`` parts are optional
|
2487
|
-
"""
|
2488
|
-
m = cls.pattern.match(src)
|
2489
|
-
if not m:
|
2490
|
-
msg = "EntryPoint must be in 'name=module:attrs [extras]' format"
|
2491
|
-
raise ValueError(msg, src)
|
2492
|
-
res = m.groupdict()
|
2493
|
-
extras = cls._parse_extras(res['extras'])
|
2494
|
-
attrs = res['attr'].split('.') if res['attr'] else ()
|
2495
|
-
return cls(res['name'], res['module'], attrs, extras, dist)
|
2496
|
-
|
2497
|
-
@classmethod
|
2498
|
-
def _parse_extras(cls, extras_spec):
|
2499
|
-
if not extras_spec:
|
2500
|
-
return ()
|
2501
|
-
req = Requirement.parse('x' + extras_spec)
|
2502
|
-
if req.specs:
|
2503
|
-
raise ValueError()
|
2504
|
-
return req.extras
|
2505
|
-
|
2506
|
-
@classmethod
|
2507
|
-
def parse_group(cls, group, lines, dist=None):
|
2508
|
-
"""Parse an entry point group"""
|
2509
|
-
if not MODULE(group):
|
2510
|
-
raise ValueError("Invalid group name", group)
|
2511
|
-
this = {}
|
2512
|
-
for line in yield_lines(lines):
|
2513
|
-
ep = cls.parse(line, dist)
|
2514
|
-
if ep.name in this:
|
2515
|
-
raise ValueError("Duplicate entry point", group, ep.name)
|
2516
|
-
this[ep.name] = ep
|
2517
|
-
return this
|
2518
|
-
|
2519
|
-
@classmethod
|
2520
|
-
def parse_map(cls, data, dist=None):
|
2521
|
-
"""Parse a map of entry point groups"""
|
2522
|
-
if isinstance(data, dict):
|
2523
|
-
data = data.items()
|
2524
|
-
else:
|
2525
|
-
data = split_sections(data)
|
2526
|
-
maps = {}
|
2527
|
-
for group, lines in data:
|
2528
|
-
if group is None:
|
2529
|
-
if not lines:
|
2530
|
-
continue
|
2531
|
-
raise ValueError("Entry points must be listed in groups")
|
2532
|
-
group = group.strip()
|
2533
|
-
if group in maps:
|
2534
|
-
raise ValueError("Duplicate group name", group)
|
2535
|
-
maps[group] = cls.parse_group(group, lines, dist)
|
2536
|
-
return maps
|
2537
|
-
|
2538
|
-
|
2539
|
-
def _remove_md5_fragment(location):
|
2540
|
-
if not location:
|
2541
|
-
return ''
|
2542
|
-
parsed = urllib.parse.urlparse(location)
|
2543
|
-
if parsed[-1].startswith('md5='):
|
2544
|
-
return urllib.parse.urlunparse(parsed[:-1] + ('',))
|
2545
|
-
return location
|
2546
|
-
|
2547
|
-
|
2548
|
-
def _version_from_file(lines):
|
2549
|
-
"""
|
2550
|
-
Given an iterable of lines from a Metadata file, return
|
2551
|
-
the value of the Version field, if present, or None otherwise.
|
2552
|
-
"""
|
2553
|
-
def is_version_line(line):
|
2554
|
-
return line.lower().startswith('version:')
|
2555
|
-
version_lines = filter(is_version_line, lines)
|
2556
|
-
line = next(iter(version_lines), '')
|
2557
|
-
_, _, value = line.partition(':')
|
2558
|
-
return safe_version(value.strip()) or None
|
2559
|
-
|
2560
|
-
|
2561
|
-
class Distribution:
|
2562
|
-
"""Wrap an actual or potential sys.path entry w/metadata"""
|
2563
|
-
PKG_INFO = 'PKG-INFO'
|
2564
|
-
|
2565
|
-
def __init__(
|
2566
|
-
self, location=None, metadata=None, project_name=None,
|
2567
|
-
version=None, py_version=PY_MAJOR, platform=None,
|
2568
|
-
precedence=EGG_DIST):
|
2569
|
-
self.project_name = safe_name(project_name or 'Unknown')
|
2570
|
-
if version is not None:
|
2571
|
-
self._version = safe_version(version)
|
2572
|
-
self.py_version = py_version
|
2573
|
-
self.platform = platform
|
2574
|
-
self.location = location
|
2575
|
-
self.precedence = precedence
|
2576
|
-
self._provider = metadata or empty_provider
|
2577
|
-
|
2578
|
-
@classmethod
|
2579
|
-
def from_location(cls, location, basename, metadata=None, **kw):
|
2580
|
-
project_name, version, py_version, platform = [None] * 4
|
2581
|
-
basename, ext = os.path.splitext(basename)
|
2582
|
-
if ext.lower() in _distributionImpl:
|
2583
|
-
cls = _distributionImpl[ext.lower()]
|
2584
|
-
|
2585
|
-
match = EGG_NAME(basename)
|
2586
|
-
if match:
|
2587
|
-
project_name, version, py_version, platform = match.group(
|
2588
|
-
'name', 'ver', 'pyver', 'plat'
|
2589
|
-
)
|
2590
|
-
return cls(
|
2591
|
-
location, metadata, project_name=project_name, version=version,
|
2592
|
-
py_version=py_version, platform=platform, **kw
|
2593
|
-
)._reload_version()
|
2594
|
-
|
2595
|
-
def _reload_version(self):
|
2596
|
-
return self
|
2597
|
-
|
2598
|
-
@property
|
2599
|
-
def hashcmp(self):
|
2600
|
-
return (
|
2601
|
-
self.parsed_version,
|
2602
|
-
self.precedence,
|
2603
|
-
self.key,
|
2604
|
-
_remove_md5_fragment(self.location),
|
2605
|
-
self.py_version or '',
|
2606
|
-
self.platform or '',
|
2607
|
-
)
|
2608
|
-
|
2609
|
-
def __hash__(self):
|
2610
|
-
return hash(self.hashcmp)
|
2611
|
-
|
2612
|
-
def __lt__(self, other):
|
2613
|
-
return self.hashcmp < other.hashcmp
|
2614
|
-
|
2615
|
-
def __le__(self, other):
|
2616
|
-
return self.hashcmp <= other.hashcmp
|
2617
|
-
|
2618
|
-
def __gt__(self, other):
|
2619
|
-
return self.hashcmp > other.hashcmp
|
2620
|
-
|
2621
|
-
def __ge__(self, other):
|
2622
|
-
return self.hashcmp >= other.hashcmp
|
2623
|
-
|
2624
|
-
def __eq__(self, other):
|
2625
|
-
if not isinstance(other, self.__class__):
|
2626
|
-
# It's not a Distribution, so they are not equal
|
2627
|
-
return False
|
2628
|
-
return self.hashcmp == other.hashcmp
|
2629
|
-
|
2630
|
-
def __ne__(self, other):
|
2631
|
-
return not self == other
|
2632
|
-
|
2633
|
-
# These properties have to be lazy so that we don't have to load any
|
2634
|
-
# metadata until/unless it's actually needed. (i.e., some distributions
|
2635
|
-
# may not know their name or version without loading PKG-INFO)
|
2636
|
-
|
2637
|
-
@property
|
2638
|
-
def key(self):
|
2639
|
-
try:
|
2640
|
-
return self._key
|
2641
|
-
except AttributeError:
|
2642
|
-
self._key = key = self.project_name.lower()
|
2643
|
-
return key
|
2644
|
-
|
2645
|
-
@property
|
2646
|
-
def parsed_version(self):
|
2647
|
-
if not hasattr(self, "_parsed_version"):
|
2648
|
-
self._parsed_version = parse_version(self.version)
|
2649
|
-
|
2650
|
-
return self._parsed_version
|
2651
|
-
|
2652
|
-
def _warn_legacy_version(self):
|
2653
|
-
LV = packaging.version.LegacyVersion
|
2654
|
-
is_legacy = isinstance(self._parsed_version, LV)
|
2655
|
-
if not is_legacy:
|
2656
|
-
return
|
2657
|
-
|
2658
|
-
# While an empty version is technically a legacy version and
|
2659
|
-
# is not a valid PEP 440 version, it's also unlikely to
|
2660
|
-
# actually come from someone and instead it is more likely that
|
2661
|
-
# it comes from setuptools attempting to parse a filename and
|
2662
|
-
# including it in the list. So for that we'll gate this warning
|
2663
|
-
# on if the version is anything at all or not.
|
2664
|
-
if not self.version:
|
2665
|
-
return
|
2666
|
-
|
2667
|
-
tmpl = textwrap.dedent("""
|
2668
|
-
'{project_name} ({version})' is being parsed as a legacy,
|
2669
|
-
non PEP 440,
|
2670
|
-
version. You may find odd behavior and sort order.
|
2671
|
-
In particular it will be sorted as less than 0.0. It
|
2672
|
-
is recommended to migrate to PEP 440 compatible
|
2673
|
-
versions.
|
2674
|
-
""").strip().replace('\n', ' ')
|
2675
|
-
|
2676
|
-
warnings.warn(tmpl.format(**vars(self)), PEP440Warning)
|
2677
|
-
|
2678
|
-
@property
|
2679
|
-
def version(self):
|
2680
|
-
try:
|
2681
|
-
return self._version
|
2682
|
-
except AttributeError:
|
2683
|
-
version = self._get_version()
|
2684
|
-
if version is None:
|
2685
|
-
path = self._get_metadata_path_for_display(self.PKG_INFO)
|
2686
|
-
msg = (
|
2687
|
-
"Missing 'Version:' header and/or {} file at path: {}"
|
2688
|
-
).format(self.PKG_INFO, path)
|
2689
|
-
raise ValueError(msg, self)
|
2690
|
-
|
2691
|
-
return version
|
2692
|
-
|
2693
|
-
@property
|
2694
|
-
def _dep_map(self):
|
2695
|
-
"""
|
2696
|
-
A map of extra to its list of (direct) requirements
|
2697
|
-
for this distribution, including the null extra.
|
2698
|
-
"""
|
2699
|
-
try:
|
2700
|
-
return self.__dep_map
|
2701
|
-
except AttributeError:
|
2702
|
-
self.__dep_map = self._filter_extras(self._build_dep_map())
|
2703
|
-
return self.__dep_map
|
2704
|
-
|
2705
|
-
@staticmethod
|
2706
|
-
def _filter_extras(dm):
|
2707
|
-
"""
|
2708
|
-
Given a mapping of extras to dependencies, strip off
|
2709
|
-
environment markers and filter out any dependencies
|
2710
|
-
not matching the markers.
|
2711
|
-
"""
|
2712
|
-
for extra in list(filter(None, dm)):
|
2713
|
-
new_extra = extra
|
2714
|
-
reqs = dm.pop(extra)
|
2715
|
-
new_extra, _, marker = extra.partition(':')
|
2716
|
-
fails_marker = marker and (
|
2717
|
-
invalid_marker(marker)
|
2718
|
-
or not evaluate_marker(marker)
|
2719
|
-
)
|
2720
|
-
if fails_marker:
|
2721
|
-
reqs = []
|
2722
|
-
new_extra = safe_extra(new_extra) or None
|
2723
|
-
|
2724
|
-
dm.setdefault(new_extra, []).extend(reqs)
|
2725
|
-
return dm
|
2726
|
-
|
2727
|
-
def _build_dep_map(self):
|
2728
|
-
dm = {}
|
2729
|
-
for name in 'requires.txt', 'depends.txt':
|
2730
|
-
for extra, reqs in split_sections(self._get_metadata(name)):
|
2731
|
-
dm.setdefault(extra, []).extend(parse_requirements(reqs))
|
2732
|
-
return dm
|
2733
|
-
|
2734
|
-
def requires(self, extras=()):
|
2735
|
-
"""List of Requirements needed for this distro if `extras` are used"""
|
2736
|
-
dm = self._dep_map
|
2737
|
-
deps = []
|
2738
|
-
deps.extend(dm.get(None, ()))
|
2739
|
-
for ext in extras:
|
2740
|
-
try:
|
2741
|
-
deps.extend(dm[safe_extra(ext)])
|
2742
|
-
except KeyError:
|
2743
|
-
raise UnknownExtra(
|
2744
|
-
"%s has no such extra feature %r" % (self, ext)
|
2745
|
-
)
|
2746
|
-
return deps
|
2747
|
-
|
2748
|
-
def _get_metadata_path_for_display(self, name):
|
2749
|
-
"""
|
2750
|
-
Return the path to the given metadata file, if available.
|
2751
|
-
"""
|
2752
|
-
try:
|
2753
|
-
# We need to access _get_metadata_path() on the provider object
|
2754
|
-
# directly rather than through this class's __getattr__()
|
2755
|
-
# since _get_metadata_path() is marked private.
|
2756
|
-
path = self._provider._get_metadata_path(name)
|
2757
|
-
|
2758
|
-
# Handle exceptions e.g. in case the distribution's metadata
|
2759
|
-
# provider doesn't support _get_metadata_path().
|
2760
|
-
except Exception:
|
2761
|
-
return '[could not detect]'
|
2762
|
-
|
2763
|
-
return path
|
2764
|
-
|
2765
|
-
def _get_metadata(self, name):
|
2766
|
-
if self.has_metadata(name):
|
2767
|
-
for line in self.get_metadata_lines(name):
|
2768
|
-
yield line
|
2769
|
-
|
2770
|
-
def _get_version(self):
|
2771
|
-
lines = self._get_metadata(self.PKG_INFO)
|
2772
|
-
version = _version_from_file(lines)
|
2773
|
-
|
2774
|
-
return version
|
2775
|
-
|
2776
|
-
def activate(self, path=None, replace=False):
|
2777
|
-
"""Ensure distribution is importable on `path` (default=sys.path)"""
|
2778
|
-
if path is None:
|
2779
|
-
path = sys.path
|
2780
|
-
self.insert_on(path, replace=replace)
|
2781
|
-
if path is sys.path:
|
2782
|
-
fixup_namespace_packages(self.location)
|
2783
|
-
for pkg in self._get_metadata('namespace_packages.txt'):
|
2784
|
-
if pkg in sys.modules:
|
2785
|
-
declare_namespace(pkg)
|
2786
|
-
|
2787
|
-
def egg_name(self):
|
2788
|
-
"""Return what this distribution's standard .egg filename should be"""
|
2789
|
-
filename = "%s-%s-py%s" % (
|
2790
|
-
to_filename(self.project_name), to_filename(self.version),
|
2791
|
-
self.py_version or PY_MAJOR
|
2792
|
-
)
|
2793
|
-
|
2794
|
-
if self.platform:
|
2795
|
-
filename += '-' + self.platform
|
2796
|
-
return filename
|
2797
|
-
|
2798
|
-
def __repr__(self):
|
2799
|
-
if self.location:
|
2800
|
-
return "%s (%s)" % (self, self.location)
|
2801
|
-
else:
|
2802
|
-
return str(self)
|
2803
|
-
|
2804
|
-
def __str__(self):
|
2805
|
-
try:
|
2806
|
-
version = getattr(self, 'version', None)
|
2807
|
-
except ValueError:
|
2808
|
-
version = None
|
2809
|
-
version = version or "[unknown version]"
|
2810
|
-
return "%s %s" % (self.project_name, version)
|
2811
|
-
|
2812
|
-
def __getattr__(self, attr):
|
2813
|
-
"""Delegate all unrecognized public attributes to .metadata provider"""
|
2814
|
-
if attr.startswith('_'):
|
2815
|
-
raise AttributeError(attr)
|
2816
|
-
return getattr(self._provider, attr)
|
2817
|
-
|
2818
|
-
def __dir__(self):
|
2819
|
-
return list(
|
2820
|
-
set(super(Distribution, self).__dir__())
|
2821
|
-
| set(
|
2822
|
-
attr for attr in self._provider.__dir__()
|
2823
|
-
if not attr.startswith('_')
|
2824
|
-
)
|
2825
|
-
)
|
2826
|
-
|
2827
|
-
if not hasattr(object, '__dir__'):
|
2828
|
-
# python 2.7 not supported
|
2829
|
-
del __dir__
|
2830
|
-
|
2831
|
-
@classmethod
|
2832
|
-
def from_filename(cls, filename, metadata=None, **kw):
|
2833
|
-
return cls.from_location(
|
2834
|
-
_normalize_cached(filename), os.path.basename(filename), metadata,
|
2835
|
-
**kw
|
2836
|
-
)
|
2837
|
-
|
2838
|
-
def as_requirement(self):
|
2839
|
-
"""Return a ``Requirement`` that matches this distribution exactly"""
|
2840
|
-
if isinstance(self.parsed_version, packaging.version.Version):
|
2841
|
-
spec = "%s==%s" % (self.project_name, self.parsed_version)
|
2842
|
-
else:
|
2843
|
-
spec = "%s===%s" % (self.project_name, self.parsed_version)
|
2844
|
-
|
2845
|
-
return Requirement.parse(spec)
|
2846
|
-
|
2847
|
-
def load_entry_point(self, group, name):
|
2848
|
-
"""Return the `name` entry point of `group` or raise ImportError"""
|
2849
|
-
ep = self.get_entry_info(group, name)
|
2850
|
-
if ep is None:
|
2851
|
-
raise ImportError("Entry point %r not found" % ((group, name),))
|
2852
|
-
return ep.load()
|
2853
|
-
|
2854
|
-
def get_entry_map(self, group=None):
|
2855
|
-
"""Return the entry point map for `group`, or the full entry map"""
|
2856
|
-
try:
|
2857
|
-
ep_map = self._ep_map
|
2858
|
-
except AttributeError:
|
2859
|
-
ep_map = self._ep_map = EntryPoint.parse_map(
|
2860
|
-
self._get_metadata('entry_points.txt'), self
|
2861
|
-
)
|
2862
|
-
if group is not None:
|
2863
|
-
return ep_map.get(group, {})
|
2864
|
-
return ep_map
|
2865
|
-
|
2866
|
-
def get_entry_info(self, group, name):
|
2867
|
-
"""Return the EntryPoint object for `group`+`name`, or ``None``"""
|
2868
|
-
return self.get_entry_map(group).get(name)
|
2869
|
-
|
2870
|
-
def insert_on(self, path, loc=None, replace=False):
|
2871
|
-
"""Ensure self.location is on path
|
2872
|
-
|
2873
|
-
If replace=False (default):
|
2874
|
-
- If location is already in path anywhere, do nothing.
|
2875
|
-
- Else:
|
2876
|
-
- If it's an egg and its parent directory is on path,
|
2877
|
-
insert just ahead of the parent.
|
2878
|
-
- Else: add to the end of path.
|
2879
|
-
If replace=True:
|
2880
|
-
- If location is already on path anywhere (not eggs)
|
2881
|
-
or higher priority than its parent (eggs)
|
2882
|
-
do nothing.
|
2883
|
-
- Else:
|
2884
|
-
- If it's an egg and its parent directory is on path,
|
2885
|
-
insert just ahead of the parent,
|
2886
|
-
removing any lower-priority entries.
|
2887
|
-
- Else: add it to the front of path.
|
2888
|
-
"""
|
2889
|
-
|
2890
|
-
loc = loc or self.location
|
2891
|
-
if not loc:
|
2892
|
-
return
|
2893
|
-
|
2894
|
-
nloc = _normalize_cached(loc)
|
2895
|
-
bdir = os.path.dirname(nloc)
|
2896
|
-
npath = [(p and _normalize_cached(p) or p) for p in path]
|
2897
|
-
|
2898
|
-
for p, item in enumerate(npath):
|
2899
|
-
if item == nloc:
|
2900
|
-
if replace:
|
2901
|
-
break
|
2902
|
-
else:
|
2903
|
-
# don't modify path (even removing duplicates) if
|
2904
|
-
# found and not replace
|
2905
|
-
return
|
2906
|
-
elif item == bdir and self.precedence == EGG_DIST:
|
2907
|
-
# if it's an .egg, give it precedence over its directory
|
2908
|
-
# UNLESS it's already been added to sys.path and replace=False
|
2909
|
-
if (not replace) and nloc in npath[p:]:
|
2910
|
-
return
|
2911
|
-
if path is sys.path:
|
2912
|
-
self.check_version_conflict()
|
2913
|
-
path.insert(p, loc)
|
2914
|
-
npath.insert(p, nloc)
|
2915
|
-
break
|
2916
|
-
else:
|
2917
|
-
if path is sys.path:
|
2918
|
-
self.check_version_conflict()
|
2919
|
-
if replace:
|
2920
|
-
path.insert(0, loc)
|
2921
|
-
else:
|
2922
|
-
path.append(loc)
|
2923
|
-
return
|
2924
|
-
|
2925
|
-
# p is the spot where we found or inserted loc; now remove duplicates
|
2926
|
-
while True:
|
2927
|
-
try:
|
2928
|
-
np = npath.index(nloc, p + 1)
|
2929
|
-
except ValueError:
|
2930
|
-
break
|
2931
|
-
else:
|
2932
|
-
del npath[np], path[np]
|
2933
|
-
# ha!
|
2934
|
-
p = np
|
2935
|
-
|
2936
|
-
return
|
2937
|
-
|
2938
|
-
def check_version_conflict(self):
|
2939
|
-
if self.key == 'setuptools':
|
2940
|
-
# ignore the inevitable setuptools self-conflicts :(
|
2941
|
-
return
|
2942
|
-
|
2943
|
-
nsp = dict.fromkeys(self._get_metadata('namespace_packages.txt'))
|
2944
|
-
loc = normalize_path(self.location)
|
2945
|
-
for modname in self._get_metadata('top_level.txt'):
|
2946
|
-
if (modname not in sys.modules or modname in nsp
|
2947
|
-
or modname in _namespace_packages):
|
2948
|
-
continue
|
2949
|
-
if modname in ('pkg_resources', 'setuptools', 'site'):
|
2950
|
-
continue
|
2951
|
-
fn = getattr(sys.modules[modname], '__file__', None)
|
2952
|
-
if fn and (normalize_path(fn).startswith(loc) or
|
2953
|
-
fn.startswith(self.location)):
|
2954
|
-
continue
|
2955
|
-
issue_warning(
|
2956
|
-
"Module %s was already imported from %s, but %s is being added"
|
2957
|
-
" to sys.path" % (modname, fn, self.location),
|
2958
|
-
)
|
2959
|
-
|
2960
|
-
def has_version(self):
|
2961
|
-
try:
|
2962
|
-
self.version
|
2963
|
-
except ValueError:
|
2964
|
-
issue_warning("Unbuilt egg for " + repr(self))
|
2965
|
-
return False
|
2966
|
-
return True
|
2967
|
-
|
2968
|
-
def clone(self, **kw):
|
2969
|
-
"""Copy this distribution, substituting in any changed keyword args"""
|
2970
|
-
names = 'project_name version py_version platform location precedence'
|
2971
|
-
for attr in names.split():
|
2972
|
-
kw.setdefault(attr, getattr(self, attr, None))
|
2973
|
-
kw.setdefault('metadata', self._provider)
|
2974
|
-
return self.__class__(**kw)
|
2975
|
-
|
2976
|
-
@property
|
2977
|
-
def extras(self):
|
2978
|
-
return [dep for dep in self._dep_map if dep]
|
2979
|
-
|
2980
|
-
|
2981
|
-
class EggInfoDistribution(Distribution):
|
2982
|
-
def _reload_version(self):
|
2983
|
-
"""
|
2984
|
-
Packages installed by distutils (e.g. numpy or scipy),
|
2985
|
-
which uses an old safe_version, and so
|
2986
|
-
their version numbers can get mangled when
|
2987
|
-
converted to filenames (e.g., 1.11.0.dev0+2329eae to
|
2988
|
-
1.11.0.dev0_2329eae). These distributions will not be
|
2989
|
-
parsed properly
|
2990
|
-
downstream by Distribution and safe_version, so
|
2991
|
-
take an extra step and try to get the version number from
|
2992
|
-
the metadata file itself instead of the filename.
|
2993
|
-
"""
|
2994
|
-
md_version = self._get_version()
|
2995
|
-
if md_version:
|
2996
|
-
self._version = md_version
|
2997
|
-
return self
|
2998
|
-
|
2999
|
-
|
3000
|
-
class DistInfoDistribution(Distribution):
|
3001
|
-
"""
|
3002
|
-
Wrap an actual or potential sys.path entry
|
3003
|
-
w/metadata, .dist-info style.
|
3004
|
-
"""
|
3005
|
-
PKG_INFO = 'METADATA'
|
3006
|
-
EQEQ = re.compile(r"([\(,])\s*(\d.*?)\s*([,\)])")
|
3007
|
-
|
3008
|
-
@property
|
3009
|
-
def _parsed_pkg_info(self):
|
3010
|
-
"""Parse and cache metadata"""
|
3011
|
-
try:
|
3012
|
-
return self._pkg_info
|
3013
|
-
except AttributeError:
|
3014
|
-
metadata = self.get_metadata(self.PKG_INFO)
|
3015
|
-
self._pkg_info = email.parser.Parser().parsestr(metadata)
|
3016
|
-
return self._pkg_info
|
3017
|
-
|
3018
|
-
@property
|
3019
|
-
def _dep_map(self):
|
3020
|
-
try:
|
3021
|
-
return self.__dep_map
|
3022
|
-
except AttributeError:
|
3023
|
-
self.__dep_map = self._compute_dependencies()
|
3024
|
-
return self.__dep_map
|
3025
|
-
|
3026
|
-
def _compute_dependencies(self):
|
3027
|
-
"""Recompute this distribution's dependencies."""
|
3028
|
-
dm = self.__dep_map = {None: []}
|
3029
|
-
|
3030
|
-
reqs = []
|
3031
|
-
# Including any condition expressions
|
3032
|
-
for req in self._parsed_pkg_info.get_all('Requires-Dist') or []:
|
3033
|
-
reqs.extend(parse_requirements(req))
|
3034
|
-
|
3035
|
-
def reqs_for_extra(extra):
|
3036
|
-
for req in reqs:
|
3037
|
-
if not req.marker or req.marker.evaluate({'extra': extra}):
|
3038
|
-
yield req
|
3039
|
-
|
3040
|
-
common = frozenset(reqs_for_extra(None))
|
3041
|
-
dm[None].extend(common)
|
3042
|
-
|
3043
|
-
for extra in self._parsed_pkg_info.get_all('Provides-Extra') or []:
|
3044
|
-
s_extra = safe_extra(extra.strip())
|
3045
|
-
dm[s_extra] = list(frozenset(reqs_for_extra(extra)) - common)
|
3046
|
-
|
3047
|
-
return dm
|
3048
|
-
|
3049
|
-
|
3050
|
-
_distributionImpl = {
|
3051
|
-
'.egg': Distribution,
|
3052
|
-
'.egg-info': EggInfoDistribution,
|
3053
|
-
'.dist-info': DistInfoDistribution,
|
3054
|
-
}
|
3055
|
-
|
3056
|
-
|
3057
|
-
def issue_warning(*args, **kw):
|
3058
|
-
level = 1
|
3059
|
-
g = globals()
|
3060
|
-
try:
|
3061
|
-
# find the first stack frame that is *not* code in
|
3062
|
-
# the pkg_resources module, to use for the warning
|
3063
|
-
while sys._getframe(level).f_globals is g:
|
3064
|
-
level += 1
|
3065
|
-
except ValueError:
|
3066
|
-
pass
|
3067
|
-
warnings.warn(stacklevel=level + 1, *args, **kw)
|
3068
|
-
|
3069
|
-
|
3070
|
-
class RequirementParseError(ValueError):
|
3071
|
-
def __str__(self):
|
3072
|
-
return ' '.join(self.args)
|
3073
|
-
|
3074
|
-
|
3075
|
-
def parse_requirements(strs):
|
3076
|
-
"""Yield ``Requirement`` objects for each specification in `strs`
|
3077
|
-
|
3078
|
-
`strs` must be a string, or a (possibly-nested) iterable thereof.
|
3079
|
-
"""
|
3080
|
-
# create a steppable iterator, so we can handle \-continuations
|
3081
|
-
lines = iter(yield_lines(strs))
|
3082
|
-
|
3083
|
-
for line in lines:
|
3084
|
-
# Drop comments -- a hash without a space may be in a URL.
|
3085
|
-
if ' #' in line:
|
3086
|
-
line = line[:line.find(' #')]
|
3087
|
-
# If there is a line continuation, drop it, and append the next line.
|
3088
|
-
if line.endswith('\\'):
|
3089
|
-
line = line[:-2].strip()
|
3090
|
-
try:
|
3091
|
-
line += next(lines)
|
3092
|
-
except StopIteration:
|
3093
|
-
return
|
3094
|
-
yield Requirement(line)
|
3095
|
-
|
3096
|
-
|
3097
|
-
class Requirement(packaging.requirements.Requirement):
|
3098
|
-
def __init__(self, requirement_string):
|
3099
|
-
"""DO NOT CALL THIS UNDOCUMENTED METHOD; use Requirement.parse()!"""
|
3100
|
-
try:
|
3101
|
-
super(Requirement, self).__init__(requirement_string)
|
3102
|
-
except packaging.requirements.InvalidRequirement as e:
|
3103
|
-
raise RequirementParseError(str(e))
|
3104
|
-
self.unsafe_name = self.name
|
3105
|
-
project_name = safe_name(self.name)
|
3106
|
-
self.project_name, self.key = project_name, project_name.lower()
|
3107
|
-
self.specs = [
|
3108
|
-
(spec.operator, spec.version) for spec in self.specifier]
|
3109
|
-
self.extras = tuple(map(safe_extra, self.extras))
|
3110
|
-
self.hashCmp = (
|
3111
|
-
self.key,
|
3112
|
-
self.url,
|
3113
|
-
self.specifier,
|
3114
|
-
frozenset(self.extras),
|
3115
|
-
str(self.marker) if self.marker else None,
|
3116
|
-
)
|
3117
|
-
self.__hash = hash(self.hashCmp)
|
3118
|
-
|
3119
|
-
def __eq__(self, other):
|
3120
|
-
return (
|
3121
|
-
isinstance(other, Requirement) and
|
3122
|
-
self.hashCmp == other.hashCmp
|
3123
|
-
)
|
3124
|
-
|
3125
|
-
def __ne__(self, other):
|
3126
|
-
return not self == other
|
3127
|
-
|
3128
|
-
def __contains__(self, item):
|
3129
|
-
if isinstance(item, Distribution):
|
3130
|
-
if item.key != self.key:
|
3131
|
-
return False
|
3132
|
-
|
3133
|
-
item = item.version
|
3134
|
-
|
3135
|
-
# Allow prereleases always in order to match the previous behavior of
|
3136
|
-
# this method. In the future this should be smarter and follow PEP 440
|
3137
|
-
# more accurately.
|
3138
|
-
return self.specifier.contains(item, prereleases=True)
|
3139
|
-
|
3140
|
-
def __hash__(self):
|
3141
|
-
return self.__hash
|
3142
|
-
|
3143
|
-
def __repr__(self):
|
3144
|
-
return "Requirement.parse(%r)" % str(self)
|
3145
|
-
|
3146
|
-
@staticmethod
|
3147
|
-
def parse(s):
|
3148
|
-
req, = parse_requirements(s)
|
3149
|
-
return req
|
3150
|
-
|
3151
|
-
|
3152
|
-
def _always_object(classes):
|
3153
|
-
"""
|
3154
|
-
Ensure object appears in the mro even
|
3155
|
-
for old-style classes.
|
3156
|
-
"""
|
3157
|
-
if object not in classes:
|
3158
|
-
return classes + (object,)
|
3159
|
-
return classes
|
3160
|
-
|
3161
|
-
|
3162
|
-
def _find_adapter(registry, ob):
|
3163
|
-
"""Return an adapter factory for `ob` from `registry`"""
|
3164
|
-
types = _always_object(inspect.getmro(getattr(ob, '__class__', type(ob))))
|
3165
|
-
for t in types:
|
3166
|
-
if t in registry:
|
3167
|
-
return registry[t]
|
3168
|
-
|
3169
|
-
|
3170
|
-
def ensure_directory(path):
|
3171
|
-
"""Ensure that the parent directory of `path` exists"""
|
3172
|
-
dirname = os.path.dirname(path)
|
3173
|
-
py31compat.makedirs(dirname, exist_ok=True)
|
3174
|
-
|
3175
|
-
|
3176
|
-
def _bypass_ensure_directory(path):
|
3177
|
-
"""Sandbox-bypassing version of ensure_directory()"""
|
3178
|
-
if not WRITE_SUPPORT:
|
3179
|
-
raise IOError('"os.mkdir" not supported on this platform.')
|
3180
|
-
dirname, filename = split(path)
|
3181
|
-
if dirname and filename and not isdir(dirname):
|
3182
|
-
_bypass_ensure_directory(dirname)
|
3183
|
-
try:
|
3184
|
-
mkdir(dirname, 0o755)
|
3185
|
-
except FileExistsError:
|
3186
|
-
pass
|
3187
|
-
|
3188
|
-
|
3189
|
-
def split_sections(s):
|
3190
|
-
"""Split a string or iterable thereof into (section, content) pairs
|
3191
|
-
|
3192
|
-
Each ``section`` is a stripped version of the section header ("[section]")
|
3193
|
-
and each ``content`` is a list of stripped lines excluding blank lines and
|
3194
|
-
comment-only lines. If there are any such lines before the first section
|
3195
|
-
header, they're returned in a first ``section`` of ``None``.
|
3196
|
-
"""
|
3197
|
-
section = None
|
3198
|
-
content = []
|
3199
|
-
for line in yield_lines(s):
|
3200
|
-
if line.startswith("["):
|
3201
|
-
if line.endswith("]"):
|
3202
|
-
if section or content:
|
3203
|
-
yield section, content
|
3204
|
-
section = line[1:-1].strip()
|
3205
|
-
content = []
|
3206
|
-
else:
|
3207
|
-
raise ValueError("Invalid section heading", line)
|
3208
|
-
else:
|
3209
|
-
content.append(line)
|
3210
|
-
|
3211
|
-
# wrap up last segment
|
3212
|
-
yield section, content
|
3213
|
-
|
3214
|
-
|
3215
|
-
def _mkstemp(*args, **kw):
|
3216
|
-
old_open = os.open
|
3217
|
-
try:
|
3218
|
-
# temporarily bypass sandboxing
|
3219
|
-
os.open = os_open
|
3220
|
-
return tempfile.mkstemp(*args, **kw)
|
3221
|
-
finally:
|
3222
|
-
# and then put it back
|
3223
|
-
os.open = old_open
|
3224
|
-
|
3225
|
-
|
3226
|
-
# Silence the PEP440Warning by default, so that end users don't get hit by it
|
3227
|
-
# randomly just because they use pkg_resources. We want to append the rule
|
3228
|
-
# because we want earlier uses of filterwarnings to take precedence over this
|
3229
|
-
# one.
|
3230
|
-
warnings.filterwarnings("ignore", category=PEP440Warning, append=True)
|
3231
|
-
|
3232
|
-
|
3233
|
-
# from jaraco.functools 1.3
|
3234
|
-
def _call_aside(f, *args, **kwargs):
|
3235
|
-
f(*args, **kwargs)
|
3236
|
-
return f
|
3237
|
-
|
3238
|
-
|
3239
|
-
@_call_aside
|
3240
|
-
def _initialize(g=globals()):
|
3241
|
-
"Set up global resource manager (deliberately not state-saved)"
|
3242
|
-
manager = ResourceManager()
|
3243
|
-
g['_manager'] = manager
|
3244
|
-
g.update(
|
3245
|
-
(name, getattr(manager, name))
|
3246
|
-
for name in dir(manager)
|
3247
|
-
if not name.startswith('_')
|
3248
|
-
)
|
3249
|
-
|
3250
|
-
|
3251
|
-
@_call_aside
|
3252
|
-
def _initialize_master_working_set():
|
3253
|
-
"""
|
3254
|
-
Prepare the master working set and make the ``require()``
|
3255
|
-
API available.
|
3256
|
-
|
3257
|
-
This function has explicit effects on the global state
|
3258
|
-
of pkg_resources. It is intended to be invoked once at
|
3259
|
-
the initialization of this module.
|
3260
|
-
|
3261
|
-
Invocation by other packages is unsupported and done
|
3262
|
-
at their own risk.
|
3263
|
-
"""
|
3264
|
-
working_set = WorkingSet._build_master()
|
3265
|
-
_declare_state('object', working_set=working_set)
|
3266
|
-
|
3267
|
-
require = working_set.require
|
3268
|
-
iter_entry_points = working_set.iter_entry_points
|
3269
|
-
add_activation_listener = working_set.subscribe
|
3270
|
-
run_script = working_set.run_script
|
3271
|
-
# backward compatibility
|
3272
|
-
run_main = run_script
|
3273
|
-
# Activate all distributions already on sys.path with replace=False and
|
3274
|
-
# ensure that all distributions added to the working set in the future
|
3275
|
-
# (e.g. by calling ``require()``) will get activated as well,
|
3276
|
-
# with higher priority (replace=True).
|
3277
|
-
tuple(
|
3278
|
-
dist.activate(replace=False)
|
3279
|
-
for dist in working_set
|
3280
|
-
)
|
3281
|
-
add_activation_listener(
|
3282
|
-
lambda dist: dist.activate(replace=True),
|
3283
|
-
existing=False,
|
3284
|
-
)
|
3285
|
-
working_set.entries = []
|
3286
|
-
# match order
|
3287
|
-
list(map(working_set.add_entry, sys.path))
|
3288
|
-
globals().update(locals())
|
3289
|
-
|
3290
|
-
class PkgResourcesDeprecationWarning(Warning):
|
3291
|
-
"""
|
3292
|
-
Base class for warning about deprecations in ``pkg_resources``
|
3293
|
-
|
3294
|
-
This class is not derived from ``DeprecationWarning``, and as such is
|
3295
|
-
visible by default.
|
3296
|
-
"""
|