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.
Files changed (3194) hide show
  1. je_editor/__init__.py +1 -1
  2. je_editor/pyside_ui/editor_main_ui/main_editor.py +20 -0
  3. je_editor/pyside_ui/menu/set_menu.py +17 -0
  4. je_editor/pyside_ui/ui_setting/ui_setting.py +27 -0
  5. je_editor/start_editor.py +18 -0
  6. je_editor/tkinter_ui/__init__.py +1 -1
  7. je_editor/tkinter_ui/editor_main_ui/__init__.py +1 -1
  8. je_editor/tkinter_ui/editor_main_ui/tkinter_editor.py +1 -4
  9. je_editor/tkinter_ui/editor_main_ui/ui_setting/ui_setting.py +1 -1
  10. je_editor/tkinter_ui/ui_event/__init__.py +1 -1
  11. je_editor/tkinter_ui/ui_event/auto_save/__init__.py +1 -1
  12. je_editor/tkinter_ui/ui_event/auto_save/start_auto_save/start_auto_save.py +17 -17
  13. je_editor/tkinter_ui/ui_event/change_font/__init__.py +1 -1
  14. je_editor/tkinter_ui/ui_event/change_font/change_font.py +38 -38
  15. je_editor/tkinter_ui/ui_event/close/__init__.py +1 -1
  16. je_editor/tkinter_ui/ui_event/close/close_event.py +12 -12
  17. je_editor/tkinter_ui/ui_event/encoding/set_encoding.py +10 -10
  18. je_editor/tkinter_ui/ui_event/execute/__init__.py +1 -1
  19. je_editor/tkinter_ui/ui_event/execute/execute_code/__init__.py +1 -1
  20. je_editor/tkinter_ui/ui_event/execute/execute_code/exec_code.py +22 -22
  21. je_editor/tkinter_ui/ui_event/execute/execute_shell_command/__init__.py +1 -1
  22. je_editor/tkinter_ui/ui_event/execute/execute_shell_command/run_on_shell.py +12 -12
  23. je_editor/tkinter_ui/ui_event/language/__init__.py +1 -1
  24. je_editor/tkinter_ui/ui_event/language/set_language.py +13 -13
  25. je_editor/tkinter_ui/ui_event/open_file/__init__.py +1 -1
  26. je_editor/tkinter_ui/ui_event/open_file/open_file_to_read/__init__.py +1 -1
  27. je_editor/tkinter_ui/ui_event/open_file/open_file_to_read/open_file_to_read.py +20 -20
  28. je_editor/tkinter_ui/ui_event/open_file/open_last_edit_file/__init__.py +1 -1
  29. je_editor/tkinter_ui/ui_event/open_file/open_last_edit_file/open_last_edit_file.py +17 -17
  30. je_editor/tkinter_ui/ui_event/save_file/save_file_to_open/__init__.py +1 -1
  31. je_editor/tkinter_ui/ui_event/save_file/save_file_to_open/save_file_to_open.py +19 -19
  32. je_editor/tkinter_ui/ui_event/tag_keyword/__init__.py +1 -1
  33. je_editor/tkinter_ui/ui_event/tag_keyword/tag_keyword.py +49 -49
  34. je_editor/tkinter_ui/ui_event/text_process/program_exec/__init__.py +1 -1
  35. je_editor/tkinter_ui/ui_event/text_process/program_exec/code_exec_manager.py +169 -169
  36. je_editor/tkinter_ui/ui_event/text_process/program_exec/process_error.py +10 -10
  37. je_editor/tkinter_ui/ui_event/text_process/shell/__init__.py +1 -1
  38. je_editor/utils/__init__.py +1 -1
  39. je_editor/utils/editor_content/__init__.py +1 -1
  40. je_editor/utils/editor_content/content_save.py +66 -66
  41. je_editor/utils/editor_content/editor_content_data.py +19 -19
  42. je_editor/utils/encoding/__init__.py +1 -1
  43. je_editor/utils/encoding/encoding_data_module.py +101 -101
  44. je_editor/utils/exception/__init__.py +1 -1
  45. je_editor/utils/exception/exception_tags.py +33 -33
  46. je_editor/utils/exception/exceptions.py +30 -30
  47. je_editor/utils/file/open/__init__.py +1 -1
  48. je_editor/utils/file/open/open_file.py +52 -52
  49. je_editor/utils/file/save/save_file.py +81 -81
  50. je_editor/utils/font/__init__.py +1 -1
  51. je_editor/utils/font/font.py +20 -20
  52. je_editor/utils/json_format/__init__.py +1 -1
  53. je_editor/utils/json_format/json_process.py +28 -28
  54. je_editor/utils/keyword/__init__.py +1 -1
  55. je_editor/utils/keyword/keyword_list.py +4 -4
  56. je_editor/utils/language/__init__.py +1 -1
  57. je_editor/utils/language/language_data_module.py +9 -9
  58. je_editor/utils/language_data_module/__init__.py +1 -1
  59. je_editor/utils/language_data_module/language_compiler_data_module.py +7 -7
  60. je_editor/utils/language_data_module/language_param_data_module.py +7 -7
  61. je_editor/utils/theme/theme.py +6 -6
  62. {je_editor-0.0.57.dist-info → je_editor-0.0.59.dist-info}/LICENSE +21 -21
  63. {je_editor-0.0.57.dist-info → je_editor-0.0.59.dist-info}/METADATA +2 -1
  64. je_editor-0.0.59.dist-info/RECORD +107 -0
  65. je_editor-0.0.59.dist-info/top_level.txt +1 -0
  66. deprecation_for_old_python/dev_setup.py +0 -30
  67. deprecation_for_old_python/setup.py +0 -30
  68. docs/source/conf.py +0 -54
  69. je_editor-0.0.57.dist-info/RECORD +0 -3228
  70. je_editor-0.0.57.dist-info/top_level.txt +0 -6
  71. start_editor/start_editor.py +0 -3
  72. test/tkinter_ui/unit_test/extend_test/extend_editor.py +0 -11
  73. test/tkinter_ui/unit_test/file/save_and_open/save_and_open.py +0 -5
  74. test/tkinter_ui/unit_test/tkinter_test/editor/editor_with_theme.py +0 -7
  75. test/tkinter_ui/unit_test/tkinter_test/editor/import_tkinter_test.py +0 -3
  76. test/tkinter_ui/unit_test/tkinter_test/font/test_font.py +0 -14
  77. venv/Lib/site-packages/PyInstaller/__init__.py +0 -65
  78. venv/Lib/site-packages/PyInstaller/__main__.py +0 -198
  79. venv/Lib/site-packages/PyInstaller/_recursion_too_deep_message.py +0 -45
  80. venv/Lib/site-packages/PyInstaller/_shared_with_waf.py +0 -86
  81. venv/Lib/site-packages/PyInstaller/archive/__init__.py +0 -1
  82. venv/Lib/site-packages/PyInstaller/archive/pyz_crypto.py +0 -48
  83. venv/Lib/site-packages/PyInstaller/archive/readers.py +0 -242
  84. venv/Lib/site-packages/PyInstaller/archive/writers.py +0 -583
  85. venv/Lib/site-packages/PyInstaller/building/__init__.py +0 -1
  86. venv/Lib/site-packages/PyInstaller/building/api.py +0 -1064
  87. venv/Lib/site-packages/PyInstaller/building/build_main.py +0 -971
  88. venv/Lib/site-packages/PyInstaller/building/datastruct.py +0 -295
  89. venv/Lib/site-packages/PyInstaller/building/icon.py +0 -85
  90. venv/Lib/site-packages/PyInstaller/building/makespec.py +0 -836
  91. venv/Lib/site-packages/PyInstaller/building/osx.py +0 -267
  92. venv/Lib/site-packages/PyInstaller/building/splash.py +0 -486
  93. venv/Lib/site-packages/PyInstaller/building/splash_templates.py +0 -229
  94. venv/Lib/site-packages/PyInstaller/building/templates.py +0 -142
  95. venv/Lib/site-packages/PyInstaller/building/toc_conversion.py +0 -156
  96. venv/Lib/site-packages/PyInstaller/building/utils.py +0 -741
  97. venv/Lib/site-packages/PyInstaller/compat.py +0 -771
  98. venv/Lib/site-packages/PyInstaller/config.py +0 -54
  99. venv/Lib/site-packages/PyInstaller/configure.py +0 -95
  100. venv/Lib/site-packages/PyInstaller/depend/__init__.py +0 -1
  101. venv/Lib/site-packages/PyInstaller/depend/analysis.py +0 -896
  102. venv/Lib/site-packages/PyInstaller/depend/bindepend.py +0 -1043
  103. venv/Lib/site-packages/PyInstaller/depend/bytecode.py +0 -318
  104. venv/Lib/site-packages/PyInstaller/depend/dylib.py +0 -453
  105. venv/Lib/site-packages/PyInstaller/depend/imphook.py +0 -546
  106. venv/Lib/site-packages/PyInstaller/depend/imphookapi.py +0 -468
  107. venv/Lib/site-packages/PyInstaller/depend/utils.py +0 -420
  108. venv/Lib/site-packages/PyInstaller/exceptions.py +0 -30
  109. venv/Lib/site-packages/PyInstaller/fake-modules/pyi_splash.py +0 -223
  110. venv/Lib/site-packages/PyInstaller/hooks/__init__.py +0 -1
  111. venv/Lib/site-packages/PyInstaller/hooks/hook-PIL.Image.py +0 -17
  112. venv/Lib/site-packages/PyInstaller/hooks/hook-PIL.ImageFilter.py +0 -13
  113. venv/Lib/site-packages/PyInstaller/hooks/hook-PIL.SpiderImagePlugin.py +0 -14
  114. venv/Lib/site-packages/PyInstaller/hooks/hook-PIL.py +0 -21
  115. venv/Lib/site-packages/PyInstaller/hooks/hook-PyQt5.QAxContainer.py +0 -14
  116. venv/Lib/site-packages/PyInstaller/hooks/hook-PyQt5.Qsci.py +0 -14
  117. venv/Lib/site-packages/PyInstaller/hooks/hook-PyQt5.Qt.py +0 -29
  118. venv/Lib/site-packages/PyInstaller/hooks/hook-PyQt5.Qt3DAnimation.py +0 -14
  119. venv/Lib/site-packages/PyInstaller/hooks/hook-PyQt5.Qt3DCore.py +0 -14
  120. venv/Lib/site-packages/PyInstaller/hooks/hook-PyQt5.Qt3DExtras.py +0 -14
  121. venv/Lib/site-packages/PyInstaller/hooks/hook-PyQt5.Qt3DInput.py +0 -14
  122. venv/Lib/site-packages/PyInstaller/hooks/hook-PyQt5.Qt3DLogic.py +0 -14
  123. venv/Lib/site-packages/PyInstaller/hooks/hook-PyQt5.Qt3DRender.py +0 -14
  124. venv/Lib/site-packages/PyInstaller/hooks/hook-PyQt5.QtBluetooth.py +0 -14
  125. venv/Lib/site-packages/PyInstaller/hooks/hook-PyQt5.QtChart.py +0 -14
  126. venv/Lib/site-packages/PyInstaller/hooks/hook-PyQt5.QtCore.py +0 -14
  127. venv/Lib/site-packages/PyInstaller/hooks/hook-PyQt5.QtDBus.py +0 -14
  128. venv/Lib/site-packages/PyInstaller/hooks/hook-PyQt5.QtDataVisualization.py +0 -14
  129. venv/Lib/site-packages/PyInstaller/hooks/hook-PyQt5.QtDesigner.py +0 -14
  130. venv/Lib/site-packages/PyInstaller/hooks/hook-PyQt5.QtGui.py +0 -14
  131. venv/Lib/site-packages/PyInstaller/hooks/hook-PyQt5.QtHelp.py +0 -14
  132. venv/Lib/site-packages/PyInstaller/hooks/hook-PyQt5.QtLocation.py +0 -14
  133. venv/Lib/site-packages/PyInstaller/hooks/hook-PyQt5.QtMacExtras.py +0 -14
  134. venv/Lib/site-packages/PyInstaller/hooks/hook-PyQt5.QtMultimedia.py +0 -14
  135. venv/Lib/site-packages/PyInstaller/hooks/hook-PyQt5.QtMultimediaWidgets.py +0 -14
  136. venv/Lib/site-packages/PyInstaller/hooks/hook-PyQt5.QtNetwork.py +0 -15
  137. venv/Lib/site-packages/PyInstaller/hooks/hook-PyQt5.QtNetworkAuth.py +0 -14
  138. venv/Lib/site-packages/PyInstaller/hooks/hook-PyQt5.QtNfc.py +0 -14
  139. venv/Lib/site-packages/PyInstaller/hooks/hook-PyQt5.QtOpenGL.py +0 -14
  140. venv/Lib/site-packages/PyInstaller/hooks/hook-PyQt5.QtPositioning.py +0 -14
  141. venv/Lib/site-packages/PyInstaller/hooks/hook-PyQt5.QtPrintSupport.py +0 -14
  142. venv/Lib/site-packages/PyInstaller/hooks/hook-PyQt5.QtPurchasing.py +0 -14
  143. venv/Lib/site-packages/PyInstaller/hooks/hook-PyQt5.QtQml.py +0 -17
  144. venv/Lib/site-packages/PyInstaller/hooks/hook-PyQt5.QtQuick.py +0 -14
  145. venv/Lib/site-packages/PyInstaller/hooks/hook-PyQt5.QtQuick3D.py +0 -14
  146. venv/Lib/site-packages/PyInstaller/hooks/hook-PyQt5.QtQuickWidgets.py +0 -14
  147. venv/Lib/site-packages/PyInstaller/hooks/hook-PyQt5.QtRemoteObjects.py +0 -14
  148. venv/Lib/site-packages/PyInstaller/hooks/hook-PyQt5.QtScript.py +0 -14
  149. venv/Lib/site-packages/PyInstaller/hooks/hook-PyQt5.QtSensors.py +0 -14
  150. venv/Lib/site-packages/PyInstaller/hooks/hook-PyQt5.QtSerialPort.py +0 -14
  151. venv/Lib/site-packages/PyInstaller/hooks/hook-PyQt5.QtSql.py +0 -14
  152. venv/Lib/site-packages/PyInstaller/hooks/hook-PyQt5.QtSvg.py +0 -14
  153. venv/Lib/site-packages/PyInstaller/hooks/hook-PyQt5.QtTest.py +0 -14
  154. venv/Lib/site-packages/PyInstaller/hooks/hook-PyQt5.QtTextToSpeech.py +0 -14
  155. venv/Lib/site-packages/PyInstaller/hooks/hook-PyQt5.QtWebChannel.py +0 -14
  156. venv/Lib/site-packages/PyInstaller/hooks/hook-PyQt5.QtWebEngine.py +0 -14
  157. venv/Lib/site-packages/PyInstaller/hooks/hook-PyQt5.QtWebEngineCore.py +0 -22
  158. venv/Lib/site-packages/PyInstaller/hooks/hook-PyQt5.QtWebEngineWidgets.py +0 -14
  159. venv/Lib/site-packages/PyInstaller/hooks/hook-PyQt5.QtWebKit.py +0 -14
  160. venv/Lib/site-packages/PyInstaller/hooks/hook-PyQt5.QtWebKitWidgets.py +0 -14
  161. venv/Lib/site-packages/PyInstaller/hooks/hook-PyQt5.QtWebSockets.py +0 -14
  162. venv/Lib/site-packages/PyInstaller/hooks/hook-PyQt5.QtWidgets.py +0 -14
  163. venv/Lib/site-packages/PyInstaller/hooks/hook-PyQt5.QtWinExtras.py +0 -14
  164. venv/Lib/site-packages/PyInstaller/hooks/hook-PyQt5.QtX11Extras.py +0 -14
  165. venv/Lib/site-packages/PyInstaller/hooks/hook-PyQt5.QtXml.py +0 -14
  166. venv/Lib/site-packages/PyInstaller/hooks/hook-PyQt5.QtXmlPatterns.py +0 -14
  167. venv/Lib/site-packages/PyInstaller/hooks/hook-PyQt5.py +0 -26
  168. venv/Lib/site-packages/PyInstaller/hooks/hook-PyQt5.uic.py +0 -17
  169. venv/Lib/site-packages/PyInstaller/hooks/hook-PyQt6.QAxContainer.py +0 -14
  170. venv/Lib/site-packages/PyInstaller/hooks/hook-PyQt6.Qsci.py +0 -14
  171. venv/Lib/site-packages/PyInstaller/hooks/hook-PyQt6.Qt3DAnimation.py +0 -14
  172. venv/Lib/site-packages/PyInstaller/hooks/hook-PyQt6.Qt3DCore.py +0 -14
  173. venv/Lib/site-packages/PyInstaller/hooks/hook-PyQt6.Qt3DExtras.py +0 -14
  174. venv/Lib/site-packages/PyInstaller/hooks/hook-PyQt6.Qt3DInput.py +0 -14
  175. venv/Lib/site-packages/PyInstaller/hooks/hook-PyQt6.Qt3DLogic.py +0 -14
  176. venv/Lib/site-packages/PyInstaller/hooks/hook-PyQt6.Qt3DRender.py +0 -16
  177. venv/Lib/site-packages/PyInstaller/hooks/hook-PyQt6.QtBluetooth.py +0 -14
  178. venv/Lib/site-packages/PyInstaller/hooks/hook-PyQt6.QtCharts.py +0 -14
  179. venv/Lib/site-packages/PyInstaller/hooks/hook-PyQt6.QtCore.py +0 -14
  180. venv/Lib/site-packages/PyInstaller/hooks/hook-PyQt6.QtDBus.py +0 -14
  181. venv/Lib/site-packages/PyInstaller/hooks/hook-PyQt6.QtDataVisualization.py +0 -14
  182. venv/Lib/site-packages/PyInstaller/hooks/hook-PyQt6.QtDesigner.py +0 -14
  183. venv/Lib/site-packages/PyInstaller/hooks/hook-PyQt6.QtGui.py +0 -14
  184. venv/Lib/site-packages/PyInstaller/hooks/hook-PyQt6.QtHelp.py +0 -14
  185. venv/Lib/site-packages/PyInstaller/hooks/hook-PyQt6.QtMultimedia.py +0 -14
  186. venv/Lib/site-packages/PyInstaller/hooks/hook-PyQt6.QtMultimediaWidgets.py +0 -14
  187. venv/Lib/site-packages/PyInstaller/hooks/hook-PyQt6.QtNetwork.py +0 -15
  188. venv/Lib/site-packages/PyInstaller/hooks/hook-PyQt6.QtNetworkAuth.py +0 -14
  189. venv/Lib/site-packages/PyInstaller/hooks/hook-PyQt6.QtNfc.py +0 -14
  190. venv/Lib/site-packages/PyInstaller/hooks/hook-PyQt6.QtOpenGL.py +0 -14
  191. venv/Lib/site-packages/PyInstaller/hooks/hook-PyQt6.QtOpenGLWidgets.py +0 -14
  192. venv/Lib/site-packages/PyInstaller/hooks/hook-PyQt6.QtPdf.py +0 -14
  193. venv/Lib/site-packages/PyInstaller/hooks/hook-PyQt6.QtPdfWidgets.py +0 -14
  194. venv/Lib/site-packages/PyInstaller/hooks/hook-PyQt6.QtPositioning.py +0 -14
  195. venv/Lib/site-packages/PyInstaller/hooks/hook-PyQt6.QtPrintSupport.py +0 -14
  196. venv/Lib/site-packages/PyInstaller/hooks/hook-PyQt6.QtQml.py +0 -17
  197. venv/Lib/site-packages/PyInstaller/hooks/hook-PyQt6.QtQuick.py +0 -14
  198. venv/Lib/site-packages/PyInstaller/hooks/hook-PyQt6.QtQuick3D.py +0 -14
  199. venv/Lib/site-packages/PyInstaller/hooks/hook-PyQt6.QtQuickWidgets.py +0 -14
  200. venv/Lib/site-packages/PyInstaller/hooks/hook-PyQt6.QtRemoteObjects.py +0 -14
  201. venv/Lib/site-packages/PyInstaller/hooks/hook-PyQt6.QtSensors.py +0 -14
  202. venv/Lib/site-packages/PyInstaller/hooks/hook-PyQt6.QtSerialPort.py +0 -14
  203. venv/Lib/site-packages/PyInstaller/hooks/hook-PyQt6.QtSql.py +0 -14
  204. venv/Lib/site-packages/PyInstaller/hooks/hook-PyQt6.QtSvg.py +0 -14
  205. venv/Lib/site-packages/PyInstaller/hooks/hook-PyQt6.QtSvgWidgets.py +0 -14
  206. venv/Lib/site-packages/PyInstaller/hooks/hook-PyQt6.QtTest.py +0 -14
  207. venv/Lib/site-packages/PyInstaller/hooks/hook-PyQt6.QtWebChannel.py +0 -14
  208. venv/Lib/site-packages/PyInstaller/hooks/hook-PyQt6.QtWebEngineCore.py +0 -27
  209. venv/Lib/site-packages/PyInstaller/hooks/hook-PyQt6.QtWebEngineQuick.py +0 -14
  210. venv/Lib/site-packages/PyInstaller/hooks/hook-PyQt6.QtWebEngineWidgets.py +0 -14
  211. venv/Lib/site-packages/PyInstaller/hooks/hook-PyQt6.QtWebSockets.py +0 -14
  212. venv/Lib/site-packages/PyInstaller/hooks/hook-PyQt6.QtWidgets.py +0 -14
  213. venv/Lib/site-packages/PyInstaller/hooks/hook-PyQt6.QtXml.py +0 -14
  214. venv/Lib/site-packages/PyInstaller/hooks/hook-PyQt6.py +0 -23
  215. venv/Lib/site-packages/PyInstaller/hooks/hook-PyQt6.uic.py +0 -17
  216. venv/Lib/site-packages/PyInstaller/hooks/hook-PySide2.Qt3DAnimation.py +0 -14
  217. venv/Lib/site-packages/PyInstaller/hooks/hook-PySide2.Qt3DCore.py +0 -14
  218. venv/Lib/site-packages/PyInstaller/hooks/hook-PySide2.Qt3DExtras.py +0 -14
  219. venv/Lib/site-packages/PyInstaller/hooks/hook-PySide2.Qt3DInput.py +0 -14
  220. venv/Lib/site-packages/PyInstaller/hooks/hook-PySide2.Qt3DLogic.py +0 -14
  221. venv/Lib/site-packages/PyInstaller/hooks/hook-PySide2.Qt3DRender.py +0 -14
  222. venv/Lib/site-packages/PyInstaller/hooks/hook-PySide2.QtAxContainer.py +0 -14
  223. venv/Lib/site-packages/PyInstaller/hooks/hook-PySide2.QtCharts.py +0 -14
  224. venv/Lib/site-packages/PyInstaller/hooks/hook-PySide2.QtConcurrent.py +0 -14
  225. venv/Lib/site-packages/PyInstaller/hooks/hook-PySide2.QtCore.py +0 -14
  226. venv/Lib/site-packages/PyInstaller/hooks/hook-PySide2.QtDataVisualization.py +0 -14
  227. venv/Lib/site-packages/PyInstaller/hooks/hook-PySide2.QtGui.py +0 -14
  228. venv/Lib/site-packages/PyInstaller/hooks/hook-PySide2.QtHelp.py +0 -14
  229. venv/Lib/site-packages/PyInstaller/hooks/hook-PySide2.QtLocation.py +0 -14
  230. venv/Lib/site-packages/PyInstaller/hooks/hook-PySide2.QtMacExtras.py +0 -14
  231. venv/Lib/site-packages/PyInstaller/hooks/hook-PySide2.QtMultimedia.py +0 -19
  232. venv/Lib/site-packages/PyInstaller/hooks/hook-PySide2.QtMultimediaWidgets.py +0 -14
  233. venv/Lib/site-packages/PyInstaller/hooks/hook-PySide2.QtNetwork.py +0 -15
  234. venv/Lib/site-packages/PyInstaller/hooks/hook-PySide2.QtOpenGL.py +0 -14
  235. venv/Lib/site-packages/PyInstaller/hooks/hook-PySide2.QtOpenGLFunctions.py +0 -14
  236. venv/Lib/site-packages/PyInstaller/hooks/hook-PySide2.QtPositioning.py +0 -14
  237. venv/Lib/site-packages/PyInstaller/hooks/hook-PySide2.QtPrintSupport.py +0 -14
  238. venv/Lib/site-packages/PyInstaller/hooks/hook-PySide2.QtQml.py +0 -19
  239. venv/Lib/site-packages/PyInstaller/hooks/hook-PySide2.QtQuick.py +0 -14
  240. venv/Lib/site-packages/PyInstaller/hooks/hook-PySide2.QtQuickControls2.py +0 -14
  241. venv/Lib/site-packages/PyInstaller/hooks/hook-PySide2.QtQuickWidgets.py +0 -14
  242. venv/Lib/site-packages/PyInstaller/hooks/hook-PySide2.QtRemoteObjects.py +0 -14
  243. venv/Lib/site-packages/PyInstaller/hooks/hook-PySide2.QtScript.py +0 -14
  244. venv/Lib/site-packages/PyInstaller/hooks/hook-PySide2.QtScriptTools.py +0 -14
  245. venv/Lib/site-packages/PyInstaller/hooks/hook-PySide2.QtScxml.py +0 -14
  246. venv/Lib/site-packages/PyInstaller/hooks/hook-PySide2.QtSensors.py +0 -14
  247. venv/Lib/site-packages/PyInstaller/hooks/hook-PySide2.QtSerialPort.py +0 -14
  248. venv/Lib/site-packages/PyInstaller/hooks/hook-PySide2.QtSql.py +0 -14
  249. venv/Lib/site-packages/PyInstaller/hooks/hook-PySide2.QtSvg.py +0 -14
  250. venv/Lib/site-packages/PyInstaller/hooks/hook-PySide2.QtTest.py +0 -14
  251. venv/Lib/site-packages/PyInstaller/hooks/hook-PySide2.QtTextToSpeech.py +0 -14
  252. venv/Lib/site-packages/PyInstaller/hooks/hook-PySide2.QtUiTools.py +0 -15
  253. venv/Lib/site-packages/PyInstaller/hooks/hook-PySide2.QtWebChannel.py +0 -14
  254. venv/Lib/site-packages/PyInstaller/hooks/hook-PySide2.QtWebEngine.py +0 -14
  255. venv/Lib/site-packages/PyInstaller/hooks/hook-PySide2.QtWebEngineCore.py +0 -22
  256. venv/Lib/site-packages/PyInstaller/hooks/hook-PySide2.QtWebEngineWidgets.py +0 -14
  257. venv/Lib/site-packages/PyInstaller/hooks/hook-PySide2.QtWebKit.py +0 -14
  258. venv/Lib/site-packages/PyInstaller/hooks/hook-PySide2.QtWebKitWidgets.py +0 -14
  259. venv/Lib/site-packages/PyInstaller/hooks/hook-PySide2.QtWebSockets.py +0 -14
  260. venv/Lib/site-packages/PyInstaller/hooks/hook-PySide2.QtWidgets.py +0 -14
  261. venv/Lib/site-packages/PyInstaller/hooks/hook-PySide2.QtWinExtras.py +0 -14
  262. venv/Lib/site-packages/PyInstaller/hooks/hook-PySide2.QtX11Extras.py +0 -14
  263. venv/Lib/site-packages/PyInstaller/hooks/hook-PySide2.QtXml.py +0 -14
  264. venv/Lib/site-packages/PyInstaller/hooks/hook-PySide2.QtXmlPatterns.py +0 -14
  265. venv/Lib/site-packages/PyInstaller/hooks/hook-PySide2.Qwt5.py +0 -31
  266. venv/Lib/site-packages/PyInstaller/hooks/hook-PySide2.py +0 -22
  267. venv/Lib/site-packages/PyInstaller/hooks/hook-PySide6.Qt3DAnimation.py +0 -14
  268. venv/Lib/site-packages/PyInstaller/hooks/hook-PySide6.Qt3DCore.py +0 -14
  269. venv/Lib/site-packages/PyInstaller/hooks/hook-PySide6.Qt3DExtras.py +0 -14
  270. venv/Lib/site-packages/PyInstaller/hooks/hook-PySide6.Qt3DInput.py +0 -14
  271. venv/Lib/site-packages/PyInstaller/hooks/hook-PySide6.Qt3DLogic.py +0 -14
  272. venv/Lib/site-packages/PyInstaller/hooks/hook-PySide6.Qt3DRender.py +0 -14
  273. venv/Lib/site-packages/PyInstaller/hooks/hook-PySide6.QtAxContainer.py +0 -14
  274. venv/Lib/site-packages/PyInstaller/hooks/hook-PySide6.QtBluetooth.py +0 -14
  275. venv/Lib/site-packages/PyInstaller/hooks/hook-PySide6.QtCharts.py +0 -14
  276. venv/Lib/site-packages/PyInstaller/hooks/hook-PySide6.QtConcurrent.py +0 -14
  277. venv/Lib/site-packages/PyInstaller/hooks/hook-PySide6.QtCore.py +0 -14
  278. venv/Lib/site-packages/PyInstaller/hooks/hook-PySide6.QtDBus.py +0 -14
  279. venv/Lib/site-packages/PyInstaller/hooks/hook-PySide6.QtDataVisualization.py +0 -14
  280. venv/Lib/site-packages/PyInstaller/hooks/hook-PySide6.QtDesigner.py +0 -14
  281. venv/Lib/site-packages/PyInstaller/hooks/hook-PySide6.QtGui.py +0 -14
  282. venv/Lib/site-packages/PyInstaller/hooks/hook-PySide6.QtHelp.py +0 -14
  283. venv/Lib/site-packages/PyInstaller/hooks/hook-PySide6.QtHttpServer.py +0 -14
  284. venv/Lib/site-packages/PyInstaller/hooks/hook-PySide6.QtMultimedia.py +0 -19
  285. venv/Lib/site-packages/PyInstaller/hooks/hook-PySide6.QtMultimediaWidgets.py +0 -14
  286. venv/Lib/site-packages/PyInstaller/hooks/hook-PySide6.QtNetwork.py +0 -15
  287. venv/Lib/site-packages/PyInstaller/hooks/hook-PySide6.QtNetworkAuth.py +0 -14
  288. venv/Lib/site-packages/PyInstaller/hooks/hook-PySide6.QtNfc.py +0 -14
  289. venv/Lib/site-packages/PyInstaller/hooks/hook-PySide6.QtOpenGL.py +0 -14
  290. venv/Lib/site-packages/PyInstaller/hooks/hook-PySide6.QtOpenGLWidgets.py +0 -14
  291. venv/Lib/site-packages/PyInstaller/hooks/hook-PySide6.QtPdf.py +0 -14
  292. venv/Lib/site-packages/PyInstaller/hooks/hook-PySide6.QtPdfWidgets.py +0 -14
  293. venv/Lib/site-packages/PyInstaller/hooks/hook-PySide6.QtPositioning.py +0 -14
  294. venv/Lib/site-packages/PyInstaller/hooks/hook-PySide6.QtPrintSupport.py +0 -14
  295. venv/Lib/site-packages/PyInstaller/hooks/hook-PySide6.QtQml.py +0 -17
  296. venv/Lib/site-packages/PyInstaller/hooks/hook-PySide6.QtQuick.py +0 -14
  297. venv/Lib/site-packages/PyInstaller/hooks/hook-PySide6.QtQuick3D.py +0 -14
  298. venv/Lib/site-packages/PyInstaller/hooks/hook-PySide6.QtQuickControls2.py +0 -16
  299. venv/Lib/site-packages/PyInstaller/hooks/hook-PySide6.QtQuickWidgets.py +0 -14
  300. venv/Lib/site-packages/PyInstaller/hooks/hook-PySide6.QtRemoteObjects.py +0 -14
  301. venv/Lib/site-packages/PyInstaller/hooks/hook-PySide6.QtScxml.py +0 -14
  302. venv/Lib/site-packages/PyInstaller/hooks/hook-PySide6.QtSensors.py +0 -14
  303. venv/Lib/site-packages/PyInstaller/hooks/hook-PySide6.QtSerialPort.py +0 -14
  304. venv/Lib/site-packages/PyInstaller/hooks/hook-PySide6.QtSpatialAudio.py +0 -14
  305. venv/Lib/site-packages/PyInstaller/hooks/hook-PySide6.QtSql.py +0 -14
  306. venv/Lib/site-packages/PyInstaller/hooks/hook-PySide6.QtStateMachine.py +0 -14
  307. venv/Lib/site-packages/PyInstaller/hooks/hook-PySide6.QtSvg.py +0 -14
  308. venv/Lib/site-packages/PyInstaller/hooks/hook-PySide6.QtSvgWidgets.py +0 -14
  309. venv/Lib/site-packages/PyInstaller/hooks/hook-PySide6.QtTest.py +0 -14
  310. venv/Lib/site-packages/PyInstaller/hooks/hook-PySide6.QtUiTools.py +0 -14
  311. venv/Lib/site-packages/PyInstaller/hooks/hook-PySide6.QtWebChannel.py +0 -14
  312. venv/Lib/site-packages/PyInstaller/hooks/hook-PySide6.QtWebEngineCore.py +0 -29
  313. venv/Lib/site-packages/PyInstaller/hooks/hook-PySide6.QtWebEngineQuick.py +0 -14
  314. venv/Lib/site-packages/PyInstaller/hooks/hook-PySide6.QtWebEngineWidgets.py +0 -14
  315. venv/Lib/site-packages/PyInstaller/hooks/hook-PySide6.QtWebSockets.py +0 -14
  316. venv/Lib/site-packages/PyInstaller/hooks/hook-PySide6.QtWidgets.py +0 -14
  317. venv/Lib/site-packages/PyInstaller/hooks/hook-PySide6.QtXml.py +0 -14
  318. venv/Lib/site-packages/PyInstaller/hooks/hook-PySide6.py +0 -25
  319. venv/Lib/site-packages/PyInstaller/hooks/hook-_tkinter.py +0 -29
  320. venv/Lib/site-packages/PyInstaller/hooks/hook-babel.py +0 -16
  321. venv/Lib/site-packages/PyInstaller/hooks/hook-difflib.py +0 -13
  322. venv/Lib/site-packages/PyInstaller/hooks/hook-distutils.py +0 -33
  323. venv/Lib/site-packages/PyInstaller/hooks/hook-distutils.util.py +0 -13
  324. venv/Lib/site-packages/PyInstaller/hooks/hook-django.contrib.sessions.py +0 -14
  325. venv/Lib/site-packages/PyInstaller/hooks/hook-django.core.cache.py +0 -14
  326. venv/Lib/site-packages/PyInstaller/hooks/hook-django.core.mail.py +0 -25
  327. venv/Lib/site-packages/PyInstaller/hooks/hook-django.core.management.py +0 -19
  328. venv/Lib/site-packages/PyInstaller/hooks/hook-django.db.backends.mysql.base.py +0 -13
  329. venv/Lib/site-packages/PyInstaller/hooks/hook-django.db.backends.oracle.base.py +0 -12
  330. venv/Lib/site-packages/PyInstaller/hooks/hook-django.db.backends.py +0 -25
  331. venv/Lib/site-packages/PyInstaller/hooks/hook-django.py +0 -92
  332. venv/Lib/site-packages/PyInstaller/hooks/hook-django.template.loaders.py +0 -14
  333. venv/Lib/site-packages/PyInstaller/hooks/hook-encodings.py +0 -14
  334. venv/Lib/site-packages/PyInstaller/hooks/hook-gevent.py +0 -24
  335. venv/Lib/site-packages/PyInstaller/hooks/hook-gi.py +0 -12
  336. venv/Lib/site-packages/PyInstaller/hooks/hook-gi.repository.Adw.py +0 -16
  337. venv/Lib/site-packages/PyInstaller/hooks/hook-gi.repository.Atk.py +0 -29
  338. venv/Lib/site-packages/PyInstaller/hooks/hook-gi.repository.Champlain.py +0 -16
  339. venv/Lib/site-packages/PyInstaller/hooks/hook-gi.repository.Clutter.py +0 -16
  340. venv/Lib/site-packages/PyInstaller/hooks/hook-gi.repository.GIRepository.py +0 -16
  341. venv/Lib/site-packages/PyInstaller/hooks/hook-gi.repository.GLib.py +0 -42
  342. venv/Lib/site-packages/PyInstaller/hooks/hook-gi.repository.GModule.py +0 -16
  343. venv/Lib/site-packages/PyInstaller/hooks/hook-gi.repository.GObject.py +0 -19
  344. venv/Lib/site-packages/PyInstaller/hooks/hook-gi.repository.Gdk.py +0 -36
  345. venv/Lib/site-packages/PyInstaller/hooks/hook-gi.repository.GdkPixbuf.py +0 -141
  346. venv/Lib/site-packages/PyInstaller/hooks/hook-gi.repository.Gio.py +0 -63
  347. venv/Lib/site-packages/PyInstaller/hooks/hook-gi.repository.Graphene.py +0 -16
  348. venv/Lib/site-packages/PyInstaller/hooks/hook-gi.repository.Gsk.py +0 -16
  349. venv/Lib/site-packages/PyInstaller/hooks/hook-gi.repository.Gst.py +0 -93
  350. venv/Lib/site-packages/PyInstaller/hooks/hook-gi.repository.GstAllocators.py +0 -16
  351. venv/Lib/site-packages/PyInstaller/hooks/hook-gi.repository.GstApp.py +0 -16
  352. venv/Lib/site-packages/PyInstaller/hooks/hook-gi.repository.GstAudio.py +0 -16
  353. venv/Lib/site-packages/PyInstaller/hooks/hook-gi.repository.GstBadAudio.py +0 -16
  354. venv/Lib/site-packages/PyInstaller/hooks/hook-gi.repository.GstBase.py +0 -16
  355. venv/Lib/site-packages/PyInstaller/hooks/hook-gi.repository.GstCheck.py +0 -16
  356. venv/Lib/site-packages/PyInstaller/hooks/hook-gi.repository.GstCodecs.py +0 -16
  357. venv/Lib/site-packages/PyInstaller/hooks/hook-gi.repository.GstController.py +0 -16
  358. venv/Lib/site-packages/PyInstaller/hooks/hook-gi.repository.GstGL.py +0 -16
  359. venv/Lib/site-packages/PyInstaller/hooks/hook-gi.repository.GstGLEGL.py +0 -16
  360. venv/Lib/site-packages/PyInstaller/hooks/hook-gi.repository.GstGLWayland.py +0 -16
  361. venv/Lib/site-packages/PyInstaller/hooks/hook-gi.repository.GstGLX11.py +0 -16
  362. venv/Lib/site-packages/PyInstaller/hooks/hook-gi.repository.GstInsertBin.py +0 -16
  363. venv/Lib/site-packages/PyInstaller/hooks/hook-gi.repository.GstMpegts.py +0 -16
  364. venv/Lib/site-packages/PyInstaller/hooks/hook-gi.repository.GstNet.py +0 -16
  365. venv/Lib/site-packages/PyInstaller/hooks/hook-gi.repository.GstPbutils.py +0 -16
  366. venv/Lib/site-packages/PyInstaller/hooks/hook-gi.repository.GstPlay.py +0 -16
  367. venv/Lib/site-packages/PyInstaller/hooks/hook-gi.repository.GstPlayer.py +0 -16
  368. venv/Lib/site-packages/PyInstaller/hooks/hook-gi.repository.GstRtp.py +0 -16
  369. venv/Lib/site-packages/PyInstaller/hooks/hook-gi.repository.GstRtsp.py +0 -16
  370. venv/Lib/site-packages/PyInstaller/hooks/hook-gi.repository.GstRtspServer.py +0 -16
  371. venv/Lib/site-packages/PyInstaller/hooks/hook-gi.repository.GstSdp.py +0 -16
  372. venv/Lib/site-packages/PyInstaller/hooks/hook-gi.repository.GstTag.py +0 -16
  373. venv/Lib/site-packages/PyInstaller/hooks/hook-gi.repository.GstTranscoder.py +0 -16
  374. venv/Lib/site-packages/PyInstaller/hooks/hook-gi.repository.GstVideo.py +0 -16
  375. venv/Lib/site-packages/PyInstaller/hooks/hook-gi.repository.GstVulkan.py +0 -16
  376. venv/Lib/site-packages/PyInstaller/hooks/hook-gi.repository.GstVulkanWayland.py +0 -16
  377. venv/Lib/site-packages/PyInstaller/hooks/hook-gi.repository.GstVulkanXCB.py +0 -16
  378. venv/Lib/site-packages/PyInstaller/hooks/hook-gi.repository.GstWebRTC.py +0 -16
  379. venv/Lib/site-packages/PyInstaller/hooks/hook-gi.repository.Gtk.py +0 -59
  380. venv/Lib/site-packages/PyInstaller/hooks/hook-gi.repository.GtkChamplain.py +0 -16
  381. venv/Lib/site-packages/PyInstaller/hooks/hook-gi.repository.GtkClutter.py +0 -16
  382. venv/Lib/site-packages/PyInstaller/hooks/hook-gi.repository.GtkSource.py +0 -31
  383. venv/Lib/site-packages/PyInstaller/hooks/hook-gi.repository.GtkosxApplication.py +0 -18
  384. venv/Lib/site-packages/PyInstaller/hooks/hook-gi.repository.HarfBuzz.py +0 -16
  385. venv/Lib/site-packages/PyInstaller/hooks/hook-gi.repository.Pango.py +0 -16
  386. venv/Lib/site-packages/PyInstaller/hooks/hook-gi.repository.PangoCairo.py +0 -16
  387. venv/Lib/site-packages/PyInstaller/hooks/hook-gi.repository.cairo.py +0 -16
  388. venv/Lib/site-packages/PyInstaller/hooks/hook-gi.repository.freetype2.py +0 -16
  389. venv/Lib/site-packages/PyInstaller/hooks/hook-gi.repository.xlib.py +0 -16
  390. venv/Lib/site-packages/PyInstaller/hooks/hook-heapq.py +0 -13
  391. venv/Lib/site-packages/PyInstaller/hooks/hook-idlelib.py +0 -14
  392. venv/Lib/site-packages/PyInstaller/hooks/hook-importlib_metadata.py +0 -24
  393. venv/Lib/site-packages/PyInstaller/hooks/hook-importlib_resources.py +0 -22
  394. venv/Lib/site-packages/PyInstaller/hooks/hook-keyring.py +0 -19
  395. venv/Lib/site-packages/PyInstaller/hooks/hook-kivy.py +0 -25
  396. venv/Lib/site-packages/PyInstaller/hooks/hook-lib2to3.py +0 -16
  397. venv/Lib/site-packages/PyInstaller/hooks/hook-matplotlib.backends.py +0 -218
  398. venv/Lib/site-packages/PyInstaller/hooks/hook-matplotlib.numerix.py +0 -21
  399. venv/Lib/site-packages/PyInstaller/hooks/hook-matplotlib.py +0 -23
  400. venv/Lib/site-packages/PyInstaller/hooks/hook-multiprocessing.util.py +0 -16
  401. venv/Lib/site-packages/PyInstaller/hooks/hook-numpy._pytesttester.py +0 -16
  402. venv/Lib/site-packages/PyInstaller/hooks/hook-numpy.py +0 -59
  403. venv/Lib/site-packages/PyInstaller/hooks/hook-packaging.py +0 -13
  404. venv/Lib/site-packages/PyInstaller/hooks/hook-pandas.io.formats.style.py +0 -18
  405. venv/Lib/site-packages/PyInstaller/hooks/hook-pandas.plotting.py +0 -18
  406. venv/Lib/site-packages/PyInstaller/hooks/hook-pandas.py +0 -20
  407. venv/Lib/site-packages/PyInstaller/hooks/hook-pickle.py +0 -13
  408. venv/Lib/site-packages/PyInstaller/hooks/hook-pkg_resources.py +0 -57
  409. venv/Lib/site-packages/PyInstaller/hooks/hook-platform.py +0 -16
  410. venv/Lib/site-packages/PyInstaller/hooks/hook-pygments.py +0 -29
  411. venv/Lib/site-packages/PyInstaller/hooks/hook-pytz.py +0 -16
  412. venv/Lib/site-packages/PyInstaller/hooks/hook-pytzdata.py +0 -14
  413. venv/Lib/site-packages/PyInstaller/hooks/hook-qtawesome.py +0 -19
  414. venv/Lib/site-packages/PyInstaller/hooks/hook-scapy.layers.all.py +0 -19
  415. venv/Lib/site-packages/PyInstaller/hooks/hook-scipy.io.matlab.py +0 -13
  416. venv/Lib/site-packages/PyInstaller/hooks/hook-scipy.linalg.py +0 -13
  417. venv/Lib/site-packages/PyInstaller/hooks/hook-scipy.py +0 -35
  418. venv/Lib/site-packages/PyInstaller/hooks/hook-scipy.sparse.csgraph.py +0 -13
  419. venv/Lib/site-packages/PyInstaller/hooks/hook-scipy.spatial.transform.rotation.py +0 -17
  420. venv/Lib/site-packages/PyInstaller/hooks/hook-scipy.special._ellip_harm_2.py +0 -30
  421. venv/Lib/site-packages/PyInstaller/hooks/hook-scipy.special._ufuncs.py +0 -14
  422. venv/Lib/site-packages/PyInstaller/hooks/hook-scipy.stats._stats.py +0 -15
  423. venv/Lib/site-packages/PyInstaller/hooks/hook-scrapy.py +0 -18
  424. venv/Lib/site-packages/PyInstaller/hooks/hook-setuptools.msvc.py +0 -13
  425. venv/Lib/site-packages/PyInstaller/hooks/hook-setuptools.py +0 -41
  426. venv/Lib/site-packages/PyInstaller/hooks/hook-shelve.py +0 -14
  427. venv/Lib/site-packages/PyInstaller/hooks/hook-sphinx.py +0 -41
  428. venv/Lib/site-packages/PyInstaller/hooks/hook-sqlalchemy.py +0 -77
  429. venv/Lib/site-packages/PyInstaller/hooks/hook-sqlite3.py +0 -19
  430. venv/Lib/site-packages/PyInstaller/hooks/hook-sysconfig.py +0 -29
  431. venv/Lib/site-packages/PyInstaller/hooks/hook-wcwidth.py +0 -14
  432. venv/Lib/site-packages/PyInstaller/hooks/hook-win32ctypes.core.py +0 -21
  433. venv/Lib/site-packages/PyInstaller/hooks/hook-xml.dom.domreg.py +0 -13
  434. venv/Lib/site-packages/PyInstaller/hooks/hook-xml.etree.cElementTree.py +0 -13
  435. venv/Lib/site-packages/PyInstaller/hooks/hook-xml.py +0 -12
  436. venv/Lib/site-packages/PyInstaller/hooks/hook-zope.interface.py +0 -12
  437. venv/Lib/site-packages/PyInstaller/hooks/pre_find_module_path/__init__.py +0 -1
  438. venv/Lib/site-packages/PyInstaller/hooks/pre_find_module_path/hook-PyQt5.uic.port_v2.py +0 -15
  439. venv/Lib/site-packages/PyInstaller/hooks/pre_find_module_path/hook-distutils.py +0 -46
  440. venv/Lib/site-packages/PyInstaller/hooks/pre_find_module_path/hook-pyi_splash.py +0 -36
  441. venv/Lib/site-packages/PyInstaller/hooks/pre_safe_import_module/__init__.py +0 -1
  442. venv/Lib/site-packages/PyInstaller/hooks/pre_safe_import_module/hook-gi.py +0 -37
  443. venv/Lib/site-packages/PyInstaller/hooks/pre_safe_import_module/hook-gi.repository.Adw.py +0 -16
  444. venv/Lib/site-packages/PyInstaller/hooks/pre_safe_import_module/hook-gi.repository.Atk.py +0 -16
  445. venv/Lib/site-packages/PyInstaller/hooks/pre_safe_import_module/hook-gi.repository.Champlain.py +0 -16
  446. venv/Lib/site-packages/PyInstaller/hooks/pre_safe_import_module/hook-gi.repository.Clutter.py +0 -16
  447. venv/Lib/site-packages/PyInstaller/hooks/pre_safe_import_module/hook-gi.repository.GIRepository.py +0 -16
  448. venv/Lib/site-packages/PyInstaller/hooks/pre_safe_import_module/hook-gi.repository.GLib.py +0 -16
  449. venv/Lib/site-packages/PyInstaller/hooks/pre_safe_import_module/hook-gi.repository.GModule.py +0 -16
  450. venv/Lib/site-packages/PyInstaller/hooks/pre_safe_import_module/hook-gi.repository.GObject.py +0 -16
  451. venv/Lib/site-packages/PyInstaller/hooks/pre_safe_import_module/hook-gi.repository.Gdk.py +0 -16
  452. venv/Lib/site-packages/PyInstaller/hooks/pre_safe_import_module/hook-gi.repository.GdkPixbuf.py +0 -16
  453. venv/Lib/site-packages/PyInstaller/hooks/pre_safe_import_module/hook-gi.repository.Gio.py +0 -16
  454. venv/Lib/site-packages/PyInstaller/hooks/pre_safe_import_module/hook-gi.repository.Graphene.py +0 -16
  455. venv/Lib/site-packages/PyInstaller/hooks/pre_safe_import_module/hook-gi.repository.Gsk.py +0 -16
  456. venv/Lib/site-packages/PyInstaller/hooks/pre_safe_import_module/hook-gi.repository.Gst.py +0 -16
  457. venv/Lib/site-packages/PyInstaller/hooks/pre_safe_import_module/hook-gi.repository.GstAllocators.py +0 -16
  458. venv/Lib/site-packages/PyInstaller/hooks/pre_safe_import_module/hook-gi.repository.GstApp.py +0 -16
  459. venv/Lib/site-packages/PyInstaller/hooks/pre_safe_import_module/hook-gi.repository.GstAudio.py +0 -16
  460. venv/Lib/site-packages/PyInstaller/hooks/pre_safe_import_module/hook-gi.repository.GstBadAudio.py +0 -16
  461. venv/Lib/site-packages/PyInstaller/hooks/pre_safe_import_module/hook-gi.repository.GstBase.py +0 -16
  462. venv/Lib/site-packages/PyInstaller/hooks/pre_safe_import_module/hook-gi.repository.GstCheck.py +0 -16
  463. venv/Lib/site-packages/PyInstaller/hooks/pre_safe_import_module/hook-gi.repository.GstCodecs.py +0 -16
  464. venv/Lib/site-packages/PyInstaller/hooks/pre_safe_import_module/hook-gi.repository.GstController.py +0 -16
  465. venv/Lib/site-packages/PyInstaller/hooks/pre_safe_import_module/hook-gi.repository.GstGL.py +0 -16
  466. venv/Lib/site-packages/PyInstaller/hooks/pre_safe_import_module/hook-gi.repository.GstGLEGL.py +0 -16
  467. venv/Lib/site-packages/PyInstaller/hooks/pre_safe_import_module/hook-gi.repository.GstGLWayland.py +0 -16
  468. venv/Lib/site-packages/PyInstaller/hooks/pre_safe_import_module/hook-gi.repository.GstGLX11.py +0 -16
  469. venv/Lib/site-packages/PyInstaller/hooks/pre_safe_import_module/hook-gi.repository.GstInsertBin.py +0 -16
  470. venv/Lib/site-packages/PyInstaller/hooks/pre_safe_import_module/hook-gi.repository.GstMpegts.py +0 -16
  471. venv/Lib/site-packages/PyInstaller/hooks/pre_safe_import_module/hook-gi.repository.GstNet.py +0 -16
  472. venv/Lib/site-packages/PyInstaller/hooks/pre_safe_import_module/hook-gi.repository.GstPbutils.py +0 -16
  473. venv/Lib/site-packages/PyInstaller/hooks/pre_safe_import_module/hook-gi.repository.GstPlay.py +0 -16
  474. venv/Lib/site-packages/PyInstaller/hooks/pre_safe_import_module/hook-gi.repository.GstPlayer.py +0 -16
  475. venv/Lib/site-packages/PyInstaller/hooks/pre_safe_import_module/hook-gi.repository.GstRtp.py +0 -16
  476. venv/Lib/site-packages/PyInstaller/hooks/pre_safe_import_module/hook-gi.repository.GstRtsp.py +0 -16
  477. venv/Lib/site-packages/PyInstaller/hooks/pre_safe_import_module/hook-gi.repository.GstRtspServer.py +0 -16
  478. venv/Lib/site-packages/PyInstaller/hooks/pre_safe_import_module/hook-gi.repository.GstSdp.py +0 -16
  479. venv/Lib/site-packages/PyInstaller/hooks/pre_safe_import_module/hook-gi.repository.GstTag.py +0 -16
  480. venv/Lib/site-packages/PyInstaller/hooks/pre_safe_import_module/hook-gi.repository.GstTranscoder.py +0 -16
  481. venv/Lib/site-packages/PyInstaller/hooks/pre_safe_import_module/hook-gi.repository.GstVideo.py +0 -16
  482. venv/Lib/site-packages/PyInstaller/hooks/pre_safe_import_module/hook-gi.repository.GstVulkan.py +0 -16
  483. venv/Lib/site-packages/PyInstaller/hooks/pre_safe_import_module/hook-gi.repository.GstVulkanWayland.py +0 -16
  484. venv/Lib/site-packages/PyInstaller/hooks/pre_safe_import_module/hook-gi.repository.GstVulkanXCB.py +0 -16
  485. venv/Lib/site-packages/PyInstaller/hooks/pre_safe_import_module/hook-gi.repository.GstWebRTC.py +0 -16
  486. venv/Lib/site-packages/PyInstaller/hooks/pre_safe_import_module/hook-gi.repository.Gtk.py +0 -16
  487. venv/Lib/site-packages/PyInstaller/hooks/pre_safe_import_module/hook-gi.repository.GtkChamplain.py +0 -16
  488. venv/Lib/site-packages/PyInstaller/hooks/pre_safe_import_module/hook-gi.repository.GtkClutter.py +0 -16
  489. venv/Lib/site-packages/PyInstaller/hooks/pre_safe_import_module/hook-gi.repository.GtkSource.py +0 -16
  490. venv/Lib/site-packages/PyInstaller/hooks/pre_safe_import_module/hook-gi.repository.GtkosxApplication.py +0 -16
  491. venv/Lib/site-packages/PyInstaller/hooks/pre_safe_import_module/hook-gi.repository.HarfBuzz.py +0 -16
  492. venv/Lib/site-packages/PyInstaller/hooks/pre_safe_import_module/hook-gi.repository.Pango.py +0 -16
  493. venv/Lib/site-packages/PyInstaller/hooks/pre_safe_import_module/hook-gi.repository.PangoCairo.py +0 -16
  494. venv/Lib/site-packages/PyInstaller/hooks/pre_safe_import_module/hook-gi.repository.cairo.py +0 -16
  495. venv/Lib/site-packages/PyInstaller/hooks/pre_safe_import_module/hook-gi.repository.freetype2.py +0 -16
  496. venv/Lib/site-packages/PyInstaller/hooks/pre_safe_import_module/hook-gi.repository.xlib.py +0 -16
  497. venv/Lib/site-packages/PyInstaller/hooks/pre_safe_import_module/hook-setuptools.extern.six.moves.py +0 -35
  498. venv/Lib/site-packages/PyInstaller/hooks/pre_safe_import_module/hook-six.moves.py +0 -60
  499. venv/Lib/site-packages/PyInstaller/hooks/pre_safe_import_module/hook-urllib3.packages.six.moves.py +0 -30
  500. venv/Lib/site-packages/PyInstaller/hooks/rthooks/__init__.py +0 -1
  501. venv/Lib/site-packages/PyInstaller/hooks/rthooks/pyi_rth__tkinter.py +0 -30
  502. venv/Lib/site-packages/PyInstaller/hooks/rthooks/pyi_rth_django.py +0 -30
  503. venv/Lib/site-packages/PyInstaller/hooks/rthooks/pyi_rth_gdkpixbuf.py +0 -35
  504. venv/Lib/site-packages/PyInstaller/hooks/rthooks/pyi_rth_gi.py +0 -15
  505. venv/Lib/site-packages/PyInstaller/hooks/rthooks/pyi_rth_gio.py +0 -15
  506. venv/Lib/site-packages/PyInstaller/hooks/rthooks/pyi_rth_glib.py +0 -31
  507. venv/Lib/site-packages/PyInstaller/hooks/rthooks/pyi_rth_gstreamer.py +0 -26
  508. venv/Lib/site-packages/PyInstaller/hooks/rthooks/pyi_rth_gtk.py +0 -21
  509. venv/Lib/site-packages/PyInstaller/hooks/rthooks/pyi_rth_inspect.py +0 -44
  510. venv/Lib/site-packages/PyInstaller/hooks/rthooks/pyi_rth_kivy.py +0 -18
  511. venv/Lib/site-packages/PyInstaller/hooks/rthooks/pyi_rth_mplconfig.py +0 -38
  512. venv/Lib/site-packages/PyInstaller/hooks/rthooks/pyi_rth_multiprocessing.py +0 -95
  513. venv/Lib/site-packages/PyInstaller/hooks/rthooks/pyi_rth_pkgres.py +0 -200
  514. venv/Lib/site-packages/PyInstaller/hooks/rthooks/pyi_rth_pkgutil.py +0 -86
  515. venv/Lib/site-packages/PyInstaller/hooks/rthooks/pyi_rth_pyqt5.py +0 -28
  516. venv/Lib/site-packages/PyInstaller/hooks/rthooks/pyi_rth_pyqt5webengine.py +0 -32
  517. venv/Lib/site-packages/PyInstaller/hooks/rthooks/pyi_rth_pyqt6.py +0 -28
  518. venv/Lib/site-packages/PyInstaller/hooks/rthooks/pyi_rth_pyqt6webengine.py +0 -35
  519. venv/Lib/site-packages/PyInstaller/hooks/rthooks/pyi_rth_pyside2.py +0 -26
  520. venv/Lib/site-packages/PyInstaller/hooks/rthooks/pyi_rth_pyside2webengine.py +0 -25
  521. venv/Lib/site-packages/PyInstaller/hooks/rthooks/pyi_rth_pyside6.py +0 -26
  522. venv/Lib/site-packages/PyInstaller/hooks/rthooks/pyi_rth_pyside6webengine.py +0 -31
  523. venv/Lib/site-packages/PyInstaller/hooks/rthooks/pyi_rth_setuptools.py +0 -35
  524. venv/Lib/site-packages/PyInstaller/hooks/rthooks/pyi_rth_win32comgenpy.py +0 -52
  525. venv/Lib/site-packages/PyInstaller/isolated/__init__.py +0 -31
  526. venv/Lib/site-packages/PyInstaller/isolated/_child.py +0 -95
  527. venv/Lib/site-packages/PyInstaller/isolated/_parent.py +0 -406
  528. venv/Lib/site-packages/PyInstaller/lib/__init__.py +0 -1
  529. venv/Lib/site-packages/PyInstaller/lib/modulegraph/__init__.py +0 -1
  530. venv/Lib/site-packages/PyInstaller/lib/modulegraph/__main__.py +0 -89
  531. venv/Lib/site-packages/PyInstaller/lib/modulegraph/_compat.py +0 -25
  532. venv/Lib/site-packages/PyInstaller/lib/modulegraph/find_modules.py +0 -338
  533. venv/Lib/site-packages/PyInstaller/lib/modulegraph/modulegraph.py +0 -3309
  534. venv/Lib/site-packages/PyInstaller/lib/modulegraph/util.py +0 -149
  535. venv/Lib/site-packages/PyInstaller/lib/modulegraph/zipio.py +0 -418
  536. venv/Lib/site-packages/PyInstaller/loader/__init__.py +0 -1
  537. venv/Lib/site-packages/PyInstaller/loader/pyiboot01_bootstrap.py +0 -92
  538. venv/Lib/site-packages/PyInstaller/loader/pyimod01_archive.py +0 -307
  539. venv/Lib/site-packages/PyInstaller/loader/pyimod02_importers.py +0 -604
  540. venv/Lib/site-packages/PyInstaller/loader/pyimod03_ctypes.py +0 -131
  541. venv/Lib/site-packages/PyInstaller/loader/pyimod04_pywin32.py +0 -48
  542. venv/Lib/site-packages/PyInstaller/log.py +0 -56
  543. venv/Lib/site-packages/PyInstaller/utils/__init__.py +0 -1
  544. venv/Lib/site-packages/PyInstaller/utils/_gitrevision.py +0 -10
  545. venv/Lib/site-packages/PyInstaller/utils/cliutils/__init__.py +0 -1
  546. venv/Lib/site-packages/PyInstaller/utils/cliutils/archive_viewer.py +0 -271
  547. venv/Lib/site-packages/PyInstaller/utils/cliutils/bindepend.py +0 -52
  548. venv/Lib/site-packages/PyInstaller/utils/cliutils/grab_version.py +0 -51
  549. venv/Lib/site-packages/PyInstaller/utils/cliutils/makespec.py +0 -53
  550. venv/Lib/site-packages/PyInstaller/utils/cliutils/set_version.py +0 -42
  551. venv/Lib/site-packages/PyInstaller/utils/conftest.py +0 -576
  552. venv/Lib/site-packages/PyInstaller/utils/git.py +0 -59
  553. venv/Lib/site-packages/PyInstaller/utils/hooks/__init__.py +0 -1397
  554. venv/Lib/site-packages/PyInstaller/utils/hooks/conda.py +0 -400
  555. venv/Lib/site-packages/PyInstaller/utils/hooks/django.py +0 -151
  556. venv/Lib/site-packages/PyInstaller/utils/hooks/gi.py +0 -308
  557. venv/Lib/site-packages/PyInstaller/utils/hooks/qt/__init__.py +0 -845
  558. venv/Lib/site-packages/PyInstaller/utils/hooks/qt/_modules_info.py +0 -439
  559. venv/Lib/site-packages/PyInstaller/utils/hooks/tcl_tk.py +0 -253
  560. venv/Lib/site-packages/PyInstaller/utils/hooks/win32.py +0 -50
  561. venv/Lib/site-packages/PyInstaller/utils/misc.py +0 -223
  562. venv/Lib/site-packages/PyInstaller/utils/osx.py +0 -359
  563. venv/Lib/site-packages/PyInstaller/utils/run_tests.py +0 -69
  564. venv/Lib/site-packages/PyInstaller/utils/tests.py +0 -154
  565. venv/Lib/site-packages/PyInstaller/utils/win32/__init__.py +0 -1
  566. venv/Lib/site-packages/PyInstaller/utils/win32/icon.py +0 -248
  567. venv/Lib/site-packages/PyInstaller/utils/win32/versioninfo.py +0 -585
  568. venv/Lib/site-packages/PyInstaller/utils/win32/winmanifest.py +0 -1083
  569. venv/Lib/site-packages/PyInstaller/utils/win32/winresource.py +0 -245
  570. venv/Lib/site-packages/PyInstaller/utils/win32/winutils.py +0 -358
  571. venv/Lib/site-packages/PySide6/__init__.py +0 -124
  572. venv/Lib/site-packages/PySide6/_config.py +0 -16
  573. venv/Lib/site-packages/PySide6/_git_pyside_version.py +0 -19
  574. venv/Lib/site-packages/PySide6/examples/3d/simple3d/simple3d.py +0 -127
  575. venv/Lib/site-packages/PySide6/examples/axcontainer/axviewer/axviewer.py +0 -47
  576. venv/Lib/site-packages/PySide6/examples/bluetooth/btscanner/device.py +0 -129
  577. venv/Lib/site-packages/PySide6/examples/bluetooth/btscanner/main.py +0 -18
  578. venv/Lib/site-packages/PySide6/examples/bluetooth/btscanner/service.py +0 -48
  579. venv/Lib/site-packages/PySide6/examples/bluetooth/btscanner/ui_device.py +0 -90
  580. venv/Lib/site-packages/PySide6/examples/bluetooth/btscanner/ui_service.py +0 -57
  581. venv/Lib/site-packages/PySide6/examples/bluetooth/heartrate_game/bluetoothbaseclass.py +0 -40
  582. venv/Lib/site-packages/PySide6/examples/bluetooth/heartrate_game/connectionhandler.py +0 -51
  583. venv/Lib/site-packages/PySide6/examples/bluetooth/heartrate_game/devicefinder.py +0 -122
  584. venv/Lib/site-packages/PySide6/examples/bluetooth/heartrate_game/devicehandler.py +0 -307
  585. venv/Lib/site-packages/PySide6/examples/bluetooth/heartrate_game/deviceinfo.py +0 -38
  586. venv/Lib/site-packages/PySide6/examples/bluetooth/heartrate_game/heartrate_global.py +0 -6
  587. venv/Lib/site-packages/PySide6/examples/bluetooth/heartrate_game/main.py +0 -53
  588. venv/Lib/site-packages/PySide6/examples/bluetooth/heartrate_server/heartrate_server.py +0 -94
  589. venv/Lib/site-packages/PySide6/examples/charts/areachart/areachart.py +0 -67
  590. venv/Lib/site-packages/PySide6/examples/charts/audio/audio.py +0 -91
  591. venv/Lib/site-packages/PySide6/examples/charts/barchart/barchart.py +0 -69
  592. venv/Lib/site-packages/PySide6/examples/charts/callout/callout.py +0 -220
  593. venv/Lib/site-packages/PySide6/examples/charts/chartthemes/main.py +0 -369
  594. venv/Lib/site-packages/PySide6/examples/charts/chartthemes/ui_themewidget.py +0 -91
  595. venv/Lib/site-packages/PySide6/examples/charts/donutbreakdown/donutbreakdown.py +0 -148
  596. venv/Lib/site-packages/PySide6/examples/charts/dynamicspline/chart.py +0 -52
  597. venv/Lib/site-packages/PySide6/examples/charts/dynamicspline/main.py +0 -27
  598. venv/Lib/site-packages/PySide6/examples/charts/legend/legend.py +0 -225
  599. venv/Lib/site-packages/PySide6/examples/charts/lineandbar/lineandbar.py +0 -81
  600. venv/Lib/site-packages/PySide6/examples/charts/linechart/linechart.py +0 -47
  601. venv/Lib/site-packages/PySide6/examples/charts/logvalueaxis/logvalueaxis.py +0 -57
  602. venv/Lib/site-packages/PySide6/examples/charts/memoryusage/memoryusage.py +0 -92
  603. venv/Lib/site-packages/PySide6/examples/charts/modeldata/modeldata.py +0 -144
  604. venv/Lib/site-packages/PySide6/examples/charts/nesteddonuts/nesteddonuts.py +0 -100
  605. venv/Lib/site-packages/PySide6/examples/charts/percentbarchart/percentbarchart.py +0 -63
  606. venv/Lib/site-packages/PySide6/examples/charts/piechart/piechart.py +0 -50
  607. venv/Lib/site-packages/PySide6/examples/charts/pointselectionandmarkers/pointselectionandmarkers.py +0 -127
  608. venv/Lib/site-packages/PySide6/examples/charts/pointselectionandmarkers/rc_markers.py +0 -275
  609. venv/Lib/site-packages/PySide6/examples/charts/pointselectionandmarkers/utilities.py +0 -67
  610. venv/Lib/site-packages/PySide6/examples/charts/qmlpolarchart/qmlpolarchart.py +0 -28
  611. venv/Lib/site-packages/PySide6/examples/charts/temperaturerecords/temperaturerecords.py +0 -60
  612. venv/Lib/site-packages/PySide6/examples/corelib/ipc/sharedmemory/dialog.py +0 -93
  613. venv/Lib/site-packages/PySide6/examples/corelib/ipc/sharedmemory/main.py +0 -15
  614. venv/Lib/site-packages/PySide6/examples/corelib/ipc/sharedmemory/ui_dialog.py +0 -57
  615. venv/Lib/site-packages/PySide6/examples/corelib/mimetypesbrowser/mainwindow.py +0 -161
  616. venv/Lib/site-packages/PySide6/examples/corelib/mimetypesbrowser/mimetypemodel.py +0 -136
  617. venv/Lib/site-packages/PySide6/examples/corelib/mimetypesbrowser/mimetypesbrowser.py +0 -24
  618. venv/Lib/site-packages/PySide6/examples/corelib/settingseditor/settingseditor.py +0 -757
  619. venv/Lib/site-packages/PySide6/examples/corelib/threads/mandelbrot.py +0 -352
  620. venv/Lib/site-packages/PySide6/examples/datavisualization/bars3d/bars3d.py +0 -80
  621. venv/Lib/site-packages/PySide6/examples/datavisualization/minimalsurface/main.py +0 -54
  622. venv/Lib/site-packages/PySide6/examples/datavisualization/surface/main.py +0 -189
  623. venv/Lib/site-packages/PySide6/examples/datavisualization/surface/surfacegraph.py +0 -253
  624. venv/Lib/site-packages/PySide6/examples/datavisualization/surface_model_numpy/main.py +0 -189
  625. venv/Lib/site-packages/PySide6/examples/datavisualization/surface_model_numpy/surfacegraph.py +0 -295
  626. venv/Lib/site-packages/PySide6/examples/datavisualization/surface_numpy/main.py +0 -189
  627. venv/Lib/site-packages/PySide6/examples/datavisualization/surface_numpy/surfacegraph.py +0 -253
  628. venv/Lib/site-packages/PySide6/examples/dbus/listnames/listnames.py +0 -54
  629. venv/Lib/site-packages/PySide6/examples/dbus/pingpong/ping.py +0 -39
  630. venv/Lib/site-packages/PySide6/examples/dbus/pingpong/pong.py +0 -44
  631. venv/Lib/site-packages/PySide6/examples/designer/taskmenuextension/main.py +0 -16
  632. venv/Lib/site-packages/PySide6/examples/designer/taskmenuextension/registertictactoe.py +0 -13
  633. venv/Lib/site-packages/PySide6/examples/designer/taskmenuextension/tictactoe.py +0 -133
  634. venv/Lib/site-packages/PySide6/examples/designer/taskmenuextension/tictactoeplugin.py +0 -71
  635. venv/Lib/site-packages/PySide6/examples/designer/taskmenuextension/tictactoetaskmenu.py +0 -68
  636. venv/Lib/site-packages/PySide6/examples/external/matplotlib/widget3d/widget3d.py +0 -207
  637. venv/Lib/site-packages/PySide6/examples/external/matplotlib/widget_gaussian/widget_gaussian.py +0 -75
  638. venv/Lib/site-packages/PySide6/examples/external/networkx/main.py +0 -346
  639. venv/Lib/site-packages/PySide6/examples/external/opencv/webcam_pattern_detection.py +0 -170
  640. venv/Lib/site-packages/PySide6/examples/external/pandas/dataframe_model.py +0 -82
  641. venv/Lib/site-packages/PySide6/examples/external/scikit/staining_colors_separation.py +0 -147
  642. venv/Lib/site-packages/PySide6/examples/gui/analogclock/main.py +0 -77
  643. venv/Lib/site-packages/PySide6/examples/httpserver/afterrequest/main.py +0 -36
  644. venv/Lib/site-packages/PySide6/examples/multimedia/audiooutput/audiooutput.py +0 -272
  645. venv/Lib/site-packages/PySide6/examples/multimedia/audiosource/audiosource.py +0 -204
  646. venv/Lib/site-packages/PySide6/examples/multimedia/camera/camera.py +0 -172
  647. venv/Lib/site-packages/PySide6/examples/multimedia/player/player.py +0 -194
  648. venv/Lib/site-packages/PySide6/examples/network/blockingfortuneclient/blockingfortuneclient.py +0 -186
  649. venv/Lib/site-packages/PySide6/examples/network/downloader/downloader.py +0 -178
  650. venv/Lib/site-packages/PySide6/examples/network/fortuneclient/fortuneclient.py +0 -126
  651. venv/Lib/site-packages/PySide6/examples/network/fortuneserver/fortuneserver.py +0 -82
  652. venv/Lib/site-packages/PySide6/examples/network/googlesuggest/googlesuggest.py +0 -137
  653. venv/Lib/site-packages/PySide6/examples/network/googlesuggest/main.py +0 -14
  654. venv/Lib/site-packages/PySide6/examples/network/googlesuggest/searchbox.py +0 -27
  655. venv/Lib/site-packages/PySide6/examples/network/loopback/dialog.py +0 -151
  656. venv/Lib/site-packages/PySide6/examples/network/loopback/main.py +0 -15
  657. venv/Lib/site-packages/PySide6/examples/network/threadedfortuneserver/threadedfortuneserver.py +0 -116
  658. venv/Lib/site-packages/PySide6/examples/networkauth/redditclient/main.py +0 -28
  659. venv/Lib/site-packages/PySide6/examples/networkauth/redditclient/redditmodel.py +0 -70
  660. venv/Lib/site-packages/PySide6/examples/networkauth/redditclient/redditwrapper.py +0 -91
  661. venv/Lib/site-packages/PySide6/examples/opengl/contextinfo/contextinfo.py +0 -262
  662. venv/Lib/site-packages/PySide6/examples/opengl/hellogl2/hellogl2.py +0 -440
  663. venv/Lib/site-packages/PySide6/examples/opengl/textures/textures.py +0 -211
  664. venv/Lib/site-packages/PySide6/examples/opengl/textures/textures_rc.py +0 -762
  665. venv/Lib/site-packages/PySide6/examples/opengl/threadedqopenglwidget/glwidget.py +0 -79
  666. venv/Lib/site-packages/PySide6/examples/opengl/threadedqopenglwidget/main.py +0 -93
  667. venv/Lib/site-packages/PySide6/examples/opengl/threadedqopenglwidget/mainwindow.py +0 -24
  668. venv/Lib/site-packages/PySide6/examples/opengl/threadedqopenglwidget/renderer.py +0 -326
  669. venv/Lib/site-packages/PySide6/examples/pdf/quickpdfviewer/main.py +0 -49
  670. venv/Lib/site-packages/PySide6/examples/pdf/quickpdfviewer/rc_viewer.py +0 -5505
  671. venv/Lib/site-packages/PySide6/examples/pdfwidgets/pdfviewer/main.py +0 -27
  672. venv/Lib/site-packages/PySide6/examples/pdfwidgets/pdfviewer/mainwindow.py +0 -141
  673. venv/Lib/site-packages/PySide6/examples/pdfwidgets/pdfviewer/resources_rc.py +0 -3468
  674. venv/Lib/site-packages/PySide6/examples/pdfwidgets/pdfviewer/ui_mainwindow.py +0 -259
  675. venv/Lib/site-packages/PySide6/examples/pdfwidgets/pdfviewer/zoomselector.py +0 -59
  676. venv/Lib/site-packages/PySide6/examples/qml/editingmodel/main.py +0 -21
  677. venv/Lib/site-packages/PySide6/examples/qml/editingmodel/model.py +0 -157
  678. venv/Lib/site-packages/PySide6/examples/qml/referenceexamples/adding/main.py +0 -30
  679. venv/Lib/site-packages/PySide6/examples/qml/referenceexamples/adding/person.py +0 -35
  680. venv/Lib/site-packages/PySide6/examples/qml/referenceexamples/attached/birthdayparty.py +0 -63
  681. venv/Lib/site-packages/PySide6/examples/qml/referenceexamples/attached/main.py +0 -46
  682. venv/Lib/site-packages/PySide6/examples/qml/referenceexamples/attached/person.py +0 -46
  683. venv/Lib/site-packages/PySide6/examples/qml/referenceexamples/binding/birthdayparty.py +0 -83
  684. venv/Lib/site-packages/PySide6/examples/qml/referenceexamples/binding/happybirthdaysong.py +0 -47
  685. venv/Lib/site-packages/PySide6/examples/qml/referenceexamples/binding/main.py +0 -52
  686. venv/Lib/site-packages/PySide6/examples/qml/referenceexamples/binding/person.py +0 -53
  687. venv/Lib/site-packages/PySide6/examples/qml/referenceexamples/coercion/birthdayparty.py +0 -41
  688. venv/Lib/site-packages/PySide6/examples/qml/referenceexamples/coercion/main.py +0 -36
  689. venv/Lib/site-packages/PySide6/examples/qml/referenceexamples/coercion/person.py +0 -47
  690. venv/Lib/site-packages/PySide6/examples/qml/referenceexamples/default/birthdayparty.py +0 -42
  691. venv/Lib/site-packages/PySide6/examples/qml/referenceexamples/default/main.py +0 -36
  692. venv/Lib/site-packages/PySide6/examples/qml/referenceexamples/default/person.py +0 -46
  693. venv/Lib/site-packages/PySide6/examples/qml/referenceexamples/extended/main.py +0 -95
  694. venv/Lib/site-packages/PySide6/examples/qml/referenceexamples/grouped/birthdayparty.py +0 -42
  695. venv/Lib/site-packages/PySide6/examples/qml/referenceexamples/grouped/main.py +0 -43
  696. venv/Lib/site-packages/PySide6/examples/qml/referenceexamples/grouped/person.py +0 -85
  697. venv/Lib/site-packages/PySide6/examples/qml/referenceexamples/methods/birthdayparty.py +0 -47
  698. venv/Lib/site-packages/PySide6/examples/qml/referenceexamples/methods/main.py +0 -32
  699. venv/Lib/site-packages/PySide6/examples/qml/referenceexamples/methods/person.py +0 -34
  700. venv/Lib/site-packages/PySide6/examples/qml/referenceexamples/properties/birthdayparty.py +0 -41
  701. venv/Lib/site-packages/PySide6/examples/qml/referenceexamples/properties/main.py +0 -34
  702. venv/Lib/site-packages/PySide6/examples/qml/referenceexamples/properties/person.py +0 -35
  703. venv/Lib/site-packages/PySide6/examples/qml/referenceexamples/valuesource/birthdayparty.py +0 -76
  704. venv/Lib/site-packages/PySide6/examples/qml/referenceexamples/valuesource/happybirthdaysong.py +0 -47
  705. venv/Lib/site-packages/PySide6/examples/qml/referenceexamples/valuesource/main.py +0 -51
  706. venv/Lib/site-packages/PySide6/examples/qml/referenceexamples/valuesource/person.py +0 -46
  707. venv/Lib/site-packages/PySide6/examples/qml/signals/pytoqml1/main.py +0 -31
  708. venv/Lib/site-packages/PySide6/examples/qml/signals/pytoqml2/main.py +0 -54
  709. venv/Lib/site-packages/PySide6/examples/qml/signals/qmltopy1/main.py +0 -50
  710. venv/Lib/site-packages/PySide6/examples/qml/signals/qmltopy2/main.py +0 -45
  711. venv/Lib/site-packages/PySide6/examples/qml/signals/qmltopy3/main.py +0 -33
  712. venv/Lib/site-packages/PySide6/examples/qml/signals/qmltopy4/main.py +0 -33
  713. venv/Lib/site-packages/PySide6/examples/qml/textproperties/main.py +0 -76
  714. venv/Lib/site-packages/PySide6/examples/qml/tutorials/extending/chapter1-basics/basics.py +0 -68
  715. venv/Lib/site-packages/PySide6/examples/qml/tutorials/extending/chapter2-methods/methods.py +0 -75
  716. venv/Lib/site-packages/PySide6/examples/qml/tutorials/extending/chapter3-bindings/bindings.py +0 -79
  717. venv/Lib/site-packages/PySide6/examples/qml/tutorials/extending/chapter4-customPropertyTypes/customPropertyTypes.py +0 -82
  718. venv/Lib/site-packages/PySide6/examples/qml/tutorials/extending/chapter5-listproperties/listproperties.py +0 -96
  719. venv/Lib/site-packages/PySide6/examples/qml/tutorials/extending/chapter6-plugins/Charts/piechart.py +0 -40
  720. venv/Lib/site-packages/PySide6/examples/qml/tutorials/extending/chapter6-plugins/Charts/pieslice.py +0 -52
  721. venv/Lib/site-packages/PySide6/examples/qml/usingmodel/usingmodel.py +0 -70
  722. venv/Lib/site-packages/PySide6/examples/quick/models/objectlistmodel/objectlistmodel.py +0 -61
  723. venv/Lib/site-packages/PySide6/examples/quick/models/stringlistmodel/stringlistmodel.py +0 -26
  724. venv/Lib/site-packages/PySide6/examples/quick/painteditem/painteditem.py +0 -75
  725. venv/Lib/site-packages/PySide6/examples/quick/rendercontrol/rendercontrol_opengl/cuberenderer.py +0 -186
  726. venv/Lib/site-packages/PySide6/examples/quick/rendercontrol/rendercontrol_opengl/main.py +0 -20
  727. venv/Lib/site-packages/PySide6/examples/quick/rendercontrol/rendercontrol_opengl/window_singlethreaded.py +0 -275
  728. venv/Lib/site-packages/PySide6/examples/quick/scenegraph/openglunderqml/main.py +0 -27
  729. venv/Lib/site-packages/PySide6/examples/quick/scenegraph/openglunderqml/squircle.py +0 -79
  730. venv/Lib/site-packages/PySide6/examples/quick/scenegraph/openglunderqml/squirclerenderer.py +0 -99
  731. venv/Lib/site-packages/PySide6/examples/quick/shared/shared_rc.py +0 -1884
  732. venv/Lib/site-packages/PySide6/examples/quick/window/main.py +0 -37
  733. venv/Lib/site-packages/PySide6/examples/quick/window/window_rc.py +0 -328
  734. venv/Lib/site-packages/PySide6/examples/quick3d/customgeometry/examplepoint.py +0 -51
  735. venv/Lib/site-packages/PySide6/examples/quick3d/customgeometry/exampletriangle.py +0 -188
  736. venv/Lib/site-packages/PySide6/examples/quick3d/customgeometry/main.py +0 -29
  737. venv/Lib/site-packages/PySide6/examples/quick3d/customgeometry/resources_rc.py +0 -585
  738. venv/Lib/site-packages/PySide6/examples/quick3d/intro/main.py +0 -24
  739. venv/Lib/site-packages/PySide6/examples/quickcontrols2/gallery/gallery.py +0 -52
  740. venv/Lib/site-packages/PySide6/examples/quickcontrols2/gallery/rc_gallery.py +0 -7855
  741. venv/Lib/site-packages/PySide6/examples/remoteobjects/modelview/modelviewclient.py +0 -24
  742. venv/Lib/site-packages/PySide6/examples/remoteobjects/modelview/modelviewserver.py +0 -103
  743. venv/Lib/site-packages/PySide6/examples/samplebinding/main.py +0 -64
  744. venv/Lib/site-packages/PySide6/examples/serialport/terminal/console.py +0 -49
  745. venv/Lib/site-packages/PySide6/examples/serialport/terminal/main.py +0 -17
  746. venv/Lib/site-packages/PySide6/examples/serialport/terminal/mainwindow.py +0 -108
  747. venv/Lib/site-packages/PySide6/examples/serialport/terminal/rc_terminal.py +0 -4464
  748. venv/Lib/site-packages/PySide6/examples/serialport/terminal/settingsdialog.py +0 -179
  749. venv/Lib/site-packages/PySide6/examples/serialport/terminal/ui_mainwindow.py +0 -149
  750. venv/Lib/site-packages/PySide6/examples/serialport/terminal/ui_settingsdialog.py +0 -181
  751. venv/Lib/site-packages/PySide6/examples/spatialaudio/audiopanning/main.py +0 -193
  752. venv/Lib/site-packages/PySide6/examples/sql/books/bookdelegate.py +0 -94
  753. venv/Lib/site-packages/PySide6/examples/sql/books/bookwindow.py +0 -98
  754. venv/Lib/site-packages/PySide6/examples/sql/books/createdb.py +0 -96
  755. venv/Lib/site-packages/PySide6/examples/sql/books/main.py +0 -16
  756. venv/Lib/site-packages/PySide6/examples/sql/books/rc_books.py +0 -88
  757. venv/Lib/site-packages/PySide6/examples/sql/books/ui_bookwindow.py +0 -135
  758. venv/Lib/site-packages/PySide6/examples/sql/relationaltablemodel/connection.py +0 -18
  759. venv/Lib/site-packages/PySide6/examples/sql/relationaltablemodel/relationaltablemodel.py +0 -77
  760. venv/Lib/site-packages/PySide6/examples/statemachine/eventtrans/eventtrans.py +0 -57
  761. venv/Lib/site-packages/PySide6/examples/statemachine/factstates/factstates.py +0 -89
  762. venv/Lib/site-packages/PySide6/examples/statemachine/ping_pong/ping_pong.py +0 -70
  763. venv/Lib/site-packages/PySide6/examples/statemachine/rogue/rogue.py +0 -179
  764. venv/Lib/site-packages/PySide6/examples/statemachine/trafficlight/trafficlight.py +0 -117
  765. venv/Lib/site-packages/PySide6/examples/statemachine/twowaybutton/twowaybutton.py +0 -33
  766. venv/Lib/site-packages/PySide6/examples/texttospeech/hello_speak/hello_speak.py +0 -73
  767. venv/Lib/site-packages/PySide6/examples/uitools/uiloader/uiloader.py +0 -35
  768. venv/Lib/site-packages/PySide6/examples/utils/pyside_config.py +0 -338
  769. venv/Lib/site-packages/PySide6/examples/webchannel/standalone/core.py +0 -25
  770. venv/Lib/site-packages/PySide6/examples/webchannel/standalone/dialog.py +0 -32
  771. venv/Lib/site-packages/PySide6/examples/webchannel/standalone/main.py +0 -62
  772. venv/Lib/site-packages/PySide6/examples/webchannel/standalone/ui_dialog.py +0 -57
  773. venv/Lib/site-packages/PySide6/examples/webchannel/standalone/websocketclientwrapper.py +0 -35
  774. venv/Lib/site-packages/PySide6/examples/webchannel/standalone/websockettransport.py +0 -51
  775. venv/Lib/site-packages/PySide6/examples/webenginequick/nanobrowser/quicknanobrowser.py +0 -65
  776. venv/Lib/site-packages/PySide6/examples/webenginequick/nanobrowser/rc_resources.py +0 -348
  777. venv/Lib/site-packages/PySide6/examples/webenginewidgets/markdowneditor/document.py +0 -24
  778. venv/Lib/site-packages/PySide6/examples/webenginewidgets/markdowneditor/main.py +0 -20
  779. venv/Lib/site-packages/PySide6/examples/webenginewidgets/markdowneditor/mainwindow.py +0 -136
  780. venv/Lib/site-packages/PySide6/examples/webenginewidgets/markdowneditor/previewpage.py +0 -18
  781. venv/Lib/site-packages/PySide6/examples/webenginewidgets/markdowneditor/rc_markdowneditor.py +0 -852
  782. venv/Lib/site-packages/PySide6/examples/webenginewidgets/markdowneditor/ui_mainwindow.py +0 -115
  783. venv/Lib/site-packages/PySide6/examples/webenginewidgets/notifications/main.py +0 -57
  784. venv/Lib/site-packages/PySide6/examples/webenginewidgets/notifications/notificationpopup.py +0 -68
  785. venv/Lib/site-packages/PySide6/examples/webenginewidgets/simplebrowser/simplebrowser.py +0 -70
  786. venv/Lib/site-packages/PySide6/examples/webenginewidgets/tabbedbrowser/bookmarkwidget.py +0 -239
  787. venv/Lib/site-packages/PySide6/examples/webenginewidgets/tabbedbrowser/browsertabwidget.py +0 -212
  788. venv/Lib/site-packages/PySide6/examples/webenginewidgets/tabbedbrowser/downloadwidget.py +0 -111
  789. venv/Lib/site-packages/PySide6/examples/webenginewidgets/tabbedbrowser/findtoolbar.py +0 -62
  790. venv/Lib/site-packages/PySide6/examples/webenginewidgets/tabbedbrowser/historywindow.py +0 -66
  791. venv/Lib/site-packages/PySide6/examples/webenginewidgets/tabbedbrowser/main.py +0 -358
  792. venv/Lib/site-packages/PySide6/examples/webenginewidgets/tabbedbrowser/webengineview.py +0 -56
  793. venv/Lib/site-packages/PySide6/examples/widgetbinding/dialog.py +0 -32
  794. venv/Lib/site-packages/PySide6/examples/widgetbinding/main.py +0 -14
  795. venv/Lib/site-packages/PySide6/examples/widgetbinding/registerwigglywidget.py +0 -31
  796. venv/Lib/site-packages/PySide6/examples/widgetbinding/wigglywidget.py +0 -69
  797. venv/Lib/site-packages/PySide6/examples/widgets/animation/animatedtiles/animatedtiles.py +0 -230
  798. venv/Lib/site-packages/PySide6/examples/widgets/animation/animatedtiles/animatedtiles_rc.py +0 -6108
  799. venv/Lib/site-packages/PySide6/examples/widgets/animation/appchooser/appchooser.py +0 -99
  800. venv/Lib/site-packages/PySide6/examples/widgets/animation/appchooser/appchooser_rc.py +0 -1424
  801. venv/Lib/site-packages/PySide6/examples/widgets/animation/easing/easing.py +0 -221
  802. venv/Lib/site-packages/PySide6/examples/widgets/animation/easing/ui_form.py +0 -178
  803. venv/Lib/site-packages/PySide6/examples/widgets/animation/states/states.py +0 -235
  804. venv/Lib/site-packages/PySide6/examples/widgets/animation/states/states_rc.py +0 -2182
  805. venv/Lib/site-packages/PySide6/examples/widgets/codeeditor/codeeditor.py +0 -104
  806. venv/Lib/site-packages/PySide6/examples/widgets/codeeditor/main.py +0 -15
  807. venv/Lib/site-packages/PySide6/examples/widgets/desktop/screenshot/screenshot.py +0 -156
  808. venv/Lib/site-packages/PySide6/examples/widgets/desktop/systray/main.py +0 -21
  809. venv/Lib/site-packages/PySide6/examples/widgets/desktop/systray/rc_systray.py +0 -2581
  810. venv/Lib/site-packages/PySide6/examples/widgets/desktop/systray/window.py +0 -236
  811. venv/Lib/site-packages/PySide6/examples/widgets/dialogs/classwizard/classwizard.py +0 -380
  812. venv/Lib/site-packages/PySide6/examples/widgets/dialogs/classwizard/classwizard_rc.py +0 -2316
  813. venv/Lib/site-packages/PySide6/examples/widgets/dialogs/classwizard/listchooser.py +0 -173
  814. venv/Lib/site-packages/PySide6/examples/widgets/dialogs/extension/extension.py +0 -77
  815. venv/Lib/site-packages/PySide6/examples/widgets/dialogs/findfiles/findfiles.py +0 -184
  816. venv/Lib/site-packages/PySide6/examples/widgets/dialogs/licensewizard/licensewizard.py +0 -298
  817. venv/Lib/site-packages/PySide6/examples/widgets/dialogs/licensewizard/main.py +0 -15
  818. venv/Lib/site-packages/PySide6/examples/widgets/dialogs/standarddialogs/standarddialogs.py +0 -415
  819. venv/Lib/site-packages/PySide6/examples/widgets/dialogs/tabdialog/tabdialog.py +0 -178
  820. venv/Lib/site-packages/PySide6/examples/widgets/dialogs/trivialwizard/trivialwizard.py +0 -63
  821. venv/Lib/site-packages/PySide6/examples/widgets/draganddrop/draggableicons/draggableicons.py +0 -128
  822. venv/Lib/site-packages/PySide6/examples/widgets/draganddrop/draggabletext/draggabletext.py +0 -118
  823. venv/Lib/site-packages/PySide6/examples/widgets/draganddrop/draggabletext/draggabletext_rc.py +0 -55
  824. venv/Lib/site-packages/PySide6/examples/widgets/draganddrop/dropsite/droparea.py +0 -67
  825. venv/Lib/site-packages/PySide6/examples/widgets/draganddrop/dropsite/dropsitewindow.py +0 -115
  826. venv/Lib/site-packages/PySide6/examples/widgets/draganddrop/dropsite/main.py +0 -15
  827. venv/Lib/site-packages/PySide6/examples/widgets/effects/blurpicker/blureffect.py +0 -33
  828. venv/Lib/site-packages/PySide6/examples/widgets/effects/blurpicker/blurpicker.py +0 -105
  829. venv/Lib/site-packages/PySide6/examples/widgets/effects/blurpicker/main.py +0 -20
  830. venv/Lib/site-packages/PySide6/examples/widgets/effects/lighting/lighting.py +0 -108
  831. venv/Lib/site-packages/PySide6/examples/widgets/gettext/main.py +0 -60
  832. venv/Lib/site-packages/PySide6/examples/widgets/graphicsview/anchorlayout/anchorlayout.py +0 -90
  833. venv/Lib/site-packages/PySide6/examples/widgets/graphicsview/collidingmice/collidingmice.py +0 -180
  834. venv/Lib/site-packages/PySide6/examples/widgets/graphicsview/collidingmice/mice_rc.py +0 -232
  835. venv/Lib/site-packages/PySide6/examples/widgets/graphicsview/diagramscene/diagramscene.py +0 -817
  836. venv/Lib/site-packages/PySide6/examples/widgets/graphicsview/diagramscene/diagramscene_rc.py +0 -417
  837. venv/Lib/site-packages/PySide6/examples/widgets/graphicsview/dragdroprobot/dragdroprobot.py +0 -254
  838. venv/Lib/site-packages/PySide6/examples/widgets/graphicsview/dragdroprobot/dragdroprobot_rc.py +0 -975
  839. venv/Lib/site-packages/PySide6/examples/widgets/graphicsview/elasticnodes/elasticnodes.py +0 -393
  840. venv/Lib/site-packages/PySide6/examples/widgets/imageviewer/imageviewer.py +0 -277
  841. venv/Lib/site-packages/PySide6/examples/widgets/imageviewer/main.py +0 -27
  842. venv/Lib/site-packages/PySide6/examples/widgets/itemviews/address_book/adddialogwidget.py +0 -65
  843. venv/Lib/site-packages/PySide6/examples/widgets/itemviews/address_book/address_book.py +0 -96
  844. venv/Lib/site-packages/PySide6/examples/widgets/itemviews/address_book/addresswidget.py +0 -214
  845. venv/Lib/site-packages/PySide6/examples/widgets/itemviews/address_book/newaddresstab.py +0 -56
  846. venv/Lib/site-packages/PySide6/examples/widgets/itemviews/address_book/tablemodel.py +0 -109
  847. venv/Lib/site-packages/PySide6/examples/widgets/itemviews/basicfiltermodel/basicsortfiltermodel.py +0 -178
  848. venv/Lib/site-packages/PySide6/examples/widgets/itemviews/dirview/dirview.py +0 -60
  849. venv/Lib/site-packages/PySide6/examples/widgets/itemviews/editabletreemodel/main.py +0 -14
  850. venv/Lib/site-packages/PySide6/examples/widgets/itemviews/editabletreemodel/mainwindow.py +0 -163
  851. venv/Lib/site-packages/PySide6/examples/widgets/itemviews/editabletreemodel/treeitem.py +0 -94
  852. venv/Lib/site-packages/PySide6/examples/widgets/itemviews/editabletreemodel/treemodel.py +0 -199
  853. venv/Lib/site-packages/PySide6/examples/widgets/itemviews/fetchmore/fetchmore.py +0 -137
  854. venv/Lib/site-packages/PySide6/examples/widgets/itemviews/jsonmodel/jsonmodel.py +0 -323
  855. venv/Lib/site-packages/PySide6/examples/widgets/itemviews/spinboxdelegate/spinboxdelegate.py +0 -78
  856. venv/Lib/site-packages/PySide6/examples/widgets/itemviews/spreadsheet/main.py +0 -19
  857. venv/Lib/site-packages/PySide6/examples/widgets/itemviews/spreadsheet/spreadsheet.py +0 -544
  858. venv/Lib/site-packages/PySide6/examples/widgets/itemviews/spreadsheet/spreadsheetdelegate.py +0 -67
  859. venv/Lib/site-packages/PySide6/examples/widgets/itemviews/spreadsheet/spreadsheetitem.py +0 -122
  860. venv/Lib/site-packages/PySide6/examples/widgets/itemviews/stardelegate/stardelegate.py +0 -136
  861. venv/Lib/site-packages/PySide6/examples/widgets/itemviews/stardelegate/stareditor.py +0 -63
  862. venv/Lib/site-packages/PySide6/examples/widgets/itemviews/stardelegate/starrating.py +0 -62
  863. venv/Lib/site-packages/PySide6/examples/widgets/layouts/basiclayouts/basiclayouts.py +0 -99
  864. venv/Lib/site-packages/PySide6/examples/widgets/layouts/borderlayout/borderlayout.py +0 -248
  865. venv/Lib/site-packages/PySide6/examples/widgets/layouts/dynamiclayouts/dynamiclayouts.py +0 -132
  866. venv/Lib/site-packages/PySide6/examples/widgets/layouts/flowlayout/flowlayout.py +0 -120
  867. venv/Lib/site-packages/PySide6/examples/widgets/linguist/linguist_rc.py +0 -68
  868. venv/Lib/site-packages/PySide6/examples/widgets/linguist/main.py +0 -55
  869. venv/Lib/site-packages/PySide6/examples/widgets/mainwindows/application/application.py +0 -259
  870. venv/Lib/site-packages/PySide6/examples/widgets/mainwindows/application/application_rc.py +0 -608
  871. venv/Lib/site-packages/PySide6/examples/widgets/mainwindows/dockwidgets/dockwidgets.py +0 -271
  872. venv/Lib/site-packages/PySide6/examples/widgets/mainwindows/dockwidgets/dockwidgets_rc.py +0 -464
  873. venv/Lib/site-packages/PySide6/examples/widgets/mainwindows/mdi/mdi.py +0 -439
  874. venv/Lib/site-packages/PySide6/examples/widgets/mainwindows/mdi/mdi_rc.py +0 -608
  875. venv/Lib/site-packages/PySide6/examples/widgets/painting/basicdrawing/basicdrawing.py +0 -313
  876. venv/Lib/site-packages/PySide6/examples/widgets/painting/basicdrawing/basicdrawing_rc.py +0 -135
  877. venv/Lib/site-packages/PySide6/examples/widgets/painting/concentriccircles/concentriccircles.py +0 -108
  878. venv/Lib/site-packages/PySide6/examples/widgets/painting/painter/painter.py +0 -202
  879. venv/Lib/site-packages/PySide6/examples/widgets/painting/plot/plot.py +0 -66
  880. venv/Lib/site-packages/PySide6/examples/widgets/richtext/orderform/orderform.py +0 -267
  881. venv/Lib/site-packages/PySide6/examples/widgets/richtext/syntaxhighlighter/syntaxhighlighter.py +0 -109
  882. venv/Lib/site-packages/PySide6/examples/widgets/richtext/textedit/main.py +0 -42
  883. venv/Lib/site-packages/PySide6/examples/widgets/richtext/textedit/textedit.py +0 -716
  884. venv/Lib/site-packages/PySide6/examples/widgets/richtext/textedit/textedit_rc.py +0 -6029
  885. venv/Lib/site-packages/PySide6/examples/widgets/richtext/textobject/textobject.py +0 -104
  886. venv/Lib/site-packages/PySide6/examples/widgets/thread_signals/thread_signals.py +0 -62
  887. venv/Lib/site-packages/PySide6/examples/widgets/tools/regularexpression/regularexpression.py +0 -21
  888. venv/Lib/site-packages/PySide6/examples/widgets/tools/regularexpression/regularexpressiondialog.py +0 -457
  889. venv/Lib/site-packages/PySide6/examples/widgets/tutorials/addressbook/part1.py +0 -39
  890. venv/Lib/site-packages/PySide6/examples/widgets/tutorials/addressbook/part2.py +0 -146
  891. venv/Lib/site-packages/PySide6/examples/widgets/tutorials/addressbook/part3.py +0 -215
  892. venv/Lib/site-packages/PySide6/examples/widgets/tutorials/addressbook/part4.py +0 -272
  893. venv/Lib/site-packages/PySide6/examples/widgets/tutorials/addressbook/part5.py +0 -332
  894. venv/Lib/site-packages/PySide6/examples/widgets/tutorials/addressbook/part6.py +0 -396
  895. venv/Lib/site-packages/PySide6/examples/widgets/tutorials/addressbook/part7.py +0 -448
  896. venv/Lib/site-packages/PySide6/examples/widgets/tutorials/cannon/t1.py +0 -20
  897. venv/Lib/site-packages/PySide6/examples/widgets/tutorials/cannon/t10.py +0 -152
  898. venv/Lib/site-packages/PySide6/examples/widgets/tutorials/cannon/t11.py +0 -224
  899. venv/Lib/site-packages/PySide6/examples/widgets/tutorials/cannon/t12.py +0 -275
  900. venv/Lib/site-packages/PySide6/examples/widgets/tutorials/cannon/t13.py +0 -356
  901. venv/Lib/site-packages/PySide6/examples/widgets/tutorials/cannon/t14.py +0 -409
  902. venv/Lib/site-packages/PySide6/examples/widgets/tutorials/cannon/t2.py +0 -23
  903. venv/Lib/site-packages/PySide6/examples/widgets/tutorials/cannon/t3.py +0 -25
  904. venv/Lib/site-packages/PySide6/examples/widgets/tutorials/cannon/t4.py +0 -30
  905. venv/Lib/site-packages/PySide6/examples/widgets/tutorials/cannon/t5.py +0 -41
  906. venv/Lib/site-packages/PySide6/examples/widgets/tutorials/cannon/t6.py +0 -51
  907. venv/Lib/site-packages/PySide6/examples/widgets/tutorials/cannon/t7.py +0 -73
  908. venv/Lib/site-packages/PySide6/examples/widgets/tutorials/cannon/t8.py +0 -116
  909. venv/Lib/site-packages/PySide6/examples/widgets/tutorials/cannon/t9.py +0 -122
  910. venv/Lib/site-packages/PySide6/examples/widgets/tutorials/modelview/1_readonly.py +0 -38
  911. venv/Lib/site-packages/PySide6/examples/widgets/tutorials/modelview/2_formatting.py +0 -65
  912. venv/Lib/site-packages/PySide6/examples/widgets/tutorials/modelview/3_changingmodel.py +0 -52
  913. venv/Lib/site-packages/PySide6/examples/widgets/tutorials/modelview/4_headers.py +0 -43
  914. venv/Lib/site-packages/PySide6/examples/widgets/tutorials/modelview/5_edit.py +0 -73
  915. venv/Lib/site-packages/PySide6/examples/widgets/tutorials/modelview/6_treeview.py +0 -41
  916. venv/Lib/site-packages/PySide6/examples/widgets/tutorials/modelview/7_selections.py +0 -70
  917. venv/Lib/site-packages/PySide6/examples/widgets/widgets/charactermap/characterwidget.py +0 -133
  918. venv/Lib/site-packages/PySide6/examples/widgets/widgets/charactermap/fontinfodialog.py +0 -47
  919. venv/Lib/site-packages/PySide6/examples/widgets/widgets/charactermap/main.py +0 -17
  920. venv/Lib/site-packages/PySide6/examples/widgets/widgets/charactermap/mainwindow.py +0 -167
  921. venv/Lib/site-packages/PySide6/examples/widgets/widgets/digitalclock/digitalclock.py +0 -41
  922. venv/Lib/site-packages/PySide6/examples/widgets/widgets/tetrix/tetrix.py +0 -471
  923. venv/Lib/site-packages/PySide6/examples/widgets/widgetsgallery/main.py +0 -17
  924. venv/Lib/site-packages/PySide6/examples/widgets/widgetsgallery/widgetgallery.py +0 -402
  925. venv/Lib/site-packages/PySide6/examples/xml/dombookmarks/dombookmarks.py +0 -228
  926. venv/Lib/site-packages/PySide6/scripts/deploy/__init__.py +0 -7
  927. venv/Lib/site-packages/PySide6/scripts/deploy/commands.py +0 -31
  928. venv/Lib/site-packages/PySide6/scripts/deploy/config.py +0 -226
  929. venv/Lib/site-packages/PySide6/scripts/deploy/nuitka_helper.py +0 -51
  930. venv/Lib/site-packages/PySide6/scripts/deploy/python_helper.py +0 -83
  931. venv/Lib/site-packages/PySide6/scripts/deploy.py +0 -190
  932. venv/Lib/site-packages/PySide6/scripts/metaobjectdump.py +0 -406
  933. venv/Lib/site-packages/PySide6/scripts/project/__init__.py +0 -25
  934. venv/Lib/site-packages/PySide6/scripts/project/newproject.py +0 -165
  935. venv/Lib/site-packages/PySide6/scripts/project/project_data.py +0 -215
  936. venv/Lib/site-packages/PySide6/scripts/project/utils.py +0 -105
  937. venv/Lib/site-packages/PySide6/scripts/project.py +0 -240
  938. venv/Lib/site-packages/PySide6/scripts/pyside_tool.py +0 -201
  939. venv/Lib/site-packages/PySide6/scripts/qml.py +0 -246
  940. venv/Lib/site-packages/PySide6/scripts/qtpy2cpp.py +0 -62
  941. venv/Lib/site-packages/PySide6/scripts/qtpy2cpp_lib/astdump.py +0 -111
  942. venv/Lib/site-packages/PySide6/scripts/qtpy2cpp_lib/formatter.py +0 -265
  943. venv/Lib/site-packages/PySide6/scripts/qtpy2cpp_lib/nodedump.py +0 -50
  944. venv/Lib/site-packages/PySide6/scripts/qtpy2cpp_lib/qt.py +0 -56
  945. venv/Lib/site-packages/PySide6/scripts/qtpy2cpp_lib/tokenizer.py +0 -55
  946. venv/Lib/site-packages/PySide6/scripts/qtpy2cpp_lib/visitor.py +0 -443
  947. venv/Lib/site-packages/PySide6/support/__init__.py +0 -6
  948. venv/Lib/site-packages/PySide6/support/deprecated.py +0 -97
  949. venv/Lib/site-packages/PySide6/support/generate_pyi.py +0 -92
  950. venv/Lib/site-packages/_distutils_hack/__init__.py +0 -222
  951. venv/Lib/site-packages/_distutils_hack/override.py +0 -1
  952. venv/Lib/site-packages/_pyinstaller_hooks_contrib/__init__.py +0 -15
  953. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/__init__.py +0 -23
  954. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/pre_find_module_path/__init__.py +0 -11
  955. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/pre_safe_import_module/__init__.py +0 -11
  956. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/pre_safe_import_module/hook-tensorflow.py +0 -23
  957. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/pre_safe_import_module/hook-win32com.py +0 -47
  958. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/rthooks/__init__.py +0 -26
  959. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/rthooks/pyi_rth_enchant.py +0 -22
  960. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/rthooks/pyi_rth_nltk.py +0 -18
  961. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/rthooks/pyi_rth_osgeo.py +0 -32
  962. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/rthooks/pyi_rth_pygraphviz.py +0 -31
  963. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/rthooks/pyi_rth_pyproj.py +0 -26
  964. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/rthooks/pyi_rth_pyqtgraph_multiprocess.py +0 -51
  965. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/rthooks/pyi_rth_pythoncom.py +0 -24
  966. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/rthooks/pyi_rth_pywintypes.py +0 -24
  967. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/rthooks/pyi_rth_traitlets.py +0 -24
  968. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/rthooks/pyi_rth_usb.py +0 -74
  969. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/__init__.py +0 -31
  970. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-BTrees.py +0 -17
  971. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-Crypto.py +0 -63
  972. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-Cryptodome.py +0 -45
  973. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-HtmlTestRunner.py +0 -17
  974. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-IPython.py +0 -34
  975. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-OpenGL.py +0 -70
  976. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-OpenGL_accelerate.py +0 -25
  977. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-Xlib.py +0 -16
  978. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-_mssql.py +0 -13
  979. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-_mysql.py +0 -18
  980. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-accessible_output2.py +0 -19
  981. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-adbutils.py +0 -16
  982. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-adios.py +0 -19
  983. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-afmformats.py +0 -17
  984. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-aliyunsdkcore.py +0 -14
  985. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-altair.py +0 -15
  986. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-amazonproduct.py +0 -29
  987. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-anyio.py +0 -20
  988. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-appdirs.py +0 -23
  989. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-appy.pod.py +0 -17
  990. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-apscheduler.py +0 -28
  991. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-argon2.py +0 -13
  992. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-astor.py +0 -15
  993. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-astroid.py +0 -48
  994. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-astropy.py +0 -42
  995. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-av.py +0 -35
  996. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-avro.py +0 -28
  997. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-azurerm.py +0 -22
  998. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-backports.zoneinfo.py +0 -18
  999. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-bacon.py +0 -49
  1000. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-bcrypt.py +0 -19
  1001. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-bleak.py +0 -19
  1002. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-blspy.py +0 -36
  1003. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-bokeh.py +0 -24
  1004. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-boto.py +0 -25
  1005. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-boto3.py +0 -29
  1006. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-botocore.py +0 -30
  1007. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-branca.py +0 -15
  1008. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-cairocffi.py +0 -40
  1009. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-cairosvg.py +0 -40
  1010. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-cassandra.py +0 -22
  1011. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-certifi.py +0 -21
  1012. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-cf_units.py +0 -16
  1013. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-cftime.py +0 -21
  1014. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-charset_normalizer.py +0 -16
  1015. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-cloudscraper.py +0 -15
  1016. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-clr.py +0 -62
  1017. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-clr_loader.py +0 -24
  1018. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-compliance_checker.py +0 -22
  1019. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-countrycode.py +0 -15
  1020. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-countryinfo.py +0 -15
  1021. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-cryptography.py +0 -44
  1022. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-cv2.py +0 -74
  1023. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-cx_Oracle.py +0 -15
  1024. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-cytoolz.itertoolz.py +0 -16
  1025. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-dash.py +0 -15
  1026. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-dash_bootstrap_components.py +0 -15
  1027. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-dash_core_components.py +0 -15
  1028. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-dash_html_components.py +0 -15
  1029. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-dash_renderer.py +0 -15
  1030. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-dash_table.py +0 -15
  1031. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-dash_uploader.py +0 -15
  1032. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-dask.py +0 -18
  1033. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-dateparser.utils.strptime.py +0 -17
  1034. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-dclab.py +0 -17
  1035. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-discid.py +0 -41
  1036. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-distorm3.py +0 -20
  1037. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-dns.rdata.py +0 -17
  1038. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-docutils.py +0 -20
  1039. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-docx.py +0 -17
  1040. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-docx2pdf.py +0 -20
  1041. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-dynaconf.py +0 -15
  1042. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-easyocr.py +0 -18
  1043. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-eel.py +0 -16
  1044. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-enchant.py +0 -64
  1045. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-enzyme.parsers.ebml.core.py +0 -26
  1046. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-eth_abi.py +0 -15
  1047. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-eth_account.py +0 -15
  1048. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-eth_hash.py +0 -16
  1049. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-eth_keyfile.py +0 -15
  1050. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-eth_utils.py +0 -15
  1051. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-exchangelib.py +0 -12
  1052. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-fabric.py +0 -22
  1053. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-faker.py +0 -19
  1054. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-ffpyplayer.py +0 -19
  1055. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-fiona.py +0 -17
  1056. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-flask_compress.py +0 -15
  1057. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-flask_restx.py +0 -13
  1058. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-flex.py +0 -17
  1059. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-flirpy.py +0 -19
  1060. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-fmpy.py +0 -27
  1061. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-folium.py +0 -16
  1062. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-gadfly.py +0 -14
  1063. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-gcloud.py +0 -15
  1064. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-geopandas.py +0 -17
  1065. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-gitlab.py +0 -22
  1066. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-gmplot.py +0 -15
  1067. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-gooey.py +0 -19
  1068. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-google.api.py +0 -14
  1069. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-google.api_core.py +0 -14
  1070. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-google.cloud.bigquery.py +0 -16
  1071. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-google.cloud.kms_v1.py +0 -18
  1072. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-google.cloud.pubsub_v1.py +0 -14
  1073. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-google.cloud.py +0 -14
  1074. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-google.cloud.speech.py +0 -14
  1075. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-google.cloud.storage.py +0 -14
  1076. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-google.cloud.translate.py +0 -14
  1077. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-googleapiclient.model.py +0 -20
  1078. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-great_expectations.py +0 -15
  1079. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-grpc.py +0 -14
  1080. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-gst._gst.py +0 -48
  1081. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-gtk.py +0 -17
  1082. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-h5py.py +0 -19
  1083. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-hdf5plugin.py +0 -17
  1084. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-httplib2.py +0 -17
  1085. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-humanize.py +0 -24
  1086. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-hydra.py +0 -19
  1087. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-ijson.py +0 -14
  1088. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-imageio.py +0 -21
  1089. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-imageio_ffmpeg.py +0 -17
  1090. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-iminuit.py +0 -25
  1091. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-jaraco.text.py +0 -17
  1092. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-jedi.py +0 -17
  1093. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-jinja2.py +0 -14
  1094. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-jinxed.py +0 -15
  1095. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-jira.py +0 -20
  1096. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-jsonpath_rw_ext.py +0 -15
  1097. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-jsonrpcserver.py +0 -17
  1098. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-jsonschema.py +0 -18
  1099. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-jupyterlab.py +0 -15
  1100. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-kaleido.py +0 -15
  1101. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-kinterbasdb.py +0 -20
  1102. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-langcodes.py +0 -15
  1103. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-langdetect.py +0 -15
  1104. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-lark.py +0 -15
  1105. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-ldfparser.py +0 -15
  1106. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-lensfunpy.py +0 -16
  1107. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-libaudioverse.py +0 -19
  1108. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-lightgbm.py +0 -27
  1109. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-limits.py +0 -15
  1110. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-llvmlite.py +0 -21
  1111. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-logilab.py +0 -26
  1112. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-lxml.etree.py +0 -14
  1113. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-lxml.isoschematron.py +0 -17
  1114. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-lxml.objectify.py +0 -14
  1115. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-lxml.py +0 -20
  1116. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-lz4.py +0 -15
  1117. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-magic.py +0 -18
  1118. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-mako.codegen.py +0 -20
  1119. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-mariadb.py +0 -26
  1120. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-markdown.py +0 -28
  1121. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-metpy.py +0 -21
  1122. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-migrate.py +0 -19
  1123. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-mimesis.py +0 -17
  1124. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-mnemonic.py +0 -15
  1125. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-mpl_toolkits.basemap.py +0 -38
  1126. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-msoffcrypto.py +0 -18
  1127. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-nacl.py +0 -33
  1128. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-names.py +0 -18
  1129. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-nanite.py +0 -17
  1130. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-nbconvert.py +0 -18
  1131. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-nbdime.py +0 -15
  1132. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-nbformat.py +0 -15
  1133. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-ncclient.py +0 -27
  1134. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-netCDF4.py +0 -22
  1135. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-nltk.py +0 -28
  1136. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-nnpy.py +0 -19
  1137. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-notebook.py +0 -27
  1138. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-numba.py +0 -20
  1139. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-numcodecs.py +0 -14
  1140. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-office365.py +0 -19
  1141. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-openpyxl.py +0 -18
  1142. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-orjson.py +0 -21
  1143. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-osgeo.py +0 -82
  1144. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-pandas_flavor.py +0 -15
  1145. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-panel.py +0 -18
  1146. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-parsedatetime.py +0 -29
  1147. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-parso.py +0 -14
  1148. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-passlib.py +0 -21
  1149. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-paste.exceptions.reporter.py +0 -20
  1150. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-patsy.py +0 -13
  1151. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-pdfminer.py +0 -15
  1152. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-pendulum.py +0 -20
  1153. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-phonenumbers.py +0 -19
  1154. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-pingouin.py +0 -14
  1155. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-pint.py +0 -18
  1156. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-pinyin.py +0 -20
  1157. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-platformdirs.py +0 -27
  1158. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-plotly.py +0 -17
  1159. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-prettytable.py +0 -14
  1160. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-psychopy.py +0 -16
  1161. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-psycopg2.py +0 -14
  1162. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-publicsuffix2.py +0 -15
  1163. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-pubsub.core.py +0 -15
  1164. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-puremagic.py +0 -15
  1165. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-py.py +0 -15
  1166. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-pyarrow.py +0 -24
  1167. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-pycountry.py +0 -18
  1168. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-pycparser.py +0 -23
  1169. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-pydantic.py +0 -44
  1170. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-pydivert.py +0 -15
  1171. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-pyexcel-io.py +0 -17
  1172. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-pyexcel-ods.py +0 -17
  1173. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-pyexcel-ods3.py +0 -17
  1174. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-pyexcel-odsr.py +0 -17
  1175. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-pyexcel-xls.py +0 -17
  1176. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-pyexcel-xlsx.py +0 -17
  1177. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-pyexcel-xlsxw.py +0 -17
  1178. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-pyexcel.py +0 -30
  1179. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-pyexcel_io.py +0 -27
  1180. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-pyexcel_ods.py +0 -17
  1181. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-pyexcel_ods3.py +0 -17
  1182. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-pyexcel_odsr.py +0 -17
  1183. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-pyexcel_xls.py +0 -17
  1184. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-pyexcel_xlsx.py +0 -17
  1185. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-pyexcel_xlsxw.py +0 -17
  1186. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-pyexcelerate.Writer.py +0 -14
  1187. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-pygraphviz.py +0 -66
  1188. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-pylint.py +0 -74
  1189. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-pymediainfo.py +0 -43
  1190. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-pymssql.py +0 -20
  1191. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-pynput.py +0 -14
  1192. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-pyodbc.py +0 -21
  1193. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-pyopencl.py +0 -17
  1194. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-pypemicro.py +0 -43
  1195. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-pyphen.py +0 -15
  1196. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-pyppeteer.py +0 -16
  1197. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-pyproj.py +0 -63
  1198. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-pypsexec.py +0 -18
  1199. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-pypylon.py +0 -40
  1200. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-pyqtgraph.py +0 -40
  1201. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-pyshark.py +0 -24
  1202. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-pysnmp.py +0 -16
  1203. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-pystray.py +0 -16
  1204. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-pytest.py +0 -19
  1205. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-pythoncom.py +0 -31
  1206. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-pyttsx.py +0 -26
  1207. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-pyttsx3.py +0 -30
  1208. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-pyviz_comms.py +0 -15
  1209. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-pyvjoy.py +0 -14
  1210. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-pywintypes.py +0 -31
  1211. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-pywt.py +0 -21
  1212. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-qtmodern.py +0 -15
  1213. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-radicale.py +0 -16
  1214. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-raven.py +0 -14
  1215. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-rawpy.py +0 -16
  1216. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-rdflib.py +0 -16
  1217. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-redmine.py +0 -14
  1218. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-regex.py +0 -14
  1219. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-reportlab.lib.utils.py +0 -17
  1220. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-reportlab.pdfbase._fontdata.py +0 -18
  1221. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-resampy.py +0 -17
  1222. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-rpy2.py +0 -19
  1223. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-rtree.py +0 -18
  1224. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-sacremoses.py +0 -15
  1225. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-selenium.py +0 -16
  1226. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-sentry_sdk.py +0 -40
  1227. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-shapely.py +0 -106
  1228. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-shotgun_api3.py +0 -23
  1229. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-skimage.feature.py +0 -15
  1230. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-skimage.filters.py +0 -18
  1231. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-skimage.graph.py +0 -15
  1232. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-skimage.io.py +0 -20
  1233. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-skimage.transform.py +0 -21
  1234. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-sklearn.cluster.py +0 -18
  1235. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-sklearn.linear_model.py +0 -18
  1236. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-sklearn.metrics.cluster.py +0 -27
  1237. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-sklearn.metrics.pairwise.py +0 -21
  1238. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-sklearn.metrics.py +0 -19
  1239. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-sklearn.neighbors.py +0 -36
  1240. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-sklearn.py +0 -16
  1241. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-sklearn.tree.py +0 -13
  1242. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-sklearn.utils.py +0 -13
  1243. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-sound_lib.py +0 -19
  1244. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-sounddevice.py +0 -63
  1245. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-soundfile.py +0 -63
  1246. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-spacy.py +0 -19
  1247. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-speech_recognition.py +0 -18
  1248. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-spiceypy.py +0 -18
  1249. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-spnego.py +0 -15
  1250. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-srsly.msgpack._packer.py +0 -17
  1251. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-statsmodels.tsa.statespace.py +0 -16
  1252. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-stdnum.py +0 -15
  1253. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-storm.database.py +0 -23
  1254. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-sunpy.py +0 -20
  1255. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-swagger_spec_validator.py +0 -15
  1256. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-tableauhyperapi.py +0 -15
  1257. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-tables.py +0 -15
  1258. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-tcod.py +0 -20
  1259. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-tensorflow.py +0 -79
  1260. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-text_unidecode.py +0 -27
  1261. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-textdistance.py +0 -17
  1262. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-thinc.backends.numpy_ops.py +0 -17
  1263. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-thinc.py +0 -18
  1264. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-timezonefinder.py +0 -15
  1265. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-tinycss2.py +0 -23
  1266. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-torch.py +0 -15
  1267. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-torchvision.ops.py +0 -15
  1268. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-trimesh.py +0 -17
  1269. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-ttkthemes.py +0 -57
  1270. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-ttkwidgets.py +0 -39
  1271. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-tzdata.py +0 -22
  1272. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-u1db.py +0 -32
  1273. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-umap.py +0 -16
  1274. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-unidecode.py +0 -21
  1275. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-uniseg.py +0 -16
  1276. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-usb.py +0 -89
  1277. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-uvicorn.py +0 -15
  1278. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-uvloop.py +0 -19
  1279. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-vtkpython.py +0 -18
  1280. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-wavefile.py +0 -19
  1281. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-weasyprint.py +0 -85
  1282. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-web3.py +0 -15
  1283. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-webassets.py +0 -14
  1284. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-webrtcvad.py +0 -15
  1285. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-websockets.py +0 -16
  1286. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-webview.py +0 -20
  1287. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-win32com.py +0 -21
  1288. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-workflow.py +0 -14
  1289. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-wx.lib.activex.py +0 -17
  1290. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-wx.lib.pubsub.py +0 -28
  1291. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-wx.xrc.py +0 -13
  1292. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-xml.dom.html.HTMLDocument.py +0 -68
  1293. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-xml.sax.saxexts.py +0 -26
  1294. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-xmldiff.py +0 -15
  1295. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-xsge_gui.py +0 -17
  1296. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-yt_dlp.py +0 -17
  1297. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-zeep.py +0 -17
  1298. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-zmq.py +0 -65
  1299. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-zoneinfo.py +0 -18
  1300. venv/Lib/site-packages/_pyinstaller_hooks_contrib/tests/__init__.py +0 -28
  1301. venv/Lib/site-packages/_pyinstaller_hooks_contrib/tests/conftest.py +0 -13
  1302. venv/Lib/site-packages/_pyinstaller_hooks_contrib/tests/scripts/pyi_lib_boto.py +0 -45
  1303. venv/Lib/site-packages/_pyinstaller_hooks_contrib/tests/scripts/pyi_lib_enchant.py +0 -43
  1304. venv/Lib/site-packages/_pyinstaller_hooks_contrib/tests/scripts/pyi_lib_pycparser.py +0 -54
  1305. venv/Lib/site-packages/_pyinstaller_hooks_contrib/tests/scripts/pyi_lib_tensorflow_layer.py +0 -36
  1306. venv/Lib/site-packages/_pyinstaller_hooks_contrib/tests/scripts/pyi_lib_tensorflow_mnist.py +0 -51
  1307. venv/Lib/site-packages/_pyinstaller_hooks_contrib/tests/test_libraries.py +0 -1479
  1308. venv/Lib/site-packages/_virtualenv.py +0 -130
  1309. venv/Lib/site-packages/altgraph/Dot.py +0 -321
  1310. venv/Lib/site-packages/altgraph/Graph.py +0 -682
  1311. venv/Lib/site-packages/altgraph/GraphAlgo.py +0 -171
  1312. venv/Lib/site-packages/altgraph/GraphStat.py +0 -73
  1313. venv/Lib/site-packages/altgraph/GraphUtil.py +0 -139
  1314. venv/Lib/site-packages/altgraph/ObjectGraph.py +0 -212
  1315. venv/Lib/site-packages/altgraph/__init__.py +0 -148
  1316. venv/Lib/site-packages/bleach/__init__.py +0 -125
  1317. venv/Lib/site-packages/bleach/_vendor/html5lib/__init__.py +0 -35
  1318. venv/Lib/site-packages/bleach/_vendor/html5lib/_ihatexml.py +0 -289
  1319. venv/Lib/site-packages/bleach/_vendor/html5lib/_inputstream.py +0 -918
  1320. venv/Lib/site-packages/bleach/_vendor/html5lib/_tokenizer.py +0 -1735
  1321. venv/Lib/site-packages/bleach/_vendor/html5lib/_trie/__init__.py +0 -5
  1322. venv/Lib/site-packages/bleach/_vendor/html5lib/_trie/_base.py +0 -40
  1323. venv/Lib/site-packages/bleach/_vendor/html5lib/_trie/py.py +0 -67
  1324. venv/Lib/site-packages/bleach/_vendor/html5lib/_utils.py +0 -159
  1325. venv/Lib/site-packages/bleach/_vendor/html5lib/constants.py +0 -2946
  1326. venv/Lib/site-packages/bleach/_vendor/html5lib/filters/__init__.py +0 -0
  1327. venv/Lib/site-packages/bleach/_vendor/html5lib/filters/alphabeticalattributes.py +0 -29
  1328. venv/Lib/site-packages/bleach/_vendor/html5lib/filters/base.py +0 -12
  1329. venv/Lib/site-packages/bleach/_vendor/html5lib/filters/inject_meta_charset.py +0 -73
  1330. venv/Lib/site-packages/bleach/_vendor/html5lib/filters/lint.py +0 -93
  1331. venv/Lib/site-packages/bleach/_vendor/html5lib/filters/optionaltags.py +0 -207
  1332. venv/Lib/site-packages/bleach/_vendor/html5lib/filters/sanitizer.py +0 -916
  1333. venv/Lib/site-packages/bleach/_vendor/html5lib/filters/whitespace.py +0 -38
  1334. venv/Lib/site-packages/bleach/_vendor/html5lib/html5parser.py +0 -2795
  1335. venv/Lib/site-packages/bleach/_vendor/html5lib/serializer.py +0 -409
  1336. venv/Lib/site-packages/bleach/_vendor/html5lib/treeadapters/__init__.py +0 -30
  1337. venv/Lib/site-packages/bleach/_vendor/html5lib/treeadapters/genshi.py +0 -54
  1338. venv/Lib/site-packages/bleach/_vendor/html5lib/treeadapters/sax.py +0 -50
  1339. venv/Lib/site-packages/bleach/_vendor/html5lib/treebuilders/__init__.py +0 -88
  1340. venv/Lib/site-packages/bleach/_vendor/html5lib/treebuilders/base.py +0 -417
  1341. venv/Lib/site-packages/bleach/_vendor/html5lib/treebuilders/dom.py +0 -239
  1342. venv/Lib/site-packages/bleach/_vendor/html5lib/treebuilders/etree.py +0 -343
  1343. venv/Lib/site-packages/bleach/_vendor/html5lib/treebuilders/etree_lxml.py +0 -392
  1344. venv/Lib/site-packages/bleach/_vendor/html5lib/treewalkers/__init__.py +0 -154
  1345. venv/Lib/site-packages/bleach/_vendor/html5lib/treewalkers/base.py +0 -252
  1346. venv/Lib/site-packages/bleach/_vendor/html5lib/treewalkers/dom.py +0 -43
  1347. venv/Lib/site-packages/bleach/_vendor/html5lib/treewalkers/etree.py +0 -131
  1348. venv/Lib/site-packages/bleach/_vendor/html5lib/treewalkers/etree_lxml.py +0 -215
  1349. venv/Lib/site-packages/bleach/_vendor/html5lib/treewalkers/genshi.py +0 -69
  1350. venv/Lib/site-packages/bleach/_vendor/parse.py +0 -1078
  1351. venv/Lib/site-packages/bleach/callbacks.py +0 -32
  1352. venv/Lib/site-packages/bleach/css_sanitizer.py +0 -104
  1353. venv/Lib/site-packages/bleach/html5lib_shim.py +0 -741
  1354. venv/Lib/site-packages/bleach/linkifier.py +0 -633
  1355. venv/Lib/site-packages/bleach/parse_shim.py +0 -1
  1356. venv/Lib/site-packages/bleach/sanitizer.py +0 -638
  1357. venv/Lib/site-packages/build/__init__.py +0 -511
  1358. venv/Lib/site-packages/build/__main__.py +0 -399
  1359. venv/Lib/site-packages/build/env.py +0 -343
  1360. venv/Lib/site-packages/build/util.py +0 -61
  1361. venv/Lib/site-packages/certifi/__init__.py +0 -4
  1362. venv/Lib/site-packages/certifi/__main__.py +0 -12
  1363. venv/Lib/site-packages/certifi/core.py +0 -108
  1364. venv/Lib/site-packages/charset_normalizer/__init__.py +0 -45
  1365. venv/Lib/site-packages/charset_normalizer/api.py +0 -553
  1366. venv/Lib/site-packages/charset_normalizer/assets/__init__.py +0 -1440
  1367. venv/Lib/site-packages/charset_normalizer/cd.py +0 -391
  1368. venv/Lib/site-packages/charset_normalizer/cli/__init__.py +0 -0
  1369. venv/Lib/site-packages/charset_normalizer/cli/normalizer.py +0 -298
  1370. venv/Lib/site-packages/charset_normalizer/constant.py +0 -495
  1371. venv/Lib/site-packages/charset_normalizer/legacy.py +0 -43
  1372. venv/Lib/site-packages/charset_normalizer/md.py +0 -571
  1373. venv/Lib/site-packages/charset_normalizer/models.py +0 -337
  1374. venv/Lib/site-packages/charset_normalizer/utils.py +0 -418
  1375. venv/Lib/site-packages/charset_normalizer/version.py +0 -6
  1376. venv/Lib/site-packages/colorama/__init__.py +0 -7
  1377. venv/Lib/site-packages/colorama/ansi.py +0 -102
  1378. venv/Lib/site-packages/colorama/ansitowin32.py +0 -277
  1379. venv/Lib/site-packages/colorama/initialise.py +0 -121
  1380. venv/Lib/site-packages/colorama/tests/__init__.py +0 -1
  1381. venv/Lib/site-packages/colorama/tests/ansi_test.py +0 -76
  1382. venv/Lib/site-packages/colorama/tests/ansitowin32_test.py +0 -294
  1383. venv/Lib/site-packages/colorama/tests/initialise_test.py +0 -189
  1384. venv/Lib/site-packages/colorama/tests/isatty_test.py +0 -57
  1385. venv/Lib/site-packages/colorama/tests/utils.py +0 -49
  1386. venv/Lib/site-packages/colorama/tests/winterm_test.py +0 -131
  1387. venv/Lib/site-packages/colorama/win32.py +0 -180
  1388. venv/Lib/site-packages/colorama/winterm.py +0 -195
  1389. venv/Lib/site-packages/commonmark/__init__.py +0 -8
  1390. venv/Lib/site-packages/commonmark/blocks.py +0 -908
  1391. venv/Lib/site-packages/commonmark/cmark.py +0 -53
  1392. venv/Lib/site-packages/commonmark/common.py +0 -113
  1393. venv/Lib/site-packages/commonmark/dump.py +0 -108
  1394. venv/Lib/site-packages/commonmark/entitytrans.py +0 -2353
  1395. venv/Lib/site-packages/commonmark/inlines.py +0 -882
  1396. venv/Lib/site-packages/commonmark/main.py +0 -41
  1397. venv/Lib/site-packages/commonmark/node.py +0 -179
  1398. venv/Lib/site-packages/commonmark/normalize_reference.py +0 -165
  1399. venv/Lib/site-packages/commonmark/render/__init__.py +0 -0
  1400. venv/Lib/site-packages/commonmark/render/html.py +0 -228
  1401. venv/Lib/site-packages/commonmark/render/renderer.py +0 -43
  1402. venv/Lib/site-packages/commonmark/render/rst.py +0 -159
  1403. venv/Lib/site-packages/commonmark/tests/__init__.py +0 -0
  1404. venv/Lib/site-packages/commonmark/tests/rst_tests.py +0 -172
  1405. venv/Lib/site-packages/commonmark/tests/run_spec_tests.py +0 -242
  1406. venv/Lib/site-packages/commonmark/tests/unit_tests.py +0 -157
  1407. venv/Lib/site-packages/docutils/__init__.py +0 -284
  1408. venv/Lib/site-packages/docutils/__main__.py +0 -96
  1409. venv/Lib/site-packages/docutils/core.py +0 -714
  1410. venv/Lib/site-packages/docutils/examples.py +0 -99
  1411. venv/Lib/site-packages/docutils/frontend.py +0 -951
  1412. venv/Lib/site-packages/docutils/io.py +0 -611
  1413. venv/Lib/site-packages/docutils/languages/__init__.py +0 -83
  1414. venv/Lib/site-packages/docutils/languages/af.py +0 -58
  1415. venv/Lib/site-packages/docutils/languages/ar.py +0 -60
  1416. venv/Lib/site-packages/docutils/languages/ca.py +0 -60
  1417. venv/Lib/site-packages/docutils/languages/cs.py +0 -60
  1418. venv/Lib/site-packages/docutils/languages/da.py +0 -61
  1419. venv/Lib/site-packages/docutils/languages/de.py +0 -58
  1420. venv/Lib/site-packages/docutils/languages/en.py +0 -60
  1421. venv/Lib/site-packages/docutils/languages/eo.py +0 -61
  1422. venv/Lib/site-packages/docutils/languages/es.py +0 -58
  1423. venv/Lib/site-packages/docutils/languages/fa.py +0 -60
  1424. venv/Lib/site-packages/docutils/languages/fi.py +0 -60
  1425. venv/Lib/site-packages/docutils/languages/fr.py +0 -58
  1426. venv/Lib/site-packages/docutils/languages/gl.py +0 -62
  1427. venv/Lib/site-packages/docutils/languages/he.py +0 -61
  1428. venv/Lib/site-packages/docutils/languages/it.py +0 -58
  1429. venv/Lib/site-packages/docutils/languages/ja.py +0 -60
  1430. venv/Lib/site-packages/docutils/languages/ko.py +0 -60
  1431. venv/Lib/site-packages/docutils/languages/lt.py +0 -60
  1432. venv/Lib/site-packages/docutils/languages/lv.py +0 -59
  1433. venv/Lib/site-packages/docutils/languages/nl.py +0 -60
  1434. venv/Lib/site-packages/docutils/languages/pl.py +0 -60
  1435. venv/Lib/site-packages/docutils/languages/pt_br.py +0 -60
  1436. venv/Lib/site-packages/docutils/languages/ru.py +0 -58
  1437. venv/Lib/site-packages/docutils/languages/sk.py +0 -58
  1438. venv/Lib/site-packages/docutils/languages/sv.py +0 -59
  1439. venv/Lib/site-packages/docutils/languages/zh_cn.py +0 -66
  1440. venv/Lib/site-packages/docutils/languages/zh_tw.py +0 -65
  1441. venv/Lib/site-packages/docutils/nodes.py +0 -2314
  1442. venv/Lib/site-packages/docutils/parsers/__init__.py +0 -92
  1443. venv/Lib/site-packages/docutils/parsers/commonmark_wrapper.py +0 -56
  1444. venv/Lib/site-packages/docutils/parsers/null.py +0 -20
  1445. venv/Lib/site-packages/docutils/parsers/recommonmark_wrapper.py +0 -136
  1446. venv/Lib/site-packages/docutils/parsers/rst/__init__.py +0 -414
  1447. venv/Lib/site-packages/docutils/parsers/rst/directives/__init__.py +0 -460
  1448. venv/Lib/site-packages/docutils/parsers/rst/directives/admonitions.py +0 -99
  1449. venv/Lib/site-packages/docutils/parsers/rst/directives/body.py +0 -304
  1450. venv/Lib/site-packages/docutils/parsers/rst/directives/html.py +0 -21
  1451. venv/Lib/site-packages/docutils/parsers/rst/directives/images.py +0 -163
  1452. venv/Lib/site-packages/docutils/parsers/rst/directives/misc.py +0 -635
  1453. venv/Lib/site-packages/docutils/parsers/rst/directives/parts.py +0 -126
  1454. venv/Lib/site-packages/docutils/parsers/rst/directives/references.py +0 -29
  1455. venv/Lib/site-packages/docutils/parsers/rst/directives/tables.py +0 -513
  1456. venv/Lib/site-packages/docutils/parsers/rst/languages/__init__.py +0 -40
  1457. venv/Lib/site-packages/docutils/parsers/rst/languages/af.py +0 -107
  1458. venv/Lib/site-packages/docutils/parsers/rst/languages/ar.py +0 -99
  1459. venv/Lib/site-packages/docutils/parsers/rst/languages/ca.py +0 -126
  1460. venv/Lib/site-packages/docutils/parsers/rst/languages/cs.py +0 -110
  1461. venv/Lib/site-packages/docutils/parsers/rst/languages/da.py +0 -113
  1462. venv/Lib/site-packages/docutils/parsers/rst/languages/de.py +0 -106
  1463. venv/Lib/site-packages/docutils/parsers/rst/languages/en.py +0 -111
  1464. venv/Lib/site-packages/docutils/parsers/rst/languages/eo.py +0 -118
  1465. venv/Lib/site-packages/docutils/parsers/rst/languages/es.py +0 -122
  1466. venv/Lib/site-packages/docutils/parsers/rst/languages/fa.py +0 -102
  1467. venv/Lib/site-packages/docutils/parsers/rst/languages/fi.py +0 -98
  1468. venv/Lib/site-packages/docutils/parsers/rst/languages/fr.py +0 -104
  1469. venv/Lib/site-packages/docutils/parsers/rst/languages/gl.py +0 -111
  1470. venv/Lib/site-packages/docutils/parsers/rst/languages/he.py +0 -109
  1471. venv/Lib/site-packages/docutils/parsers/rst/languages/it.py +0 -98
  1472. venv/Lib/site-packages/docutils/parsers/rst/languages/ja.py +0 -119
  1473. venv/Lib/site-packages/docutils/parsers/rst/languages/ko.py +0 -111
  1474. venv/Lib/site-packages/docutils/parsers/rst/languages/lt.py +0 -109
  1475. venv/Lib/site-packages/docutils/parsers/rst/languages/lv.py +0 -108
  1476. venv/Lib/site-packages/docutils/parsers/rst/languages/nl.py +0 -113
  1477. venv/Lib/site-packages/docutils/parsers/rst/languages/pl.py +0 -100
  1478. venv/Lib/site-packages/docutils/parsers/rst/languages/pt_br.py +0 -109
  1479. venv/Lib/site-packages/docutils/parsers/rst/languages/ru.py +0 -90
  1480. venv/Lib/site-packages/docutils/parsers/rst/languages/sk.py +0 -96
  1481. venv/Lib/site-packages/docutils/parsers/rst/languages/sv.py +0 -96
  1482. venv/Lib/site-packages/docutils/parsers/rst/languages/zh_cn.py +0 -104
  1483. venv/Lib/site-packages/docutils/parsers/rst/languages/zh_tw.py +0 -109
  1484. venv/Lib/site-packages/docutils/parsers/rst/roles.py +0 -439
  1485. venv/Lib/site-packages/docutils/parsers/rst/states.py +0 -3135
  1486. venv/Lib/site-packages/docutils/parsers/rst/tableparser.py +0 -539
  1487. venv/Lib/site-packages/docutils/readers/__init__.py +0 -113
  1488. venv/Lib/site-packages/docutils/readers/doctree.py +0 -46
  1489. venv/Lib/site-packages/docutils/readers/pep.py +0 -48
  1490. venv/Lib/site-packages/docutils/readers/standalone.py +0 -65
  1491. venv/Lib/site-packages/docutils/statemachine.py +0 -1525
  1492. venv/Lib/site-packages/docutils/transforms/__init__.py +0 -174
  1493. venv/Lib/site-packages/docutils/transforms/components.py +0 -54
  1494. venv/Lib/site-packages/docutils/transforms/frontmatter.py +0 -545
  1495. venv/Lib/site-packages/docutils/transforms/misc.py +0 -144
  1496. venv/Lib/site-packages/docutils/transforms/parts.py +0 -176
  1497. venv/Lib/site-packages/docutils/transforms/peps.py +0 -308
  1498. venv/Lib/site-packages/docutils/transforms/references.py +0 -919
  1499. venv/Lib/site-packages/docutils/transforms/universal.py +0 -338
  1500. venv/Lib/site-packages/docutils/transforms/writer_aux.py +0 -99
  1501. venv/Lib/site-packages/docutils/utils/__init__.py +0 -821
  1502. venv/Lib/site-packages/docutils/utils/code_analyzer.py +0 -138
  1503. venv/Lib/site-packages/docutils/utils/error_reporting.py +0 -222
  1504. venv/Lib/site-packages/docutils/utils/math/__init__.py +0 -52
  1505. venv/Lib/site-packages/docutils/utils/math/latex2mathml.py +0 -1430
  1506. venv/Lib/site-packages/docutils/utils/math/math2html.py +0 -3171
  1507. venv/Lib/site-packages/docutils/utils/math/tex2mathml_extern.py +0 -152
  1508. venv/Lib/site-packages/docutils/utils/math/tex2unichar.py +0 -704
  1509. venv/Lib/site-packages/docutils/utils/math/unichar2tex.py +0 -808
  1510. venv/Lib/site-packages/docutils/utils/punctuation_chars.py +0 -122
  1511. venv/Lib/site-packages/docutils/utils/roman.py +0 -86
  1512. venv/Lib/site-packages/docutils/utils/smartquotes.py +0 -991
  1513. venv/Lib/site-packages/docutils/utils/urischemes.py +0 -138
  1514. venv/Lib/site-packages/docutils/writers/__init__.py +0 -151
  1515. venv/Lib/site-packages/docutils/writers/_html_base.py +0 -1781
  1516. venv/Lib/site-packages/docutils/writers/docutils_xml.py +0 -188
  1517. venv/Lib/site-packages/docutils/writers/html4css1/__init__.py +0 -947
  1518. venv/Lib/site-packages/docutils/writers/html5_polyglot/__init__.py +0 -454
  1519. venv/Lib/site-packages/docutils/writers/latex2e/__init__.py +0 -3295
  1520. venv/Lib/site-packages/docutils/writers/manpage.py +0 -1181
  1521. venv/Lib/site-packages/docutils/writers/null.py +0 -21
  1522. venv/Lib/site-packages/docutils/writers/odf_odt/__init__.py +0 -3468
  1523. venv/Lib/site-packages/docutils/writers/odf_odt/pygmentsformatter.py +0 -109
  1524. venv/Lib/site-packages/docutils/writers/pep_html/__init__.py +0 -103
  1525. venv/Lib/site-packages/docutils/writers/pseudoxml.py +0 -40
  1526. venv/Lib/site-packages/docutils/writers/s5_html/__init__.py +0 -352
  1527. venv/Lib/site-packages/docutils/writers/xetex/__init__.py +0 -149
  1528. venv/Lib/site-packages/future/__init__.py +0 -93
  1529. venv/Lib/site-packages/future/backports/__init__.py +0 -26
  1530. venv/Lib/site-packages/future/backports/_markupbase.py +0 -422
  1531. venv/Lib/site-packages/future/backports/datetime.py +0 -2152
  1532. venv/Lib/site-packages/future/backports/email/__init__.py +0 -78
  1533. venv/Lib/site-packages/future/backports/email/_encoded_words.py +0 -232
  1534. venv/Lib/site-packages/future/backports/email/_header_value_parser.py +0 -2965
  1535. venv/Lib/site-packages/future/backports/email/_parseaddr.py +0 -546
  1536. venv/Lib/site-packages/future/backports/email/_policybase.py +0 -365
  1537. venv/Lib/site-packages/future/backports/email/base64mime.py +0 -121
  1538. venv/Lib/site-packages/future/backports/email/charset.py +0 -409
  1539. venv/Lib/site-packages/future/backports/email/encoders.py +0 -90
  1540. venv/Lib/site-packages/future/backports/email/errors.py +0 -111
  1541. venv/Lib/site-packages/future/backports/email/feedparser.py +0 -525
  1542. venv/Lib/site-packages/future/backports/email/generator.py +0 -498
  1543. venv/Lib/site-packages/future/backports/email/header.py +0 -581
  1544. venv/Lib/site-packages/future/backports/email/headerregistry.py +0 -592
  1545. venv/Lib/site-packages/future/backports/email/iterators.py +0 -74
  1546. venv/Lib/site-packages/future/backports/email/message.py +0 -882
  1547. venv/Lib/site-packages/future/backports/email/mime/__init__.py +0 -0
  1548. venv/Lib/site-packages/future/backports/email/mime/application.py +0 -39
  1549. venv/Lib/site-packages/future/backports/email/mime/audio.py +0 -74
  1550. venv/Lib/site-packages/future/backports/email/mime/base.py +0 -25
  1551. venv/Lib/site-packages/future/backports/email/mime/image.py +0 -48
  1552. venv/Lib/site-packages/future/backports/email/mime/message.py +0 -36
  1553. venv/Lib/site-packages/future/backports/email/mime/multipart.py +0 -49
  1554. venv/Lib/site-packages/future/backports/email/mime/nonmultipart.py +0 -24
  1555. venv/Lib/site-packages/future/backports/email/mime/text.py +0 -44
  1556. venv/Lib/site-packages/future/backports/email/parser.py +0 -135
  1557. venv/Lib/site-packages/future/backports/email/policy.py +0 -193
  1558. venv/Lib/site-packages/future/backports/email/quoprimime.py +0 -326
  1559. venv/Lib/site-packages/future/backports/email/utils.py +0 -400
  1560. venv/Lib/site-packages/future/backports/html/__init__.py +0 -27
  1561. venv/Lib/site-packages/future/backports/html/entities.py +0 -2514
  1562. venv/Lib/site-packages/future/backports/html/parser.py +0 -536
  1563. venv/Lib/site-packages/future/backports/http/__init__.py +0 -0
  1564. venv/Lib/site-packages/future/backports/http/client.py +0 -1346
  1565. venv/Lib/site-packages/future/backports/http/cookiejar.py +0 -2116
  1566. venv/Lib/site-packages/future/backports/http/cookies.py +0 -598
  1567. venv/Lib/site-packages/future/backports/http/server.py +0 -1226
  1568. venv/Lib/site-packages/future/backports/misc.py +0 -958
  1569. venv/Lib/site-packages/future/backports/socket.py +0 -454
  1570. venv/Lib/site-packages/future/backports/socketserver.py +0 -747
  1571. venv/Lib/site-packages/future/backports/test/__init__.py +0 -9
  1572. venv/Lib/site-packages/future/backports/test/pystone.py +0 -272
  1573. venv/Lib/site-packages/future/backports/test/ssl_servers.py +0 -207
  1574. venv/Lib/site-packages/future/backports/test/support.py +0 -2048
  1575. venv/Lib/site-packages/future/backports/total_ordering.py +0 -38
  1576. venv/Lib/site-packages/future/backports/urllib/__init__.py +0 -0
  1577. venv/Lib/site-packages/future/backports/urllib/error.py +0 -75
  1578. venv/Lib/site-packages/future/backports/urllib/parse.py +0 -991
  1579. venv/Lib/site-packages/future/backports/urllib/request.py +0 -2647
  1580. venv/Lib/site-packages/future/backports/urllib/response.py +0 -103
  1581. venv/Lib/site-packages/future/backports/urllib/robotparser.py +0 -211
  1582. venv/Lib/site-packages/future/backports/xmlrpc/__init__.py +0 -1
  1583. venv/Lib/site-packages/future/backports/xmlrpc/client.py +0 -1496
  1584. venv/Lib/site-packages/future/backports/xmlrpc/server.py +0 -999
  1585. venv/Lib/site-packages/future/builtins/__init__.py +0 -51
  1586. venv/Lib/site-packages/future/builtins/disabled.py +0 -66
  1587. venv/Lib/site-packages/future/builtins/iterators.py +0 -52
  1588. venv/Lib/site-packages/future/builtins/misc.py +0 -135
  1589. venv/Lib/site-packages/future/builtins/new_min_max.py +0 -59
  1590. venv/Lib/site-packages/future/builtins/newnext.py +0 -70
  1591. venv/Lib/site-packages/future/builtins/newround.py +0 -105
  1592. venv/Lib/site-packages/future/builtins/newsuper.py +0 -113
  1593. venv/Lib/site-packages/future/moves/__init__.py +0 -8
  1594. venv/Lib/site-packages/future/moves/_dummy_thread.py +0 -8
  1595. venv/Lib/site-packages/future/moves/_markupbase.py +0 -8
  1596. venv/Lib/site-packages/future/moves/_thread.py +0 -8
  1597. venv/Lib/site-packages/future/moves/builtins.py +0 -10
  1598. venv/Lib/site-packages/future/moves/collections.py +0 -18
  1599. venv/Lib/site-packages/future/moves/configparser.py +0 -8
  1600. venv/Lib/site-packages/future/moves/copyreg.py +0 -12
  1601. venv/Lib/site-packages/future/moves/dbm/__init__.py +0 -20
  1602. venv/Lib/site-packages/future/moves/dbm/dumb.py +0 -9
  1603. venv/Lib/site-packages/future/moves/dbm/gnu.py +0 -9
  1604. venv/Lib/site-packages/future/moves/dbm/ndbm.py +0 -9
  1605. venv/Lib/site-packages/future/moves/html/__init__.py +0 -31
  1606. venv/Lib/site-packages/future/moves/html/entities.py +0 -8
  1607. venv/Lib/site-packages/future/moves/html/parser.py +0 -8
  1608. venv/Lib/site-packages/future/moves/http/__init__.py +0 -4
  1609. venv/Lib/site-packages/future/moves/http/client.py +0 -8
  1610. venv/Lib/site-packages/future/moves/http/cookiejar.py +0 -8
  1611. venv/Lib/site-packages/future/moves/http/cookies.py +0 -9
  1612. venv/Lib/site-packages/future/moves/http/server.py +0 -20
  1613. venv/Lib/site-packages/future/moves/itertools.py +0 -8
  1614. venv/Lib/site-packages/future/moves/pickle.py +0 -11
  1615. venv/Lib/site-packages/future/moves/queue.py +0 -8
  1616. venv/Lib/site-packages/future/moves/reprlib.py +0 -8
  1617. venv/Lib/site-packages/future/moves/socketserver.py +0 -8
  1618. venv/Lib/site-packages/future/moves/subprocess.py +0 -11
  1619. venv/Lib/site-packages/future/moves/sys.py +0 -8
  1620. venv/Lib/site-packages/future/moves/test/__init__.py +0 -5
  1621. venv/Lib/site-packages/future/moves/test/support.py +0 -10
  1622. venv/Lib/site-packages/future/moves/tkinter/__init__.py +0 -27
  1623. venv/Lib/site-packages/future/moves/tkinter/colorchooser.py +0 -12
  1624. venv/Lib/site-packages/future/moves/tkinter/commondialog.py +0 -12
  1625. venv/Lib/site-packages/future/moves/tkinter/constants.py +0 -12
  1626. venv/Lib/site-packages/future/moves/tkinter/dialog.py +0 -12
  1627. venv/Lib/site-packages/future/moves/tkinter/dnd.py +0 -12
  1628. venv/Lib/site-packages/future/moves/tkinter/filedialog.py +0 -18
  1629. venv/Lib/site-packages/future/moves/tkinter/font.py +0 -12
  1630. venv/Lib/site-packages/future/moves/tkinter/messagebox.py +0 -12
  1631. venv/Lib/site-packages/future/moves/tkinter/scrolledtext.py +0 -12
  1632. venv/Lib/site-packages/future/moves/tkinter/simpledialog.py +0 -12
  1633. venv/Lib/site-packages/future/moves/tkinter/tix.py +0 -12
  1634. venv/Lib/site-packages/future/moves/tkinter/ttk.py +0 -12
  1635. venv/Lib/site-packages/future/moves/urllib/__init__.py +0 -5
  1636. venv/Lib/site-packages/future/moves/urllib/error.py +0 -16
  1637. venv/Lib/site-packages/future/moves/urllib/parse.py +0 -28
  1638. venv/Lib/site-packages/future/moves/urllib/request.py +0 -94
  1639. venv/Lib/site-packages/future/moves/urllib/response.py +0 -12
  1640. venv/Lib/site-packages/future/moves/urllib/robotparser.py +0 -8
  1641. venv/Lib/site-packages/future/moves/winreg.py +0 -8
  1642. venv/Lib/site-packages/future/moves/xmlrpc/__init__.py +0 -0
  1643. venv/Lib/site-packages/future/moves/xmlrpc/client.py +0 -7
  1644. venv/Lib/site-packages/future/moves/xmlrpc/server.py +0 -7
  1645. venv/Lib/site-packages/future/standard_library/__init__.py +0 -815
  1646. venv/Lib/site-packages/future/tests/__init__.py +0 -0
  1647. venv/Lib/site-packages/future/tests/base.py +0 -539
  1648. venv/Lib/site-packages/future/types/__init__.py +0 -257
  1649. venv/Lib/site-packages/future/types/newbytes.py +0 -460
  1650. venv/Lib/site-packages/future/types/newdict.py +0 -76
  1651. venv/Lib/site-packages/future/types/newint.py +0 -384
  1652. venv/Lib/site-packages/future/types/newlist.py +0 -95
  1653. venv/Lib/site-packages/future/types/newmemoryview.py +0 -29
  1654. venv/Lib/site-packages/future/types/newobject.py +0 -117
  1655. venv/Lib/site-packages/future/types/newopen.py +0 -32
  1656. venv/Lib/site-packages/future/types/newrange.py +0 -170
  1657. venv/Lib/site-packages/future/types/newstr.py +0 -426
  1658. venv/Lib/site-packages/future/utils/__init__.py +0 -770
  1659. venv/Lib/site-packages/future/utils/surrogateescape.py +0 -198
  1660. venv/Lib/site-packages/idna/__init__.py +0 -44
  1661. venv/Lib/site-packages/idna/codec.py +0 -112
  1662. venv/Lib/site-packages/idna/compat.py +0 -13
  1663. venv/Lib/site-packages/idna/core.py +0 -400
  1664. venv/Lib/site-packages/idna/idnadata.py +0 -2151
  1665. venv/Lib/site-packages/idna/intranges.py +0 -54
  1666. venv/Lib/site-packages/idna/package_data.py +0 -2
  1667. venv/Lib/site-packages/idna/uts46data.py +0 -8600
  1668. venv/Lib/site-packages/importlib_metadata/__init__.py +0 -1095
  1669. venv/Lib/site-packages/importlib_metadata/_adapters.py +0 -68
  1670. venv/Lib/site-packages/importlib_metadata/_collections.py +0 -30
  1671. venv/Lib/site-packages/importlib_metadata/_compat.py +0 -72
  1672. venv/Lib/site-packages/importlib_metadata/_functools.py +0 -104
  1673. venv/Lib/site-packages/importlib_metadata/_itertools.py +0 -73
  1674. venv/Lib/site-packages/importlib_metadata/_meta.py +0 -48
  1675. venv/Lib/site-packages/importlib_metadata/_text.py +0 -99
  1676. venv/Lib/site-packages/jaraco/classes/__init__.py +0 -0
  1677. venv/Lib/site-packages/jaraco/classes/ancestry.py +0 -68
  1678. venv/Lib/site-packages/jaraco/classes/meta.py +0 -66
  1679. venv/Lib/site-packages/jaraco/classes/properties.py +0 -170
  1680. venv/Lib/site-packages/je_editor/__init__.py +0 -25
  1681. venv/Lib/site-packages/je_editor/__main__.py +0 -18
  1682. venv/Lib/site-packages/je_editor/ui/__init__.py +0 -1
  1683. venv/Lib/site-packages/je_editor/ui/editor_main_ui/__init__.py +0 -1
  1684. venv/Lib/site-packages/je_editor/ui/editor_main_ui/content_init/__init__.py +0 -0
  1685. venv/Lib/site-packages/je_editor/ui/editor_main_ui/content_init/content_init.py +0 -80
  1686. venv/Lib/site-packages/je_editor/ui/editor_main_ui/menu/__init__.py +0 -0
  1687. venv/Lib/site-packages/je_editor/ui/editor_main_ui/menu/build_menu.py +0 -10
  1688. venv/Lib/site-packages/je_editor/ui/editor_main_ui/menu/file_menu/__init__.py +0 -0
  1689. venv/Lib/site-packages/je_editor/ui/editor_main_ui/menu/file_menu/build_file_menu.py +0 -65
  1690. venv/Lib/site-packages/je_editor/ui/editor_main_ui/menu/popup_menu/__init__.py +0 -0
  1691. venv/Lib/site-packages/je_editor/ui/editor_main_ui/menu/popup_menu/build_popup_menu.py +0 -13
  1692. venv/Lib/site-packages/je_editor/ui/editor_main_ui/menu/run_menu/__init__.py +0 -0
  1693. venv/Lib/site-packages/je_editor/ui/editor_main_ui/menu/run_menu/build_run_menu.py +0 -35
  1694. venv/Lib/site-packages/je_editor/ui/editor_main_ui/protocal_setting/__init__.py +0 -0
  1695. venv/Lib/site-packages/je_editor/ui/editor_main_ui/protocal_setting/set_ui_protocol.py +0 -8
  1696. venv/Lib/site-packages/je_editor/ui/editor_main_ui/redirect_output/__init__.py +0 -0
  1697. venv/Lib/site-packages/je_editor/ui/editor_main_ui/redirect_output/redirect_output_to_tkinter_ui.py +0 -26
  1698. venv/Lib/site-packages/je_editor/ui/editor_main_ui/tkinter_editor.py +0 -148
  1699. venv/Lib/site-packages/je_editor/ui/editor_main_ui/ui_event_bind/__init__.py +0 -0
  1700. venv/Lib/site-packages/je_editor/ui/editor_main_ui/ui_event_bind/event_bind.py +0 -26
  1701. venv/Lib/site-packages/je_editor/ui/editor_main_ui/ui_grid/__init__.py +0 -0
  1702. venv/Lib/site-packages/je_editor/ui/editor_main_ui/ui_grid/build_ui_grid.py +0 -24
  1703. venv/Lib/site-packages/je_editor/ui/editor_main_ui/ui_setting/__init__.py +0 -0
  1704. venv/Lib/site-packages/je_editor/ui/editor_main_ui/ui_setting/ui_setting.py +0 -41
  1705. venv/Lib/site-packages/je_editor/ui/ui_event/__init__.py +0 -1
  1706. venv/Lib/site-packages/je_editor/ui/ui_event/auto_save/__init__.py +0 -1
  1707. venv/Lib/site-packages/je_editor/ui/ui_event/auto_save/start_auto_save/__init__.py +0 -0
  1708. venv/Lib/site-packages/je_editor/ui/ui_event/auto_save/start_auto_save/start_auto_save.py +0 -17
  1709. venv/Lib/site-packages/je_editor/ui/ui_event/change_font/__init__.py +0 -1
  1710. venv/Lib/site-packages/je_editor/ui/ui_event/change_font/change_font.py +0 -38
  1711. venv/Lib/site-packages/je_editor/ui/ui_event/clear_result/__init__.py +0 -0
  1712. venv/Lib/site-packages/je_editor/ui/ui_event/clear_result/clear_result.py +0 -8
  1713. venv/Lib/site-packages/je_editor/ui/ui_event/close/__init__.py +0 -1
  1714. venv/Lib/site-packages/je_editor/ui/ui_event/close/close_event.py +0 -12
  1715. venv/Lib/site-packages/je_editor/ui/ui_event/encoding/__init__.py +0 -0
  1716. venv/Lib/site-packages/je_editor/ui/ui_event/encoding/set_encoding.py +0 -10
  1717. venv/Lib/site-packages/je_editor/ui/ui_event/execute/__init__.py +0 -1
  1718. venv/Lib/site-packages/je_editor/ui/ui_event/execute/execute_code/__init__.py +0 -1
  1719. venv/Lib/site-packages/je_editor/ui/ui_event/execute/execute_code/exec_code.py +0 -22
  1720. venv/Lib/site-packages/je_editor/ui/ui_event/execute/execute_shell_command/__init__.py +0 -1
  1721. venv/Lib/site-packages/je_editor/ui/ui_event/execute/execute_shell_command/run_on_shell.py +0 -12
  1722. venv/Lib/site-packages/je_editor/ui/ui_event/language/__init__.py +0 -1
  1723. venv/Lib/site-packages/je_editor/ui/ui_event/language/set_language.py +0 -13
  1724. venv/Lib/site-packages/je_editor/ui/ui_event/open_file/__init__.py +0 -1
  1725. venv/Lib/site-packages/je_editor/ui/ui_event/open_file/open_file_to_read/__init__.py +0 -1
  1726. venv/Lib/site-packages/je_editor/ui/ui_event/open_file/open_file_to_read/open_file_to_read.py +0 -20
  1727. venv/Lib/site-packages/je_editor/ui/ui_event/open_file/open_last_edit_file/__init__.py +0 -1
  1728. venv/Lib/site-packages/je_editor/ui/ui_event/open_file/open_last_edit_file/open_last_edit_file.py +0 -17
  1729. venv/Lib/site-packages/je_editor/ui/ui_event/save_file/__init__.py +0 -0
  1730. venv/Lib/site-packages/je_editor/ui/ui_event/save_file/save_file_to_open/__init__.py +0 -1
  1731. venv/Lib/site-packages/je_editor/ui/ui_event/save_file/save_file_to_open/save_file_to_open.py +0 -19
  1732. venv/Lib/site-packages/je_editor/ui/ui_event/tag_keyword/__init__.py +0 -1
  1733. venv/Lib/site-packages/je_editor/ui/ui_event/tag_keyword/tag_keyword.py +0 -49
  1734. venv/Lib/site-packages/je_editor/ui/ui_event/text_process/__init__.py +0 -0
  1735. venv/Lib/site-packages/je_editor/ui/ui_event/text_process/program_exec/__init__.py +0 -1
  1736. venv/Lib/site-packages/je_editor/ui/ui_event/text_process/program_exec/code_exec_manager.py +0 -169
  1737. venv/Lib/site-packages/je_editor/ui/ui_event/text_process/program_exec/process_error.py +0 -10
  1738. venv/Lib/site-packages/je_editor/ui/ui_event/text_process/shell/__init__.py +0 -1
  1739. venv/Lib/site-packages/je_editor/ui/ui_event/text_process/shell/shell_exec_manager.py +0 -130
  1740. venv/Lib/site-packages/je_editor/utils/__init__.py +0 -1
  1741. venv/Lib/site-packages/je_editor/utils/editor_content/__init__.py +0 -1
  1742. venv/Lib/site-packages/je_editor/utils/editor_content/content_save.py +0 -66
  1743. venv/Lib/site-packages/je_editor/utils/editor_content/editor_content_data.py +0 -19
  1744. venv/Lib/site-packages/je_editor/utils/encoding/__init__.py +0 -1
  1745. venv/Lib/site-packages/je_editor/utils/encoding/encoding_data_module.py +0 -101
  1746. venv/Lib/site-packages/je_editor/utils/exception/__init__.py +0 -1
  1747. venv/Lib/site-packages/je_editor/utils/exception/exception_tags.py +0 -33
  1748. venv/Lib/site-packages/je_editor/utils/exception/exceptions.py +0 -30
  1749. venv/Lib/site-packages/je_editor/utils/file/__init__.py +0 -0
  1750. venv/Lib/site-packages/je_editor/utils/file/open/__init__.py +0 -1
  1751. venv/Lib/site-packages/je_editor/utils/file/open/open_file.py +0 -52
  1752. venv/Lib/site-packages/je_editor/utils/file/save/__init__.py +0 -1
  1753. venv/Lib/site-packages/je_editor/utils/file/save/save_file.py +0 -81
  1754. venv/Lib/site-packages/je_editor/utils/font/__init__.py +0 -1
  1755. venv/Lib/site-packages/je_editor/utils/font/font.py +0 -20
  1756. venv/Lib/site-packages/je_editor/utils/json_format/__init__.py +0 -1
  1757. venv/Lib/site-packages/je_editor/utils/json_format/json_process.py +0 -28
  1758. venv/Lib/site-packages/je_editor/utils/keyword/__init__.py +0 -1
  1759. venv/Lib/site-packages/je_editor/utils/keyword/keyword_list.py +0 -4
  1760. venv/Lib/site-packages/je_editor/utils/language/__init__.py +0 -1
  1761. venv/Lib/site-packages/je_editor/utils/language/language_data_module.py +0 -9
  1762. venv/Lib/site-packages/je_editor/utils/language_data_module/__init__.py +0 -1
  1763. venv/Lib/site-packages/je_editor/utils/language_data_module/language_compiler_data_module.py +0 -7
  1764. venv/Lib/site-packages/je_editor/utils/language_data_module/language_param_data_module.py +0 -7
  1765. venv/Lib/site-packages/je_editor/utils/project/__init__.py +0 -0
  1766. venv/Lib/site-packages/je_editor/utils/project/create_project.py +0 -16
  1767. venv/Lib/site-packages/je_editor/utils/redirect_manager/__init__.py +0 -0
  1768. venv/Lib/site-packages/je_editor/utils/redirect_manager/redirect_manager_class.py +0 -70
  1769. venv/Lib/site-packages/je_editor/utils/string_translate/__init__.py +0 -1
  1770. venv/Lib/site-packages/je_editor/utils/string_translate/used_string.py +0 -4
  1771. venv/Lib/site-packages/je_editor/utils/theme/__init__.py +0 -0
  1772. venv/Lib/site-packages/je_editor/utils/theme/theme.py +0 -6
  1773. venv/Lib/site-packages/keyring/__init__.py +0 -17
  1774. venv/Lib/site-packages/keyring/__main__.py +0 -4
  1775. venv/Lib/site-packages/keyring/_compat.py +0 -7
  1776. venv/Lib/site-packages/keyring/_properties_compat.py +0 -169
  1777. venv/Lib/site-packages/keyring/backend.py +0 -256
  1778. venv/Lib/site-packages/keyring/backends/OS_X.py +0 -13
  1779. venv/Lib/site-packages/keyring/backends/SecretService.py +0 -119
  1780. venv/Lib/site-packages/keyring/backends/Windows.py +0 -170
  1781. venv/Lib/site-packages/keyring/backends/__init__.py +0 -0
  1782. venv/Lib/site-packages/keyring/backends/chainer.py +0 -71
  1783. venv/Lib/site-packages/keyring/backends/fail.py +0 -27
  1784. venv/Lib/site-packages/keyring/backends/kwallet.py +0 -165
  1785. venv/Lib/site-packages/keyring/backends/libsecret.py +0 -152
  1786. venv/Lib/site-packages/keyring/backends/macOS/__init__.py +0 -76
  1787. venv/Lib/site-packages/keyring/backends/macOS/api.py +0 -172
  1788. venv/Lib/site-packages/keyring/backends/null.py +0 -17
  1789. venv/Lib/site-packages/keyring/cli.py +0 -136
  1790. venv/Lib/site-packages/keyring/core.py +0 -186
  1791. venv/Lib/site-packages/keyring/credentials.py +0 -70
  1792. venv/Lib/site-packages/keyring/devpi_client.py +0 -19
  1793. venv/Lib/site-packages/keyring/errors.py +0 -61
  1794. venv/Lib/site-packages/keyring/http.py +0 -39
  1795. venv/Lib/site-packages/keyring/py310compat.py +0 -10
  1796. venv/Lib/site-packages/keyring/testing/__init__.py +0 -0
  1797. venv/Lib/site-packages/keyring/testing/backend.py +0 -172
  1798. venv/Lib/site-packages/keyring/testing/util.py +0 -71
  1799. venv/Lib/site-packages/keyring/util/__init__.py +0 -37
  1800. venv/Lib/site-packages/keyring/util/platform_.py +0 -68
  1801. venv/Lib/site-packages/keyring/util/properties.py +0 -18
  1802. venv/Lib/site-packages/libfuturize/__init__.py +0 -1
  1803. venv/Lib/site-packages/libfuturize/fixer_util.py +0 -520
  1804. venv/Lib/site-packages/libfuturize/fixes/__init__.py +0 -97
  1805. venv/Lib/site-packages/libfuturize/fixes/fix_UserDict.py +0 -102
  1806. venv/Lib/site-packages/libfuturize/fixes/fix_absolute_import.py +0 -91
  1807. venv/Lib/site-packages/libfuturize/fixes/fix_add__future__imports_except_unicode_literals.py +0 -26
  1808. venv/Lib/site-packages/libfuturize/fixes/fix_basestring.py +0 -17
  1809. venv/Lib/site-packages/libfuturize/fixes/fix_bytes.py +0 -24
  1810. venv/Lib/site-packages/libfuturize/fixes/fix_cmp.py +0 -33
  1811. venv/Lib/site-packages/libfuturize/fixes/fix_division.py +0 -12
  1812. venv/Lib/site-packages/libfuturize/fixes/fix_division_safe.py +0 -109
  1813. venv/Lib/site-packages/libfuturize/fixes/fix_execfile.py +0 -37
  1814. venv/Lib/site-packages/libfuturize/fixes/fix_future_builtins.py +0 -59
  1815. venv/Lib/site-packages/libfuturize/fixes/fix_future_standard_library.py +0 -24
  1816. venv/Lib/site-packages/libfuturize/fixes/fix_future_standard_library_urllib.py +0 -28
  1817. venv/Lib/site-packages/libfuturize/fixes/fix_input.py +0 -32
  1818. venv/Lib/site-packages/libfuturize/fixes/fix_metaclass.py +0 -262
  1819. venv/Lib/site-packages/libfuturize/fixes/fix_next_call.py +0 -104
  1820. venv/Lib/site-packages/libfuturize/fixes/fix_object.py +0 -17
  1821. venv/Lib/site-packages/libfuturize/fixes/fix_oldstr_wrap.py +0 -39
  1822. venv/Lib/site-packages/libfuturize/fixes/fix_order___future__imports.py +0 -36
  1823. venv/Lib/site-packages/libfuturize/fixes/fix_print.py +0 -104
  1824. venv/Lib/site-packages/libfuturize/fixes/fix_print_with_import.py +0 -22
  1825. venv/Lib/site-packages/libfuturize/fixes/fix_raise.py +0 -107
  1826. venv/Lib/site-packages/libfuturize/fixes/fix_remove_old__future__imports.py +0 -26
  1827. venv/Lib/site-packages/libfuturize/fixes/fix_unicode_keep_u.py +0 -24
  1828. venv/Lib/site-packages/libfuturize/fixes/fix_unicode_literals_import.py +0 -18
  1829. venv/Lib/site-packages/libfuturize/fixes/fix_xrange_with_import.py +0 -20
  1830. venv/Lib/site-packages/libfuturize/main.py +0 -322
  1831. venv/Lib/site-packages/libpasteurize/__init__.py +0 -1
  1832. venv/Lib/site-packages/libpasteurize/fixes/__init__.py +0 -54
  1833. venv/Lib/site-packages/libpasteurize/fixes/feature_base.py +0 -57
  1834. venv/Lib/site-packages/libpasteurize/fixes/fix_add_all__future__imports.py +0 -24
  1835. venv/Lib/site-packages/libpasteurize/fixes/fix_add_all_future_builtins.py +0 -37
  1836. venv/Lib/site-packages/libpasteurize/fixes/fix_add_future_standard_library_import.py +0 -23
  1837. venv/Lib/site-packages/libpasteurize/fixes/fix_annotations.py +0 -48
  1838. venv/Lib/site-packages/libpasteurize/fixes/fix_division.py +0 -28
  1839. venv/Lib/site-packages/libpasteurize/fixes/fix_features.py +0 -86
  1840. venv/Lib/site-packages/libpasteurize/fixes/fix_fullargspec.py +0 -16
  1841. venv/Lib/site-packages/libpasteurize/fixes/fix_future_builtins.py +0 -46
  1842. venv/Lib/site-packages/libpasteurize/fixes/fix_getcwd.py +0 -26
  1843. venv/Lib/site-packages/libpasteurize/fixes/fix_imports.py +0 -112
  1844. venv/Lib/site-packages/libpasteurize/fixes/fix_imports2.py +0 -174
  1845. venv/Lib/site-packages/libpasteurize/fixes/fix_kwargs.py +0 -147
  1846. venv/Lib/site-packages/libpasteurize/fixes/fix_memoryview.py +0 -21
  1847. venv/Lib/site-packages/libpasteurize/fixes/fix_metaclass.py +0 -78
  1848. venv/Lib/site-packages/libpasteurize/fixes/fix_newstyle.py +0 -33
  1849. venv/Lib/site-packages/libpasteurize/fixes/fix_next.py +0 -43
  1850. venv/Lib/site-packages/libpasteurize/fixes/fix_printfunction.py +0 -17
  1851. venv/Lib/site-packages/libpasteurize/fixes/fix_raise.py +0 -25
  1852. venv/Lib/site-packages/libpasteurize/fixes/fix_raise_.py +0 -35
  1853. venv/Lib/site-packages/libpasteurize/fixes/fix_throw.py +0 -23
  1854. venv/Lib/site-packages/libpasteurize/fixes/fix_unpacking.py +0 -120
  1855. venv/Lib/site-packages/libpasteurize/main.py +0 -204
  1856. venv/Lib/site-packages/more_itertools/__init__.py +0 -6
  1857. venv/Lib/site-packages/more_itertools/more.py +0 -4347
  1858. venv/Lib/site-packages/more_itertools/recipes.py +0 -841
  1859. venv/Lib/site-packages/ordlookup/__init__.py +0 -45
  1860. venv/Lib/site-packages/ordlookup/oleaut32.py +0 -400
  1861. venv/Lib/site-packages/ordlookup/ws2_32.py +0 -119
  1862. venv/Lib/site-packages/packaging/__init__.py +0 -15
  1863. venv/Lib/site-packages/packaging/_elffile.py +0 -108
  1864. venv/Lib/site-packages/packaging/_manylinux.py +0 -238
  1865. venv/Lib/site-packages/packaging/_musllinux.py +0 -80
  1866. venv/Lib/site-packages/packaging/_parser.py +0 -328
  1867. venv/Lib/site-packages/packaging/_structures.py +0 -61
  1868. venv/Lib/site-packages/packaging/_tokenizer.py +0 -188
  1869. venv/Lib/site-packages/packaging/markers.py +0 -245
  1870. venv/Lib/site-packages/packaging/requirements.py +0 -95
  1871. venv/Lib/site-packages/packaging/specifiers.py +0 -1005
  1872. venv/Lib/site-packages/packaging/tags.py +0 -546
  1873. venv/Lib/site-packages/packaging/utils.py +0 -141
  1874. venv/Lib/site-packages/packaging/version.py +0 -563
  1875. venv/Lib/site-packages/past/__init__.py +0 -90
  1876. venv/Lib/site-packages/past/builtins/__init__.py +0 -72
  1877. venv/Lib/site-packages/past/builtins/misc.py +0 -161
  1878. venv/Lib/site-packages/past/builtins/noniterators.py +0 -272
  1879. venv/Lib/site-packages/past/translation/__init__.py +0 -485
  1880. venv/Lib/site-packages/past/types/__init__.py +0 -29
  1881. venv/Lib/site-packages/past/types/basestring.py +0 -38
  1882. venv/Lib/site-packages/past/types/olddict.py +0 -96
  1883. venv/Lib/site-packages/past/types/oldstr.py +0 -135
  1884. venv/Lib/site-packages/past/utils/__init__.py +0 -97
  1885. venv/Lib/site-packages/pefile.py +0 -7437
  1886. venv/Lib/site-packages/peutils.py +0 -592
  1887. venv/Lib/site-packages/pip/__init__.py +0 -13
  1888. venv/Lib/site-packages/pip/__main__.py +0 -31
  1889. venv/Lib/site-packages/pip/__pip-runner__.py +0 -50
  1890. venv/Lib/site-packages/pip/_internal/__init__.py +0 -19
  1891. venv/Lib/site-packages/pip/_internal/build_env.py +0 -310
  1892. venv/Lib/site-packages/pip/_internal/cache.py +0 -293
  1893. venv/Lib/site-packages/pip/_internal/cli/__init__.py +0 -4
  1894. venv/Lib/site-packages/pip/_internal/cli/autocompletion.py +0 -171
  1895. venv/Lib/site-packages/pip/_internal/cli/base_command.py +0 -216
  1896. venv/Lib/site-packages/pip/_internal/cli/cmdoptions.py +0 -1049
  1897. venv/Lib/site-packages/pip/_internal/cli/command_context.py +0 -27
  1898. venv/Lib/site-packages/pip/_internal/cli/main.py +0 -70
  1899. venv/Lib/site-packages/pip/_internal/cli/main_parser.py +0 -134
  1900. venv/Lib/site-packages/pip/_internal/cli/parser.py +0 -294
  1901. venv/Lib/site-packages/pip/_internal/cli/progress_bars.py +0 -68
  1902. venv/Lib/site-packages/pip/_internal/cli/req_command.py +0 -502
  1903. venv/Lib/site-packages/pip/_internal/cli/spinners.py +0 -159
  1904. venv/Lib/site-packages/pip/_internal/cli/status_codes.py +0 -6
  1905. venv/Lib/site-packages/pip/_internal/commands/__init__.py +0 -132
  1906. venv/Lib/site-packages/pip/_internal/commands/cache.py +0 -223
  1907. venv/Lib/site-packages/pip/_internal/commands/check.py +0 -53
  1908. venv/Lib/site-packages/pip/_internal/commands/completion.py +0 -126
  1909. venv/Lib/site-packages/pip/_internal/commands/configuration.py +0 -282
  1910. venv/Lib/site-packages/pip/_internal/commands/debug.py +0 -199
  1911. venv/Lib/site-packages/pip/_internal/commands/download.py +0 -149
  1912. venv/Lib/site-packages/pip/_internal/commands/freeze.py +0 -97
  1913. venv/Lib/site-packages/pip/_internal/commands/hash.py +0 -59
  1914. venv/Lib/site-packages/pip/_internal/commands/help.py +0 -41
  1915. venv/Lib/site-packages/pip/_internal/commands/index.py +0 -138
  1916. venv/Lib/site-packages/pip/_internal/commands/inspect.py +0 -97
  1917. venv/Lib/site-packages/pip/_internal/commands/install.py +0 -860
  1918. venv/Lib/site-packages/pip/_internal/commands/list.py +0 -365
  1919. venv/Lib/site-packages/pip/_internal/commands/search.py +0 -174
  1920. venv/Lib/site-packages/pip/_internal/commands/show.py +0 -183
  1921. venv/Lib/site-packages/pip/_internal/commands/uninstall.py +0 -106
  1922. venv/Lib/site-packages/pip/_internal/commands/wheel.py +0 -203
  1923. venv/Lib/site-packages/pip/_internal/configuration.py +0 -374
  1924. venv/Lib/site-packages/pip/_internal/distributions/__init__.py +0 -21
  1925. venv/Lib/site-packages/pip/_internal/distributions/base.py +0 -39
  1926. venv/Lib/site-packages/pip/_internal/distributions/installed.py +0 -23
  1927. venv/Lib/site-packages/pip/_internal/distributions/sdist.py +0 -150
  1928. venv/Lib/site-packages/pip/_internal/distributions/wheel.py +0 -34
  1929. venv/Lib/site-packages/pip/_internal/exceptions.py +0 -660
  1930. venv/Lib/site-packages/pip/_internal/index/__init__.py +0 -2
  1931. venv/Lib/site-packages/pip/_internal/index/collector.py +0 -505
  1932. venv/Lib/site-packages/pip/_internal/index/package_finder.py +0 -1025
  1933. venv/Lib/site-packages/pip/_internal/index/sources.py +0 -224
  1934. venv/Lib/site-packages/pip/_internal/locations/__init__.py +0 -528
  1935. venv/Lib/site-packages/pip/_internal/locations/_distutils.py +0 -180
  1936. venv/Lib/site-packages/pip/_internal/locations/_sysconfig.py +0 -218
  1937. venv/Lib/site-packages/pip/_internal/locations/base.py +0 -81
  1938. venv/Lib/site-packages/pip/_internal/main.py +0 -12
  1939. venv/Lib/site-packages/pip/_internal/metadata/__init__.py +0 -127
  1940. venv/Lib/site-packages/pip/_internal/metadata/_json.py +0 -84
  1941. venv/Lib/site-packages/pip/_internal/metadata/base.py +0 -688
  1942. venv/Lib/site-packages/pip/_internal/metadata/importlib/__init__.py +0 -4
  1943. venv/Lib/site-packages/pip/_internal/metadata/importlib/_compat.py +0 -55
  1944. venv/Lib/site-packages/pip/_internal/metadata/importlib/_dists.py +0 -224
  1945. venv/Lib/site-packages/pip/_internal/metadata/importlib/_envs.py +0 -188
  1946. venv/Lib/site-packages/pip/_internal/metadata/pkg_resources.py +0 -270
  1947. venv/Lib/site-packages/pip/_internal/models/__init__.py +0 -2
  1948. venv/Lib/site-packages/pip/_internal/models/candidate.py +0 -34
  1949. venv/Lib/site-packages/pip/_internal/models/direct_url.py +0 -212
  1950. venv/Lib/site-packages/pip/_internal/models/format_control.py +0 -80
  1951. venv/Lib/site-packages/pip/_internal/models/index.py +0 -28
  1952. venv/Lib/site-packages/pip/_internal/models/installation_report.py +0 -53
  1953. venv/Lib/site-packages/pip/_internal/models/link.py +0 -507
  1954. venv/Lib/site-packages/pip/_internal/models/scheme.py +0 -31
  1955. venv/Lib/site-packages/pip/_internal/models/search_scope.py +0 -133
  1956. venv/Lib/site-packages/pip/_internal/models/selection_prefs.py +0 -51
  1957. venv/Lib/site-packages/pip/_internal/models/target_python.py +0 -110
  1958. venv/Lib/site-packages/pip/_internal/models/wheel.py +0 -92
  1959. venv/Lib/site-packages/pip/_internal/network/__init__.py +0 -2
  1960. venv/Lib/site-packages/pip/_internal/network/auth.py +0 -323
  1961. venv/Lib/site-packages/pip/_internal/network/cache.py +0 -69
  1962. venv/Lib/site-packages/pip/_internal/network/download.py +0 -186
  1963. venv/Lib/site-packages/pip/_internal/network/lazy_wheel.py +0 -210
  1964. venv/Lib/site-packages/pip/_internal/network/session.py +0 -518
  1965. venv/Lib/site-packages/pip/_internal/network/utils.py +0 -96
  1966. venv/Lib/site-packages/pip/_internal/network/xmlrpc.py +0 -60
  1967. venv/Lib/site-packages/pip/_internal/operations/__init__.py +0 -0
  1968. venv/Lib/site-packages/pip/_internal/operations/build/__init__.py +0 -0
  1969. venv/Lib/site-packages/pip/_internal/operations/build/build_tracker.py +0 -124
  1970. venv/Lib/site-packages/pip/_internal/operations/build/metadata.py +0 -39
  1971. venv/Lib/site-packages/pip/_internal/operations/build/metadata_editable.py +0 -41
  1972. venv/Lib/site-packages/pip/_internal/operations/build/metadata_legacy.py +0 -74
  1973. venv/Lib/site-packages/pip/_internal/operations/build/wheel.py +0 -37
  1974. venv/Lib/site-packages/pip/_internal/operations/build/wheel_editable.py +0 -46
  1975. venv/Lib/site-packages/pip/_internal/operations/build/wheel_legacy.py +0 -102
  1976. venv/Lib/site-packages/pip/_internal/operations/check.py +0 -149
  1977. venv/Lib/site-packages/pip/_internal/operations/freeze.py +0 -254
  1978. venv/Lib/site-packages/pip/_internal/operations/install/__init__.py +0 -2
  1979. venv/Lib/site-packages/pip/_internal/operations/install/editable_legacy.py +0 -47
  1980. venv/Lib/site-packages/pip/_internal/operations/install/legacy.py +0 -120
  1981. venv/Lib/site-packages/pip/_internal/operations/install/wheel.py +0 -738
  1982. venv/Lib/site-packages/pip/_internal/operations/prepare.py +0 -667
  1983. venv/Lib/site-packages/pip/_internal/pyproject.py +0 -175
  1984. venv/Lib/site-packages/pip/_internal/req/__init__.py +0 -94
  1985. venv/Lib/site-packages/pip/_internal/req/constructors.py +0 -501
  1986. venv/Lib/site-packages/pip/_internal/req/req_file.py +0 -544
  1987. venv/Lib/site-packages/pip/_internal/req/req_install.py +0 -942
  1988. venv/Lib/site-packages/pip/_internal/req/req_set.py +0 -82
  1989. venv/Lib/site-packages/pip/_internal/req/req_uninstall.py +0 -640
  1990. venv/Lib/site-packages/pip/_internal/resolution/__init__.py +0 -0
  1991. venv/Lib/site-packages/pip/_internal/resolution/base.py +0 -20
  1992. venv/Lib/site-packages/pip/_internal/resolution/legacy/__init__.py +0 -0
  1993. venv/Lib/site-packages/pip/_internal/resolution/legacy/resolver.py +0 -600
  1994. venv/Lib/site-packages/pip/_internal/resolution/resolvelib/__init__.py +0 -0
  1995. venv/Lib/site-packages/pip/_internal/resolution/resolvelib/base.py +0 -141
  1996. venv/Lib/site-packages/pip/_internal/resolution/resolvelib/candidates.py +0 -556
  1997. venv/Lib/site-packages/pip/_internal/resolution/resolvelib/factory.py +0 -731
  1998. venv/Lib/site-packages/pip/_internal/resolution/resolvelib/found_candidates.py +0 -155
  1999. venv/Lib/site-packages/pip/_internal/resolution/resolvelib/provider.py +0 -248
  2000. venv/Lib/site-packages/pip/_internal/resolution/resolvelib/reporter.py +0 -68
  2001. venv/Lib/site-packages/pip/_internal/resolution/resolvelib/requirements.py +0 -166
  2002. venv/Lib/site-packages/pip/_internal/resolution/resolvelib/resolver.py +0 -296
  2003. venv/Lib/site-packages/pip/_internal/self_outdated_check.py +0 -239
  2004. venv/Lib/site-packages/pip/_internal/utils/__init__.py +0 -0
  2005. venv/Lib/site-packages/pip/_internal/utils/_log.py +0 -38
  2006. venv/Lib/site-packages/pip/_internal/utils/appdirs.py +0 -52
  2007. venv/Lib/site-packages/pip/_internal/utils/compat.py +0 -63
  2008. venv/Lib/site-packages/pip/_internal/utils/compatibility_tags.py +0 -165
  2009. venv/Lib/site-packages/pip/_internal/utils/datetime.py +0 -11
  2010. venv/Lib/site-packages/pip/_internal/utils/deprecation.py +0 -188
  2011. venv/Lib/site-packages/pip/_internal/utils/direct_url_helpers.py +0 -87
  2012. venv/Lib/site-packages/pip/_internal/utils/distutils_args.py +0 -43
  2013. venv/Lib/site-packages/pip/_internal/utils/egg_link.py +0 -75
  2014. venv/Lib/site-packages/pip/_internal/utils/encoding.py +0 -36
  2015. venv/Lib/site-packages/pip/_internal/utils/entrypoints.py +0 -84
  2016. venv/Lib/site-packages/pip/_internal/utils/filesystem.py +0 -153
  2017. venv/Lib/site-packages/pip/_internal/utils/filetypes.py +0 -27
  2018. venv/Lib/site-packages/pip/_internal/utils/glibc.py +0 -88
  2019. venv/Lib/site-packages/pip/_internal/utils/hashes.py +0 -144
  2020. venv/Lib/site-packages/pip/_internal/utils/inject_securetransport.py +0 -35
  2021. venv/Lib/site-packages/pip/_internal/utils/logging.py +0 -348
  2022. venv/Lib/site-packages/pip/_internal/utils/misc.py +0 -723
  2023. venv/Lib/site-packages/pip/_internal/utils/models.py +0 -39
  2024. venv/Lib/site-packages/pip/_internal/utils/packaging.py +0 -57
  2025. venv/Lib/site-packages/pip/_internal/utils/setuptools_build.py +0 -195
  2026. venv/Lib/site-packages/pip/_internal/utils/subprocess.py +0 -260
  2027. venv/Lib/site-packages/pip/_internal/utils/temp_dir.py +0 -246
  2028. venv/Lib/site-packages/pip/_internal/utils/unpacking.py +0 -257
  2029. venv/Lib/site-packages/pip/_internal/utils/urls.py +0 -62
  2030. venv/Lib/site-packages/pip/_internal/utils/virtualenv.py +0 -104
  2031. venv/Lib/site-packages/pip/_internal/utils/wheel.py +0 -136
  2032. venv/Lib/site-packages/pip/_internal/vcs/__init__.py +0 -15
  2033. venv/Lib/site-packages/pip/_internal/vcs/bazaar.py +0 -112
  2034. venv/Lib/site-packages/pip/_internal/vcs/git.py +0 -526
  2035. venv/Lib/site-packages/pip/_internal/vcs/mercurial.py +0 -163
  2036. venv/Lib/site-packages/pip/_internal/vcs/subversion.py +0 -324
  2037. venv/Lib/site-packages/pip/_internal/vcs/versioncontrol.py +0 -705
  2038. venv/Lib/site-packages/pip/_internal/wheel_builder.py +0 -382
  2039. venv/Lib/site-packages/pip/_vendor/__init__.py +0 -120
  2040. venv/Lib/site-packages/pip/_vendor/cachecontrol/__init__.py +0 -18
  2041. venv/Lib/site-packages/pip/_vendor/cachecontrol/_cmd.py +0 -61
  2042. venv/Lib/site-packages/pip/_vendor/cachecontrol/adapter.py +0 -137
  2043. venv/Lib/site-packages/pip/_vendor/cachecontrol/cache.py +0 -65
  2044. venv/Lib/site-packages/pip/_vendor/cachecontrol/caches/__init__.py +0 -9
  2045. venv/Lib/site-packages/pip/_vendor/cachecontrol/caches/file_cache.py +0 -188
  2046. venv/Lib/site-packages/pip/_vendor/cachecontrol/caches/redis_cache.py +0 -39
  2047. venv/Lib/site-packages/pip/_vendor/cachecontrol/compat.py +0 -32
  2048. venv/Lib/site-packages/pip/_vendor/cachecontrol/controller.py +0 -439
  2049. venv/Lib/site-packages/pip/_vendor/cachecontrol/filewrapper.py +0 -111
  2050. venv/Lib/site-packages/pip/_vendor/cachecontrol/heuristics.py +0 -139
  2051. venv/Lib/site-packages/pip/_vendor/cachecontrol/serialize.py +0 -190
  2052. venv/Lib/site-packages/pip/_vendor/cachecontrol/wrapper.py +0 -33
  2053. venv/Lib/site-packages/pip/_vendor/certifi/__init__.py +0 -4
  2054. venv/Lib/site-packages/pip/_vendor/certifi/__main__.py +0 -12
  2055. venv/Lib/site-packages/pip/_vendor/certifi/core.py +0 -108
  2056. venv/Lib/site-packages/pip/_vendor/chardet/__init__.py +0 -93
  2057. venv/Lib/site-packages/pip/_vendor/chardet/big5freq.py +0 -386
  2058. venv/Lib/site-packages/pip/_vendor/chardet/big5prober.py +0 -47
  2059. venv/Lib/site-packages/pip/_vendor/chardet/chardistribution.py +0 -259
  2060. venv/Lib/site-packages/pip/_vendor/chardet/charsetgroupprober.py +0 -109
  2061. venv/Lib/site-packages/pip/_vendor/chardet/charsetprober.py +0 -138
  2062. venv/Lib/site-packages/pip/_vendor/chardet/cli/__init__.py +0 -0
  2063. venv/Lib/site-packages/pip/_vendor/chardet/cli/chardetect.py +0 -86
  2064. venv/Lib/site-packages/pip/_vendor/chardet/codingstatemachine.py +0 -88
  2065. venv/Lib/site-packages/pip/_vendor/chardet/cp949prober.py +0 -49
  2066. venv/Lib/site-packages/pip/_vendor/chardet/enums.py +0 -82
  2067. venv/Lib/site-packages/pip/_vendor/chardet/escprober.py +0 -102
  2068. venv/Lib/site-packages/pip/_vendor/chardet/escsm.py +0 -260
  2069. venv/Lib/site-packages/pip/_vendor/chardet/eucjpprober.py +0 -95
  2070. venv/Lib/site-packages/pip/_vendor/chardet/euckrfreq.py +0 -196
  2071. venv/Lib/site-packages/pip/_vendor/chardet/euckrprober.py +0 -47
  2072. venv/Lib/site-packages/pip/_vendor/chardet/euctwfreq.py +0 -388
  2073. venv/Lib/site-packages/pip/_vendor/chardet/euctwprober.py +0 -47
  2074. venv/Lib/site-packages/pip/_vendor/chardet/gb2312freq.py +0 -284
  2075. venv/Lib/site-packages/pip/_vendor/chardet/gb2312prober.py +0 -47
  2076. venv/Lib/site-packages/pip/_vendor/chardet/hebrewprober.py +0 -302
  2077. venv/Lib/site-packages/pip/_vendor/chardet/jisfreq.py +0 -325
  2078. venv/Lib/site-packages/pip/_vendor/chardet/johabfreq.py +0 -2382
  2079. venv/Lib/site-packages/pip/_vendor/chardet/johabprober.py +0 -47
  2080. venv/Lib/site-packages/pip/_vendor/chardet/jpcntx.py +0 -237
  2081. venv/Lib/site-packages/pip/_vendor/chardet/langbulgarianmodel.py +0 -4649
  2082. venv/Lib/site-packages/pip/_vendor/chardet/langgreekmodel.py +0 -4397
  2083. venv/Lib/site-packages/pip/_vendor/chardet/langhebrewmodel.py +0 -4380
  2084. venv/Lib/site-packages/pip/_vendor/chardet/langhungarianmodel.py +0 -4649
  2085. venv/Lib/site-packages/pip/_vendor/chardet/langrussianmodel.py +0 -5725
  2086. venv/Lib/site-packages/pip/_vendor/chardet/langthaimodel.py +0 -4380
  2087. venv/Lib/site-packages/pip/_vendor/chardet/langturkishmodel.py +0 -4380
  2088. venv/Lib/site-packages/pip/_vendor/chardet/latin1prober.py +0 -145
  2089. venv/Lib/site-packages/pip/_vendor/chardet/mbcharsetprober.py +0 -95
  2090. venv/Lib/site-packages/pip/_vendor/chardet/mbcsgroupprober.py +0 -56
  2091. venv/Lib/site-packages/pip/_vendor/chardet/mbcssm.py +0 -660
  2092. venv/Lib/site-packages/pip/_vendor/chardet/metadata/__init__.py +0 -0
  2093. venv/Lib/site-packages/pip/_vendor/chardet/metadata/languages.py +0 -351
  2094. venv/Lib/site-packages/pip/_vendor/chardet/sbcharsetprober.py +0 -160
  2095. venv/Lib/site-packages/pip/_vendor/chardet/sbcsgroupprober.py +0 -88
  2096. venv/Lib/site-packages/pip/_vendor/chardet/sjisprober.py +0 -98
  2097. venv/Lib/site-packages/pip/_vendor/chardet/universaldetector.py +0 -328
  2098. venv/Lib/site-packages/pip/_vendor/chardet/utf1632prober.py +0 -223
  2099. venv/Lib/site-packages/pip/_vendor/chardet/utf8prober.py +0 -80
  2100. venv/Lib/site-packages/pip/_vendor/chardet/version.py +0 -9
  2101. venv/Lib/site-packages/pip/_vendor/colorama/__init__.py +0 -6
  2102. venv/Lib/site-packages/pip/_vendor/colorama/ansi.py +0 -102
  2103. venv/Lib/site-packages/pip/_vendor/colorama/ansitowin32.py +0 -266
  2104. venv/Lib/site-packages/pip/_vendor/colorama/initialise.py +0 -80
  2105. venv/Lib/site-packages/pip/_vendor/colorama/win32.py +0 -152
  2106. venv/Lib/site-packages/pip/_vendor/colorama/winterm.py +0 -169
  2107. venv/Lib/site-packages/pip/_vendor/distlib/__init__.py +0 -23
  2108. venv/Lib/site-packages/pip/_vendor/distlib/compat.py +0 -1116
  2109. venv/Lib/site-packages/pip/_vendor/distlib/database.py +0 -1350
  2110. venv/Lib/site-packages/pip/_vendor/distlib/index.py +0 -508
  2111. venv/Lib/site-packages/pip/_vendor/distlib/locators.py +0 -1300
  2112. venv/Lib/site-packages/pip/_vendor/distlib/manifest.py +0 -393
  2113. venv/Lib/site-packages/pip/_vendor/distlib/markers.py +0 -152
  2114. venv/Lib/site-packages/pip/_vendor/distlib/metadata.py +0 -1076
  2115. venv/Lib/site-packages/pip/_vendor/distlib/resources.py +0 -358
  2116. venv/Lib/site-packages/pip/_vendor/distlib/scripts.py +0 -437
  2117. venv/Lib/site-packages/pip/_vendor/distlib/util.py +0 -1932
  2118. venv/Lib/site-packages/pip/_vendor/distlib/version.py +0 -739
  2119. venv/Lib/site-packages/pip/_vendor/distlib/wheel.py +0 -1082
  2120. venv/Lib/site-packages/pip/_vendor/distro/__init__.py +0 -54
  2121. venv/Lib/site-packages/pip/_vendor/distro/__main__.py +0 -4
  2122. venv/Lib/site-packages/pip/_vendor/distro/distro.py +0 -1374
  2123. venv/Lib/site-packages/pip/_vendor/idna/__init__.py +0 -44
  2124. venv/Lib/site-packages/pip/_vendor/idna/codec.py +0 -112
  2125. venv/Lib/site-packages/pip/_vendor/idna/compat.py +0 -13
  2126. venv/Lib/site-packages/pip/_vendor/idna/core.py +0 -400
  2127. venv/Lib/site-packages/pip/_vendor/idna/idnadata.py +0 -2151
  2128. venv/Lib/site-packages/pip/_vendor/idna/intranges.py +0 -54
  2129. venv/Lib/site-packages/pip/_vendor/idna/package_data.py +0 -2
  2130. venv/Lib/site-packages/pip/_vendor/idna/uts46data.py +0 -8600
  2131. venv/Lib/site-packages/pip/_vendor/msgpack/__init__.py +0 -57
  2132. venv/Lib/site-packages/pip/_vendor/msgpack/exceptions.py +0 -48
  2133. venv/Lib/site-packages/pip/_vendor/msgpack/ext.py +0 -193
  2134. venv/Lib/site-packages/pip/_vendor/msgpack/fallback.py +0 -1010
  2135. venv/Lib/site-packages/pip/_vendor/packaging/__about__.py +0 -26
  2136. venv/Lib/site-packages/pip/_vendor/packaging/__init__.py +0 -25
  2137. venv/Lib/site-packages/pip/_vendor/packaging/_manylinux.py +0 -301
  2138. venv/Lib/site-packages/pip/_vendor/packaging/_musllinux.py +0 -136
  2139. venv/Lib/site-packages/pip/_vendor/packaging/_structures.py +0 -61
  2140. venv/Lib/site-packages/pip/_vendor/packaging/markers.py +0 -304
  2141. venv/Lib/site-packages/pip/_vendor/packaging/requirements.py +0 -146
  2142. venv/Lib/site-packages/pip/_vendor/packaging/specifiers.py +0 -802
  2143. venv/Lib/site-packages/pip/_vendor/packaging/tags.py +0 -487
  2144. venv/Lib/site-packages/pip/_vendor/packaging/utils.py +0 -136
  2145. venv/Lib/site-packages/pip/_vendor/packaging/version.py +0 -504
  2146. venv/Lib/site-packages/pip/_vendor/pep517/__init__.py +0 -6
  2147. venv/Lib/site-packages/pip/_vendor/pep517/_compat.py +0 -8
  2148. venv/Lib/site-packages/pip/_vendor/pep517/build.py +0 -126
  2149. venv/Lib/site-packages/pip/_vendor/pep517/check.py +0 -207
  2150. venv/Lib/site-packages/pip/_vendor/pep517/colorlog.py +0 -113
  2151. venv/Lib/site-packages/pip/_vendor/pep517/dirtools.py +0 -19
  2152. venv/Lib/site-packages/pip/_vendor/pep517/envbuild.py +0 -170
  2153. venv/Lib/site-packages/pip/_vendor/pep517/in_process/__init__.py +0 -26
  2154. venv/Lib/site-packages/pip/_vendor/pep517/in_process/_in_process.py +0 -351
  2155. venv/Lib/site-packages/pip/_vendor/pep517/meta.py +0 -93
  2156. venv/Lib/site-packages/pip/_vendor/pep517/wrappers.py +0 -362
  2157. venv/Lib/site-packages/pip/_vendor/pkg_resources/__init__.py +0 -3296
  2158. venv/Lib/site-packages/pip/_vendor/pkg_resources/py31compat.py +0 -23
  2159. venv/Lib/site-packages/pip/_vendor/platformdirs/__init__.py +0 -340
  2160. venv/Lib/site-packages/pip/_vendor/platformdirs/__main__.py +0 -46
  2161. venv/Lib/site-packages/pip/_vendor/platformdirs/android.py +0 -120
  2162. venv/Lib/site-packages/pip/_vendor/platformdirs/api.py +0 -156
  2163. venv/Lib/site-packages/pip/_vendor/platformdirs/macos.py +0 -64
  2164. venv/Lib/site-packages/pip/_vendor/platformdirs/unix.py +0 -181
  2165. venv/Lib/site-packages/pip/_vendor/platformdirs/version.py +0 -4
  2166. venv/Lib/site-packages/pip/_vendor/platformdirs/windows.py +0 -182
  2167. venv/Lib/site-packages/pip/_vendor/pygments/__init__.py +0 -82
  2168. venv/Lib/site-packages/pip/_vendor/pygments/__main__.py +0 -17
  2169. venv/Lib/site-packages/pip/_vendor/pygments/cmdline.py +0 -668
  2170. venv/Lib/site-packages/pip/_vendor/pygments/console.py +0 -70
  2171. venv/Lib/site-packages/pip/_vendor/pygments/filter.py +0 -71
  2172. venv/Lib/site-packages/pip/_vendor/pygments/filters/__init__.py +0 -940
  2173. venv/Lib/site-packages/pip/_vendor/pygments/formatter.py +0 -94
  2174. venv/Lib/site-packages/pip/_vendor/pygments/formatters/__init__.py +0 -143
  2175. venv/Lib/site-packages/pip/_vendor/pygments/formatters/_mapping.py +0 -23
  2176. venv/Lib/site-packages/pip/_vendor/pygments/formatters/bbcode.py +0 -108
  2177. venv/Lib/site-packages/pip/_vendor/pygments/formatters/groff.py +0 -170
  2178. venv/Lib/site-packages/pip/_vendor/pygments/formatters/html.py +0 -989
  2179. venv/Lib/site-packages/pip/_vendor/pygments/formatters/img.py +0 -645
  2180. venv/Lib/site-packages/pip/_vendor/pygments/formatters/irc.py +0 -179
  2181. venv/Lib/site-packages/pip/_vendor/pygments/formatters/latex.py +0 -521
  2182. venv/Lib/site-packages/pip/_vendor/pygments/formatters/other.py +0 -161
  2183. venv/Lib/site-packages/pip/_vendor/pygments/formatters/pangomarkup.py +0 -83
  2184. venv/Lib/site-packages/pip/_vendor/pygments/formatters/rtf.py +0 -146
  2185. venv/Lib/site-packages/pip/_vendor/pygments/formatters/svg.py +0 -188
  2186. venv/Lib/site-packages/pip/_vendor/pygments/formatters/terminal.py +0 -127
  2187. venv/Lib/site-packages/pip/_vendor/pygments/formatters/terminal256.py +0 -338
  2188. venv/Lib/site-packages/pip/_vendor/pygments/lexer.py +0 -882
  2189. venv/Lib/site-packages/pip/_vendor/pygments/lexers/__init__.py +0 -335
  2190. venv/Lib/site-packages/pip/_vendor/pygments/lexers/_mapping.py +0 -541
  2191. venv/Lib/site-packages/pip/_vendor/pygments/lexers/python.py +0 -1204
  2192. venv/Lib/site-packages/pip/_vendor/pygments/modeline.py +0 -43
  2193. venv/Lib/site-packages/pip/_vendor/pygments/plugin.py +0 -88
  2194. venv/Lib/site-packages/pip/_vendor/pygments/regexopt.py +0 -91
  2195. venv/Lib/site-packages/pip/_vendor/pygments/scanner.py +0 -104
  2196. venv/Lib/site-packages/pip/_vendor/pygments/sphinxext.py +0 -155
  2197. venv/Lib/site-packages/pip/_vendor/pygments/style.py +0 -197
  2198. venv/Lib/site-packages/pip/_vendor/pygments/styles/__init__.py +0 -97
  2199. venv/Lib/site-packages/pip/_vendor/pygments/token.py +0 -213
  2200. venv/Lib/site-packages/pip/_vendor/pygments/unistring.py +0 -153
  2201. venv/Lib/site-packages/pip/_vendor/pygments/util.py +0 -308
  2202. venv/Lib/site-packages/pip/_vendor/pyparsing/__init__.py +0 -331
  2203. venv/Lib/site-packages/pip/_vendor/pyparsing/actions.py +0 -207
  2204. venv/Lib/site-packages/pip/_vendor/pyparsing/common.py +0 -424
  2205. venv/Lib/site-packages/pip/_vendor/pyparsing/core.py +0 -5814
  2206. venv/Lib/site-packages/pip/_vendor/pyparsing/diagram/__init__.py +0 -642
  2207. venv/Lib/site-packages/pip/_vendor/pyparsing/exceptions.py +0 -267
  2208. venv/Lib/site-packages/pip/_vendor/pyparsing/helpers.py +0 -1088
  2209. venv/Lib/site-packages/pip/_vendor/pyparsing/results.py +0 -760
  2210. venv/Lib/site-packages/pip/_vendor/pyparsing/testing.py +0 -331
  2211. venv/Lib/site-packages/pip/_vendor/pyparsing/unicode.py +0 -352
  2212. venv/Lib/site-packages/pip/_vendor/pyparsing/util.py +0 -235
  2213. venv/Lib/site-packages/pip/_vendor/requests/__init__.py +0 -182
  2214. venv/Lib/site-packages/pip/_vendor/requests/__version__.py +0 -14
  2215. venv/Lib/site-packages/pip/_vendor/requests/_internal_utils.py +0 -48
  2216. venv/Lib/site-packages/pip/_vendor/requests/adapters.py +0 -584
  2217. venv/Lib/site-packages/pip/_vendor/requests/api.py +0 -157
  2218. venv/Lib/site-packages/pip/_vendor/requests/auth.py +0 -315
  2219. venv/Lib/site-packages/pip/_vendor/requests/certs.py +0 -24
  2220. venv/Lib/site-packages/pip/_vendor/requests/compat.py +0 -67
  2221. venv/Lib/site-packages/pip/_vendor/requests/cookies.py +0 -561
  2222. venv/Lib/site-packages/pip/_vendor/requests/exceptions.py +0 -141
  2223. venv/Lib/site-packages/pip/_vendor/requests/help.py +0 -131
  2224. venv/Lib/site-packages/pip/_vendor/requests/hooks.py +0 -33
  2225. venv/Lib/site-packages/pip/_vendor/requests/models.py +0 -1034
  2226. venv/Lib/site-packages/pip/_vendor/requests/packages.py +0 -16
  2227. venv/Lib/site-packages/pip/_vendor/requests/sessions.py +0 -831
  2228. venv/Lib/site-packages/pip/_vendor/requests/status_codes.py +0 -128
  2229. venv/Lib/site-packages/pip/_vendor/requests/structures.py +0 -99
  2230. venv/Lib/site-packages/pip/_vendor/requests/utils.py +0 -1086
  2231. venv/Lib/site-packages/pip/_vendor/resolvelib/__init__.py +0 -26
  2232. venv/Lib/site-packages/pip/_vendor/resolvelib/compat/__init__.py +0 -0
  2233. venv/Lib/site-packages/pip/_vendor/resolvelib/compat/collections_abc.py +0 -6
  2234. venv/Lib/site-packages/pip/_vendor/resolvelib/providers.py +0 -133
  2235. venv/Lib/site-packages/pip/_vendor/resolvelib/reporters.py +0 -43
  2236. venv/Lib/site-packages/pip/_vendor/resolvelib/resolvers.py +0 -482
  2237. venv/Lib/site-packages/pip/_vendor/resolvelib/structs.py +0 -165
  2238. venv/Lib/site-packages/pip/_vendor/rich/__init__.py +0 -176
  2239. venv/Lib/site-packages/pip/_vendor/rich/__main__.py +0 -282
  2240. venv/Lib/site-packages/pip/_vendor/rich/_cell_widths.py +0 -451
  2241. venv/Lib/site-packages/pip/_vendor/rich/_emoji_codes.py +0 -3610
  2242. venv/Lib/site-packages/pip/_vendor/rich/_emoji_replace.py +0 -32
  2243. venv/Lib/site-packages/pip/_vendor/rich/_export_format.py +0 -78
  2244. venv/Lib/site-packages/pip/_vendor/rich/_extension.py +0 -10
  2245. venv/Lib/site-packages/pip/_vendor/rich/_inspect.py +0 -270
  2246. venv/Lib/site-packages/pip/_vendor/rich/_log_render.py +0 -94
  2247. venv/Lib/site-packages/pip/_vendor/rich/_loop.py +0 -43
  2248. venv/Lib/site-packages/pip/_vendor/rich/_palettes.py +0 -309
  2249. venv/Lib/site-packages/pip/_vendor/rich/_pick.py +0 -17
  2250. venv/Lib/site-packages/pip/_vendor/rich/_ratio.py +0 -160
  2251. venv/Lib/site-packages/pip/_vendor/rich/_spinners.py +0 -482
  2252. venv/Lib/site-packages/pip/_vendor/rich/_stack.py +0 -16
  2253. venv/Lib/site-packages/pip/_vendor/rich/_timer.py +0 -19
  2254. venv/Lib/site-packages/pip/_vendor/rich/_win32_console.py +0 -662
  2255. venv/Lib/site-packages/pip/_vendor/rich/_windows.py +0 -72
  2256. venv/Lib/site-packages/pip/_vendor/rich/_windows_renderer.py +0 -56
  2257. venv/Lib/site-packages/pip/_vendor/rich/_wrap.py +0 -56
  2258. venv/Lib/site-packages/pip/_vendor/rich/abc.py +0 -33
  2259. venv/Lib/site-packages/pip/_vendor/rich/align.py +0 -311
  2260. venv/Lib/site-packages/pip/_vendor/rich/ansi.py +0 -237
  2261. venv/Lib/site-packages/pip/_vendor/rich/bar.py +0 -94
  2262. venv/Lib/site-packages/pip/_vendor/rich/box.py +0 -517
  2263. venv/Lib/site-packages/pip/_vendor/rich/cells.py +0 -154
  2264. venv/Lib/site-packages/pip/_vendor/rich/color.py +0 -615
  2265. venv/Lib/site-packages/pip/_vendor/rich/color_triplet.py +0 -38
  2266. venv/Lib/site-packages/pip/_vendor/rich/columns.py +0 -187
  2267. venv/Lib/site-packages/pip/_vendor/rich/console.py +0 -2572
  2268. venv/Lib/site-packages/pip/_vendor/rich/constrain.py +0 -37
  2269. venv/Lib/site-packages/pip/_vendor/rich/containers.py +0 -167
  2270. venv/Lib/site-packages/pip/_vendor/rich/control.py +0 -225
  2271. venv/Lib/site-packages/pip/_vendor/rich/default_styles.py +0 -188
  2272. venv/Lib/site-packages/pip/_vendor/rich/diagnose.py +0 -37
  2273. venv/Lib/site-packages/pip/_vendor/rich/emoji.py +0 -96
  2274. venv/Lib/site-packages/pip/_vendor/rich/errors.py +0 -34
  2275. venv/Lib/site-packages/pip/_vendor/rich/file_proxy.py +0 -54
  2276. venv/Lib/site-packages/pip/_vendor/rich/filesize.py +0 -89
  2277. venv/Lib/site-packages/pip/_vendor/rich/highlighter.py +0 -232
  2278. venv/Lib/site-packages/pip/_vendor/rich/json.py +0 -140
  2279. venv/Lib/site-packages/pip/_vendor/rich/jupyter.py +0 -101
  2280. venv/Lib/site-packages/pip/_vendor/rich/layout.py +0 -445
  2281. venv/Lib/site-packages/pip/_vendor/rich/live.py +0 -373
  2282. venv/Lib/site-packages/pip/_vendor/rich/live_render.py +0 -113
  2283. venv/Lib/site-packages/pip/_vendor/rich/logging.py +0 -280
  2284. venv/Lib/site-packages/pip/_vendor/rich/markup.py +0 -246
  2285. venv/Lib/site-packages/pip/_vendor/rich/measure.py +0 -151
  2286. venv/Lib/site-packages/pip/_vendor/rich/padding.py +0 -141
  2287. venv/Lib/site-packages/pip/_vendor/rich/pager.py +0 -34
  2288. venv/Lib/site-packages/pip/_vendor/rich/palette.py +0 -100
  2289. venv/Lib/site-packages/pip/_vendor/rich/panel.py +0 -251
  2290. venv/Lib/site-packages/pip/_vendor/rich/pretty.py +0 -1010
  2291. venv/Lib/site-packages/pip/_vendor/rich/progress.py +0 -1703
  2292. venv/Lib/site-packages/pip/_vendor/rich/progress_bar.py +0 -224
  2293. venv/Lib/site-packages/pip/_vendor/rich/prompt.py +0 -376
  2294. venv/Lib/site-packages/pip/_vendor/rich/protocol.py +0 -42
  2295. venv/Lib/site-packages/pip/_vendor/rich/region.py +0 -10
  2296. venv/Lib/site-packages/pip/_vendor/rich/repr.py +0 -152
  2297. venv/Lib/site-packages/pip/_vendor/rich/rule.py +0 -134
  2298. venv/Lib/site-packages/pip/_vendor/rich/scope.py +0 -86
  2299. venv/Lib/site-packages/pip/_vendor/rich/screen.py +0 -54
  2300. venv/Lib/site-packages/pip/_vendor/rich/segment.py +0 -739
  2301. venv/Lib/site-packages/pip/_vendor/rich/spinner.py +0 -136
  2302. venv/Lib/site-packages/pip/_vendor/rich/status.py +0 -132
  2303. venv/Lib/site-packages/pip/_vendor/rich/style.py +0 -771
  2304. venv/Lib/site-packages/pip/_vendor/rich/styled.py +0 -42
  2305. venv/Lib/site-packages/pip/_vendor/rich/syntax.py +0 -934
  2306. venv/Lib/site-packages/pip/_vendor/rich/table.py +0 -996
  2307. venv/Lib/site-packages/pip/_vendor/rich/terminal_theme.py +0 -153
  2308. venv/Lib/site-packages/pip/_vendor/rich/text.py +0 -1286
  2309. venv/Lib/site-packages/pip/_vendor/rich/theme.py +0 -112
  2310. venv/Lib/site-packages/pip/_vendor/rich/themes.py +0 -5
  2311. venv/Lib/site-packages/pip/_vendor/rich/traceback.py +0 -679
  2312. venv/Lib/site-packages/pip/_vendor/rich/tree.py +0 -251
  2313. venv/Lib/site-packages/pip/_vendor/six.py +0 -998
  2314. venv/Lib/site-packages/pip/_vendor/tenacity/__init__.py +0 -519
  2315. venv/Lib/site-packages/pip/_vendor/tenacity/_asyncio.py +0 -92
  2316. venv/Lib/site-packages/pip/_vendor/tenacity/_utils.py +0 -68
  2317. venv/Lib/site-packages/pip/_vendor/tenacity/after.py +0 -46
  2318. venv/Lib/site-packages/pip/_vendor/tenacity/before.py +0 -41
  2319. venv/Lib/site-packages/pip/_vendor/tenacity/before_sleep.py +0 -58
  2320. venv/Lib/site-packages/pip/_vendor/tenacity/nap.py +0 -43
  2321. venv/Lib/site-packages/pip/_vendor/tenacity/retry.py +0 -240
  2322. venv/Lib/site-packages/pip/_vendor/tenacity/stop.py +0 -96
  2323. venv/Lib/site-packages/pip/_vendor/tenacity/tornadoweb.py +0 -59
  2324. venv/Lib/site-packages/pip/_vendor/tenacity/wait.py +0 -232
  2325. venv/Lib/site-packages/pip/_vendor/tomli/__init__.py +0 -11
  2326. venv/Lib/site-packages/pip/_vendor/tomli/_parser.py +0 -691
  2327. venv/Lib/site-packages/pip/_vendor/tomli/_re.py +0 -107
  2328. venv/Lib/site-packages/pip/_vendor/tomli/_types.py +0 -10
  2329. venv/Lib/site-packages/pip/_vendor/typing_extensions.py +0 -2209
  2330. venv/Lib/site-packages/pip/_vendor/urllib3/__init__.py +0 -102
  2331. venv/Lib/site-packages/pip/_vendor/urllib3/_collections.py +0 -337
  2332. venv/Lib/site-packages/pip/_vendor/urllib3/_version.py +0 -2
  2333. venv/Lib/site-packages/pip/_vendor/urllib3/connection.py +0 -567
  2334. venv/Lib/site-packages/pip/_vendor/urllib3/connectionpool.py +0 -1110
  2335. venv/Lib/site-packages/pip/_vendor/urllib3/contrib/__init__.py +0 -0
  2336. venv/Lib/site-packages/pip/_vendor/urllib3/contrib/_appengine_environ.py +0 -36
  2337. venv/Lib/site-packages/pip/_vendor/urllib3/contrib/_securetransport/__init__.py +0 -0
  2338. venv/Lib/site-packages/pip/_vendor/urllib3/contrib/_securetransport/bindings.py +0 -519
  2339. venv/Lib/site-packages/pip/_vendor/urllib3/contrib/_securetransport/low_level.py +0 -397
  2340. venv/Lib/site-packages/pip/_vendor/urllib3/contrib/appengine.py +0 -314
  2341. venv/Lib/site-packages/pip/_vendor/urllib3/contrib/ntlmpool.py +0 -130
  2342. venv/Lib/site-packages/pip/_vendor/urllib3/contrib/pyopenssl.py +0 -519
  2343. venv/Lib/site-packages/pip/_vendor/urllib3/contrib/securetransport.py +0 -921
  2344. venv/Lib/site-packages/pip/_vendor/urllib3/contrib/socks.py +0 -216
  2345. venv/Lib/site-packages/pip/_vendor/urllib3/exceptions.py +0 -323
  2346. venv/Lib/site-packages/pip/_vendor/urllib3/fields.py +0 -274
  2347. venv/Lib/site-packages/pip/_vendor/urllib3/filepost.py +0 -98
  2348. venv/Lib/site-packages/pip/_vendor/urllib3/packages/__init__.py +0 -0
  2349. venv/Lib/site-packages/pip/_vendor/urllib3/packages/backports/__init__.py +0 -0
  2350. venv/Lib/site-packages/pip/_vendor/urllib3/packages/backports/makefile.py +0 -51
  2351. venv/Lib/site-packages/pip/_vendor/urllib3/packages/six.py +0 -1076
  2352. venv/Lib/site-packages/pip/_vendor/urllib3/poolmanager.py +0 -537
  2353. venv/Lib/site-packages/pip/_vendor/urllib3/request.py +0 -170
  2354. venv/Lib/site-packages/pip/_vendor/urllib3/response.py +0 -866
  2355. venv/Lib/site-packages/pip/_vendor/urllib3/util/__init__.py +0 -49
  2356. venv/Lib/site-packages/pip/_vendor/urllib3/util/connection.py +0 -149
  2357. venv/Lib/site-packages/pip/_vendor/urllib3/util/proxy.py +0 -57
  2358. venv/Lib/site-packages/pip/_vendor/urllib3/util/queue.py +0 -22
  2359. venv/Lib/site-packages/pip/_vendor/urllib3/util/request.py +0 -137
  2360. venv/Lib/site-packages/pip/_vendor/urllib3/util/response.py +0 -107
  2361. venv/Lib/site-packages/pip/_vendor/urllib3/util/retry.py +0 -620
  2362. venv/Lib/site-packages/pip/_vendor/urllib3/util/ssl_.py +0 -495
  2363. venv/Lib/site-packages/pip/_vendor/urllib3/util/ssl_match_hostname.py +0 -159
  2364. venv/Lib/site-packages/pip/_vendor/urllib3/util/ssltransport.py +0 -221
  2365. venv/Lib/site-packages/pip/_vendor/urllib3/util/timeout.py +0 -268
  2366. venv/Lib/site-packages/pip/_vendor/urllib3/util/url.py +0 -435
  2367. venv/Lib/site-packages/pip/_vendor/urllib3/util/wait.py +0 -152
  2368. venv/Lib/site-packages/pip/_vendor/webencodings/__init__.py +0 -342
  2369. venv/Lib/site-packages/pip/_vendor/webencodings/labels.py +0 -231
  2370. venv/Lib/site-packages/pip/_vendor/webencodings/mklabels.py +0 -59
  2371. venv/Lib/site-packages/pip/_vendor/webencodings/tests.py +0 -153
  2372. venv/Lib/site-packages/pip/_vendor/webencodings/x_user_defined.py +0 -325
  2373. venv/Lib/site-packages/pkg_resources/__init__.py +0 -3357
  2374. venv/Lib/site-packages/pkg_resources/_vendor/__init__.py +0 -0
  2375. venv/Lib/site-packages/pkg_resources/_vendor/importlib_resources/__init__.py +0 -36
  2376. venv/Lib/site-packages/pkg_resources/_vendor/importlib_resources/_adapters.py +0 -170
  2377. venv/Lib/site-packages/pkg_resources/_vendor/importlib_resources/_common.py +0 -207
  2378. venv/Lib/site-packages/pkg_resources/_vendor/importlib_resources/_compat.py +0 -108
  2379. venv/Lib/site-packages/pkg_resources/_vendor/importlib_resources/_itertools.py +0 -35
  2380. venv/Lib/site-packages/pkg_resources/_vendor/importlib_resources/_legacy.py +0 -120
  2381. venv/Lib/site-packages/pkg_resources/_vendor/importlib_resources/abc.py +0 -170
  2382. venv/Lib/site-packages/pkg_resources/_vendor/importlib_resources/readers.py +0 -120
  2383. venv/Lib/site-packages/pkg_resources/_vendor/importlib_resources/simple.py +0 -106
  2384. venv/Lib/site-packages/pkg_resources/_vendor/jaraco/__init__.py +0 -0
  2385. venv/Lib/site-packages/pkg_resources/_vendor/jaraco/context.py +0 -288
  2386. venv/Lib/site-packages/pkg_resources/_vendor/jaraco/functools.py +0 -525
  2387. venv/Lib/site-packages/pkg_resources/_vendor/jaraco/text/__init__.py +0 -599
  2388. venv/Lib/site-packages/pkg_resources/_vendor/more_itertools/__init__.py +0 -6
  2389. venv/Lib/site-packages/pkg_resources/_vendor/more_itertools/more.py +0 -4346
  2390. venv/Lib/site-packages/pkg_resources/_vendor/more_itertools/recipes.py +0 -841
  2391. venv/Lib/site-packages/pkg_resources/_vendor/packaging/__init__.py +0 -15
  2392. venv/Lib/site-packages/pkg_resources/_vendor/packaging/_elffile.py +0 -108
  2393. venv/Lib/site-packages/pkg_resources/_vendor/packaging/_manylinux.py +0 -238
  2394. venv/Lib/site-packages/pkg_resources/_vendor/packaging/_musllinux.py +0 -80
  2395. venv/Lib/site-packages/pkg_resources/_vendor/packaging/_parser.py +0 -328
  2396. venv/Lib/site-packages/pkg_resources/_vendor/packaging/_structures.py +0 -61
  2397. venv/Lib/site-packages/pkg_resources/_vendor/packaging/_tokenizer.py +0 -188
  2398. venv/Lib/site-packages/pkg_resources/_vendor/packaging/markers.py +0 -245
  2399. venv/Lib/site-packages/pkg_resources/_vendor/packaging/requirements.py +0 -95
  2400. venv/Lib/site-packages/pkg_resources/_vendor/packaging/specifiers.py +0 -1005
  2401. venv/Lib/site-packages/pkg_resources/_vendor/packaging/tags.py +0 -546
  2402. venv/Lib/site-packages/pkg_resources/_vendor/packaging/utils.py +0 -141
  2403. venv/Lib/site-packages/pkg_resources/_vendor/packaging/version.py +0 -563
  2404. venv/Lib/site-packages/pkg_resources/_vendor/platformdirs/__init__.py +0 -342
  2405. venv/Lib/site-packages/pkg_resources/_vendor/platformdirs/__main__.py +0 -46
  2406. venv/Lib/site-packages/pkg_resources/_vendor/platformdirs/android.py +0 -120
  2407. venv/Lib/site-packages/pkg_resources/_vendor/platformdirs/api.py +0 -156
  2408. venv/Lib/site-packages/pkg_resources/_vendor/platformdirs/macos.py +0 -64
  2409. venv/Lib/site-packages/pkg_resources/_vendor/platformdirs/unix.py +0 -181
  2410. venv/Lib/site-packages/pkg_resources/_vendor/platformdirs/version.py +0 -4
  2411. venv/Lib/site-packages/pkg_resources/_vendor/platformdirs/windows.py +0 -184
  2412. venv/Lib/site-packages/pkg_resources/_vendor/typing_extensions.py +0 -2209
  2413. venv/Lib/site-packages/pkg_resources/_vendor/zipp.py +0 -329
  2414. venv/Lib/site-packages/pkg_resources/extern/__init__.py +0 -80
  2415. venv/Lib/site-packages/pkginfo/__init__.py +0 -9
  2416. venv/Lib/site-packages/pkginfo/bdist.py +0 -39
  2417. venv/Lib/site-packages/pkginfo/commandline.py +0 -229
  2418. venv/Lib/site-packages/pkginfo/develop.py +0 -46
  2419. venv/Lib/site-packages/pkginfo/distribution.py +0 -162
  2420. venv/Lib/site-packages/pkginfo/index.py +0 -15
  2421. venv/Lib/site-packages/pkginfo/installed.py +0 -62
  2422. venv/Lib/site-packages/pkginfo/sdist.py +0 -75
  2423. venv/Lib/site-packages/pkginfo/tests/__init__.py +0 -37
  2424. venv/Lib/site-packages/pkginfo/tests/test_bdist.py +0 -60
  2425. venv/Lib/site-packages/pkginfo/tests/test_commandline.py +0 -345
  2426. venv/Lib/site-packages/pkginfo/tests/test_develop.py +0 -27
  2427. venv/Lib/site-packages/pkginfo/tests/test_distribution.py +0 -477
  2428. venv/Lib/site-packages/pkginfo/tests/test_index.py +0 -76
  2429. venv/Lib/site-packages/pkginfo/tests/test_installed.py +0 -139
  2430. venv/Lib/site-packages/pkginfo/tests/test_sdist.py +0 -156
  2431. venv/Lib/site-packages/pkginfo/tests/test_utils.py +0 -176
  2432. venv/Lib/site-packages/pkginfo/tests/test_wheel.py +0 -117
  2433. venv/Lib/site-packages/pkginfo/utils.py +0 -62
  2434. venv/Lib/site-packages/pkginfo/wheel.py +0 -55
  2435. venv/Lib/site-packages/pygments/__init__.py +0 -82
  2436. venv/Lib/site-packages/pygments/__main__.py +0 -17
  2437. venv/Lib/site-packages/pygments/cmdline.py +0 -668
  2438. venv/Lib/site-packages/pygments/console.py +0 -70
  2439. venv/Lib/site-packages/pygments/filter.py +0 -71
  2440. venv/Lib/site-packages/pygments/filters/__init__.py +0 -940
  2441. venv/Lib/site-packages/pygments/formatter.py +0 -94
  2442. venv/Lib/site-packages/pygments/formatters/__init__.py +0 -142
  2443. venv/Lib/site-packages/pygments/formatters/_mapping.py +0 -23
  2444. venv/Lib/site-packages/pygments/formatters/bbcode.py +0 -108
  2445. venv/Lib/site-packages/pygments/formatters/groff.py +0 -170
  2446. venv/Lib/site-packages/pygments/formatters/html.py +0 -991
  2447. venv/Lib/site-packages/pygments/formatters/img.py +0 -645
  2448. venv/Lib/site-packages/pygments/formatters/irc.py +0 -154
  2449. venv/Lib/site-packages/pygments/formatters/latex.py +0 -521
  2450. venv/Lib/site-packages/pygments/formatters/other.py +0 -161
  2451. venv/Lib/site-packages/pygments/formatters/pangomarkup.py +0 -83
  2452. venv/Lib/site-packages/pygments/formatters/rtf.py +0 -146
  2453. venv/Lib/site-packages/pygments/formatters/svg.py +0 -188
  2454. venv/Lib/site-packages/pygments/formatters/terminal.py +0 -127
  2455. venv/Lib/site-packages/pygments/formatters/terminal256.py +0 -338
  2456. venv/Lib/site-packages/pygments/lexer.py +0 -883
  2457. venv/Lib/site-packages/pygments/lexers/__init__.py +0 -334
  2458. venv/Lib/site-packages/pygments/lexers/_ada_builtins.py +0 -103
  2459. venv/Lib/site-packages/pygments/lexers/_asy_builtins.py +0 -1644
  2460. venv/Lib/site-packages/pygments/lexers/_cl_builtins.py +0 -231
  2461. venv/Lib/site-packages/pygments/lexers/_cocoa_builtins.py +0 -75
  2462. venv/Lib/site-packages/pygments/lexers/_csound_builtins.py +0 -1780
  2463. venv/Lib/site-packages/pygments/lexers/_css_builtins.py +0 -558
  2464. venv/Lib/site-packages/pygments/lexers/_julia_builtins.py +0 -411
  2465. venv/Lib/site-packages/pygments/lexers/_lasso_builtins.py +0 -5326
  2466. venv/Lib/site-packages/pygments/lexers/_lilypond_builtins.py +0 -4886
  2467. venv/Lib/site-packages/pygments/lexers/_lua_builtins.py +0 -285
  2468. venv/Lib/site-packages/pygments/lexers/_mapping.py +0 -553
  2469. venv/Lib/site-packages/pygments/lexers/_mql_builtins.py +0 -1171
  2470. venv/Lib/site-packages/pygments/lexers/_mysql_builtins.py +0 -1335
  2471. venv/Lib/site-packages/pygments/lexers/_openedge_builtins.py +0 -2600
  2472. venv/Lib/site-packages/pygments/lexers/_php_builtins.py +0 -3325
  2473. venv/Lib/site-packages/pygments/lexers/_postgres_builtins.py +0 -684
  2474. venv/Lib/site-packages/pygments/lexers/_qlik_builtins.py +0 -666
  2475. venv/Lib/site-packages/pygments/lexers/_scheme_builtins.py +0 -1609
  2476. venv/Lib/site-packages/pygments/lexers/_scilab_builtins.py +0 -3093
  2477. venv/Lib/site-packages/pygments/lexers/_sourcemod_builtins.py +0 -1151
  2478. venv/Lib/site-packages/pygments/lexers/_stan_builtins.py +0 -648
  2479. venv/Lib/site-packages/pygments/lexers/_stata_builtins.py +0 -457
  2480. venv/Lib/site-packages/pygments/lexers/_tsql_builtins.py +0 -1003
  2481. venv/Lib/site-packages/pygments/lexers/_usd_builtins.py +0 -112
  2482. venv/Lib/site-packages/pygments/lexers/_vbscript_builtins.py +0 -279
  2483. venv/Lib/site-packages/pygments/lexers/_vim_builtins.py +0 -1938
  2484. venv/Lib/site-packages/pygments/lexers/actionscript.py +0 -245
  2485. venv/Lib/site-packages/pygments/lexers/ada.py +0 -144
  2486. venv/Lib/site-packages/pygments/lexers/agile.py +0 -23
  2487. venv/Lib/site-packages/pygments/lexers/algebra.py +0 -302
  2488. venv/Lib/site-packages/pygments/lexers/ambient.py +0 -76
  2489. venv/Lib/site-packages/pygments/lexers/amdgpu.py +0 -53
  2490. venv/Lib/site-packages/pygments/lexers/ampl.py +0 -88
  2491. venv/Lib/site-packages/pygments/lexers/apdlexer.py +0 -447
  2492. venv/Lib/site-packages/pygments/lexers/apl.py +0 -104
  2493. venv/Lib/site-packages/pygments/lexers/archetype.py +0 -319
  2494. venv/Lib/site-packages/pygments/lexers/arrow.py +0 -117
  2495. venv/Lib/site-packages/pygments/lexers/arturo.py +0 -250
  2496. venv/Lib/site-packages/pygments/lexers/asc.py +0 -55
  2497. venv/Lib/site-packages/pygments/lexers/asm.py +0 -1037
  2498. venv/Lib/site-packages/pygments/lexers/automation.py +0 -381
  2499. venv/Lib/site-packages/pygments/lexers/bare.py +0 -102
  2500. venv/Lib/site-packages/pygments/lexers/basic.py +0 -665
  2501. venv/Lib/site-packages/pygments/lexers/bdd.py +0 -58
  2502. venv/Lib/site-packages/pygments/lexers/berry.py +0 -99
  2503. venv/Lib/site-packages/pygments/lexers/bibtex.py +0 -159
  2504. venv/Lib/site-packages/pygments/lexers/boa.py +0 -97
  2505. venv/Lib/site-packages/pygments/lexers/business.py +0 -626
  2506. venv/Lib/site-packages/pygments/lexers/c_cpp.py +0 -409
  2507. venv/Lib/site-packages/pygments/lexers/c_like.py +0 -666
  2508. venv/Lib/site-packages/pygments/lexers/capnproto.py +0 -75
  2509. venv/Lib/site-packages/pygments/lexers/cddl.py +0 -173
  2510. venv/Lib/site-packages/pygments/lexers/chapel.py +0 -136
  2511. venv/Lib/site-packages/pygments/lexers/clean.py +0 -179
  2512. venv/Lib/site-packages/pygments/lexers/comal.py +0 -80
  2513. venv/Lib/site-packages/pygments/lexers/compiled.py +0 -34
  2514. venv/Lib/site-packages/pygments/lexers/configs.py +0 -1174
  2515. venv/Lib/site-packages/pygments/lexers/console.py +0 -114
  2516. venv/Lib/site-packages/pygments/lexers/cplint.py +0 -44
  2517. venv/Lib/site-packages/pygments/lexers/crystal.py +0 -365
  2518. venv/Lib/site-packages/pygments/lexers/csound.py +0 -468
  2519. venv/Lib/site-packages/pygments/lexers/css.py +0 -602
  2520. venv/Lib/site-packages/pygments/lexers/d.py +0 -258
  2521. venv/Lib/site-packages/pygments/lexers/dalvik.py +0 -127
  2522. venv/Lib/site-packages/pygments/lexers/data.py +0 -767
  2523. venv/Lib/site-packages/pygments/lexers/devicetree.py +0 -109
  2524. venv/Lib/site-packages/pygments/lexers/diff.py +0 -165
  2525. venv/Lib/site-packages/pygments/lexers/dotnet.py +0 -729
  2526. venv/Lib/site-packages/pygments/lexers/dsls.py +0 -981
  2527. venv/Lib/site-packages/pygments/lexers/dylan.py +0 -287
  2528. venv/Lib/site-packages/pygments/lexers/ecl.py +0 -145
  2529. venv/Lib/site-packages/pygments/lexers/eiffel.py +0 -69
  2530. venv/Lib/site-packages/pygments/lexers/elm.py +0 -124
  2531. venv/Lib/site-packages/pygments/lexers/elpi.py +0 -165
  2532. venv/Lib/site-packages/pygments/lexers/email.py +0 -132
  2533. venv/Lib/site-packages/pygments/lexers/erlang.py +0 -528
  2534. venv/Lib/site-packages/pygments/lexers/esoteric.py +0 -301
  2535. venv/Lib/site-packages/pygments/lexers/ezhil.py +0 -77
  2536. venv/Lib/site-packages/pygments/lexers/factor.py +0 -364
  2537. venv/Lib/site-packages/pygments/lexers/fantom.py +0 -251
  2538. venv/Lib/site-packages/pygments/lexers/felix.py +0 -276
  2539. venv/Lib/site-packages/pygments/lexers/fift.py +0 -67
  2540. venv/Lib/site-packages/pygments/lexers/floscript.py +0 -82
  2541. venv/Lib/site-packages/pygments/lexers/forth.py +0 -179
  2542. venv/Lib/site-packages/pygments/lexers/fortran.py +0 -213
  2543. venv/Lib/site-packages/pygments/lexers/foxpro.py +0 -427
  2544. venv/Lib/site-packages/pygments/lexers/freefem.py +0 -894
  2545. venv/Lib/site-packages/pygments/lexers/func.py +0 -108
  2546. venv/Lib/site-packages/pygments/lexers/functional.py +0 -20
  2547. venv/Lib/site-packages/pygments/lexers/futhark.py +0 -106
  2548. venv/Lib/site-packages/pygments/lexers/gcodelexer.py +0 -35
  2549. venv/Lib/site-packages/pygments/lexers/gdscript.py +0 -188
  2550. venv/Lib/site-packages/pygments/lexers/go.py +0 -98
  2551. venv/Lib/site-packages/pygments/lexers/grammar_notation.py +0 -265
  2552. venv/Lib/site-packages/pygments/lexers/graph.py +0 -105
  2553. venv/Lib/site-packages/pygments/lexers/graphics.py +0 -797
  2554. venv/Lib/site-packages/pygments/lexers/graphviz.py +0 -59
  2555. venv/Lib/site-packages/pygments/lexers/gsql.py +0 -104
  2556. venv/Lib/site-packages/pygments/lexers/haskell.py +0 -871
  2557. venv/Lib/site-packages/pygments/lexers/haxe.py +0 -937
  2558. venv/Lib/site-packages/pygments/lexers/hdl.py +0 -465
  2559. venv/Lib/site-packages/pygments/lexers/hexdump.py +0 -102
  2560. venv/Lib/site-packages/pygments/lexers/html.py +0 -605
  2561. venv/Lib/site-packages/pygments/lexers/idl.py +0 -285
  2562. venv/Lib/site-packages/pygments/lexers/igor.py +0 -420
  2563. venv/Lib/site-packages/pygments/lexers/inferno.py +0 -96
  2564. venv/Lib/site-packages/pygments/lexers/installers.py +0 -327
  2565. venv/Lib/site-packages/pygments/lexers/int_fiction.py +0 -1382
  2566. venv/Lib/site-packages/pygments/lexers/iolang.py +0 -62
  2567. venv/Lib/site-packages/pygments/lexers/j.py +0 -152
  2568. venv/Lib/site-packages/pygments/lexers/javascript.py +0 -1588
  2569. venv/Lib/site-packages/pygments/lexers/jmespath.py +0 -68
  2570. venv/Lib/site-packages/pygments/lexers/jslt.py +0 -95
  2571. venv/Lib/site-packages/pygments/lexers/jsonnet.py +0 -168
  2572. venv/Lib/site-packages/pygments/lexers/julia.py +0 -294
  2573. venv/Lib/site-packages/pygments/lexers/jvm.py +0 -1820
  2574. venv/Lib/site-packages/pygments/lexers/kuin.py +0 -333
  2575. venv/Lib/site-packages/pygments/lexers/lilypond.py +0 -226
  2576. venv/Lib/site-packages/pygments/lexers/lisp.py +0 -2838
  2577. venv/Lib/site-packages/pygments/lexers/macaulay2.py +0 -1739
  2578. venv/Lib/site-packages/pygments/lexers/make.py +0 -209
  2579. venv/Lib/site-packages/pygments/lexers/markup.py +0 -765
  2580. venv/Lib/site-packages/pygments/lexers/math.py +0 -20
  2581. venv/Lib/site-packages/pygments/lexers/matlab.py +0 -3308
  2582. venv/Lib/site-packages/pygments/lexers/maxima.py +0 -85
  2583. venv/Lib/site-packages/pygments/lexers/meson.py +0 -140
  2584. venv/Lib/site-packages/pygments/lexers/mime.py +0 -210
  2585. venv/Lib/site-packages/pygments/lexers/minecraft.py +0 -394
  2586. venv/Lib/site-packages/pygments/lexers/mips.py +0 -128
  2587. venv/Lib/site-packages/pygments/lexers/ml.py +0 -960
  2588. venv/Lib/site-packages/pygments/lexers/modeling.py +0 -369
  2589. venv/Lib/site-packages/pygments/lexers/modula2.py +0 -1580
  2590. venv/Lib/site-packages/pygments/lexers/monte.py +0 -204
  2591. venv/Lib/site-packages/pygments/lexers/mosel.py +0 -447
  2592. venv/Lib/site-packages/pygments/lexers/ncl.py +0 -893
  2593. venv/Lib/site-packages/pygments/lexers/nimrod.py +0 -200
  2594. venv/Lib/site-packages/pygments/lexers/nit.py +0 -64
  2595. venv/Lib/site-packages/pygments/lexers/nix.py +0 -135
  2596. venv/Lib/site-packages/pygments/lexers/oberon.py +0 -120
  2597. venv/Lib/site-packages/pygments/lexers/objective.py +0 -505
  2598. venv/Lib/site-packages/pygments/lexers/ooc.py +0 -85
  2599. venv/Lib/site-packages/pygments/lexers/other.py +0 -40
  2600. venv/Lib/site-packages/pygments/lexers/parasail.py +0 -79
  2601. venv/Lib/site-packages/pygments/lexers/parsers.py +0 -801
  2602. venv/Lib/site-packages/pygments/lexers/pascal.py +0 -641
  2603. venv/Lib/site-packages/pygments/lexers/pawn.py +0 -202
  2604. venv/Lib/site-packages/pygments/lexers/perl.py +0 -733
  2605. venv/Lib/site-packages/pygments/lexers/phix.py +0 -364
  2606. venv/Lib/site-packages/pygments/lexers/php.py +0 -319
  2607. venv/Lib/site-packages/pygments/lexers/pointless.py +0 -71
  2608. venv/Lib/site-packages/pygments/lexers/pony.py +0 -93
  2609. venv/Lib/site-packages/pygments/lexers/praat.py +0 -304
  2610. venv/Lib/site-packages/pygments/lexers/procfile.py +0 -42
  2611. venv/Lib/site-packages/pygments/lexers/prolog.py +0 -304
  2612. venv/Lib/site-packages/pygments/lexers/promql.py +0 -175
  2613. venv/Lib/site-packages/pygments/lexers/python.py +0 -1204
  2614. venv/Lib/site-packages/pygments/lexers/q.py +0 -188
  2615. venv/Lib/site-packages/pygments/lexers/qlik.py +0 -117
  2616. venv/Lib/site-packages/pygments/lexers/qvt.py +0 -151
  2617. venv/Lib/site-packages/pygments/lexers/r.py +0 -190
  2618. venv/Lib/site-packages/pygments/lexers/rdf.py +0 -462
  2619. venv/Lib/site-packages/pygments/lexers/rebol.py +0 -430
  2620. venv/Lib/site-packages/pygments/lexers/resource.py +0 -84
  2621. venv/Lib/site-packages/pygments/lexers/ride.py +0 -139
  2622. venv/Lib/site-packages/pygments/lexers/rita.py +0 -43
  2623. venv/Lib/site-packages/pygments/lexers/rnc.py +0 -67
  2624. venv/Lib/site-packages/pygments/lexers/roboconf.py +0 -81
  2625. venv/Lib/site-packages/pygments/lexers/robotframework.py +0 -552
  2626. venv/Lib/site-packages/pygments/lexers/ruby.py +0 -523
  2627. venv/Lib/site-packages/pygments/lexers/rust.py +0 -223
  2628. venv/Lib/site-packages/pygments/lexers/sas.py +0 -227
  2629. venv/Lib/site-packages/pygments/lexers/savi.py +0 -170
  2630. venv/Lib/site-packages/pygments/lexers/scdoc.py +0 -79
  2631. venv/Lib/site-packages/pygments/lexers/scripting.py +0 -1286
  2632. venv/Lib/site-packages/pygments/lexers/sgf.py +0 -60
  2633. venv/Lib/site-packages/pygments/lexers/shell.py +0 -918
  2634. venv/Lib/site-packages/pygments/lexers/sieve.py +0 -78
  2635. venv/Lib/site-packages/pygments/lexers/slash.py +0 -184
  2636. venv/Lib/site-packages/pygments/lexers/smalltalk.py +0 -196
  2637. venv/Lib/site-packages/pygments/lexers/smithy.py +0 -78
  2638. venv/Lib/site-packages/pygments/lexers/smv.py +0 -78
  2639. venv/Lib/site-packages/pygments/lexers/snobol.py +0 -82
  2640. venv/Lib/site-packages/pygments/lexers/solidity.py +0 -87
  2641. venv/Lib/site-packages/pygments/lexers/sophia.py +0 -103
  2642. venv/Lib/site-packages/pygments/lexers/special.py +0 -116
  2643. venv/Lib/site-packages/pygments/lexers/spice.py +0 -71
  2644. venv/Lib/site-packages/pygments/lexers/sql.py +0 -838
  2645. venv/Lib/site-packages/pygments/lexers/srcinfo.py +0 -62
  2646. venv/Lib/site-packages/pygments/lexers/stata.py +0 -171
  2647. venv/Lib/site-packages/pygments/lexers/supercollider.py +0 -95
  2648. venv/Lib/site-packages/pygments/lexers/tal.py +0 -74
  2649. venv/Lib/site-packages/pygments/lexers/tcl.py +0 -149
  2650. venv/Lib/site-packages/pygments/lexers/teal.py +0 -89
  2651. venv/Lib/site-packages/pygments/lexers/templates.py +0 -2300
  2652. venv/Lib/site-packages/pygments/lexers/teraterm.py +0 -326
  2653. venv/Lib/site-packages/pygments/lexers/testing.py +0 -210
  2654. venv/Lib/site-packages/pygments/lexers/text.py +0 -26
  2655. venv/Lib/site-packages/pygments/lexers/textedit.py +0 -202
  2656. venv/Lib/site-packages/pygments/lexers/textfmts.py +0 -431
  2657. venv/Lib/site-packages/pygments/lexers/theorem.py +0 -484
  2658. venv/Lib/site-packages/pygments/lexers/thingsdb.py +0 -116
  2659. venv/Lib/site-packages/pygments/lexers/tlb.py +0 -57
  2660. venv/Lib/site-packages/pygments/lexers/tnt.py +0 -271
  2661. venv/Lib/site-packages/pygments/lexers/trafficscript.py +0 -51
  2662. venv/Lib/site-packages/pygments/lexers/typoscript.py +0 -217
  2663. venv/Lib/site-packages/pygments/lexers/ul4.py +0 -267
  2664. venv/Lib/site-packages/pygments/lexers/unicon.py +0 -411
  2665. venv/Lib/site-packages/pygments/lexers/urbi.py +0 -145
  2666. venv/Lib/site-packages/pygments/lexers/usd.py +0 -90
  2667. venv/Lib/site-packages/pygments/lexers/varnish.py +0 -189
  2668. venv/Lib/site-packages/pygments/lexers/verification.py +0 -114
  2669. venv/Lib/site-packages/pygments/lexers/web.py +0 -23
  2670. venv/Lib/site-packages/pygments/lexers/webassembly.py +0 -120
  2671. venv/Lib/site-packages/pygments/lexers/webidl.py +0 -299
  2672. venv/Lib/site-packages/pygments/lexers/webmisc.py +0 -1010
  2673. venv/Lib/site-packages/pygments/lexers/whiley.py +0 -116
  2674. venv/Lib/site-packages/pygments/lexers/wowtoc.py +0 -120
  2675. venv/Lib/site-packages/pygments/lexers/wren.py +0 -99
  2676. venv/Lib/site-packages/pygments/lexers/x10.py +0 -67
  2677. venv/Lib/site-packages/pygments/lexers/xorg.py +0 -37
  2678. venv/Lib/site-packages/pygments/lexers/yang.py +0 -104
  2679. venv/Lib/site-packages/pygments/lexers/zig.py +0 -124
  2680. venv/Lib/site-packages/pygments/modeline.py +0 -43
  2681. venv/Lib/site-packages/pygments/plugin.py +0 -88
  2682. venv/Lib/site-packages/pygments/regexopt.py +0 -91
  2683. venv/Lib/site-packages/pygments/scanner.py +0 -104
  2684. venv/Lib/site-packages/pygments/sphinxext.py +0 -217
  2685. venv/Lib/site-packages/pygments/style.py +0 -197
  2686. venv/Lib/site-packages/pygments/styles/__init__.py +0 -97
  2687. venv/Lib/site-packages/pygments/styles/abap.py +0 -28
  2688. venv/Lib/site-packages/pygments/styles/algol.py +0 -61
  2689. venv/Lib/site-packages/pygments/styles/algol_nu.py +0 -61
  2690. venv/Lib/site-packages/pygments/styles/arduino.py +0 -96
  2691. venv/Lib/site-packages/pygments/styles/autumn.py +0 -62
  2692. venv/Lib/site-packages/pygments/styles/borland.py +0 -48
  2693. venv/Lib/site-packages/pygments/styles/bw.py +0 -47
  2694. venv/Lib/site-packages/pygments/styles/colorful.py +0 -78
  2695. venv/Lib/site-packages/pygments/styles/default.py +0 -71
  2696. venv/Lib/site-packages/pygments/styles/dracula.py +0 -102
  2697. venv/Lib/site-packages/pygments/styles/emacs.py +0 -70
  2698. venv/Lib/site-packages/pygments/styles/friendly.py +0 -71
  2699. venv/Lib/site-packages/pygments/styles/friendly_grayscale.py +0 -75
  2700. venv/Lib/site-packages/pygments/styles/fruity.py +0 -41
  2701. venv/Lib/site-packages/pygments/styles/gh_dark.py +0 -107
  2702. venv/Lib/site-packages/pygments/styles/gruvbox.py +0 -109
  2703. venv/Lib/site-packages/pygments/styles/igor.py +0 -27
  2704. venv/Lib/site-packages/pygments/styles/inkpot.py +0 -67
  2705. venv/Lib/site-packages/pygments/styles/lilypond.py +0 -56
  2706. venv/Lib/site-packages/pygments/styles/lovelace.py +0 -94
  2707. venv/Lib/site-packages/pygments/styles/manni.py +0 -74
  2708. venv/Lib/site-packages/pygments/styles/material.py +0 -117
  2709. venv/Lib/site-packages/pygments/styles/monokai.py +0 -106
  2710. venv/Lib/site-packages/pygments/styles/murphy.py +0 -77
  2711. venv/Lib/site-packages/pygments/styles/native.py +0 -65
  2712. venv/Lib/site-packages/pygments/styles/nord.py +0 -150
  2713. venv/Lib/site-packages/pygments/styles/onedark.py +0 -59
  2714. venv/Lib/site-packages/pygments/styles/paraiso_dark.py +0 -119
  2715. venv/Lib/site-packages/pygments/styles/paraiso_light.py +0 -119
  2716. venv/Lib/site-packages/pygments/styles/pastie.py +0 -72
  2717. venv/Lib/site-packages/pygments/styles/perldoc.py +0 -67
  2718. venv/Lib/site-packages/pygments/styles/rainbow_dash.py +0 -88
  2719. venv/Lib/site-packages/pygments/styles/rrt.py +0 -33
  2720. venv/Lib/site-packages/pygments/styles/sas.py +0 -41
  2721. venv/Lib/site-packages/pygments/styles/solarized.py +0 -136
  2722. venv/Lib/site-packages/pygments/styles/staroffice.py +0 -26
  2723. venv/Lib/site-packages/pygments/styles/stata_dark.py +0 -38
  2724. venv/Lib/site-packages/pygments/styles/stata_light.py +0 -37
  2725. venv/Lib/site-packages/pygments/styles/tango.py +0 -139
  2726. venv/Lib/site-packages/pygments/styles/trac.py +0 -60
  2727. venv/Lib/site-packages/pygments/styles/vim.py +0 -61
  2728. venv/Lib/site-packages/pygments/styles/vs.py +0 -36
  2729. venv/Lib/site-packages/pygments/styles/xcode.py +0 -48
  2730. venv/Lib/site-packages/pygments/styles/zenburn.py +0 -78
  2731. venv/Lib/site-packages/pygments/token.py +0 -213
  2732. venv/Lib/site-packages/pygments/unistring.py +0 -153
  2733. venv/Lib/site-packages/pygments/util.py +0 -308
  2734. venv/Lib/site-packages/pyproject_hooks/__init__.py +0 -23
  2735. venv/Lib/site-packages/pyproject_hooks/_compat.py +0 -8
  2736. venv/Lib/site-packages/pyproject_hooks/_impl.py +0 -330
  2737. venv/Lib/site-packages/pyproject_hooks/_in_process/__init__.py +0 -18
  2738. venv/Lib/site-packages/pyproject_hooks/_in_process/_in_process.py +0 -353
  2739. venv/Lib/site-packages/readme_renderer/__about__.py +0 -38
  2740. venv/Lib/site-packages/readme_renderer/__init__.py +0 -13
  2741. venv/Lib/site-packages/readme_renderer/__main__.py +0 -19
  2742. venv/Lib/site-packages/readme_renderer/clean.py +0 -132
  2743. venv/Lib/site-packages/readme_renderer/markdown.py +0 -123
  2744. venv/Lib/site-packages/readme_renderer/rst.py +0 -135
  2745. venv/Lib/site-packages/readme_renderer/txt.py +0 -24
  2746. venv/Lib/site-packages/requests/__init__.py +0 -180
  2747. venv/Lib/site-packages/requests/__version__.py +0 -14
  2748. venv/Lib/site-packages/requests/_internal_utils.py +0 -48
  2749. venv/Lib/site-packages/requests/adapters.py +0 -584
  2750. venv/Lib/site-packages/requests/api.py +0 -157
  2751. venv/Lib/site-packages/requests/auth.py +0 -315
  2752. venv/Lib/site-packages/requests/certs.py +0 -17
  2753. venv/Lib/site-packages/requests/compat.py +0 -79
  2754. venv/Lib/site-packages/requests/cookies.py +0 -561
  2755. venv/Lib/site-packages/requests/exceptions.py +0 -141
  2756. venv/Lib/site-packages/requests/help.py +0 -134
  2757. venv/Lib/site-packages/requests/hooks.py +0 -33
  2758. venv/Lib/site-packages/requests/models.py +0 -1034
  2759. venv/Lib/site-packages/requests/packages.py +0 -28
  2760. venv/Lib/site-packages/requests/sessions.py +0 -831
  2761. venv/Lib/site-packages/requests/status_codes.py +0 -128
  2762. venv/Lib/site-packages/requests/structures.py +0 -99
  2763. venv/Lib/site-packages/requests/utils.py +0 -1086
  2764. venv/Lib/site-packages/requests_toolbelt/__init__.py +0 -34
  2765. venv/Lib/site-packages/requests_toolbelt/_compat.py +0 -311
  2766. venv/Lib/site-packages/requests_toolbelt/adapters/__init__.py +0 -15
  2767. venv/Lib/site-packages/requests_toolbelt/adapters/appengine.py +0 -206
  2768. venv/Lib/site-packages/requests_toolbelt/adapters/fingerprint.py +0 -48
  2769. venv/Lib/site-packages/requests_toolbelt/adapters/host_header_ssl.py +0 -43
  2770. venv/Lib/site-packages/requests_toolbelt/adapters/socket_options.py +0 -129
  2771. venv/Lib/site-packages/requests_toolbelt/adapters/source.py +0 -67
  2772. venv/Lib/site-packages/requests_toolbelt/adapters/ssl.py +0 -66
  2773. venv/Lib/site-packages/requests_toolbelt/adapters/x509.py +0 -196
  2774. venv/Lib/site-packages/requests_toolbelt/auth/__init__.py +0 -0
  2775. venv/Lib/site-packages/requests_toolbelt/auth/_digest_auth_compat.py +0 -29
  2776. venv/Lib/site-packages/requests_toolbelt/auth/guess.py +0 -146
  2777. venv/Lib/site-packages/requests_toolbelt/auth/handler.py +0 -142
  2778. venv/Lib/site-packages/requests_toolbelt/auth/http_proxy_digest.py +0 -103
  2779. venv/Lib/site-packages/requests_toolbelt/cookies/__init__.py +0 -0
  2780. venv/Lib/site-packages/requests_toolbelt/cookies/forgetful.py +0 -7
  2781. venv/Lib/site-packages/requests_toolbelt/downloadutils/__init__.py +0 -0
  2782. venv/Lib/site-packages/requests_toolbelt/downloadutils/stream.py +0 -176
  2783. venv/Lib/site-packages/requests_toolbelt/downloadutils/tee.py +0 -123
  2784. venv/Lib/site-packages/requests_toolbelt/exceptions.py +0 -37
  2785. venv/Lib/site-packages/requests_toolbelt/multipart/__init__.py +0 -31
  2786. venv/Lib/site-packages/requests_toolbelt/multipart/decoder.py +0 -156
  2787. venv/Lib/site-packages/requests_toolbelt/multipart/encoder.py +0 -655
  2788. venv/Lib/site-packages/requests_toolbelt/sessions.py +0 -89
  2789. venv/Lib/site-packages/requests_toolbelt/streaming_iterator.py +0 -116
  2790. venv/Lib/site-packages/requests_toolbelt/threaded/__init__.py +0 -97
  2791. venv/Lib/site-packages/requests_toolbelt/threaded/pool.py +0 -211
  2792. venv/Lib/site-packages/requests_toolbelt/threaded/thread.py +0 -53
  2793. venv/Lib/site-packages/requests_toolbelt/utils/__init__.py +0 -0
  2794. venv/Lib/site-packages/requests_toolbelt/utils/deprecated.py +0 -91
  2795. venv/Lib/site-packages/requests_toolbelt/utils/dump.py +0 -198
  2796. venv/Lib/site-packages/requests_toolbelt/utils/formdata.py +0 -108
  2797. venv/Lib/site-packages/requests_toolbelt/utils/user_agent.py +0 -143
  2798. venv/Lib/site-packages/rfc3986/__init__.py +0 -53
  2799. venv/Lib/site-packages/rfc3986/_mixin.py +0 -373
  2800. venv/Lib/site-packages/rfc3986/abnf_regexp.py +0 -275
  2801. venv/Lib/site-packages/rfc3986/api.py +0 -104
  2802. venv/Lib/site-packages/rfc3986/builder.py +0 -388
  2803. venv/Lib/site-packages/rfc3986/compat.py +0 -59
  2804. venv/Lib/site-packages/rfc3986/exceptions.py +0 -120
  2805. venv/Lib/site-packages/rfc3986/iri.py +0 -161
  2806. venv/Lib/site-packages/rfc3986/misc.py +0 -131
  2807. venv/Lib/site-packages/rfc3986/normalizers.py +0 -171
  2808. venv/Lib/site-packages/rfc3986/parseresult.py +0 -474
  2809. venv/Lib/site-packages/rfc3986/uri.py +0 -160
  2810. venv/Lib/site-packages/rfc3986/validators.py +0 -440
  2811. venv/Lib/site-packages/rich/__init__.py +0 -176
  2812. venv/Lib/site-packages/rich/__main__.py +0 -282
  2813. venv/Lib/site-packages/rich/_cell_widths.py +0 -451
  2814. venv/Lib/site-packages/rich/_emoji_codes.py +0 -3610
  2815. venv/Lib/site-packages/rich/_emoji_replace.py +0 -32
  2816. venv/Lib/site-packages/rich/_export_format.py +0 -78
  2817. venv/Lib/site-packages/rich/_extension.py +0 -10
  2818. venv/Lib/site-packages/rich/_inspect.py +0 -270
  2819. venv/Lib/site-packages/rich/_log_render.py +0 -94
  2820. venv/Lib/site-packages/rich/_loop.py +0 -43
  2821. venv/Lib/site-packages/rich/_palettes.py +0 -309
  2822. venv/Lib/site-packages/rich/_pick.py +0 -17
  2823. venv/Lib/site-packages/rich/_ratio.py +0 -160
  2824. venv/Lib/site-packages/rich/_spinners.py +0 -482
  2825. venv/Lib/site-packages/rich/_stack.py +0 -16
  2826. venv/Lib/site-packages/rich/_timer.py +0 -19
  2827. venv/Lib/site-packages/rich/_win32_console.py +0 -662
  2828. venv/Lib/site-packages/rich/_windows.py +0 -72
  2829. venv/Lib/site-packages/rich/_windows_renderer.py +0 -56
  2830. venv/Lib/site-packages/rich/_wrap.py +0 -56
  2831. venv/Lib/site-packages/rich/abc.py +0 -33
  2832. venv/Lib/site-packages/rich/align.py +0 -311
  2833. venv/Lib/site-packages/rich/ansi.py +0 -237
  2834. venv/Lib/site-packages/rich/bar.py +0 -94
  2835. venv/Lib/site-packages/rich/box.py +0 -517
  2836. venv/Lib/site-packages/rich/cells.py +0 -154
  2837. venv/Lib/site-packages/rich/color.py +0 -615
  2838. venv/Lib/site-packages/rich/color_triplet.py +0 -38
  2839. venv/Lib/site-packages/rich/columns.py +0 -187
  2840. venv/Lib/site-packages/rich/console.py +0 -2572
  2841. venv/Lib/site-packages/rich/constrain.py +0 -37
  2842. venv/Lib/site-packages/rich/containers.py +0 -167
  2843. venv/Lib/site-packages/rich/control.py +0 -225
  2844. venv/Lib/site-packages/rich/default_styles.py +0 -188
  2845. venv/Lib/site-packages/rich/diagnose.py +0 -37
  2846. venv/Lib/site-packages/rich/emoji.py +0 -96
  2847. venv/Lib/site-packages/rich/errors.py +0 -34
  2848. venv/Lib/site-packages/rich/file_proxy.py +0 -54
  2849. venv/Lib/site-packages/rich/filesize.py +0 -89
  2850. venv/Lib/site-packages/rich/highlighter.py +0 -232
  2851. venv/Lib/site-packages/rich/json.py +0 -140
  2852. venv/Lib/site-packages/rich/jupyter.py +0 -101
  2853. venv/Lib/site-packages/rich/layout.py +0 -445
  2854. venv/Lib/site-packages/rich/live.py +0 -373
  2855. venv/Lib/site-packages/rich/live_render.py +0 -113
  2856. venv/Lib/site-packages/rich/logging.py +0 -280
  2857. venv/Lib/site-packages/rich/markdown.py +0 -625
  2858. venv/Lib/site-packages/rich/markup.py +0 -246
  2859. venv/Lib/site-packages/rich/measure.py +0 -151
  2860. venv/Lib/site-packages/rich/padding.py +0 -141
  2861. venv/Lib/site-packages/rich/pager.py +0 -34
  2862. venv/Lib/site-packages/rich/palette.py +0 -100
  2863. venv/Lib/site-packages/rich/panel.py +0 -251
  2864. venv/Lib/site-packages/rich/pretty.py +0 -1010
  2865. venv/Lib/site-packages/rich/progress.py +0 -1703
  2866. venv/Lib/site-packages/rich/progress_bar.py +0 -224
  2867. venv/Lib/site-packages/rich/prompt.py +0 -376
  2868. venv/Lib/site-packages/rich/protocol.py +0 -42
  2869. venv/Lib/site-packages/rich/region.py +0 -10
  2870. venv/Lib/site-packages/rich/repr.py +0 -152
  2871. venv/Lib/site-packages/rich/rule.py +0 -134
  2872. venv/Lib/site-packages/rich/scope.py +0 -86
  2873. venv/Lib/site-packages/rich/screen.py +0 -54
  2874. venv/Lib/site-packages/rich/segment.py +0 -739
  2875. venv/Lib/site-packages/rich/spinner.py +0 -136
  2876. venv/Lib/site-packages/rich/status.py +0 -132
  2877. venv/Lib/site-packages/rich/style.py +0 -771
  2878. venv/Lib/site-packages/rich/styled.py +0 -42
  2879. venv/Lib/site-packages/rich/syntax.py +0 -934
  2880. venv/Lib/site-packages/rich/table.py +0 -996
  2881. venv/Lib/site-packages/rich/terminal_theme.py +0 -153
  2882. venv/Lib/site-packages/rich/text.py +0 -1286
  2883. venv/Lib/site-packages/rich/theme.py +0 -112
  2884. venv/Lib/site-packages/rich/themes.py +0 -5
  2885. venv/Lib/site-packages/rich/traceback.py +0 -679
  2886. venv/Lib/site-packages/rich/tree.py +0 -251
  2887. venv/Lib/site-packages/setuptools/__init__.py +0 -268
  2888. venv/Lib/site-packages/setuptools/_deprecation_warning.py +0 -7
  2889. venv/Lib/site-packages/setuptools/_distutils/__init__.py +0 -14
  2890. venv/Lib/site-packages/setuptools/_distutils/_collections.py +0 -194
  2891. venv/Lib/site-packages/setuptools/_distutils/_functools.py +0 -20
  2892. venv/Lib/site-packages/setuptools/_distutils/_log.py +0 -4
  2893. venv/Lib/site-packages/setuptools/_distutils/_macos_compat.py +0 -12
  2894. venv/Lib/site-packages/setuptools/_distutils/_msvccompiler.py +0 -568
  2895. venv/Lib/site-packages/setuptools/_distutils/archive_util.py +0 -280
  2896. venv/Lib/site-packages/setuptools/_distutils/bcppcompiler.py +0 -401
  2897. venv/Lib/site-packages/setuptools/_distutils/ccompiler.py +0 -1254
  2898. venv/Lib/site-packages/setuptools/_distutils/cmd.py +0 -435
  2899. venv/Lib/site-packages/setuptools/_distutils/command/__init__.py +0 -25
  2900. venv/Lib/site-packages/setuptools/_distutils/command/_framework_compat.py +0 -55
  2901. venv/Lib/site-packages/setuptools/_distutils/command/bdist.py +0 -156
  2902. venv/Lib/site-packages/setuptools/_distutils/command/bdist_dumb.py +0 -143
  2903. venv/Lib/site-packages/setuptools/_distutils/command/bdist_rpm.py +0 -614
  2904. venv/Lib/site-packages/setuptools/_distutils/command/build.py +0 -152
  2905. venv/Lib/site-packages/setuptools/_distutils/command/build_clib.py +0 -207
  2906. venv/Lib/site-packages/setuptools/_distutils/command/build_ext.py +0 -788
  2907. venv/Lib/site-packages/setuptools/_distutils/command/build_py.py +0 -406
  2908. venv/Lib/site-packages/setuptools/_distutils/command/build_scripts.py +0 -172
  2909. venv/Lib/site-packages/setuptools/_distutils/command/check.py +0 -151
  2910. venv/Lib/site-packages/setuptools/_distutils/command/clean.py +0 -75
  2911. venv/Lib/site-packages/setuptools/_distutils/command/config.py +0 -376
  2912. venv/Lib/site-packages/setuptools/_distutils/command/install.py +0 -813
  2913. venv/Lib/site-packages/setuptools/_distutils/command/install_data.py +0 -83
  2914. venv/Lib/site-packages/setuptools/_distutils/command/install_egg_info.py +0 -92
  2915. venv/Lib/site-packages/setuptools/_distutils/command/install_headers.py +0 -44
  2916. venv/Lib/site-packages/setuptools/_distutils/command/install_lib.py +0 -237
  2917. venv/Lib/site-packages/setuptools/_distutils/command/install_scripts.py +0 -60
  2918. venv/Lib/site-packages/setuptools/_distutils/command/py37compat.py +0 -31
  2919. venv/Lib/site-packages/setuptools/_distutils/command/register.py +0 -320
  2920. venv/Lib/site-packages/setuptools/_distutils/command/sdist.py +0 -530
  2921. venv/Lib/site-packages/setuptools/_distutils/command/upload.py +0 -206
  2922. venv/Lib/site-packages/setuptools/_distutils/config.py +0 -139
  2923. venv/Lib/site-packages/setuptools/_distutils/core.py +0 -291
  2924. venv/Lib/site-packages/setuptools/_distutils/cygwinccompiler.py +0 -356
  2925. venv/Lib/site-packages/setuptools/_distutils/debug.py +0 -5
  2926. venv/Lib/site-packages/setuptools/_distutils/dep_util.py +0 -96
  2927. venv/Lib/site-packages/setuptools/_distutils/dir_util.py +0 -243
  2928. venv/Lib/site-packages/setuptools/_distutils/dist.py +0 -1287
  2929. venv/Lib/site-packages/setuptools/_distutils/errors.py +0 -127
  2930. venv/Lib/site-packages/setuptools/_distutils/extension.py +0 -248
  2931. venv/Lib/site-packages/setuptools/_distutils/fancy_getopt.py +0 -470
  2932. venv/Lib/site-packages/setuptools/_distutils/file_util.py +0 -248
  2933. venv/Lib/site-packages/setuptools/_distutils/filelist.py +0 -371
  2934. venv/Lib/site-packages/setuptools/_distutils/log.py +0 -57
  2935. venv/Lib/site-packages/setuptools/_distutils/msvc9compiler.py +0 -829
  2936. venv/Lib/site-packages/setuptools/_distutils/msvccompiler.py +0 -692
  2937. venv/Lib/site-packages/setuptools/_distutils/py38compat.py +0 -8
  2938. venv/Lib/site-packages/setuptools/_distutils/py39compat.py +0 -22
  2939. venv/Lib/site-packages/setuptools/_distutils/spawn.py +0 -109
  2940. venv/Lib/site-packages/setuptools/_distutils/sysconfig.py +0 -559
  2941. venv/Lib/site-packages/setuptools/_distutils/text_file.py +0 -286
  2942. venv/Lib/site-packages/setuptools/_distutils/unixccompiler.py +0 -400
  2943. venv/Lib/site-packages/setuptools/_distutils/util.py +0 -513
  2944. venv/Lib/site-packages/setuptools/_distutils/version.py +0 -357
  2945. venv/Lib/site-packages/setuptools/_distutils/versionpredicate.py +0 -175
  2946. venv/Lib/site-packages/setuptools/_entry_points.py +0 -94
  2947. venv/Lib/site-packages/setuptools/_imp.py +0 -82
  2948. venv/Lib/site-packages/setuptools/_importlib.py +0 -47
  2949. venv/Lib/site-packages/setuptools/_itertools.py +0 -23
  2950. venv/Lib/site-packages/setuptools/_normalization.py +0 -117
  2951. venv/Lib/site-packages/setuptools/_path.py +0 -37
  2952. venv/Lib/site-packages/setuptools/_reqs.py +0 -33
  2953. venv/Lib/site-packages/setuptools/_vendor/__init__.py +0 -0
  2954. venv/Lib/site-packages/setuptools/_vendor/importlib_metadata/__init__.py +0 -904
  2955. venv/Lib/site-packages/setuptools/_vendor/importlib_metadata/_adapters.py +0 -90
  2956. venv/Lib/site-packages/setuptools/_vendor/importlib_metadata/_collections.py +0 -30
  2957. venv/Lib/site-packages/setuptools/_vendor/importlib_metadata/_compat.py +0 -72
  2958. venv/Lib/site-packages/setuptools/_vendor/importlib_metadata/_functools.py +0 -104
  2959. venv/Lib/site-packages/setuptools/_vendor/importlib_metadata/_itertools.py +0 -73
  2960. venv/Lib/site-packages/setuptools/_vendor/importlib_metadata/_meta.py +0 -49
  2961. venv/Lib/site-packages/setuptools/_vendor/importlib_metadata/_py39compat.py +0 -35
  2962. venv/Lib/site-packages/setuptools/_vendor/importlib_metadata/_text.py +0 -99
  2963. venv/Lib/site-packages/setuptools/_vendor/importlib_resources/__init__.py +0 -36
  2964. venv/Lib/site-packages/setuptools/_vendor/importlib_resources/_adapters.py +0 -170
  2965. venv/Lib/site-packages/setuptools/_vendor/importlib_resources/_common.py +0 -207
  2966. venv/Lib/site-packages/setuptools/_vendor/importlib_resources/_compat.py +0 -108
  2967. venv/Lib/site-packages/setuptools/_vendor/importlib_resources/_itertools.py +0 -35
  2968. venv/Lib/site-packages/setuptools/_vendor/importlib_resources/_legacy.py +0 -120
  2969. venv/Lib/site-packages/setuptools/_vendor/importlib_resources/abc.py +0 -170
  2970. venv/Lib/site-packages/setuptools/_vendor/importlib_resources/readers.py +0 -120
  2971. venv/Lib/site-packages/setuptools/_vendor/importlib_resources/simple.py +0 -106
  2972. venv/Lib/site-packages/setuptools/_vendor/jaraco/__init__.py +0 -0
  2973. venv/Lib/site-packages/setuptools/_vendor/jaraco/context.py +0 -288
  2974. venv/Lib/site-packages/setuptools/_vendor/jaraco/functools.py +0 -525
  2975. venv/Lib/site-packages/setuptools/_vendor/jaraco/text/__init__.py +0 -599
  2976. venv/Lib/site-packages/setuptools/_vendor/more_itertools/__init__.py +0 -4
  2977. venv/Lib/site-packages/setuptools/_vendor/more_itertools/more.py +0 -3824
  2978. venv/Lib/site-packages/setuptools/_vendor/more_itertools/recipes.py +0 -620
  2979. venv/Lib/site-packages/setuptools/_vendor/ordered_set.py +0 -488
  2980. venv/Lib/site-packages/setuptools/_vendor/packaging/__init__.py +0 -15
  2981. venv/Lib/site-packages/setuptools/_vendor/packaging/_elffile.py +0 -108
  2982. venv/Lib/site-packages/setuptools/_vendor/packaging/_manylinux.py +0 -238
  2983. venv/Lib/site-packages/setuptools/_vendor/packaging/_musllinux.py +0 -80
  2984. venv/Lib/site-packages/setuptools/_vendor/packaging/_parser.py +0 -328
  2985. venv/Lib/site-packages/setuptools/_vendor/packaging/_structures.py +0 -61
  2986. venv/Lib/site-packages/setuptools/_vendor/packaging/_tokenizer.py +0 -188
  2987. venv/Lib/site-packages/setuptools/_vendor/packaging/markers.py +0 -245
  2988. venv/Lib/site-packages/setuptools/_vendor/packaging/requirements.py +0 -95
  2989. venv/Lib/site-packages/setuptools/_vendor/packaging/specifiers.py +0 -1005
  2990. venv/Lib/site-packages/setuptools/_vendor/packaging/tags.py +0 -546
  2991. venv/Lib/site-packages/setuptools/_vendor/packaging/utils.py +0 -141
  2992. venv/Lib/site-packages/setuptools/_vendor/packaging/version.py +0 -563
  2993. venv/Lib/site-packages/setuptools/_vendor/tomli/__init__.py +0 -11
  2994. venv/Lib/site-packages/setuptools/_vendor/tomli/_parser.py +0 -691
  2995. venv/Lib/site-packages/setuptools/_vendor/tomli/_re.py +0 -107
  2996. venv/Lib/site-packages/setuptools/_vendor/tomli/_types.py +0 -10
  2997. venv/Lib/site-packages/setuptools/_vendor/typing_extensions.py +0 -2296
  2998. venv/Lib/site-packages/setuptools/_vendor/zipp.py +0 -329
  2999. venv/Lib/site-packages/setuptools/archive_util.py +0 -213
  3000. venv/Lib/site-packages/setuptools/build_meta.py +0 -512
  3001. venv/Lib/site-packages/setuptools/command/__init__.py +0 -12
  3002. venv/Lib/site-packages/setuptools/command/alias.py +0 -78
  3003. venv/Lib/site-packages/setuptools/command/bdist_egg.py +0 -456
  3004. venv/Lib/site-packages/setuptools/command/bdist_rpm.py +0 -40
  3005. venv/Lib/site-packages/setuptools/command/build.py +0 -146
  3006. venv/Lib/site-packages/setuptools/command/build_clib.py +0 -101
  3007. venv/Lib/site-packages/setuptools/command/build_ext.py +0 -383
  3008. venv/Lib/site-packages/setuptools/command/build_py.py +0 -368
  3009. venv/Lib/site-packages/setuptools/command/develop.py +0 -194
  3010. venv/Lib/site-packages/setuptools/command/dist_info.py +0 -118
  3011. venv/Lib/site-packages/setuptools/command/easy_install.py +0 -2312
  3012. venv/Lib/site-packages/setuptools/command/editable_wheel.py +0 -856
  3013. venv/Lib/site-packages/setuptools/command/egg_info.py +0 -791
  3014. venv/Lib/site-packages/setuptools/command/install.py +0 -139
  3015. venv/Lib/site-packages/setuptools/command/install_egg_info.py +0 -60
  3016. venv/Lib/site-packages/setuptools/command/install_lib.py +0 -122
  3017. venv/Lib/site-packages/setuptools/command/install_scripts.py +0 -73
  3018. venv/Lib/site-packages/setuptools/command/py36compat.py +0 -134
  3019. venv/Lib/site-packages/setuptools/command/register.py +0 -18
  3020. venv/Lib/site-packages/setuptools/command/rotate.py +0 -64
  3021. venv/Lib/site-packages/setuptools/command/saveopts.py +0 -22
  3022. venv/Lib/site-packages/setuptools/command/sdist.py +0 -210
  3023. venv/Lib/site-packages/setuptools/command/setopt.py +0 -149
  3024. venv/Lib/site-packages/setuptools/command/test.py +0 -251
  3025. venv/Lib/site-packages/setuptools/command/upload.py +0 -17
  3026. venv/Lib/site-packages/setuptools/command/upload_docs.py +0 -212
  3027. venv/Lib/site-packages/setuptools/config/__init__.py +0 -35
  3028. venv/Lib/site-packages/setuptools/config/_apply_pyprojecttoml.py +0 -384
  3029. venv/Lib/site-packages/setuptools/config/_validate_pyproject/__init__.py +0 -34
  3030. venv/Lib/site-packages/setuptools/config/_validate_pyproject/error_reporting.py +0 -318
  3031. venv/Lib/site-packages/setuptools/config/_validate_pyproject/extra_validations.py +0 -36
  3032. venv/Lib/site-packages/setuptools/config/_validate_pyproject/fastjsonschema_exceptions.py +0 -51
  3033. venv/Lib/site-packages/setuptools/config/_validate_pyproject/fastjsonschema_validations.py +0 -1053
  3034. venv/Lib/site-packages/setuptools/config/_validate_pyproject/formats.py +0 -275
  3035. venv/Lib/site-packages/setuptools/config/expand.py +0 -462
  3036. venv/Lib/site-packages/setuptools/config/pyprojecttoml.py +0 -498
  3037. venv/Lib/site-packages/setuptools/config/setupcfg.py +0 -768
  3038. venv/Lib/site-packages/setuptools/dep_util.py +0 -25
  3039. venv/Lib/site-packages/setuptools/depends.py +0 -176
  3040. venv/Lib/site-packages/setuptools/discovery.py +0 -611
  3041. venv/Lib/site-packages/setuptools/dist.py +0 -1226
  3042. venv/Lib/site-packages/setuptools/errors.py +0 -58
  3043. venv/Lib/site-packages/setuptools/extension.py +0 -148
  3044. venv/Lib/site-packages/setuptools/extern/__init__.py +0 -83
  3045. venv/Lib/site-packages/setuptools/glob.py +0 -167
  3046. venv/Lib/site-packages/setuptools/installer.py +0 -142
  3047. venv/Lib/site-packages/setuptools/launch.py +0 -36
  3048. venv/Lib/site-packages/setuptools/logging.py +0 -37
  3049. venv/Lib/site-packages/setuptools/monkey.py +0 -159
  3050. venv/Lib/site-packages/setuptools/msvc.py +0 -1686
  3051. venv/Lib/site-packages/setuptools/namespaces.py +0 -107
  3052. venv/Lib/site-packages/setuptools/package_index.py +0 -1162
  3053. venv/Lib/site-packages/setuptools/py34compat.py +0 -13
  3054. venv/Lib/site-packages/setuptools/sandbox.py +0 -530
  3055. venv/Lib/site-packages/setuptools/unicode_utils.py +0 -42
  3056. venv/Lib/site-packages/setuptools/version.py +0 -6
  3057. venv/Lib/site-packages/setuptools/wheel.py +0 -231
  3058. venv/Lib/site-packages/setuptools/windows_support.py +0 -29
  3059. venv/Lib/site-packages/shiboken6/__init__.py +0 -27
  3060. venv/Lib/site-packages/shiboken6/_config.py +0 -11
  3061. venv/Lib/site-packages/shiboken6/_git_shiboken_module_version.py +0 -19
  3062. venv/Lib/site-packages/six.py +0 -998
  3063. venv/Lib/site-packages/tomli/__init__.py +0 -11
  3064. venv/Lib/site-packages/tomli/_parser.py +0 -691
  3065. venv/Lib/site-packages/tomli/_re.py +0 -107
  3066. venv/Lib/site-packages/tomli/_types.py +0 -10
  3067. venv/Lib/site-packages/twine/__init__.py +0 -43
  3068. venv/Lib/site-packages/twine/__main__.py +0 -51
  3069. venv/Lib/site-packages/twine/auth.py +0 -101
  3070. venv/Lib/site-packages/twine/cli.py +0 -123
  3071. venv/Lib/site-packages/twine/commands/__init__.py +0 -53
  3072. venv/Lib/site-packages/twine/commands/check.py +0 -183
  3073. venv/Lib/site-packages/twine/commands/register.py +0 -86
  3074. venv/Lib/site-packages/twine/commands/upload.py +0 -198
  3075. venv/Lib/site-packages/twine/exceptions.py +0 -124
  3076. venv/Lib/site-packages/twine/package.py +0 -316
  3077. venv/Lib/site-packages/twine/repository.py +0 -250
  3078. venv/Lib/site-packages/twine/settings.py +0 -335
  3079. venv/Lib/site-packages/twine/utils.py +0 -324
  3080. venv/Lib/site-packages/twine/wheel.py +0 -91
  3081. venv/Lib/site-packages/twine/wininst.py +0 -61
  3082. venv/Lib/site-packages/typing_extensions.py +0 -2209
  3083. venv/Lib/site-packages/urllib3/__init__.py +0 -102
  3084. venv/Lib/site-packages/urllib3/_collections.py +0 -337
  3085. venv/Lib/site-packages/urllib3/_version.py +0 -2
  3086. venv/Lib/site-packages/urllib3/connection.py +0 -567
  3087. venv/Lib/site-packages/urllib3/connectionpool.py +0 -1110
  3088. venv/Lib/site-packages/urllib3/contrib/__init__.py +0 -0
  3089. venv/Lib/site-packages/urllib3/contrib/_appengine_environ.py +0 -36
  3090. venv/Lib/site-packages/urllib3/contrib/_securetransport/__init__.py +0 -0
  3091. venv/Lib/site-packages/urllib3/contrib/_securetransport/bindings.py +0 -519
  3092. venv/Lib/site-packages/urllib3/contrib/_securetransport/low_level.py +0 -397
  3093. venv/Lib/site-packages/urllib3/contrib/appengine.py +0 -314
  3094. venv/Lib/site-packages/urllib3/contrib/ntlmpool.py +0 -130
  3095. venv/Lib/site-packages/urllib3/contrib/pyopenssl.py +0 -518
  3096. venv/Lib/site-packages/urllib3/contrib/securetransport.py +0 -921
  3097. venv/Lib/site-packages/urllib3/contrib/socks.py +0 -216
  3098. venv/Lib/site-packages/urllib3/exceptions.py +0 -323
  3099. venv/Lib/site-packages/urllib3/fields.py +0 -274
  3100. venv/Lib/site-packages/urllib3/filepost.py +0 -98
  3101. venv/Lib/site-packages/urllib3/packages/__init__.py +0 -0
  3102. venv/Lib/site-packages/urllib3/packages/backports/__init__.py +0 -0
  3103. venv/Lib/site-packages/urllib3/packages/backports/makefile.py +0 -51
  3104. venv/Lib/site-packages/urllib3/packages/six.py +0 -1076
  3105. venv/Lib/site-packages/urllib3/poolmanager.py +0 -537
  3106. venv/Lib/site-packages/urllib3/request.py +0 -170
  3107. venv/Lib/site-packages/urllib3/response.py +0 -885
  3108. venv/Lib/site-packages/urllib3/util/__init__.py +0 -49
  3109. venv/Lib/site-packages/urllib3/util/connection.py +0 -149
  3110. venv/Lib/site-packages/urllib3/util/proxy.py +0 -57
  3111. venv/Lib/site-packages/urllib3/util/queue.py +0 -22
  3112. venv/Lib/site-packages/urllib3/util/request.py +0 -146
  3113. venv/Lib/site-packages/urllib3/util/response.py +0 -107
  3114. venv/Lib/site-packages/urllib3/util/retry.py +0 -620
  3115. venv/Lib/site-packages/urllib3/util/ssl_.py +0 -495
  3116. venv/Lib/site-packages/urllib3/util/ssl_match_hostname.py +0 -159
  3117. venv/Lib/site-packages/urllib3/util/ssltransport.py +0 -221
  3118. venv/Lib/site-packages/urllib3/util/timeout.py +0 -268
  3119. venv/Lib/site-packages/urllib3/util/url.py +0 -435
  3120. venv/Lib/site-packages/urllib3/util/wait.py +0 -152
  3121. venv/Lib/site-packages/webencodings/__init__.py +0 -342
  3122. venv/Lib/site-packages/webencodings/labels.py +0 -231
  3123. venv/Lib/site-packages/webencodings/mklabels.py +0 -59
  3124. venv/Lib/site-packages/webencodings/tests.py +0 -153
  3125. venv/Lib/site-packages/webencodings/x_user_defined.py +0 -325
  3126. venv/Lib/site-packages/wheel/__init__.py +0 -3
  3127. venv/Lib/site-packages/wheel/__main__.py +0 -23
  3128. venv/Lib/site-packages/wheel/_setuptools_logging.py +0 -26
  3129. venv/Lib/site-packages/wheel/bdist_wheel.py +0 -550
  3130. venv/Lib/site-packages/wheel/cli/__init__.py +0 -96
  3131. venv/Lib/site-packages/wheel/cli/convert.py +0 -273
  3132. venv/Lib/site-packages/wheel/cli/pack.py +0 -90
  3133. venv/Lib/site-packages/wheel/cli/unpack.py +0 -23
  3134. venv/Lib/site-packages/wheel/macosx_libfile.py +0 -471
  3135. venv/Lib/site-packages/wheel/metadata.py +0 -109
  3136. venv/Lib/site-packages/wheel/util.py +0 -26
  3137. venv/Lib/site-packages/wheel/vendored/__init__.py +0 -0
  3138. venv/Lib/site-packages/wheel/vendored/packaging/__init__.py +0 -0
  3139. venv/Lib/site-packages/wheel/vendored/packaging/_manylinux.py +0 -303
  3140. venv/Lib/site-packages/wheel/vendored/packaging/_musllinux.py +0 -138
  3141. venv/Lib/site-packages/wheel/vendored/packaging/tags.py +0 -478
  3142. venv/Lib/site-packages/wheel/wheelfile.py +0 -191
  3143. venv/Lib/site-packages/win32ctypes/__init__.py +0 -8
  3144. venv/Lib/site-packages/win32ctypes/core/__init__.py +0 -67
  3145. venv/Lib/site-packages/win32ctypes/core/_winerrors.py +0 -9
  3146. venv/Lib/site-packages/win32ctypes/core/cffi/__init__.py +0 -0
  3147. venv/Lib/site-packages/win32ctypes/core/cffi/_authentication.py +0 -162
  3148. venv/Lib/site-packages/win32ctypes/core/cffi/_common.py +0 -27
  3149. venv/Lib/site-packages/win32ctypes/core/cffi/_dll.py +0 -33
  3150. venv/Lib/site-packages/win32ctypes/core/cffi/_nl_support.py +0 -20
  3151. venv/Lib/site-packages/win32ctypes/core/cffi/_resource.py +0 -134
  3152. venv/Lib/site-packages/win32ctypes/core/cffi/_system_information.py +0 -34
  3153. venv/Lib/site-packages/win32ctypes/core/cffi/_time.py +0 -20
  3154. venv/Lib/site-packages/win32ctypes/core/cffi/_util.py +0 -108
  3155. venv/Lib/site-packages/win32ctypes/core/compat.py +0 -31
  3156. venv/Lib/site-packages/win32ctypes/core/ctypes/__init__.py +0 -0
  3157. venv/Lib/site-packages/win32ctypes/core/ctypes/_authentication.py +0 -116
  3158. venv/Lib/site-packages/win32ctypes/core/ctypes/_common.py +0 -62
  3159. venv/Lib/site-packages/win32ctypes/core/ctypes/_dll.py +0 -23
  3160. venv/Lib/site-packages/win32ctypes/core/ctypes/_nl_support.py +0 -14
  3161. venv/Lib/site-packages/win32ctypes/core/ctypes/_resource.py +0 -148
  3162. venv/Lib/site-packages/win32ctypes/core/ctypes/_system_information.py +0 -38
  3163. venv/Lib/site-packages/win32ctypes/core/ctypes/_time.py +0 -17
  3164. venv/Lib/site-packages/win32ctypes/core/ctypes/_util.py +0 -81
  3165. venv/Lib/site-packages/win32ctypes/pywin32/__init__.py +0 -14
  3166. venv/Lib/site-packages/win32ctypes/pywin32/pywintypes.py +0 -37
  3167. venv/Lib/site-packages/win32ctypes/pywin32/win32api.py +0 -297
  3168. venv/Lib/site-packages/win32ctypes/pywin32/win32cred.py +0 -94
  3169. venv/Lib/site-packages/win32ctypes/pywintypes.py +0 -13
  3170. venv/Lib/site-packages/win32ctypes/tests/__init__.py +0 -20
  3171. venv/Lib/site-packages/win32ctypes/tests/compat.py +0 -84
  3172. venv/Lib/site-packages/win32ctypes/tests/test_win32api.py +0 -284
  3173. venv/Lib/site-packages/win32ctypes/tests/test_win32cred.py +0 -159
  3174. venv/Lib/site-packages/win32ctypes/version.py +0 -1
  3175. venv/Lib/site-packages/win32ctypes/win32api.py +0 -13
  3176. venv/Lib/site-packages/win32ctypes/win32cred.py +0 -13
  3177. venv/Lib/site-packages/zipp/__init__.py +0 -386
  3178. venv/Lib/site-packages/zipp/py310compat.py +0 -12
  3179. venv/Scripts/activate_this.py +0 -32
  3180. venv/Scripts/rst2html.py +0 -23
  3181. venv/Scripts/rst2html4.py +0 -26
  3182. venv/Scripts/rst2html5.py +0 -34
  3183. venv/Scripts/rst2latex.py +0 -27
  3184. venv/Scripts/rst2man.py +0 -28
  3185. venv/Scripts/rst2odt.py +0 -27
  3186. venv/Scripts/rst2odt_prepstyles.py +0 -65
  3187. venv/Scripts/rst2pseudoxml.py +0 -23
  3188. venv/Scripts/rst2s5.py +0 -24
  3189. venv/Scripts/rst2xetex.py +0 -28
  3190. venv/Scripts/rst2xml.py +0 -23
  3191. venv/Scripts/rstpep2html.py +0 -25
  3192. {venv/Lib/site-packages/PySide6/scripts → je_editor/pyside_ui/menu}/__init__.py +0 -0
  3193. {venv/Lib/site-packages/bleach/_vendor → je_editor/pyside_ui/ui_setting}/__init__.py +0 -0
  3194. {je_editor-0.0.57.dist-info → je_editor-0.0.59.dist-info}/WHEEL +0 -0
@@ -1,3171 +0,0 @@
1
- #! /usr/bin/env python3
2
- # math2html: convert LaTeX equations to HTML output.
3
- #
4
- # Copyright (C) 2009-2011 Alex Fernández, 2021 Günter Milde
5
- #
6
- # Released under the terms of the `2-Clause BSD license'_, in short:
7
- # Copying and distribution of this file, with or without modification,
8
- # are permitted in any medium without royalty provided the copyright
9
- # notice and this notice are preserved.
10
- # This file is offered as-is, without any warranty.
11
- #
12
- # .. _2-Clause BSD license: https://opensource.org/licenses/BSD-2-Clause
13
-
14
- # Based on eLyXer: convert LyX source files to HTML output.
15
- # http://alexfernandez.github.io/elyxer/
16
-
17
- # Versions:
18
- # 1.2.5 2015-02-26 eLyXer standalone formula conversion to HTML.
19
- # 1.3 2021-06-02 Removed code for conversion of LyX files not
20
- # required for LaTeX math.
21
- # Support for more math commands from the AMS "math-guide".
22
- # 2.0 2021-12-31 Drop 2.7 compatibility code.
23
-
24
- import os.path
25
- import sys
26
- import unicodedata
27
-
28
- from docutils.utils.math import tex2unichar
29
-
30
-
31
- __version__ = '1.3 (2021-06-02)'
32
-
33
-
34
- class Trace:
35
- "A tracing class"
36
-
37
- debugmode = False
38
- quietmode = False
39
- showlinesmode = False
40
-
41
- prefix = None
42
-
43
- def debug(cls, message):
44
- "Show a debug message"
45
- if not Trace.debugmode or Trace.quietmode:
46
- return
47
- Trace.show(message, sys.stdout)
48
-
49
- def message(cls, message):
50
- "Show a trace message"
51
- if Trace.quietmode:
52
- return
53
- if Trace.prefix and Trace.showlinesmode:
54
- message = Trace.prefix + message
55
- Trace.show(message, sys.stdout)
56
-
57
- def error(cls, message):
58
- "Show an error message"
59
- message = '* ' + message
60
- if Trace.prefix and Trace.showlinesmode:
61
- message = Trace.prefix + message
62
- Trace.show(message, sys.stderr)
63
-
64
- def fatal(cls, message):
65
- "Show an error message and terminate"
66
- Trace.error('FATAL: ' + message)
67
- exit(-1)
68
-
69
- def show(cls, message, channel):
70
- "Show a message out of a channel"
71
- channel.write(message + '\n')
72
-
73
- debug = classmethod(debug)
74
- message = classmethod(message)
75
- error = classmethod(error)
76
- fatal = classmethod(fatal)
77
- show = classmethod(show)
78
-
79
-
80
- class ContainerConfig:
81
- "Configuration class from elyxer.config file"
82
-
83
- extracttext = {
84
- 'allowed': ['FormulaConstant'],
85
- 'extracted': ['AlphaCommand',
86
- 'Bracket',
87
- 'BracketCommand',
88
- 'CombiningFunction',
89
- 'EmptyCommand',
90
- 'FontFunction',
91
- 'Formula',
92
- 'FormulaNumber',
93
- 'FormulaSymbol',
94
- 'OneParamFunction',
95
- 'OversetFunction',
96
- 'RawText',
97
- 'SpacedCommand',
98
- 'SymbolFunction',
99
- 'TextFunction',
100
- 'UndersetFunction',
101
- ],
102
- }
103
-
104
-
105
- class EscapeConfig:
106
- "Configuration class from elyxer.config file"
107
-
108
- chars = {
109
- '\n': '',
110
- "'": '’',
111
- '`': '‘',
112
- }
113
-
114
- entities = {
115
- '&': '&',
116
- '<': '&lt;',
117
- '>': '&gt;',
118
- }
119
-
120
-
121
- class FormulaConfig:
122
- "Configuration class from elyxer.config file"
123
-
124
- alphacommands = {
125
- '\\AmS': '<span class="textsc">AmS</span>',
126
- '\\AA': 'Å',
127
- '\\AE': 'Æ',
128
- '\\DH': 'Ð',
129
- '\\L': 'Ł',
130
- '\\O': 'Ø',
131
- '\\OE': 'Œ',
132
- '\\TH': 'Þ',
133
- '\\aa': 'å',
134
- '\\ae': 'æ',
135
- '\\dh': 'ð',
136
- '\\i': 'ı',
137
- '\\j': 'ȷ',
138
- '\\l': 'ł',
139
- '\\o': 'ø',
140
- '\\oe': 'œ',
141
- '\\ss': 'ß',
142
- '\\th': 'þ',
143
- }
144
- for key, value in tex2unichar.mathalpha.items():
145
- alphacommands['\\'+key] = value
146
-
147
- array = {
148
- 'begin': r'\begin',
149
- 'cellseparator': '&',
150
- 'end': r'\end',
151
- 'rowseparator': r'\\',
152
- }
153
-
154
- bigbrackets = {'(': ['⎛', '⎜', '⎝'],
155
- ')': ['⎞', '⎟', '⎠'],
156
- '[': ['⎡', '⎢', '⎣'],
157
- ']': ['⎤', '⎥', '⎦'],
158
- '{': ['⎧', '⎪', '⎨', '⎩'],
159
- '}': ['⎫', '⎪', '⎬', '⎭'],
160
- # TODO: 2-row brackets with ⎰⎱ (\lmoustache \rmoustache)
161
- '|': ['|'], # 007C VERTICAL LINE
162
- # '|': ['⎮'], # 23AE INTEGRAL EXTENSION
163
- # '|': ['⎪'], # 23AA CURLY BRACKET EXTENSION
164
- '‖': ['‖'], # 2016 DOUBLE VERTICAL LINE
165
- # '∥': ['∥'], # 2225 PARALLEL TO
166
- }
167
-
168
- bracketcommands = {
169
- '\\left': 'span class="stretchy"',
170
- '\\left.': '<span class="leftdot"></span>',
171
- '\\middle': 'span class="stretchy"',
172
- '\\right': 'span class="stretchy"',
173
- '\\right.': '<span class="rightdot"></span>',
174
- }
175
-
176
- combiningfunctions = {
177
- "\\'": '\u0301', # x́
178
- '\\"': '\u0308', # ẍ
179
- '\\^': '\u0302', # x̂
180
- '\\`': '\u0300', # x̀
181
- '\\~': '\u0303', # x̃
182
- '\\c': '\u0327', # x̧
183
- '\\r': '\u030a', # x̊
184
- '\\s': '\u0329', # x̩
185
- '\\textcircled': '\u20dd', # x⃝
186
- '\\textsubring': '\u0325', # x̥
187
- '\\v': '\u030c', # x̌
188
- }
189
- for key, value in tex2unichar.mathaccent.items():
190
- combiningfunctions['\\'+key] = value
191
-
192
- commands = {
193
- '\\\\': '<br/>',
194
- '\\\n': ' ', # escaped whitespace
195
- '\\\t': ' ', # escaped whitespace
196
- '\\centerdot': '\u2B1D', # BLACK VERY SMALL SQUARE, mathbin
197
- '\\colon': ': ',
198
- '\\copyright': '©',
199
- '\\dotminus': '∸',
200
- '\\dots': '…',
201
- '\\dotsb': '⋯',
202
- '\\dotsc': '…',
203
- '\\dotsi': '⋯',
204
- '\\dotsm': '⋯',
205
- '\\dotso': '…',
206
- '\\euro': '€',
207
- '\\guillemotleft': '«',
208
- '\\guillemotright': '»',
209
- '\\hbar': '<i>\u0127</i>', # ħ LATIN SMALL LETTER H WITH STROKE
210
- '\\lVert': '‖',
211
- '\\Arrowvert': '\u2016', # ‖
212
- '\\lvert': '|',
213
- '\\newline': '<br/>',
214
- '\\nobreakspace': ' ',
215
- '\\nolimits': '',
216
- '\\nonumber': '',
217
- '\\qquad': '  ',
218
- '\\rVert': '‖',
219
- '\\rvert': '|',
220
- '\\textasciicircum': '^',
221
- '\\textasciitilde': '~',
222
- '\\textbackslash': '\\',
223
- '\\textcopyright': '©',
224
- '\\textdegree': '°',
225
- '\\textellipsis': '…',
226
- '\\textemdash': '—',
227
- '\\textendash': '—',
228
- '\\texteuro': '€',
229
- '\\textgreater': '>',
230
- '\\textless': '<',
231
- '\\textordfeminine': 'ª',
232
- '\\textordmasculine': 'º',
233
- '\\textquotedblleft': '“',
234
- '\\textquotedblright': '”',
235
- '\\textquoteright': '’',
236
- '\\textregistered': '®',
237
- '\\textrightarrow': '→',
238
- '\\textsection': '§',
239
- '\\texttrademark': '™',
240
- '\\texttwosuperior': '²',
241
- '\\textvisiblespace': ' ',
242
- '\\thickspace': '<span class="thickspace"> </span>', # 5/13 em
243
- '\\;': '<span class="thickspace"> </span>', # 5/13 em
244
- '\\triangle': '\u25B3', # WHITE UP-POINTING TRIANGLE, mathord
245
- '\\triangledown': '\u25BD', # WHITE DOWN-POINTING TRIANGLE, mathord
246
- '\\varnothing': '\u2300', # ⌀ DIAMETER SIGN
247
- # functions
248
- '\\Pr': 'Pr',
249
- '\\arccos': 'arccos',
250
- '\\arcsin': 'arcsin',
251
- '\\arctan': 'arctan',
252
- '\\arg': 'arg',
253
- '\\cos': 'cos',
254
- '\\cosh': 'cosh',
255
- '\\cot': 'cot',
256
- '\\coth': 'coth',
257
- '\\csc': 'csc',
258
- '\\deg': 'deg',
259
- '\\det': 'det',
260
- '\\dim': 'dim',
261
- '\\exp': 'exp',
262
- '\\gcd': 'gcd',
263
- '\\hom': 'hom',
264
- '\\injlim': 'inj lim',
265
- '\\ker': 'ker',
266
- '\\lg': 'lg',
267
- '\\liminf': 'lim inf',
268
- '\\limsup': 'lim sup',
269
- '\\ln': 'ln',
270
- '\\log': 'log',
271
- '\\projlim': 'proj lim',
272
- '\\sec': 'sec',
273
- '\\sin': 'sin',
274
- '\\sinh': 'sinh',
275
- '\\tan': 'tan',
276
- '\\tanh': 'tanh',
277
- }
278
- cmddict = {}
279
- cmddict.update(tex2unichar.mathbin) # TODO: spacing around binary operators
280
- cmddict.update(tex2unichar.mathopen)
281
- cmddict.update(tex2unichar.mathclose)
282
- cmddict.update(tex2unichar.mathfence)
283
- cmddict.update(tex2unichar.mathord)
284
- cmddict.update(tex2unichar.mathpunct)
285
- cmddict.update(tex2unichar.space)
286
- commands.update(('\\' + key, value) for key, value in cmddict.items())
287
-
288
- oversetfunctions = {
289
- # math accents (cf. combiningfunctions)
290
- # '\\acute': '´',
291
- '\\bar': '‒', # FIGURE DASH
292
- # '\\breve': '˘',
293
- # '\\check': 'ˇ',
294
- '\\dddot': '<span class="smallsymbol">⋯</span>',
295
- # '\\ddot': '··', # ¨ too high
296
- # '\\dot': '·',
297
- # '\\grave': '`',
298
- # '\\hat': '^',
299
- # '\\mathring': '˚',
300
- # '\\tilde': '~',
301
- '\\vec': '<span class="smallsymbol">→</span>',
302
- # embellishments
303
- '\\overleftarrow': '⟵',
304
- '\\overleftrightarrow': '⟷',
305
- '\\overrightarrow': '⟶',
306
- '\\widehat': '^',
307
- '\\widetilde': '~',
308
- }
309
-
310
- undersetfunctions = {
311
- '\\underleftarrow': '⟵',
312
- '\\underleftrightarrow': '⟷',
313
- '\\underrightarrow': '⟶',
314
- }
315
-
316
- endings = {
317
- 'bracket': '}',
318
- 'complex': '\\]',
319
- 'endafter': '}',
320
- 'endbefore': '\\end{',
321
- 'squarebracket': ']',
322
- }
323
-
324
- environments = {
325
- 'align': ['r', 'l'],
326
- 'eqnarray': ['r', 'c', 'l'],
327
- 'gathered': ['l', 'l'],
328
- 'smallmatrix': ['c', 'c'],
329
- }
330
-
331
- fontfunctions = {
332
- '\\boldsymbol': 'b', '\\mathbb': 'span class="blackboard"',
333
- '\\mathbb{A}': '𝔸', '\\mathbb{B}': '𝔹', '\\mathbb{C}': 'ℂ',
334
- '\\mathbb{D}': '𝔻', '\\mathbb{E}': '𝔼', '\\mathbb{F}': '𝔽',
335
- '\\mathbb{G}': '𝔾', '\\mathbb{H}': 'ℍ', '\\mathbb{J}': '𝕁',
336
- '\\mathbb{K}': '𝕂', '\\mathbb{L}': '𝕃', '\\mathbb{N}': 'ℕ',
337
- '\\mathbb{O}': '𝕆', '\\mathbb{P}': 'ℙ', '\\mathbb{Q}': 'ℚ',
338
- '\\mathbb{R}': 'ℝ', '\\mathbb{S}': '𝕊', '\\mathbb{T}': '𝕋',
339
- '\\mathbb{W}': '𝕎', '\\mathbb{Z}': 'ℤ', '\\mathbf': 'b',
340
- '\\mathcal': 'span class="scriptfont"',
341
- '\\mathcal{B}': 'ℬ', '\\mathcal{E}': 'ℰ', '\\mathcal{F}':
342
- 'ℱ', '\\mathcal{H}': 'ℋ', '\\mathcal{I}': 'ℐ',
343
- '\\mathcal{L}': 'ℒ', '\\mathcal{M}': 'ℳ', '\\mathcal{R}': 'ℛ',
344
- '\\mathfrak': 'span class="fraktur"',
345
- '\\mathfrak{C}': 'ℭ', '\\mathfrak{F}': '𝔉', '\\mathfrak{H}': 'ℌ',
346
- '\\mathfrak{I}': 'ℑ', '\\mathfrak{R}': 'ℜ', '\\mathfrak{Z}': 'ℨ',
347
- '\\mathit': 'i',
348
- '\\mathring{A}': 'Å', '\\mathring{U}': 'Ů',
349
- '\\mathring{a}': 'å', '\\mathring{u}': 'ů', '\\mathring{w}': 'ẘ',
350
- '\\mathring{y}': 'ẙ',
351
- '\\mathrm': 'span class="mathrm"',
352
- '\\mathscr': 'span class="mathscr"',
353
- '\\mathscr{B}': 'ℬ', '\\mathscr{E}': 'ℰ', '\\mathscr{F}': 'ℱ',
354
- '\\mathscr{H}': 'ℋ', '\\mathscr{I}': 'ℐ', '\\mathscr{L}': 'ℒ',
355
- '\\mathscr{M}': 'ℳ', '\\mathscr{R}': 'ℛ',
356
- '\\mathsf': 'span class="mathsf"',
357
- '\\mathtt': 'span class="mathtt"',
358
- '\\operatorname': 'span class="mathrm"',
359
- }
360
-
361
- hybridfunctions = {
362
- '\\addcontentsline': ['{$p!}{$q!}{$r!}', 'f0{}', 'ignored'],
363
- '\\addtocontents': ['{$p!}{$q!}', 'f0{}', 'ignored'],
364
- '\\backmatter': ['', 'f0{}', 'ignored'],
365
- '\\binom': ['{$1}{$2}', 'f2{(}f0{f1{$1}f1{$2}}f2{)}', 'span class="binom"', 'span class="binomstack"', 'span class="bigdelimiter size2"'],
366
- '\\boxed': ['{$1}', 'f0{$1}', 'span class="boxed"'],
367
- '\\cfrac': ['[$p!]{$1}{$2}', 'f0{f3{(}f1{$1}f3{)/(}f2{$2}f3{)}}', 'span class="fullfraction"', 'span class="numerator align-$p"', 'span class="denominator"', 'span class="ignored"'],
368
- '\\color': ['{$p!}{$1}', 'f0{$1}', 'span style="color: $p;"'],
369
- '\\colorbox': ['{$p!}{$1}', 'f0{$1}', 'span class="colorbox" style="background: $p;"'],
370
- '\\dbinom': ['{$1}{$2}', '(f0{f1{f2{$1}}f1{f2{ }}f1{f2{$2}}})', 'span class="binomial"', 'span class="binomrow"', 'span class="binomcell"'],
371
- '\\dfrac': ['{$1}{$2}', 'f0{f3{(}f1{$1}f3{)/(}f2{$2}f3{)}}', 'span class="fullfraction"', 'span class="numerator"', 'span class="denominator"', 'span class="ignored"'],
372
- '\\displaystyle': ['{$1}', 'f0{$1}', 'span class="displaystyle"'],
373
- '\\fancyfoot': ['[$p!]{$q!}', 'f0{}', 'ignored'],
374
- '\\fancyhead': ['[$p!]{$q!}', 'f0{}', 'ignored'],
375
- '\\fbox': ['{$1}', 'f0{$1}', 'span class="fbox"'],
376
- '\\fboxrule': ['{$p!}', 'f0{}', 'ignored'],
377
- '\\fboxsep': ['{$p!}', 'f0{}', 'ignored'],
378
- '\\fcolorbox': ['{$p!}{$q!}{$1}', 'f0{$1}', 'span class="boxed" style="border-color: $p; background: $q;"'],
379
- '\\frac': ['{$1}{$2}', 'f0{f3{(}f1{$1}f3{)/(}f2{$2}f3{)}}', 'span class="fraction"', 'span class="numerator"', 'span class="denominator"', 'span class="ignored"'],
380
- '\\framebox': ['[$p!][$q!]{$1}', 'f0{$1}', 'span class="framebox align-$q" style="width: $p;"'],
381
- '\\frontmatter': ['', 'f0{}', 'ignored'],
382
- '\\href': ['[$o]{$u!}{$t!}', 'f0{$t}', 'a href="$u"'],
383
- '\\hspace': ['{$p!}', 'f0{ }', 'span class="hspace" style="width: $p;"'],
384
- '\\leftroot': ['{$p!}', 'f0{ }', 'span class="leftroot" style="width: $p;px"'],
385
- # TODO: convert 1 mu to 1/18 em
386
- # '\\mspace': ['{$p!}', 'f0{ }', 'span class="hspace" style="width: $p;"'],
387
- '\\nicefrac': ['{$1}{$2}', 'f0{f1{$1}⁄f2{$2}}', 'span class="fraction"', 'sup class="numerator"', 'sub class="denominator"', 'span class="ignored"'],
388
- '\\parbox': ['[$p!]{$w!}{$1}', 'f0{1}', 'div class="Boxed" style="width: $w;"'],
389
- '\\raisebox': ['{$p!}{$1}', 'f0{$1.font}', 'span class="raisebox" style="vertical-align: $p;"'],
390
- '\\renewenvironment': ['{$1!}{$2!}{$3!}', ''],
391
- '\\rule': ['[$v!]{$w!}{$h!}', 'f0/', 'hr class="line" style="width: $w; height: $h;"'],
392
- '\\scriptscriptstyle': ['{$1}', 'f0{$1}', 'span class="scriptscriptstyle"'],
393
- '\\scriptstyle': ['{$1}', 'f0{$1}', 'span class="scriptstyle"'],
394
- # TODO: increase √-size with argument (\frac in display mode, ...)
395
- '\\sqrt': ['[$0]{$1}', 'f0{f1{$0}f2{√}f4{(}f3{$1}f4{)}}', 'span class="sqrt"', 'sup class="root"', 'span class="radical"', 'span class="root"', 'span class="ignored"'],
396
- '\\stackrel': ['{$1}{$2}', 'f0{f1{$1}f2{$2}}', 'span class="stackrel"', 'span class="upstackrel"', 'span class="downstackrel"'],
397
- '\\tbinom': ['{$1}{$2}', '(f0{f1{f2{$1}}f1{f2{ }}f1{f2{$2}}})', 'span class="binomial"', 'span class="binomrow"', 'span class="binomcell"'],
398
- '\\tfrac': ['{$1}{$2}', 'f0{f3{(}f1{$1}f3{)/(}f2{$2}f3{)}}', 'span class="textfraction"', 'span class="numerator"', 'span class="denominator"', 'span class="ignored"'],
399
- '\\textcolor': ['{$p!}{$1}', 'f0{$1}', 'span style="color: $p;"'],
400
- '\\textstyle': ['{$1}', 'f0{$1}', 'span class="textstyle"'],
401
- '\\thispagestyle': ['{$p!}', 'f0{}', 'ignored'],
402
- '\\unit': ['[$0]{$1}', '$0f0{$1.font}', 'span class="unit"'],
403
- '\\unitfrac': ['[$0]{$1}{$2}', '$0f0{f1{$1.font}⁄f2{$2.font}}', 'span class="fraction"', 'sup class="unit"', 'sub class="unit"'],
404
- '\\uproot': ['{$p!}', 'f0{ }', 'span class="uproot" style="width: $p;px"'],
405
- '\\url': ['{$u!}', 'f0{$u}', 'a href="$u"'],
406
- '\\vspace': ['{$p!}', 'f0{ }', 'span class="vspace" style="height: $p;"'],
407
- }
408
-
409
- hybridsizes = {
410
- '\\binom': '$1+$2', '\\cfrac': '$1+$2', '\\dbinom': '$1+$2+1',
411
- '\\dfrac': '$1+$2', '\\frac': '$1+$2', '\\tbinom': '$1+$2+1',
412
- }
413
-
414
- labelfunctions = {
415
- '\\label': 'a name="#"',
416
- }
417
-
418
- limitcommands = {
419
- '\\biginterleave': '⫼',
420
- '\\inf': 'inf',
421
- '\\lim': 'lim',
422
- '\\max': 'max',
423
- '\\min': 'min',
424
- '\\sup': 'sup',
425
- '\\ointop': '<span class="bigoperator integral">∮</span>',
426
- '\\bigcap': '<span class="bigoperator">⋂</span>',
427
- '\\bigcup': '<span class="bigoperator">⋃</span>',
428
- '\\bigodot': '<span class="bigoperator">⨀</span>',
429
- '\\bigoplus': '<span class="bigoperator">⨁</span>',
430
- '\\bigotimes': '<span class="bigoperator">⨂</span>',
431
- '\\bigsqcap': '<span class="bigoperator">⨅</span>',
432
- '\\bigsqcup': '<span class="bigoperator">⨆</span>',
433
- '\\biguplus': '<span class="bigoperator">⨄</span>',
434
- '\\bigvee': '<span class="bigoperator">⋁</span>',
435
- '\\bigwedge': '<span class="bigoperator">⋀</span>',
436
- '\\coprod': '<span class="bigoperator">∐</span>',
437
- '\\intop': '<span class="bigoperator integral">∫</span>',
438
- '\\prod': '<span class="bigoperator">∏</span>',
439
- '\\sum': '<span class="bigoperator">∑</span>',
440
- '\\varprod': '<span class="bigoperator">⨉</span>',
441
- '\\zcmp': '⨟', '\\zhide': '⧹', '\\zpipe': '⨠', '\\zproject': '⨡',
442
- # integrals have limits in index position with LaTeX default settings
443
- # TODO: move to commands?
444
- '\\int': '<span class="bigoperator integral">∫</span>',
445
- '\\iint': '<span class="bigoperator integral">∬</span>',
446
- '\\iiint': '<span class="bigoperator integral">∭</span>',
447
- '\\iiiint': '<span class="bigoperator integral">⨌</span>',
448
- '\\fint': '<span class="bigoperator integral">⨏</span>',
449
- '\\idotsint': '<span class="bigoperator integral">∫⋯∫</span>',
450
- '\\oint': '<span class="bigoperator integral">∮</span>',
451
- '\\oiint': '<span class="bigoperator integral">∯</span>',
452
- '\\oiiint': '<span class="bigoperator integral">∰</span>',
453
- '\\ointclockwise': '<span class="bigoperator integral">∲</span>',
454
- '\\ointctrclockwise': '<span class="bigoperator integral">∳</span>',
455
- '\\smallint': '<span class="smallsymbol integral">∫</span>',
456
- '\\sqint': '<span class="bigoperator integral">⨖</span>',
457
- '\\varointclockwise': '<span class="bigoperator integral">∲</span>',
458
- }
459
-
460
- modified = {
461
- '\n': '', ' ': '', '$': '', '&': ' ', '\'': '’', '+': '\u2009+\u2009',
462
- ',': ',\u2009', '-': '\u2009−\u2009', '/': '\u2009⁄\u2009', ':': ' : ', '<': '\u2009&lt;\u2009',
463
- '=': '\u2009=\u2009', '>': '\u2009&gt;\u2009', '@': '', '~': '\u00a0',
464
- }
465
-
466
- onefunctions = {
467
- '\\big': 'span class="bigdelimiter size1"',
468
- '\\bigl': 'span class="bigdelimiter size1"',
469
- '\\bigr': 'span class="bigdelimiter size1"',
470
- '\\Big': 'span class="bigdelimiter size2"',
471
- '\\Bigl': 'span class="bigdelimiter size2"',
472
- '\\Bigr': 'span class="bigdelimiter size2"',
473
- '\\bigg': 'span class="bigdelimiter size3"',
474
- '\\biggl': 'span class="bigdelimiter size3"',
475
- '\\biggr': 'span class="bigdelimiter size3"',
476
- '\\Bigg': 'span class="bigdelimiter size4"',
477
- '\\Biggl': 'span class="bigdelimiter size4"',
478
- '\\Biggr': 'span class="bigdelimiter size4"',
479
- # '\\bar': 'span class="bar"',
480
- '\\begin{array}': 'span class="arraydef"',
481
- '\\centering': 'span class="align-center"',
482
- '\\ensuremath': 'span class="ensuremath"',
483
- '\\hphantom': 'span class="phantom"',
484
- '\\noindent': 'span class="noindent"',
485
- '\\overbrace': 'span class="overbrace"',
486
- '\\overline': 'span class="overline"',
487
- '\\phantom': 'span class="phantom"',
488
- '\\underbrace': 'span class="underbrace"',
489
- '\\underline': '',
490
- '\\vphantom': 'span class="phantom"',
491
- }
492
-
493
- # relations (put additional space before and after the symbol)
494
- spacedcommands = {
495
- # negated symbols without pre-composed Unicode character
496
- '\\nleqq': '\u2266\u0338', # ≦̸
497
- '\\ngeqq': '\u2267\u0338', # ≧̸
498
- '\\nleqslant': '\u2a7d\u0338', # ⩽̸
499
- '\\ngeqslant': '\u2a7e\u0338', # ⩾̸
500
- '\\nsubseteqq': '\u2AC5\u0338', # ⫅̸
501
- '\\nsupseteqq': '\u2AC6\u0338', # ⫆̸
502
- '\\nsqsubset': '\u2276\u228F', # ⊏̸
503
- # modified glyphs
504
- '\\shortmid': '<span class="smallsymbol">∣</span>',
505
- '\\shortparallel': '<span class="smallsymbol">∥</span>',
506
- '\\nshortmid': '<span class="smallsymbol">∤</span>',
507
- '\\nshortparallel': '<span class="smallsymbol">∦</span>',
508
- '\\smallfrown': '<span class="smallsymbol">⌢</span>',
509
- '\\smallsmile': '<span class="smallsymbol">⌣</span>',
510
- '\\thickapprox': '<span class="boldsymbol">≈</span>',
511
- '\\thicksim': '<span class="boldsymbol">∼</span>',
512
- '\\varpropto': '<span class="mathsf">\u221d</span>', # ∝ PROPORTIONAL TO
513
- }
514
- for key, value in tex2unichar.mathrel.items():
515
- spacedcommands['\\'+key] = value
516
- starts = {
517
- 'beginafter': '}', 'beginbefore': '\\begin{', 'bracket': '{',
518
- 'command': '\\', 'comment': '%', 'complex': '\\[', 'simple': '$',
519
- 'squarebracket': '[', 'unnumbered': '*',
520
- }
521
-
522
- symbolfunctions = {
523
- '^': 'sup', '_': 'sub',
524
- }
525
-
526
- textfunctions = {
527
- '\\mbox': 'span class="mbox"',
528
- '\\text': 'span class="text"',
529
- '\\textbf': 'span class="textbf"',
530
- '\\textit': 'span class="textit"',
531
- '\\textnormal': 'span class="textnormal"',
532
- '\\textrm': 'span class="textrm"',
533
- '\\textsc': 'span class="textsc"',
534
- '\\textsf': 'span class="textsf"',
535
- '\\textsl': 'span class="textsl"',
536
- '\\texttt': 'span class="texttt"',
537
- '\\textup': 'span class="normal"',
538
- }
539
-
540
- unmodified = {
541
- 'characters': ['.', '*', '€', '(', ')', '[', ']',
542
- '·', '!', ';', '|', '§', '"', '?'],
543
- }
544
-
545
-
546
- class CommandLineParser:
547
- "A parser for runtime options"
548
-
549
- def __init__(self, options):
550
- self.options = options
551
-
552
- def parseoptions(self, args):
553
- "Parse command line options"
554
- if len(args) == 0:
555
- return None
556
- while len(args) > 0 and args[0].startswith('--'):
557
- key, value = self.readoption(args)
558
- if not key:
559
- return 'Option ' + value + ' not recognized'
560
- if not value:
561
- return 'Option ' + key + ' needs a value'
562
- setattr(self.options, key, value)
563
- return None
564
-
565
- def readoption(self, args):
566
- "Read the key and value for an option"
567
- arg = args[0][2:]
568
- del args[0]
569
- if '=' in arg:
570
- key = self.readequalskey(arg, args)
571
- else:
572
- key = arg.replace('-', '')
573
- if not hasattr(self.options, key):
574
- return None, key
575
- current = getattr(self.options, key)
576
- if isinstance(current, bool):
577
- return key, True
578
- # read value
579
- if len(args) == 0:
580
- return key, None
581
- if args[0].startswith('"'):
582
- initial = args[0]
583
- del args[0]
584
- return key, self.readquoted(args, initial)
585
- value = args[0].decode('utf-8')
586
- del args[0]
587
- if isinstance(current, list):
588
- current.append(value)
589
- return key, current
590
- return key, value
591
-
592
- def readquoted(self, args, initial):
593
- "Read a value between quotes"
594
- Trace.error('Oops')
595
- value = initial[1:]
596
- while len(args) > 0 and not args[0].endswith('"') and not args[0].startswith('--'):
597
- Trace.error('Appending ' + args[0])
598
- value += ' ' + args[0]
599
- del args[0]
600
- if len(args) == 0 or args[0].startswith('--'):
601
- return None
602
- value += ' ' + args[0:-1]
603
- return value
604
-
605
- def readequalskey(self, arg, args):
606
- "Read a key using equals"
607
- split = arg.split('=', 1)
608
- key = split[0]
609
- value = split[1]
610
- args.insert(0, value)
611
- return key
612
-
613
-
614
- class Options:
615
- "A set of runtime options"
616
-
617
- location = None
618
-
619
- debug = False
620
- quiet = False
621
- version = False
622
- help = False
623
- simplemath = False
624
- showlines = True
625
-
626
- branches = {}
627
-
628
- def parseoptions(self, args):
629
- "Parse command line options"
630
- Options.location = args[0]
631
- del args[0]
632
- parser = CommandLineParser(Options)
633
- result = parser.parseoptions(args)
634
- if result:
635
- Trace.error(result)
636
- self.usage()
637
- self.processoptions()
638
-
639
- def processoptions(self):
640
- "Process all options parsed."
641
- if Options.help:
642
- self.usage()
643
- if Options.version:
644
- self.showversion()
645
- # set in Trace if necessary
646
- for param in dir(Trace):
647
- if param.endswith('mode'):
648
- setattr(Trace, param, getattr(self, param[:-4]))
649
-
650
- def usage(self):
651
- "Show correct usage"
652
- Trace.error('Usage: ' + os.path.basename(Options.location)
653
- + ' [options] "input string"')
654
- Trace.error('Convert input string with LaTeX math to MathML')
655
- self.showoptions()
656
-
657
- def showoptions(self):
658
- "Show all possible options"
659
- Trace.error(' --help: show this online help')
660
- Trace.error(' --quiet: disables all runtime messages')
661
- Trace.error(' --debug: enable debugging messages (for developers)')
662
- Trace.error(' --version: show version number and release date')
663
- Trace.error(' --simplemath: do not generate fancy math constructions')
664
- sys.exit()
665
-
666
- def showversion(self):
667
- "Return the current eLyXer version string"
668
- Trace.error('math2html '+__version__)
669
- sys.exit()
670
-
671
-
672
- class Cloner:
673
- "An object used to clone other objects."
674
-
675
- def clone(cls, original):
676
- "Return an exact copy of an object."
677
- "The original object must have an empty constructor."
678
- return cls.create(original.__class__)
679
-
680
- def create(cls, type):
681
- "Create an object of a given class."
682
- clone = type.__new__(type)
683
- clone.__init__()
684
- return clone
685
-
686
- clone = classmethod(clone)
687
- create = classmethod(create)
688
-
689
-
690
- class ContainerExtractor:
691
- """A class to extract certain containers.
692
-
693
- The config parameter is a map containing three lists:
694
- allowed, copied and extracted.
695
- Each of the three is a list of class names for containers.
696
- Allowed containers are included as is into the result.
697
- Cloned containers are cloned and placed into the result.
698
- Extracted containers are looked into.
699
- All other containers are silently ignored.
700
- """
701
-
702
- def __init__(self, config):
703
- self.allowed = config['allowed']
704
- self.extracted = config['extracted']
705
-
706
- def extract(self, container):
707
- "Extract a group of selected containers from a container."
708
- list = []
709
- locate = lambda c: c.__class__.__name__ in self.allowed
710
- recursive = lambda c: c.__class__.__name__ in self.extracted
711
- process = lambda c: self.process(c, list)
712
- container.recursivesearch(locate, recursive, process)
713
- return list
714
-
715
- def process(self, container, list):
716
- "Add allowed containers."
717
- name = container.__class__.__name__
718
- if name in self.allowed:
719
- list.append(container)
720
- else:
721
- Trace.error('Unknown container class ' + name)
722
-
723
- def safeclone(self, container):
724
- "Return a new container with contents only in a safe list, recursively."
725
- clone = Cloner.clone(container)
726
- clone.output = container.output
727
- clone.contents = self.extract(container)
728
- return clone
729
-
730
-
731
- class Parser:
732
- "A generic parser"
733
-
734
- def __init__(self):
735
- self.begin = 0
736
- self.parameters = {}
737
-
738
- def parseheader(self, reader):
739
- "Parse the header"
740
- header = reader.currentline().split()
741
- reader.nextline()
742
- self.begin = reader.linenumber
743
- return header
744
-
745
- def parseparameter(self, reader):
746
- "Parse a parameter"
747
- split = reader.currentline().strip().split(' ', 1)
748
- reader.nextline()
749
- if len(split) == 0:
750
- return
751
- key = split[0]
752
- if len(split) == 1:
753
- self.parameters[key] = True
754
- return
755
- if '"' not in split[1]:
756
- self.parameters[key] = split[1].strip()
757
- return
758
- doublesplit = split[1].split('"')
759
- self.parameters[key] = doublesplit[1]
760
-
761
- def parseending(self, reader, process):
762
- "Parse until the current ending is found"
763
- if not self.ending:
764
- Trace.error('No ending for ' + str(self))
765
- return
766
- while not reader.currentline().startswith(self.ending):
767
- process()
768
-
769
- def parsecontainer(self, reader, contents):
770
- container = self.factory.createcontainer(reader)
771
- if container:
772
- container.parent = self.parent
773
- contents.append(container)
774
-
775
- def __str__(self):
776
- "Return a description"
777
- return self.__class__.__name__ + ' (' + str(self.begin) + ')'
778
-
779
-
780
- class LoneCommand(Parser):
781
- "A parser for just one command line"
782
-
783
- def parse(self, reader):
784
- "Read nothing"
785
- return []
786
-
787
-
788
- class TextParser(Parser):
789
- "A parser for a command and a bit of text"
790
-
791
- stack = []
792
-
793
- def __init__(self, container):
794
- Parser.__init__(self)
795
- self.ending = None
796
- if container.__class__.__name__ in ContainerConfig.endings:
797
- self.ending = ContainerConfig.endings[container.__class__.__name__]
798
- self.endings = []
799
-
800
- def parse(self, reader):
801
- "Parse lines as long as they are text"
802
- TextParser.stack.append(self.ending)
803
- self.endings = TextParser.stack + [ContainerConfig.endings['Layout'],
804
- ContainerConfig.endings['Inset'],
805
- self.ending]
806
- contents = []
807
- while not self.isending(reader):
808
- self.parsecontainer(reader, contents)
809
- return contents
810
-
811
- def isending(self, reader):
812
- "Check if text is ending"
813
- current = reader.currentline().split()
814
- if len(current) == 0:
815
- return False
816
- if current[0] in self.endings:
817
- if current[0] in TextParser.stack:
818
- TextParser.stack.remove(current[0])
819
- else:
820
- TextParser.stack = []
821
- return True
822
- return False
823
-
824
-
825
- class ExcludingParser(Parser):
826
- "A parser that excludes the final line"
827
-
828
- def parse(self, reader):
829
- "Parse everything up to (and excluding) the final line"
830
- contents = []
831
- self.parseending(reader, lambda: self.parsecontainer(reader, contents))
832
- return contents
833
-
834
-
835
- class BoundedParser(ExcludingParser):
836
- "A parser bound by a final line"
837
-
838
- def parse(self, reader):
839
- "Parse everything, including the final line"
840
- contents = ExcludingParser.parse(self, reader)
841
- # skip last line
842
- reader.nextline()
843
- return contents
844
-
845
-
846
- class BoundedDummy(Parser):
847
- "A bound parser that ignores everything"
848
-
849
- def parse(self, reader):
850
- "Parse the contents of the container"
851
- self.parseending(reader, lambda: reader.nextline())
852
- # skip last line
853
- reader.nextline()
854
- return []
855
-
856
-
857
- class StringParser(Parser):
858
- "Parses just a string"
859
-
860
- def parseheader(self, reader):
861
- "Do nothing, just take note"
862
- self.begin = reader.linenumber + 1
863
- return []
864
-
865
- def parse(self, reader):
866
- "Parse a single line"
867
- contents = reader.currentline()
868
- reader.nextline()
869
- return contents
870
-
871
-
872
- class ContainerOutput:
873
- "The generic HTML output for a container."
874
-
875
- def gethtml(self, container):
876
- "Show an error."
877
- Trace.error('gethtml() not implemented for ' + str(self))
878
-
879
- def isempty(self):
880
- "Decide if the output is empty: by default, not empty."
881
- return False
882
-
883
-
884
- class EmptyOutput(ContainerOutput):
885
-
886
- def gethtml(self, container):
887
- "Return empty HTML code."
888
- return []
889
-
890
- def isempty(self):
891
- "This output is particularly empty."
892
- return True
893
-
894
-
895
- class FixedOutput(ContainerOutput):
896
- "Fixed output"
897
-
898
- def gethtml(self, container):
899
- "Return constant HTML code"
900
- return container.html
901
-
902
-
903
- class ContentsOutput(ContainerOutput):
904
- "Outputs the contents converted to HTML"
905
-
906
- def gethtml(self, container):
907
- "Return the HTML code"
908
- html = []
909
- if container.contents is None:
910
- return html
911
- for element in container.contents:
912
- if not hasattr(element, 'gethtml'):
913
- Trace.error('No html in ' + element.__class__.__name__ + ': ' + str(element))
914
- return html
915
- html += element.gethtml()
916
- return html
917
-
918
-
919
- class TaggedOutput(ContentsOutput):
920
- "Outputs an HTML tag surrounding the contents."
921
-
922
- tag = None
923
- breaklines = False
924
- empty = False
925
-
926
- def settag(self, tag, breaklines=False, empty=False):
927
- "Set the value for the tag and other attributes."
928
- self.tag = tag
929
- if breaklines:
930
- self.breaklines = breaklines
931
- if empty:
932
- self.empty = empty
933
- return self
934
-
935
- def setbreaklines(self, breaklines):
936
- "Set the value for breaklines."
937
- self.breaklines = breaklines
938
- return self
939
-
940
- def gethtml(self, container):
941
- "Return the HTML code."
942
- if self.empty:
943
- return [self.selfclosing(container)]
944
- html = [self.open(container)]
945
- html += ContentsOutput.gethtml(self, container)
946
- html.append(self.close(container))
947
- return html
948
-
949
- def open(self, container):
950
- "Get opening line."
951
- if not self.checktag(container):
952
- return ''
953
- open = '<' + self.tag + '>'
954
- if self.breaklines:
955
- return open + '\n'
956
- return open
957
-
958
- def close(self, container):
959
- "Get closing line."
960
- if not self.checktag(container):
961
- return ''
962
- close = '</' + self.tag.split()[0] + '>'
963
- if self.breaklines:
964
- return '\n' + close + '\n'
965
- return close
966
-
967
- def selfclosing(self, container):
968
- "Get self-closing line."
969
- if not self.checktag(container):
970
- return ''
971
- selfclosing = '<' + self.tag + '/>'
972
- if self.breaklines:
973
- return selfclosing + '\n'
974
- return selfclosing
975
-
976
- def checktag(self, container):
977
- "Check that the tag is valid."
978
- if not self.tag:
979
- Trace.error('No tag in ' + str(container))
980
- return False
981
- if self.tag == '':
982
- return False
983
- return True
984
-
985
-
986
- class FilteredOutput(ContentsOutput):
987
- "Returns the output in the contents, but filtered:"
988
- "some strings are replaced by others."
989
-
990
- def __init__(self):
991
- "Initialize the filters."
992
- self.filters = []
993
-
994
- def addfilter(self, original, replacement):
995
- "Add a new filter: replace the original by the replacement."
996
- self.filters.append((original, replacement))
997
-
998
- def gethtml(self, container):
999
- "Return the HTML code"
1000
- result = []
1001
- html = ContentsOutput.gethtml(self, container)
1002
- for line in html:
1003
- result.append(self.filter(line))
1004
- return result
1005
-
1006
- def filter(self, line):
1007
- "Filter a single line with all available filters."
1008
- for original, replacement in self.filters:
1009
- if original in line:
1010
- line = line.replace(original, replacement)
1011
- return line
1012
-
1013
-
1014
- class StringOutput(ContainerOutput):
1015
- "Returns a bare string as output"
1016
-
1017
- def gethtml(self, container):
1018
- "Return a bare string"
1019
- return [container.string]
1020
-
1021
-
1022
- class Globable:
1023
- """A bit of text which can be globbed (lumped together in bits).
1024
- Methods current(), skipcurrent(), checkfor() and isout() have to be
1025
- implemented by subclasses."""
1026
-
1027
- leavepending = False
1028
-
1029
- def __init__(self):
1030
- self.endinglist = EndingList()
1031
-
1032
- def checkbytemark(self):
1033
- "Check for a Unicode byte mark and skip it."
1034
- if self.finished():
1035
- return
1036
- if ord(self.current()) == 0xfeff:
1037
- self.skipcurrent()
1038
-
1039
- def isout(self):
1040
- "Find out if we are out of the position yet."
1041
- Trace.error('Unimplemented isout()')
1042
- return True
1043
-
1044
- def current(self):
1045
- "Return the current character."
1046
- Trace.error('Unimplemented current()')
1047
- return ''
1048
-
1049
- def checkfor(self, string):
1050
- "Check for the given string in the current position."
1051
- Trace.error('Unimplemented checkfor()')
1052
- return False
1053
-
1054
- def finished(self):
1055
- "Find out if the current text has finished."
1056
- if self.isout():
1057
- if not self.leavepending:
1058
- self.endinglist.checkpending()
1059
- return True
1060
- return self.endinglist.checkin(self)
1061
-
1062
- def skipcurrent(self):
1063
- "Return the current character and skip it."
1064
- Trace.error('Unimplemented skipcurrent()')
1065
- return ''
1066
-
1067
- def glob(self, currentcheck):
1068
- "Glob a bit of text that satisfies a check on the current char."
1069
- glob = ''
1070
- while not self.finished() and currentcheck():
1071
- glob += self.skipcurrent()
1072
- return glob
1073
-
1074
- def globalpha(self):
1075
- "Glob a bit of alpha text"
1076
- return self.glob(lambda: self.current().isalpha())
1077
-
1078
- def globnumber(self):
1079
- "Glob a row of digits."
1080
- return self.glob(lambda: self.current().isdigit())
1081
-
1082
- def isidentifier(self):
1083
- "Return if the current character is alphanumeric or _."
1084
- if self.current().isalnum() or self.current() == '_':
1085
- return True
1086
- return False
1087
-
1088
- def globidentifier(self):
1089
- "Glob alphanumeric and _ symbols."
1090
- return self.glob(self.isidentifier)
1091
-
1092
- def isvalue(self):
1093
- "Return if the current character is a value character:"
1094
- "not a bracket or a space."
1095
- if self.current().isspace():
1096
- return False
1097
- if self.current() in '{}()':
1098
- return False
1099
- return True
1100
-
1101
- def globvalue(self):
1102
- "Glob a value: any symbols but brackets."
1103
- return self.glob(self.isvalue)
1104
-
1105
- def skipspace(self):
1106
- "Skip all whitespace at current position."
1107
- return self.glob(lambda: self.current().isspace())
1108
-
1109
- def globincluding(self, magicchar):
1110
- "Glob a bit of text up to (including) the magic char."
1111
- glob = self.glob(lambda: self.current() != magicchar) + magicchar
1112
- self.skip(magicchar)
1113
- return glob
1114
-
1115
- def globexcluding(self, excluded):
1116
- "Glob a bit of text up until (excluding) any excluded character."
1117
- return self.glob(lambda: self.current() not in excluded)
1118
-
1119
- def pushending(self, ending, optional=False):
1120
- "Push a new ending to the bottom"
1121
- self.endinglist.add(ending, optional)
1122
-
1123
- def popending(self, expected=None):
1124
- "Pop the ending found at the current position"
1125
- if self.isout() and self.leavepending:
1126
- return expected
1127
- ending = self.endinglist.pop(self)
1128
- if expected and expected != ending:
1129
- Trace.error('Expected ending ' + expected + ', got ' + ending)
1130
- self.skip(ending)
1131
- return ending
1132
-
1133
- def nextending(self):
1134
- "Return the next ending in the queue."
1135
- nextending = self.endinglist.findending(self)
1136
- if not nextending:
1137
- return None
1138
- return nextending.ending
1139
-
1140
-
1141
- class EndingList:
1142
- "A list of position endings"
1143
-
1144
- def __init__(self):
1145
- self.endings = []
1146
-
1147
- def add(self, ending, optional=False):
1148
- "Add a new ending to the list"
1149
- self.endings.append(PositionEnding(ending, optional))
1150
-
1151
- def pickpending(self, pos):
1152
- "Pick any pending endings from a parse position."
1153
- self.endings += pos.endinglist.endings
1154
-
1155
- def checkin(self, pos):
1156
- "Search for an ending"
1157
- if self.findending(pos):
1158
- return True
1159
- return False
1160
-
1161
- def pop(self, pos):
1162
- "Remove the ending at the current position"
1163
- if pos.isout():
1164
- Trace.error('No ending out of bounds')
1165
- return ''
1166
- ending = self.findending(pos)
1167
- if not ending:
1168
- Trace.error('No ending at ' + pos.current())
1169
- return ''
1170
- for each in reversed(self.endings):
1171
- self.endings.remove(each)
1172
- if each == ending:
1173
- return each.ending
1174
- elif not each.optional:
1175
- Trace.error('Removed non-optional ending ' + each)
1176
- Trace.error('No endings left')
1177
- return ''
1178
-
1179
- def findending(self, pos):
1180
- "Find the ending at the current position"
1181
- if len(self.endings) == 0:
1182
- return None
1183
- for index, ending in enumerate(reversed(self.endings)):
1184
- if ending.checkin(pos):
1185
- return ending
1186
- if not ending.optional:
1187
- return None
1188
- return None
1189
-
1190
- def checkpending(self):
1191
- "Check if there are any pending endings"
1192
- if len(self.endings) != 0:
1193
- Trace.error('Pending ' + str(self) + ' left open')
1194
-
1195
- def __str__(self):
1196
- "Printable representation"
1197
- string = 'endings ['
1198
- for ending in self.endings:
1199
- string += str(ending) + ','
1200
- if len(self.endings) > 0:
1201
- string = string[:-1]
1202
- return string + ']'
1203
-
1204
-
1205
- class PositionEnding:
1206
- "An ending for a parsing position"
1207
-
1208
- def __init__(self, ending, optional):
1209
- self.ending = ending
1210
- self.optional = optional
1211
-
1212
- def checkin(self, pos):
1213
- "Check for the ending"
1214
- return pos.checkfor(self.ending)
1215
-
1216
- def __str__(self):
1217
- "Printable representation"
1218
- string = 'Ending ' + self.ending
1219
- if self.optional:
1220
- string += ' (optional)'
1221
- return string
1222
-
1223
-
1224
- class Position(Globable):
1225
- """A position in a text to parse.
1226
- Including those in Globable, functions to implement by subclasses are:
1227
- skip(), identifier(), extract(), isout() and current()."""
1228
-
1229
- def __init__(self):
1230
- Globable.__init__(self)
1231
-
1232
- def skip(self, string):
1233
- "Skip a string"
1234
- Trace.error('Unimplemented skip()')
1235
-
1236
- def identifier(self):
1237
- "Return an identifier for the current position."
1238
- Trace.error('Unimplemented identifier()')
1239
- return 'Error'
1240
-
1241
- def extract(self, length):
1242
- "Extract the next string of the given length, or None if not enough text,"
1243
- "without advancing the parse position."
1244
- Trace.error('Unimplemented extract()')
1245
- return None
1246
-
1247
- def checkfor(self, string):
1248
- "Check for a string at the given position."
1249
- return string == self.extract(len(string))
1250
-
1251
- def checkforlower(self, string):
1252
- "Check for a string in lower case."
1253
- extracted = self.extract(len(string))
1254
- if not extracted:
1255
- return False
1256
- return string.lower() == self.extract(len(string)).lower()
1257
-
1258
- def skipcurrent(self):
1259
- "Return the current character and skip it."
1260
- current = self.current()
1261
- self.skip(current)
1262
- return current
1263
-
1264
- def __next__(self):
1265
- "Advance the position and return the next character."
1266
- self.skipcurrent()
1267
- return self.current()
1268
-
1269
- def checkskip(self, string):
1270
- "Check for a string at the given position; if there, skip it"
1271
- if not self.checkfor(string):
1272
- return False
1273
- self.skip(string)
1274
- return True
1275
-
1276
- def error(self, message):
1277
- "Show an error message and the position identifier."
1278
- Trace.error(message + ': ' + self.identifier())
1279
-
1280
-
1281
- class TextPosition(Position):
1282
- "A parse position based on a raw text."
1283
-
1284
- def __init__(self, text):
1285
- "Create the position from some text."
1286
- Position.__init__(self)
1287
- self.pos = 0
1288
- self.text = text
1289
- self.checkbytemark()
1290
-
1291
- def skip(self, string):
1292
- "Skip a string of characters."
1293
- self.pos += len(string)
1294
-
1295
- def identifier(self):
1296
- "Return a sample of the remaining text."
1297
- length = 30
1298
- if self.pos + length > len(self.text):
1299
- length = len(self.text) - self.pos
1300
- return '*' + self.text[self.pos:self.pos + length] + '*'
1301
-
1302
- def isout(self):
1303
- "Find out if we are out of the text yet."
1304
- return self.pos >= len(self.text)
1305
-
1306
- def current(self):
1307
- "Return the current character, assuming we are not out."
1308
- return self.text[self.pos]
1309
-
1310
- def extract(self, length):
1311
- "Extract the next string of the given length, or None if not enough text."
1312
- if self.pos + length > len(self.text):
1313
- return None
1314
- return self.text[self.pos : self.pos + length] # noqa: E203
1315
-
1316
-
1317
- class Container:
1318
- "A container for text and objects in a lyx file"
1319
-
1320
- partkey = None
1321
- parent = None
1322
- begin = None
1323
-
1324
- def __init__(self):
1325
- self.contents = list()
1326
-
1327
- def process(self):
1328
- "Process contents"
1329
- pass
1330
-
1331
- def gethtml(self):
1332
- "Get the resulting HTML"
1333
- html = self.output.gethtml(self)
1334
- if isinstance(html, str):
1335
- Trace.error('Raw string ' + html)
1336
- html = [html]
1337
- return html
1338
-
1339
- def escape(self, line, replacements=EscapeConfig.entities):
1340
- "Escape a line with replacements from a map"
1341
- pieces = sorted(replacements.keys())
1342
- # do them in order
1343
- for piece in pieces:
1344
- if piece in line:
1345
- line = line.replace(piece, replacements[piece])
1346
- return line
1347
-
1348
- def escapeentities(self, line):
1349
- "Escape all Unicode characters to HTML entities."
1350
- result = ''
1351
- pos = TextPosition(line)
1352
- while not pos.finished():
1353
- if ord(pos.current()) > 128:
1354
- codepoint = hex(ord(pos.current()))
1355
- if codepoint == '0xd835':
1356
- codepoint = hex(ord(next(pos)) + 0xf800)
1357
- result += '&#' + codepoint[1:] + ';'
1358
- else:
1359
- result += pos.current()
1360
- pos.skipcurrent()
1361
- return result
1362
-
1363
- def searchall(self, type):
1364
- "Search for all embedded containers of a given type"
1365
- list = []
1366
- self.searchprocess(type, lambda container: list.append(container))
1367
- return list
1368
-
1369
- def searchremove(self, type):
1370
- "Search for all containers of a type and remove them"
1371
- list = self.searchall(type)
1372
- for container in list:
1373
- container.parent.contents.remove(container)
1374
- return list
1375
-
1376
- def searchprocess(self, type, process):
1377
- "Search for elements of a given type and process them"
1378
- self.locateprocess(lambda container: isinstance(container, type), process)
1379
-
1380
- def locateprocess(self, locate, process):
1381
- "Search for all embedded containers and process them"
1382
- for container in self.contents:
1383
- container.locateprocess(locate, process)
1384
- if locate(container):
1385
- process(container)
1386
-
1387
- def recursivesearch(self, locate, recursive, process):
1388
- "Perform a recursive search in the container."
1389
- for container in self.contents:
1390
- if recursive(container):
1391
- container.recursivesearch(locate, recursive, process)
1392
- if locate(container):
1393
- process(container)
1394
-
1395
- def extracttext(self):
1396
- "Extract all text from allowed containers."
1397
- constants = ContainerExtractor(ContainerConfig.extracttext).extract(self)
1398
- return ''.join(constant.string for constant in constants)
1399
-
1400
- def group(self, index, group, isingroup):
1401
- "Group some adjoining elements into a group"
1402
- if index >= len(self.contents):
1403
- return
1404
- if hasattr(self.contents[index], 'grouped'):
1405
- return
1406
- while index < len(self.contents) and isingroup(self.contents[index]):
1407
- self.contents[index].grouped = True
1408
- group.contents.append(self.contents[index])
1409
- self.contents.pop(index)
1410
- self.contents.insert(index, group)
1411
-
1412
- def remove(self, index):
1413
- "Remove a container but leave its contents"
1414
- container = self.contents[index]
1415
- self.contents.pop(index)
1416
- while len(container.contents) > 0:
1417
- self.contents.insert(index, container.contents.pop())
1418
-
1419
- def tree(self, level=0):
1420
- "Show in a tree"
1421
- Trace.debug(" " * level + str(self))
1422
- for container in self.contents:
1423
- container.tree(level + 1)
1424
-
1425
- def getparameter(self, name):
1426
- "Get the value of a parameter, if present."
1427
- if name not in self.parameters:
1428
- return None
1429
- return self.parameters[name]
1430
-
1431
- def getparameterlist(self, name):
1432
- "Get the value of a comma-separated parameter as a list."
1433
- paramtext = self.getparameter(name)
1434
- if not paramtext:
1435
- return []
1436
- return paramtext.split(',')
1437
-
1438
- def hasemptyoutput(self):
1439
- "Check if the parent's output is empty."
1440
- current = self.parent
1441
- while current:
1442
- if current.output.isempty():
1443
- return True
1444
- current = current.parent
1445
- return False
1446
-
1447
- def __str__(self):
1448
- "Get a description"
1449
- if not self.begin:
1450
- return self.__class__.__name__
1451
- return self.__class__.__name__ + '@' + str(self.begin)
1452
-
1453
-
1454
- class BlackBox(Container):
1455
- "A container that does not output anything"
1456
-
1457
- def __init__(self):
1458
- self.parser = LoneCommand()
1459
- self.output = EmptyOutput()
1460
- self.contents = []
1461
-
1462
-
1463
- class StringContainer(Container):
1464
- "A container for a single string"
1465
-
1466
- parsed = None
1467
-
1468
- def __init__(self):
1469
- self.parser = StringParser()
1470
- self.output = StringOutput()
1471
- self.string = ''
1472
-
1473
- def process(self):
1474
- "Replace special chars from the contents."
1475
- if self.parsed:
1476
- self.string = self.replacespecial(self.parsed)
1477
- self.parsed = None
1478
-
1479
- def replacespecial(self, line):
1480
- "Replace all special chars from a line"
1481
- replaced = self.escape(line, EscapeConfig.entities)
1482
- replaced = self.changeline(replaced)
1483
- if ContainerConfig.string['startcommand'] in replaced and len(replaced) > 1:
1484
- # unprocessed commands
1485
- if self.begin:
1486
- message = 'Unknown command at ' + str(self.begin) + ': '
1487
- else:
1488
- message = 'Unknown command: '
1489
- Trace.error(message + replaced.strip())
1490
- return replaced
1491
-
1492
- def changeline(self, line):
1493
- return self.escape(line, EscapeConfig.chars)
1494
-
1495
- def extracttext(self):
1496
- "Return all text."
1497
- return self.string
1498
-
1499
- def __str__(self):
1500
- "Return a printable representation."
1501
- result = 'StringContainer'
1502
- if self.begin:
1503
- result += '@' + str(self.begin)
1504
- ellipsis = '...'
1505
- if len(self.string.strip()) <= 15:
1506
- ellipsis = ''
1507
- return result + ' (' + self.string.strip()[:15] + ellipsis + ')'
1508
-
1509
-
1510
- class Constant(StringContainer):
1511
- "A constant string"
1512
-
1513
- def __init__(self, text):
1514
- self.contents = []
1515
- self.string = text
1516
- self.output = StringOutput()
1517
-
1518
- def __str__(self):
1519
- return 'Constant: ' + self.string
1520
-
1521
-
1522
- class DocumentParameters:
1523
- "Global parameters for the document."
1524
-
1525
- displaymode = False
1526
-
1527
-
1528
- class FormulaParser(Parser):
1529
- "Parses a formula"
1530
-
1531
- def parseheader(self, reader):
1532
- "See if the formula is inlined"
1533
- self.begin = reader.linenumber + 1
1534
- type = self.parsetype(reader)
1535
- if not type:
1536
- reader.nextline()
1537
- type = self.parsetype(reader)
1538
- if not type:
1539
- Trace.error('Unknown formula type in ' + reader.currentline().strip())
1540
- return ['unknown']
1541
- return [type]
1542
-
1543
- def parsetype(self, reader):
1544
- "Get the formula type from the first line."
1545
- if reader.currentline().find(FormulaConfig.starts['simple']) >= 0:
1546
- return 'inline'
1547
- if reader.currentline().find(FormulaConfig.starts['complex']) >= 0:
1548
- return 'block'
1549
- if reader.currentline().find(FormulaConfig.starts['unnumbered']) >= 0:
1550
- return 'block'
1551
- if reader.currentline().find(FormulaConfig.starts['beginbefore']) >= 0:
1552
- return 'numbered'
1553
- return None
1554
-
1555
- def parse(self, reader):
1556
- "Parse the formula until the end"
1557
- formula = self.parseformula(reader)
1558
- while not reader.currentline().startswith(self.ending):
1559
- stripped = reader.currentline().strip()
1560
- if len(stripped) > 0:
1561
- Trace.error('Unparsed formula line ' + stripped)
1562
- reader.nextline()
1563
- reader.nextline()
1564
- return formula
1565
-
1566
- def parseformula(self, reader):
1567
- "Parse the formula contents"
1568
- simple = FormulaConfig.starts['simple']
1569
- if simple in reader.currentline():
1570
- rest = reader.currentline().split(simple, 1)[1]
1571
- if simple in rest:
1572
- # formula is $...$
1573
- return self.parsesingleliner(reader, simple, simple)
1574
- # formula is multiline $...$
1575
- return self.parsemultiliner(reader, simple, simple)
1576
- if FormulaConfig.starts['complex'] in reader.currentline():
1577
- # formula of the form \[...\]
1578
- return self.parsemultiliner(reader, FormulaConfig.starts['complex'],
1579
- FormulaConfig.endings['complex'])
1580
- beginbefore = FormulaConfig.starts['beginbefore']
1581
- beginafter = FormulaConfig.starts['beginafter']
1582
- if beginbefore in reader.currentline():
1583
- if reader.currentline().strip().endswith(beginafter):
1584
- current = reader.currentline().strip()
1585
- endsplit = current.split(beginbefore)[1].split(beginafter)
1586
- startpiece = beginbefore + endsplit[0] + beginafter
1587
- endbefore = FormulaConfig.endings['endbefore']
1588
- endafter = FormulaConfig.endings['endafter']
1589
- endpiece = endbefore + endsplit[0] + endafter
1590
- return startpiece + self.parsemultiliner(reader, startpiece, endpiece) + endpiece
1591
- Trace.error('Missing ' + beginafter + ' in ' + reader.currentline())
1592
- return ''
1593
- begincommand = FormulaConfig.starts['command']
1594
- beginbracket = FormulaConfig.starts['bracket']
1595
- if begincommand in reader.currentline() and beginbracket in reader.currentline():
1596
- endbracket = FormulaConfig.endings['bracket']
1597
- return self.parsemultiliner(reader, beginbracket, endbracket)
1598
- Trace.error('Formula beginning ' + reader.currentline() + ' is unknown')
1599
- return ''
1600
-
1601
- def parsesingleliner(self, reader, start, ending):
1602
- "Parse a formula in one line"
1603
- line = reader.currentline().strip()
1604
- if start not in line:
1605
- Trace.error('Line ' + line + ' does not contain formula start ' + start)
1606
- return ''
1607
- if not line.endswith(ending):
1608
- Trace.error('Formula ' + line + ' does not end with ' + ending)
1609
- return ''
1610
- index = line.index(start)
1611
- rest = line[index + len(start):-len(ending)]
1612
- reader.nextline()
1613
- return rest
1614
-
1615
- def parsemultiliner(self, reader, start, ending):
1616
- "Parse a formula in multiple lines"
1617
- formula = ''
1618
- line = reader.currentline()
1619
- if start not in line:
1620
- Trace.error('Line ' + line.strip() + ' does not contain formula start ' + start)
1621
- return ''
1622
- index = line.index(start)
1623
- line = line[index + len(start):].strip()
1624
- while not line.endswith(ending):
1625
- formula += line + '\n'
1626
- reader.nextline()
1627
- line = reader.currentline()
1628
- formula += line[:-len(ending)]
1629
- reader.nextline()
1630
- return formula
1631
-
1632
-
1633
- class FormulaBit(Container):
1634
- "A bit of a formula"
1635
-
1636
- type = None
1637
- size = 1
1638
- original = ''
1639
-
1640
- def __init__(self):
1641
- "The formula bit type can be 'alpha', 'number', 'font'."
1642
- self.contents = []
1643
- self.output = ContentsOutput()
1644
-
1645
- def setfactory(self, factory):
1646
- "Set the internal formula factory."
1647
- self.factory = factory
1648
- return self
1649
-
1650
- def add(self, bit):
1651
- "Add any kind of formula bit already processed"
1652
- self.contents.append(bit)
1653
- self.original += bit.original
1654
- bit.parent = self
1655
-
1656
- def skiporiginal(self, string, pos):
1657
- "Skip a string and add it to the original formula"
1658
- self.original += string
1659
- if not pos.checkskip(string):
1660
- Trace.error('String ' + string + ' not at ' + pos.identifier())
1661
-
1662
- def computesize(self):
1663
- "Compute the size of the bit as the max of the sizes of all contents."
1664
- if len(self.contents) == 0:
1665
- return 1
1666
- self.size = max(element.size for element in self.contents)
1667
- return self.size
1668
-
1669
- def clone(self):
1670
- "Return a copy of itself."
1671
- return self.factory.parseformula(self.original)
1672
-
1673
- def __str__(self):
1674
- "Get a string representation"
1675
- return self.__class__.__name__ + ' read in ' + self.original
1676
-
1677
-
1678
- class TaggedBit(FormulaBit):
1679
- "A tagged string in a formula"
1680
-
1681
- def constant(self, constant, tag):
1682
- "Set the constant and the tag"
1683
- self.output = TaggedOutput().settag(tag)
1684
- self.add(FormulaConstant(constant))
1685
- return self
1686
-
1687
- def complete(self, contents, tag, breaklines=False):
1688
- "Set the constant and the tag"
1689
- self.contents = contents
1690
- self.output = TaggedOutput().settag(tag, breaklines)
1691
- return self
1692
-
1693
- def selfcomplete(self, tag):
1694
- "Set the self-closing tag, no contents (as in <hr/>)."
1695
- self.output = TaggedOutput().settag(tag, empty=True)
1696
- return self
1697
-
1698
-
1699
- class FormulaConstant(Constant):
1700
- "A constant string in a formula"
1701
-
1702
- def __init__(self, string):
1703
- "Set the constant string"
1704
- Constant.__init__(self, string)
1705
- self.original = string
1706
- self.size = 1
1707
- self.type = None
1708
-
1709
- def computesize(self):
1710
- "Compute the size of the constant: always 1."
1711
- return self.size
1712
-
1713
- def clone(self):
1714
- "Return a copy of itself."
1715
- return FormulaConstant(self.original)
1716
-
1717
- def __str__(self):
1718
- "Return a printable representation."
1719
- return 'Formula constant: ' + self.string
1720
-
1721
-
1722
- class RawText(FormulaBit):
1723
- "A bit of text inside a formula"
1724
-
1725
- def detect(self, pos):
1726
- "Detect a bit of raw text"
1727
- return pos.current().isalpha()
1728
-
1729
- def parsebit(self, pos):
1730
- "Parse alphabetic text"
1731
- alpha = pos.globalpha()
1732
- self.add(FormulaConstant(alpha))
1733
- self.type = 'alpha'
1734
-
1735
-
1736
- class FormulaSymbol(FormulaBit):
1737
- "A symbol inside a formula"
1738
-
1739
- modified = FormulaConfig.modified
1740
- unmodified = FormulaConfig.unmodified['characters']
1741
-
1742
- def detect(self, pos):
1743
- "Detect a symbol"
1744
- if pos.current() in FormulaSymbol.unmodified:
1745
- return True
1746
- if pos.current() in FormulaSymbol.modified:
1747
- return True
1748
- return False
1749
-
1750
- def parsebit(self, pos):
1751
- "Parse the symbol"
1752
- if pos.current() in FormulaSymbol.unmodified:
1753
- self.addsymbol(pos.current(), pos)
1754
- return
1755
- if pos.current() in FormulaSymbol.modified:
1756
- self.addsymbol(FormulaSymbol.modified[pos.current()], pos)
1757
- return
1758
- Trace.error('Symbol ' + pos.current() + ' not found')
1759
-
1760
- def addsymbol(self, symbol, pos):
1761
- "Add a symbol"
1762
- self.skiporiginal(pos.current(), pos)
1763
- self.contents.append(FormulaConstant(symbol))
1764
-
1765
-
1766
- class FormulaNumber(FormulaBit):
1767
- "A string of digits in a formula"
1768
-
1769
- def detect(self, pos):
1770
- "Detect a digit"
1771
- return pos.current().isdigit()
1772
-
1773
- def parsebit(self, pos):
1774
- "Parse a bunch of digits"
1775
- digits = pos.glob(lambda: pos.current().isdigit())
1776
- self.add(FormulaConstant(digits))
1777
- self.type = 'number'
1778
-
1779
-
1780
- class Comment(FormulaBit):
1781
- "A LaTeX comment: % to the end of the line."
1782
-
1783
- start = FormulaConfig.starts['comment']
1784
-
1785
- def detect(self, pos):
1786
- "Detect the %."
1787
- return pos.current() == self.start
1788
-
1789
- def parsebit(self, pos):
1790
- "Parse to the end of the line."
1791
- self.original += pos.globincluding('\n')
1792
-
1793
-
1794
- class WhiteSpace(FormulaBit):
1795
- "Some white space inside a formula."
1796
-
1797
- def detect(self, pos):
1798
- "Detect the white space."
1799
- return pos.current().isspace()
1800
-
1801
- def parsebit(self, pos):
1802
- "Parse all whitespace."
1803
- self.original += pos.skipspace()
1804
-
1805
- def __str__(self):
1806
- "Return a printable representation."
1807
- return 'Whitespace: *' + self.original + '*'
1808
-
1809
-
1810
- class Bracket(FormulaBit):
1811
- "A {} bracket inside a formula"
1812
-
1813
- start = FormulaConfig.starts['bracket']
1814
- ending = FormulaConfig.endings['bracket']
1815
-
1816
- def __init__(self):
1817
- "Create a (possibly literal) new bracket"
1818
- FormulaBit.__init__(self)
1819
- self.inner = None
1820
-
1821
- def detect(self, pos):
1822
- "Detect the start of a bracket"
1823
- return pos.checkfor(self.start)
1824
-
1825
- def parsebit(self, pos):
1826
- "Parse the bracket"
1827
- self.parsecomplete(pos, self.innerformula)
1828
- return self
1829
-
1830
- def parsetext(self, pos):
1831
- "Parse a text bracket"
1832
- self.parsecomplete(pos, self.innertext)
1833
- return self
1834
-
1835
- def parseliteral(self, pos):
1836
- "Parse a literal bracket"
1837
- self.parsecomplete(pos, self.innerliteral)
1838
- return self
1839
-
1840
- def parsecomplete(self, pos, innerparser):
1841
- "Parse the start and end marks"
1842
- if not pos.checkfor(self.start):
1843
- Trace.error('Bracket should start with ' + self.start + ' at ' + pos.identifier())
1844
- return None
1845
- self.skiporiginal(self.start, pos)
1846
- pos.pushending(self.ending)
1847
- innerparser(pos)
1848
- self.original += pos.popending(self.ending)
1849
- self.computesize()
1850
-
1851
- def innerformula(self, pos):
1852
- "Parse a whole formula inside the bracket"
1853
- while not pos.finished():
1854
- self.add(self.factory.parseany(pos))
1855
-
1856
- def innertext(self, pos):
1857
- "Parse some text inside the bracket, following textual rules."
1858
- specialchars = list(FormulaConfig.symbolfunctions.keys())
1859
- specialchars.append(FormulaConfig.starts['command'])
1860
- specialchars.append(FormulaConfig.starts['bracket'])
1861
- specialchars.append(Comment.start)
1862
- while not pos.finished():
1863
- if pos.current() in specialchars:
1864
- self.add(self.factory.parseany(pos))
1865
- if pos.checkskip(' '):
1866
- self.original += ' '
1867
- else:
1868
- self.add(FormulaConstant(pos.skipcurrent()))
1869
-
1870
- def innerliteral(self, pos):
1871
- "Parse a literal inside the bracket, which does not generate HTML."
1872
- self.literal = ''
1873
- while not pos.finished() and not pos.current() == self.ending:
1874
- if pos.current() == self.start:
1875
- self.parseliteral(pos)
1876
- else:
1877
- self.literal += pos.skipcurrent()
1878
- self.original += self.literal
1879
-
1880
-
1881
- class SquareBracket(Bracket):
1882
- "A [] bracket inside a formula"
1883
-
1884
- start = FormulaConfig.starts['squarebracket']
1885
- ending = FormulaConfig.endings['squarebracket']
1886
-
1887
- def clone(self):
1888
- "Return a new square bracket with the same contents."
1889
- bracket = SquareBracket()
1890
- bracket.contents = self.contents
1891
- return bracket
1892
-
1893
-
1894
- class MathsProcessor:
1895
- "A processor for a maths construction inside the FormulaProcessor."
1896
-
1897
- def process(self, contents, index):
1898
- "Process an element inside a formula."
1899
- Trace.error('Unimplemented process() in ' + str(self))
1900
-
1901
- def __str__(self):
1902
- "Return a printable description."
1903
- return 'Maths processor ' + self.__class__.__name__
1904
-
1905
-
1906
- class FormulaProcessor:
1907
- "A processor specifically for formulas."
1908
-
1909
- processors = []
1910
-
1911
- def process(self, bit):
1912
- "Process the contents of every formula bit, recursively."
1913
- self.processcontents(bit)
1914
- self.processinsides(bit)
1915
- self.traversewhole(bit)
1916
-
1917
- def processcontents(self, bit):
1918
- "Process the contents of a formula bit."
1919
- if not isinstance(bit, FormulaBit):
1920
- return
1921
- bit.process()
1922
- for element in bit.contents:
1923
- self.processcontents(element)
1924
-
1925
- def processinsides(self, bit):
1926
- "Process the insides (limits, brackets) in a formula bit."
1927
- if not isinstance(bit, FormulaBit):
1928
- return
1929
- for index, element in enumerate(bit.contents):
1930
- for processor in self.processors:
1931
- processor.process(bit.contents, index)
1932
- # continue with recursive processing
1933
- self.processinsides(element)
1934
-
1935
- def traversewhole(self, formula):
1936
- "Traverse over the contents to alter variables and space units."
1937
- last = None
1938
- for bit, contents in self.traverse(formula):
1939
- if bit.type == 'alpha':
1940
- self.italicize(bit, contents)
1941
- elif bit.type == 'font' and last and last.type == 'number':
1942
- bit.contents.insert(0, FormulaConstant('\u2009'))
1943
- last = bit
1944
-
1945
- def traverse(self, bit):
1946
- "Traverse a formula and yield a flattened structure of (bit, list) pairs."
1947
- for element in bit.contents:
1948
- if hasattr(element, 'type') and element.type:
1949
- yield element, bit.contents
1950
- elif isinstance(element, FormulaBit):
1951
- yield from self.traverse(element)
1952
-
1953
- def italicize(self, bit, contents):
1954
- "Italicize the given bit of text."
1955
- index = contents.index(bit)
1956
- contents[index] = TaggedBit().complete([bit], 'i')
1957
-
1958
-
1959
- class Formula(Container):
1960
- "A LaTeX formula"
1961
-
1962
- def __init__(self):
1963
- self.parser = FormulaParser()
1964
- self.output = TaggedOutput().settag('span class="formula"')
1965
-
1966
- def process(self):
1967
- "Convert the formula to tags"
1968
- if self.header[0] == 'inline':
1969
- DocumentParameters.displaymode = False
1970
- else:
1971
- DocumentParameters.displaymode = True
1972
- self.output.settag('div class="formula"', True)
1973
- self.classic()
1974
-
1975
- def classic(self):
1976
- "Make the contents using classic output generation with XHTML and CSS."
1977
- whole = FormulaFactory().parseformula(self.parsed)
1978
- FormulaProcessor().process(whole)
1979
- whole.parent = self
1980
- self.contents = [whole]
1981
-
1982
- def parse(self, pos):
1983
- "Parse using a parse position instead of self.parser."
1984
- if pos.checkskip('$$'):
1985
- self.parsedollarblock(pos)
1986
- elif pos.checkskip('$'):
1987
- self.parsedollarinline(pos)
1988
- elif pos.checkskip('\\('):
1989
- self.parseinlineto(pos, '\\)')
1990
- elif pos.checkskip('\\['):
1991
- self.parseblockto(pos, '\\]')
1992
- else:
1993
- pos.error('Unparseable formula')
1994
- self.process()
1995
- return self
1996
-
1997
- def parsedollarinline(self, pos):
1998
- "Parse a $...$ formula."
1999
- self.header = ['inline']
2000
- self.parsedollar(pos)
2001
-
2002
- def parsedollarblock(self, pos):
2003
- "Parse a $$...$$ formula."
2004
- self.header = ['block']
2005
- self.parsedollar(pos)
2006
- if not pos.checkskip('$'):
2007
- pos.error('Formula should be $$...$$, but last $ is missing.')
2008
-
2009
- def parsedollar(self, pos):
2010
- "Parse to the next $."
2011
- pos.pushending('$')
2012
- self.parsed = pos.globexcluding('$')
2013
- pos.popending('$')
2014
-
2015
- def parseinlineto(self, pos, limit):
2016
- "Parse a \\(...\\) formula."
2017
- self.header = ['inline']
2018
- self.parseupto(pos, limit)
2019
-
2020
- def parseblockto(self, pos, limit):
2021
- "Parse a \\[...\\] formula."
2022
- self.header = ['block']
2023
- self.parseupto(pos, limit)
2024
-
2025
- def parseupto(self, pos, limit):
2026
- "Parse a formula that ends with the given command."
2027
- pos.pushending(limit)
2028
- self.parsed = pos.glob(lambda: True)
2029
- pos.popending(limit)
2030
-
2031
- def __str__(self):
2032
- "Return a printable representation."
2033
- if self.partkey and self.partkey.number:
2034
- return 'Formula (' + self.partkey.number + ')'
2035
- return 'Unnumbered formula'
2036
-
2037
-
2038
- class WholeFormula(FormulaBit):
2039
- "Parse a whole formula"
2040
-
2041
- def detect(self, pos):
2042
- "Not outside the formula is enough."
2043
- return not pos.finished()
2044
-
2045
- def parsebit(self, pos):
2046
- "Parse with any formula bit"
2047
- while not pos.finished():
2048
- self.add(self.factory.parseany(pos))
2049
-
2050
-
2051
- class FormulaFactory:
2052
- "Construct bits of formula"
2053
-
2054
- # bit types will be appended later
2055
- types = [FormulaSymbol, RawText, FormulaNumber, Bracket, Comment, WhiteSpace]
2056
- skippedtypes = [Comment, WhiteSpace]
2057
- defining = False
2058
-
2059
- def __init__(self):
2060
- "Initialize the map of instances."
2061
- self.instances = {}
2062
-
2063
- def detecttype(self, type, pos):
2064
- "Detect a bit of a given type."
2065
- if pos.finished():
2066
- return False
2067
- return self.instance(type).detect(pos)
2068
-
2069
- def instance(self, type):
2070
- "Get an instance of the given type."
2071
- if type not in self.instances or not self.instances[type]:
2072
- self.instances[type] = self.create(type)
2073
- return self.instances[type]
2074
-
2075
- def create(self, type):
2076
- "Create a new formula bit of the given type."
2077
- return Cloner.create(type).setfactory(self)
2078
-
2079
- def clearskipped(self, pos):
2080
- "Clear any skipped types."
2081
- while not pos.finished():
2082
- if not self.skipany(pos):
2083
- return
2084
- return
2085
-
2086
- def skipany(self, pos):
2087
- "Skip any skipped types."
2088
- for type in self.skippedtypes:
2089
- if self.instance(type).detect(pos):
2090
- return self.parsetype(type, pos)
2091
- return None
2092
-
2093
- def parseany(self, pos):
2094
- "Parse any formula bit at the current location."
2095
- for type in self.types + self.skippedtypes:
2096
- if self.detecttype(type, pos):
2097
- return self.parsetype(type, pos)
2098
- Trace.error('Unrecognized formula at ' + pos.identifier())
2099
- return FormulaConstant(pos.skipcurrent())
2100
-
2101
- def parsetype(self, type, pos):
2102
- "Parse the given type and return it."
2103
- bit = self.instance(type)
2104
- self.instances[type] = None
2105
- returnedbit = bit.parsebit(pos)
2106
- if returnedbit:
2107
- return returnedbit.setfactory(self)
2108
- return bit
2109
-
2110
- def parseformula(self, formula):
2111
- "Parse a string of text that contains a whole formula."
2112
- pos = TextPosition(formula)
2113
- whole = self.create(WholeFormula)
2114
- if whole.detect(pos):
2115
- whole.parsebit(pos)
2116
- return whole
2117
- # no formula found
2118
- if not pos.finished():
2119
- Trace.error('Unknown formula at: ' + pos.identifier())
2120
- whole.add(TaggedBit().constant(formula, 'span class="unknown"'))
2121
- return whole
2122
-
2123
-
2124
- class FormulaCommand(FormulaBit):
2125
- "A LaTeX command inside a formula"
2126
-
2127
- types = []
2128
- start = FormulaConfig.starts['command']
2129
- commandmap = None
2130
-
2131
- def detect(self, pos):
2132
- "Find the current command."
2133
- return pos.checkfor(FormulaCommand.start)
2134
-
2135
- def parsebit(self, pos):
2136
- "Parse the command."
2137
- command = self.extractcommand(pos)
2138
- bit = self.parsewithcommand(command, pos)
2139
- if bit:
2140
- return bit
2141
- if command.startswith('\\up') or command.startswith('\\Up'):
2142
- upgreek = self.parseupgreek(command, pos)
2143
- if upgreek:
2144
- return upgreek
2145
- if not self.factory.defining:
2146
- Trace.error('Unknown command ' + command)
2147
- self.output = TaggedOutput().settag('span class="unknown"')
2148
- self.add(FormulaConstant(command))
2149
- return None
2150
-
2151
- def parsewithcommand(self, command, pos):
2152
- "Parse the command type once we have the command."
2153
- for type in FormulaCommand.types:
2154
- if command in type.commandmap:
2155
- return self.parsecommandtype(command, type, pos)
2156
- return None
2157
-
2158
- def parsecommandtype(self, command, type, pos):
2159
- "Parse a given command type."
2160
- bit = self.factory.create(type)
2161
- bit.setcommand(command)
2162
- returned = bit.parsebit(pos)
2163
- if returned:
2164
- return returned
2165
- return bit
2166
-
2167
- def extractcommand(self, pos):
2168
- "Extract the command from the current position."
2169
- if not pos.checkskip(FormulaCommand.start):
2170
- pos.error('Missing command start ' + FormulaCommand.start)
2171
- return
2172
- if pos.finished():
2173
- return self.emptycommand(pos)
2174
- if pos.current().isalpha():
2175
- # alpha command
2176
- command = FormulaCommand.start + pos.globalpha()
2177
- # skip mark of short command
2178
- pos.checkskip('*')
2179
- return command
2180
- # symbol command
2181
- return FormulaCommand.start + pos.skipcurrent()
2182
-
2183
- def emptycommand(self, pos):
2184
- """Check for an empty command: look for command disguised as ending.
2185
- Special case against '{ \\{ \\} }' situation."""
2186
- command = ''
2187
- if not pos.isout():
2188
- ending = pos.nextending()
2189
- if ending and pos.checkskip(ending):
2190
- command = ending
2191
- return FormulaCommand.start + command
2192
-
2193
- def parseupgreek(self, command, pos):
2194
- "Parse the Greek \\up command.."
2195
- if len(command) < 4:
2196
- return None
2197
- if command.startswith('\\up'):
2198
- upcommand = '\\' + command[3:]
2199
- elif pos.checkskip('\\Up'):
2200
- upcommand = '\\' + command[3:4].upper() + command[4:]
2201
- else:
2202
- Trace.error('Impossible upgreek command: ' + command)
2203
- return
2204
- upgreek = self.parsewithcommand(upcommand, pos)
2205
- if upgreek:
2206
- upgreek.type = 'font'
2207
- return upgreek
2208
-
2209
-
2210
- class CommandBit(FormulaCommand):
2211
- "A formula bit that includes a command"
2212
-
2213
- def setcommand(self, command):
2214
- "Set the command in the bit"
2215
- self.command = command
2216
- if self.commandmap:
2217
- self.original += command
2218
- self.translated = self.commandmap[self.command]
2219
-
2220
- def parseparameter(self, pos):
2221
- "Parse a parameter at the current position"
2222
- self.factory.clearskipped(pos)
2223
- if pos.finished():
2224
- return None
2225
- parameter = self.factory.parseany(pos)
2226
- self.add(parameter)
2227
- return parameter
2228
-
2229
- def parsesquare(self, pos):
2230
- "Parse a square bracket"
2231
- self.factory.clearskipped(pos)
2232
- if not self.factory.detecttype(SquareBracket, pos):
2233
- return None
2234
- bracket = self.factory.parsetype(SquareBracket, pos)
2235
- self.add(bracket)
2236
- return bracket
2237
-
2238
- def parseliteral(self, pos):
2239
- "Parse a literal bracket."
2240
- self.factory.clearskipped(pos)
2241
- if not self.factory.detecttype(Bracket, pos):
2242
- if not pos.isvalue():
2243
- Trace.error('No literal parameter found at: ' + pos.identifier())
2244
- return None
2245
- return pos.globvalue()
2246
- bracket = Bracket().setfactory(self.factory)
2247
- self.add(bracket.parseliteral(pos))
2248
- return bracket.literal
2249
-
2250
- def parsesquareliteral(self, pos):
2251
- "Parse a square bracket literally."
2252
- self.factory.clearskipped(pos)
2253
- if not self.factory.detecttype(SquareBracket, pos):
2254
- return None
2255
- bracket = SquareBracket().setfactory(self.factory)
2256
- self.add(bracket.parseliteral(pos))
2257
- return bracket.literal
2258
-
2259
- def parsetext(self, pos):
2260
- "Parse a text parameter."
2261
- self.factory.clearskipped(pos)
2262
- if not self.factory.detecttype(Bracket, pos):
2263
- Trace.error('No text parameter for ' + self.command)
2264
- return None
2265
- bracket = Bracket().setfactory(self.factory).parsetext(pos)
2266
- self.add(bracket)
2267
- return bracket
2268
-
2269
-
2270
- class EmptyCommand(CommandBit):
2271
- "An empty command (without parameters)"
2272
-
2273
- commandmap = FormulaConfig.commands
2274
-
2275
- def parsebit(self, pos):
2276
- "Parse a command without parameters"
2277
- self.contents = [FormulaConstant(self.translated)]
2278
-
2279
-
2280
- class SpacedCommand(CommandBit):
2281
- """An empty command which should have math spacing in formulas."""
2282
-
2283
- commandmap = FormulaConfig.spacedcommands
2284
-
2285
- def parsebit(self, pos):
2286
- "Place as contents the command translated and spaced."
2287
- # pad with MEDIUM MATHEMATICAL SPACE (4/18 em): too wide in STIX fonts :(
2288
- # self.contents = [FormulaConstant('\u205f' + self.translated + '\u205f')]
2289
- # pad with THIN SPACE (1/5 em)
2290
- self.contents = [FormulaConstant('\u2009' + self.translated + '\u2009')]
2291
-
2292
-
2293
- class AlphaCommand(EmptyCommand):
2294
- """A command without parameters whose result is alphabetical."""
2295
-
2296
- commandmap = FormulaConfig.alphacommands
2297
- greek_capitals = ('\\Xi', '\\Theta', '\\Pi', '\\Sigma', '\\Gamma',
2298
- '\\Lambda', '\\Phi', '\\Psi', '\\Delta',
2299
- '\\Upsilon', '\\Omega')
2300
-
2301
- def parsebit(self, pos):
2302
- "Parse the command and set type to alpha"
2303
- EmptyCommand.parsebit(self, pos)
2304
- if self.command not in self.greek_capitals:
2305
- # Greek Capital letters are upright in LaTeX default math-style.
2306
- # TODO: use italic, like in MathML and "iso" math-style?
2307
- self.type = 'alpha'
2308
-
2309
-
2310
- class OneParamFunction(CommandBit):
2311
- "A function of one parameter"
2312
-
2313
- commandmap = FormulaConfig.onefunctions
2314
- simplified = False
2315
-
2316
- def parsebit(self, pos):
2317
- "Parse a function with one parameter"
2318
- self.output = TaggedOutput().settag(self.translated)
2319
- self.parseparameter(pos)
2320
- self.simplifyifpossible()
2321
-
2322
- def simplifyifpossible(self):
2323
- "Try to simplify to a single character."
2324
- if self.original in self.commandmap:
2325
- self.output = FixedOutput()
2326
- self.html = [self.commandmap[self.original]]
2327
- self.simplified = True
2328
-
2329
-
2330
- class SymbolFunction(CommandBit):
2331
- "Find a function which is represented by a symbol (like _ or ^)"
2332
-
2333
- commandmap = FormulaConfig.symbolfunctions
2334
-
2335
- def detect(self, pos):
2336
- "Find the symbol"
2337
- return pos.current() in SymbolFunction.commandmap
2338
-
2339
- def parsebit(self, pos):
2340
- "Parse the symbol"
2341
- self.setcommand(pos.current())
2342
- pos.skip(self.command)
2343
- self.output = TaggedOutput().settag(self.translated)
2344
- self.parseparameter(pos)
2345
-
2346
-
2347
- class TextFunction(CommandBit):
2348
- "A function where parameters are read as text."
2349
-
2350
- commandmap = FormulaConfig.textfunctions
2351
-
2352
- def parsebit(self, pos):
2353
- "Parse a text parameter"
2354
- self.output = TaggedOutput().settag(self.translated)
2355
- self.parsetext(pos)
2356
-
2357
- def process(self):
2358
- "Set the type to font"
2359
- self.type = 'font'
2360
-
2361
-
2362
- class FontFunction(OneParamFunction):
2363
- """A function of one parameter that changes the font."""
2364
- # TODO: keep letters italic with \boldsymbol.
2365
-
2366
- commandmap = FormulaConfig.fontfunctions
2367
-
2368
- def process(self):
2369
- "Simplify if possible using a single character."
2370
- self.type = 'font'
2371
- self.simplifyifpossible()
2372
-
2373
-
2374
- FormulaFactory.types += [FormulaCommand, SymbolFunction]
2375
- FormulaCommand.types = [
2376
- AlphaCommand, EmptyCommand, OneParamFunction, FontFunction,
2377
- TextFunction, SpacedCommand]
2378
-
2379
-
2380
- class BigBracket:
2381
- "A big bracket generator."
2382
-
2383
- def __init__(self, size, bracket, alignment='l'):
2384
- "Set the size and symbol for the bracket."
2385
- self.size = size
2386
- self.original = bracket
2387
- self.alignment = alignment
2388
- self.pieces = None
2389
- if bracket in FormulaConfig.bigbrackets:
2390
- self.pieces = FormulaConfig.bigbrackets[bracket]
2391
-
2392
- def getpiece(self, index):
2393
- "Return the nth piece for the bracket."
2394
- function = getattr(self, 'getpiece' + str(len(self.pieces)))
2395
- return function(index)
2396
-
2397
- def getpiece1(self, index):
2398
- "Return the only piece for a single-piece bracket."
2399
- return self.pieces[0]
2400
-
2401
- def getpiece3(self, index):
2402
- "Get the nth piece for a 3-piece bracket: parenthesis or square bracket."
2403
- if index == 0:
2404
- return self.pieces[0]
2405
- if index == self.size - 1:
2406
- return self.pieces[-1]
2407
- return self.pieces[1]
2408
-
2409
- def getpiece4(self, index):
2410
- "Get the nth piece for a 4-piece bracket: curly bracket."
2411
- if index == 0:
2412
- return self.pieces[0]
2413
- if index == self.size - 1:
2414
- return self.pieces[3]
2415
- if index == (self.size - 1)/2:
2416
- return self.pieces[2]
2417
- return self.pieces[1]
2418
-
2419
- def getcell(self, index):
2420
- "Get the bracket piece as an array cell."
2421
- piece = self.getpiece(index)
2422
- span = 'span class="bracket align-' + self.alignment + '"'
2423
- return TaggedBit().constant(piece, span)
2424
-
2425
- def getcontents(self):
2426
- "Get the bracket as an array or as a single bracket."
2427
- if self.size == 1 or not self.pieces:
2428
- return self.getsinglebracket()
2429
- rows = []
2430
- for index in range(self.size):
2431
- cell = self.getcell(index)
2432
- rows.append(TaggedBit().complete([cell], 'span class="arrayrow"'))
2433
- return [TaggedBit().complete(rows, 'span class="array"')]
2434
-
2435
- def getsinglebracket(self):
2436
- "Return the bracket as a single sign."
2437
- if self.original == '.':
2438
- return [TaggedBit().constant('', 'span class="emptydot"')]
2439
- return [TaggedBit().constant(self.original, 'span class="stretchy"')]
2440
-
2441
-
2442
- class FormulaEquation(CommandBit):
2443
- "A simple numbered equation."
2444
-
2445
- piece = 'equation'
2446
-
2447
- def parsebit(self, pos):
2448
- "Parse the array"
2449
- self.output = ContentsOutput()
2450
- self.add(self.factory.parsetype(WholeFormula, pos))
2451
-
2452
-
2453
- class FormulaCell(FormulaCommand):
2454
- "An array cell inside a row"
2455
-
2456
- def setalignment(self, alignment):
2457
- self.alignment = alignment
2458
- self.output = TaggedOutput().settag('span class="arraycell align-'
2459
- + alignment + '"', True)
2460
- return self
2461
-
2462
- def parsebit(self, pos):
2463
- self.factory.clearskipped(pos)
2464
- if pos.finished():
2465
- return
2466
- self.add(self.factory.parsetype(WholeFormula, pos))
2467
-
2468
-
2469
- class FormulaRow(FormulaCommand):
2470
- "An array row inside an array"
2471
-
2472
- cellseparator = FormulaConfig.array['cellseparator']
2473
-
2474
- def setalignments(self, alignments):
2475
- self.alignments = alignments
2476
- self.output = TaggedOutput().settag('span class="arrayrow"', True)
2477
- return self
2478
-
2479
- def parsebit(self, pos):
2480
- "Parse a whole row"
2481
- index = 0
2482
- pos.pushending(self.cellseparator, optional=True)
2483
- while not pos.finished():
2484
- cell = self.createcell(index)
2485
- cell.parsebit(pos)
2486
- self.add(cell)
2487
- index += 1
2488
- pos.checkskip(self.cellseparator)
2489
- if len(self.contents) == 0:
2490
- self.output = EmptyOutput()
2491
-
2492
- def createcell(self, index):
2493
- "Create the cell that corresponds to the given index."
2494
- alignment = self.alignments[index % len(self.alignments)]
2495
- return self.factory.create(FormulaCell).setalignment(alignment)
2496
-
2497
-
2498
- class MultiRowFormula(CommandBit):
2499
- "A formula with multiple rows."
2500
-
2501
- def parserows(self, pos):
2502
- "Parse all rows, finish when no more row ends"
2503
- self.rows = []
2504
- first = True
2505
- for row in self.iteraterows(pos):
2506
- if first:
2507
- first = False
2508
- else:
2509
- # intersparse empty rows
2510
- self.addempty()
2511
- row.parsebit(pos)
2512
- self.addrow(row)
2513
- self.size = len(self.rows)
2514
-
2515
- def iteraterows(self, pos):
2516
- "Iterate over all rows, end when no more row ends"
2517
- rowseparator = FormulaConfig.array['rowseparator']
2518
- while True:
2519
- pos.pushending(rowseparator, True)
2520
- row = self.factory.create(FormulaRow)
2521
- yield row.setalignments(self.alignments)
2522
- if pos.checkfor(rowseparator):
2523
- self.original += pos.popending(rowseparator)
2524
- else:
2525
- return
2526
-
2527
- def addempty(self):
2528
- "Add an empty row."
2529
- row = self.factory.create(FormulaRow).setalignments(self.alignments)
2530
- for index, originalcell in enumerate(self.rows[-1].contents):
2531
- cell = row.createcell(index)
2532
- cell.add(FormulaConstant(' '))
2533
- row.add(cell)
2534
- self.addrow(row)
2535
-
2536
- def addrow(self, row):
2537
- "Add a row to the contents and to the list of rows."
2538
- self.rows.append(row)
2539
- self.add(row)
2540
-
2541
-
2542
- class FormulaArray(MultiRowFormula):
2543
- "An array within a formula"
2544
-
2545
- piece = 'array'
2546
-
2547
- def parsebit(self, pos):
2548
- "Parse the array"
2549
- self.output = TaggedOutput().settag('span class="array"', False)
2550
- self.parsealignments(pos)
2551
- self.parserows(pos)
2552
-
2553
- def parsealignments(self, pos):
2554
- "Parse the different alignments"
2555
- # vertical
2556
- self.valign = 'c'
2557
- literal = self.parsesquareliteral(pos)
2558
- if literal:
2559
- self.valign = literal
2560
- # horizontal
2561
- literal = self.parseliteral(pos)
2562
- self.alignments = []
2563
- for s in literal:
2564
- self.alignments.append(s)
2565
-
2566
-
2567
- class FormulaMatrix(MultiRowFormula):
2568
- "A matrix (array with center alignment)."
2569
-
2570
- piece = 'matrix'
2571
-
2572
- def parsebit(self, pos):
2573
- "Parse the matrix, set alignments to 'c'."
2574
- self.output = TaggedOutput().settag('span class="array"', False)
2575
- self.valign = 'c'
2576
- self.alignments = ['c']
2577
- self.parserows(pos)
2578
-
2579
-
2580
- class FormulaCases(MultiRowFormula):
2581
- "A cases statement"
2582
-
2583
- piece = 'cases'
2584
-
2585
- def parsebit(self, pos):
2586
- "Parse the cases"
2587
- self.output = ContentsOutput()
2588
- self.alignments = ['l', 'l']
2589
- self.parserows(pos)
2590
- for row in self.contents:
2591
- for cell in row.contents:
2592
- cell.output.settag('span class="case align-l"', True)
2593
- cell.contents.append(FormulaConstant(' '))
2594
- array = TaggedBit().complete(self.contents, 'span class="bracketcases"', True)
2595
- brace = BigBracket(len(self.contents), '{', 'l')
2596
- self.contents = brace.getcontents() + [array]
2597
-
2598
-
2599
- class EquationEnvironment(MultiRowFormula):
2600
- "A \\begin{}...\\end equation environment with rows and cells."
2601
-
2602
- def parsebit(self, pos):
2603
- "Parse the whole environment."
2604
- environment = self.piece.replace('*', '')
2605
- self.output = TaggedOutput().settag(
2606
- 'span class="environment %s"'%environment, False)
2607
- if environment in FormulaConfig.environments:
2608
- self.alignments = FormulaConfig.environments[environment]
2609
- else:
2610
- Trace.error('Unknown equation environment ' + self.piece)
2611
- # print in red
2612
- self.output = TaggedOutput().settag('span class="unknown"')
2613
- self.add(FormulaConstant('\\begin{%s} '%environment))
2614
-
2615
- self.alignments = ['l']
2616
- self.parserows(pos)
2617
-
2618
-
2619
- class BeginCommand(CommandBit):
2620
- "A \\begin{}...\\end command and what it entails (array, cases, aligned)"
2621
-
2622
- commandmap = {FormulaConfig.array['begin']: ''}
2623
-
2624
- types = [FormulaEquation, FormulaArray, FormulaCases, FormulaMatrix]
2625
-
2626
- def parsebit(self, pos):
2627
- "Parse the begin command"
2628
- command = self.parseliteral(pos)
2629
- bit = self.findbit(command)
2630
- ending = FormulaConfig.array['end'] + '{' + command + '}'
2631
- pos.pushending(ending)
2632
- bit.parsebit(pos)
2633
- self.add(bit)
2634
- self.original += pos.popending(ending)
2635
- self.size = bit.size
2636
-
2637
- def findbit(self, piece):
2638
- "Find the command bit corresponding to the \\begin{piece}"
2639
- for type in BeginCommand.types:
2640
- if piece.replace('*', '') == type.piece:
2641
- return self.factory.create(type)
2642
- bit = self.factory.create(EquationEnvironment)
2643
- bit.piece = piece
2644
- return bit
2645
-
2646
-
2647
- FormulaCommand.types += [BeginCommand]
2648
-
2649
-
2650
- class CombiningFunction(OneParamFunction):
2651
-
2652
- commandmap = FormulaConfig.combiningfunctions
2653
-
2654
- def parsebit(self, pos):
2655
- "Parse a combining function."
2656
- combining = self.translated
2657
- parameter = self.parsesingleparameter(pos)
2658
- if not parameter:
2659
- Trace.error('Missing parameter for combining function ' + self.command)
2660
- return
2661
- # Trace.message('apply %s to %r'%(self.command, parameter.extracttext()))
2662
- # parameter.tree()
2663
- if not isinstance(parameter, FormulaConstant):
2664
- try:
2665
- extractor = ContainerExtractor(ContainerConfig.extracttext)
2666
- parameter = extractor.extract(parameter)[0]
2667
- except IndexError:
2668
- Trace.error('No base character found for "%s".' % self.command)
2669
- return
2670
- # Trace.message(' basechar: %r' % parameter.string)
2671
- # Insert combining character after the first character:
2672
- if parameter.string.startswith('\u2009'):
2673
- i = 2 # skip padding by SpacedCommand and FormulaConfig.modified
2674
- else:
2675
- i = 1
2676
- parameter.string = parameter.string[:i] + combining + parameter.string[i:]
2677
- # Use pre-composed characters if possible: \not{=} -> ≠, say.
2678
- parameter.string = unicodedata.normalize('NFC', parameter.string)
2679
-
2680
- def parsesingleparameter(self, pos):
2681
- "Parse a parameter, or a single letter."
2682
- self.factory.clearskipped(pos)
2683
- if pos.finished():
2684
- return None
2685
- return self.parseparameter(pos)
2686
-
2687
-
2688
- class OversetFunction(OneParamFunction):
2689
- "A function that decorates some bit of text with an overset."
2690
-
2691
- commandmap = FormulaConfig.oversetfunctions
2692
-
2693
- def parsebit(self, pos):
2694
- "Parse an overset-function"
2695
- symbol = self.translated
2696
- self.symbol = TaggedBit().constant(symbol, 'sup')
2697
- self.parameter = self.parseparameter(pos)
2698
- self.output = TaggedOutput().settag('span class="embellished"')
2699
- self.contents.insert(0, self.symbol)
2700
- self.parameter.output = TaggedOutput().settag('span class="base"')
2701
- self.simplifyifpossible()
2702
-
2703
-
2704
- class UndersetFunction(OneParamFunction):
2705
- "A function that decorates some bit of text with an underset."
2706
-
2707
- commandmap = FormulaConfig.undersetfunctions
2708
-
2709
- def parsebit(self, pos):
2710
- "Parse an underset-function"
2711
- symbol = self.translated
2712
- self.symbol = TaggedBit().constant(symbol, 'sub')
2713
- self.parameter = self.parseparameter(pos)
2714
- self.output = TaggedOutput().settag('span class="embellished"')
2715
- self.contents.insert(0, self.symbol)
2716
- self.parameter.output = TaggedOutput().settag('span class="base"')
2717
- self.simplifyifpossible()
2718
-
2719
-
2720
- class LimitCommand(EmptyCommand):
2721
- "A command which accepts limits above and below, in display mode."
2722
-
2723
- commandmap = FormulaConfig.limitcommands
2724
-
2725
- def parsebit(self, pos):
2726
- "Parse a limit command."
2727
- self.output = TaggedOutput().settag('span class="limits"')
2728
- symbol = self.translated
2729
- self.contents.append(TaggedBit().constant(symbol, 'span class="limit"'))
2730
-
2731
-
2732
- class LimitPreviousCommand(LimitCommand):
2733
- "A command to limit the previous command."
2734
-
2735
- commandmap = None
2736
-
2737
- def parsebit(self, pos):
2738
- "Do nothing."
2739
- self.output = TaggedOutput().settag('span class="limits"')
2740
- self.factory.clearskipped(pos)
2741
-
2742
- def __str__(self):
2743
- "Return a printable representation."
2744
- return 'Limit previous command'
2745
-
2746
-
2747
- class LimitsProcessor(MathsProcessor):
2748
- "A processor for limits inside an element."
2749
-
2750
- def process(self, contents, index):
2751
- "Process the limits for an element."
2752
- if Options.simplemath:
2753
- return
2754
- if self.checklimits(contents, index):
2755
- self.modifylimits(contents, index)
2756
- if self.checkscript(contents, index) and self.checkscript(contents, index + 1):
2757
- self.modifyscripts(contents, index)
2758
-
2759
- def checklimits(self, contents, index):
2760
- "Check if the current position has a limits command."
2761
- # TODO: check for \limits macro
2762
- if not DocumentParameters.displaymode:
2763
- return False
2764
- if self.checkcommand(contents, index + 1, LimitPreviousCommand):
2765
- self.limitsahead(contents, index)
2766
- return False
2767
- if not isinstance(contents[index], LimitCommand):
2768
- return False
2769
- return self.checkscript(contents, index + 1)
2770
-
2771
- def limitsahead(self, contents, index):
2772
- "Limit the current element based on the next."
2773
- contents[index + 1].add(contents[index].clone())
2774
- contents[index].output = EmptyOutput()
2775
-
2776
- def modifylimits(self, contents, index):
2777
- "Modify a limits commands so that the limits appear above and below."
2778
- limited = contents[index]
2779
- subscript = self.getlimit(contents, index + 1)
2780
- if self.checkscript(contents, index + 1):
2781
- superscript = self.getlimit(contents, index + 1)
2782
- else:
2783
- superscript = TaggedBit().constant('\u2009', 'sup class="limit"')
2784
- # fix order if source is x^i
2785
- if subscript.command == '^':
2786
- superscript, subscript = subscript, superscript
2787
- limited.contents.append(subscript)
2788
- limited.contents.insert(0, superscript)
2789
-
2790
- def getlimit(self, contents, index):
2791
- "Get the limit for a limits command."
2792
- limit = self.getscript(contents, index)
2793
- limit.output.tag = limit.output.tag.replace('script', 'limit')
2794
- return limit
2795
-
2796
- def modifyscripts(self, contents, index):
2797
- "Modify the super- and subscript to appear vertically aligned."
2798
- subscript = self.getscript(contents, index)
2799
- # subscript removed so instead of index + 1 we get index again
2800
- superscript = self.getscript(contents, index)
2801
- # super-/subscript are reversed if source is x^i_j
2802
- if subscript.command == '^':
2803
- superscript, subscript = subscript, superscript
2804
- scripts = TaggedBit().complete([superscript, subscript], 'span class="scripts"')
2805
- contents.insert(index, scripts)
2806
-
2807
- def checkscript(self, contents, index):
2808
- "Check if the current element is a sub- or superscript."
2809
- return self.checkcommand(contents, index, SymbolFunction)
2810
-
2811
- def checkcommand(self, contents, index, type):
2812
- "Check for the given type as the current element."
2813
- if len(contents) <= index:
2814
- return False
2815
- return isinstance(contents[index], type)
2816
-
2817
- def getscript(self, contents, index):
2818
- "Get the sub- or superscript."
2819
- bit = contents[index]
2820
- bit.output.tag += ' class="script"'
2821
- del contents[index]
2822
- return bit
2823
-
2824
-
2825
- class BracketCommand(OneParamFunction):
2826
- "A command which defines a bracket."
2827
-
2828
- commandmap = FormulaConfig.bracketcommands
2829
-
2830
- def parsebit(self, pos):
2831
- "Parse the bracket."
2832
- OneParamFunction.parsebit(self, pos)
2833
-
2834
- def create(self, direction, character):
2835
- "Create the bracket for the given character."
2836
- self.original = character
2837
- self.command = '\\' + direction
2838
- self.contents = [FormulaConstant(character)]
2839
- return self
2840
-
2841
-
2842
- class BracketProcessor(MathsProcessor):
2843
- "A processor for bracket commands."
2844
-
2845
- def process(self, contents, index):
2846
- "Convert the bracket using Unicode pieces, if possible."
2847
- if Options.simplemath:
2848
- return
2849
- if self.checkleft(contents, index):
2850
- return self.processleft(contents, index)
2851
-
2852
- def processleft(self, contents, index):
2853
- "Process a left bracket."
2854
- rightindex = self.findright(contents, index + 1)
2855
- if not rightindex:
2856
- return
2857
- size = self.findmax(contents, index, rightindex)
2858
- self.resize(contents[index], size)
2859
- self.resize(contents[rightindex], size)
2860
-
2861
- def checkleft(self, contents, index):
2862
- "Check if the command at the given index is left."
2863
- return self.checkdirection(contents[index], '\\left')
2864
-
2865
- def checkright(self, contents, index):
2866
- "Check if the command at the given index is right."
2867
- return self.checkdirection(contents[index], '\\right')
2868
-
2869
- def checkdirection(self, bit, command):
2870
- "Check if the given bit is the desired bracket command."
2871
- if not isinstance(bit, BracketCommand):
2872
- return False
2873
- return bit.command == command
2874
-
2875
- def findright(self, contents, index):
2876
- "Find the right bracket starting at the given index, or 0."
2877
- depth = 1
2878
- while index < len(contents):
2879
- if self.checkleft(contents, index):
2880
- depth += 1
2881
- if self.checkright(contents, index):
2882
- depth -= 1
2883
- if depth == 0:
2884
- return index
2885
- index += 1
2886
- return None
2887
-
2888
- def findmax(self, contents, leftindex, rightindex):
2889
- "Find the max size of the contents between the two given indices."
2890
- sliced = contents[leftindex:rightindex]
2891
- return max(element.size for element in sliced)
2892
-
2893
- def resize(self, command, size):
2894
- "Resize a bracket command to the given size."
2895
- character = command.extracttext()
2896
- alignment = command.command.replace('\\', '')
2897
- bracket = BigBracket(size, character, alignment)
2898
- command.output = ContentsOutput()
2899
- command.contents = bracket.getcontents()
2900
-
2901
-
2902
- FormulaCommand.types += [OversetFunction, UndersetFunction,
2903
- CombiningFunction, LimitCommand, BracketCommand]
2904
-
2905
- FormulaProcessor.processors += [
2906
- LimitsProcessor(), BracketProcessor(),
2907
- ]
2908
-
2909
-
2910
- class ParameterDefinition:
2911
- "The definition of a parameter in a hybrid function."
2912
- "[] parameters are optional, {} parameters are mandatory."
2913
- "Each parameter has a one-character name, like {$1} or {$p}."
2914
- "A parameter that ends in ! like {$p!} is a literal."
2915
- "Example: [$1]{$p!} reads an optional parameter $1 and a literal mandatory parameter p."
2916
-
2917
- parambrackets = [('[', ']'), ('{', '}')]
2918
-
2919
- def __init__(self):
2920
- self.name = None
2921
- self.literal = False
2922
- self.optional = False
2923
- self.value = None
2924
- self.literalvalue = None
2925
-
2926
- def parse(self, pos):
2927
- "Parse a parameter definition: [$0], {$x}, {$1!}..."
2928
- for (opening, closing) in ParameterDefinition.parambrackets:
2929
- if pos.checkskip(opening):
2930
- if opening == '[':
2931
- self.optional = True
2932
- if not pos.checkskip('$'):
2933
- Trace.error('Wrong parameter name, did you mean $' + pos.current() + '?')
2934
- return None
2935
- self.name = pos.skipcurrent()
2936
- if pos.checkskip('!'):
2937
- self.literal = True
2938
- if not pos.checkskip(closing):
2939
- Trace.error('Wrong parameter closing ' + pos.skipcurrent())
2940
- return None
2941
- return self
2942
- Trace.error('Wrong character in parameter template: ' + pos.skipcurrent())
2943
- return None
2944
-
2945
- def read(self, pos, function):
2946
- "Read the parameter itself using the definition."
2947
- if self.literal:
2948
- if self.optional:
2949
- self.literalvalue = function.parsesquareliteral(pos)
2950
- else:
2951
- self.literalvalue = function.parseliteral(pos)
2952
- if self.literalvalue:
2953
- self.value = FormulaConstant(self.literalvalue)
2954
- elif self.optional:
2955
- self.value = function.parsesquare(pos)
2956
- else:
2957
- self.value = function.parseparameter(pos)
2958
-
2959
- def __str__(self):
2960
- "Return a printable representation."
2961
- result = 'param ' + self.name
2962
- if self.value:
2963
- result += ': ' + str(self.value)
2964
- else:
2965
- result += ' (empty)'
2966
- return result
2967
-
2968
-
2969
- class ParameterFunction(CommandBit):
2970
- "A function with a variable number of parameters defined in a template."
2971
- "The parameters are defined as a parameter definition."
2972
-
2973
- def readparams(self, readtemplate, pos):
2974
- "Read the params according to the template."
2975
- self.params = {}
2976
- for paramdef in self.paramdefs(readtemplate):
2977
- paramdef.read(pos, self)
2978
- self.params['$' + paramdef.name] = paramdef
2979
-
2980
- def paramdefs(self, readtemplate):
2981
- "Read each param definition in the template"
2982
- pos = TextPosition(readtemplate)
2983
- while not pos.finished():
2984
- paramdef = ParameterDefinition().parse(pos)
2985
- if paramdef:
2986
- yield paramdef
2987
-
2988
- def getparam(self, name):
2989
- "Get a parameter as parsed."
2990
- if name not in self.params:
2991
- return None
2992
- return self.params[name]
2993
-
2994
- def getvalue(self, name):
2995
- "Get the value of a parameter."
2996
- return self.getparam(name).value
2997
-
2998
- def getliteralvalue(self, name):
2999
- "Get the literal value of a parameter."
3000
- param = self.getparam(name)
3001
- if not param or not param.literalvalue:
3002
- return None
3003
- return param.literalvalue
3004
-
3005
-
3006
- class HybridFunction(ParameterFunction):
3007
- """
3008
- A parameter function where the output is also defined using a template.
3009
- The template can use a number of functions; each function has an associated
3010
- tag.
3011
- Example: [f0{$1},span class="fbox"] defines a function f0 which corresponds
3012
- to a span of class fbox, yielding <span class="fbox">$1</span>.
3013
- Literal parameters can be used in tags definitions:
3014
- [f0{$1},span style="color: $p;"]
3015
- yields <span style="color: $p;">$1</span>, where $p is a literal parameter.
3016
- Sizes can be specified in hybridsizes, e.g. adding parameter sizes. By
3017
- default the resulting size is the max of all arguments. Sizes are used
3018
- to generate the right parameters.
3019
- A function followed by a single / is output as a self-closing XHTML tag:
3020
- [f0/,hr]
3021
- will generate <hr/>.
3022
- """
3023
-
3024
- commandmap = FormulaConfig.hybridfunctions
3025
-
3026
- def parsebit(self, pos):
3027
- "Parse a function with [] and {} parameters"
3028
- readtemplate = self.translated[0]
3029
- writetemplate = self.translated[1]
3030
- self.readparams(readtemplate, pos)
3031
- self.contents = self.writeparams(writetemplate)
3032
- self.computehybridsize()
3033
-
3034
- def writeparams(self, writetemplate):
3035
- "Write all params according to the template"
3036
- return self.writepos(TextPosition(writetemplate))
3037
-
3038
- def writepos(self, pos):
3039
- "Write all params as read in the parse position."
3040
- result = []
3041
- while not pos.finished():
3042
- if pos.checkskip('$'):
3043
- param = self.writeparam(pos)
3044
- if param:
3045
- result.append(param)
3046
- elif pos.checkskip('f'):
3047
- function = self.writefunction(pos)
3048
- if function:
3049
- function.type = None
3050
- result.append(function)
3051
- elif pos.checkskip('('):
3052
- result.append(self.writebracket('left', '('))
3053
- elif pos.checkskip(')'):
3054
- result.append(self.writebracket('right', ')'))
3055
- else:
3056
- result.append(FormulaConstant(pos.skipcurrent()))
3057
- return result
3058
-
3059
- def writeparam(self, pos):
3060
- "Write a single param of the form $0, $x..."
3061
- name = '$' + pos.skipcurrent()
3062
- if name not in self.params:
3063
- Trace.error('Unknown parameter ' + name)
3064
- return None
3065
- if not self.params[name]:
3066
- return None
3067
- if pos.checkskip('.'):
3068
- self.params[name].value.type = pos.globalpha()
3069
- return self.params[name].value
3070
-
3071
- def writefunction(self, pos):
3072
- "Write a single function f0,...,fn."
3073
- tag = self.readtag(pos)
3074
- if not tag:
3075
- return None
3076
- if pos.checkskip('/'):
3077
- # self-closing XHTML tag, such as <hr/>
3078
- return TaggedBit().selfcomplete(tag)
3079
- if not pos.checkskip('{'):
3080
- Trace.error('Function should be defined in {}')
3081
- return None
3082
- pos.pushending('}')
3083
- contents = self.writepos(pos)
3084
- pos.popending()
3085
- if len(contents) == 0:
3086
- return None
3087
- return TaggedBit().complete(contents, tag)
3088
-
3089
- def readtag(self, pos):
3090
- "Get the tag corresponding to the given index. Does parameter substitution."
3091
- if not pos.current().isdigit():
3092
- Trace.error('Function should be f0,...,f9: f' + pos.current())
3093
- return None
3094
- index = int(pos.skipcurrent())
3095
- if 2 + index > len(self.translated):
3096
- Trace.error('Function f' + str(index) + ' is not defined')
3097
- return None
3098
- tag = self.translated[2 + index]
3099
- if '$' not in tag:
3100
- return tag
3101
- for variable in self.params:
3102
- if variable in tag:
3103
- param = self.params[variable]
3104
- if not param.literal:
3105
- Trace.error('Parameters in tag ' + tag + ' should be literal: {' + variable + '!}')
3106
- continue
3107
- if param.literalvalue:
3108
- value = param.literalvalue
3109
- else:
3110
- value = ''
3111
- tag = tag.replace(variable, value)
3112
- return tag
3113
-
3114
- def writebracket(self, direction, character):
3115
- "Return a new bracket looking at the given direction."
3116
- return self.factory.create(BracketCommand).create(direction, character)
3117
-
3118
- def computehybridsize(self):
3119
- "Compute the size of the hybrid function."
3120
- if self.command not in HybridSize.configsizes:
3121
- self.computesize()
3122
- return
3123
- self.size = HybridSize().getsize(self)
3124
- # set the size in all elements at first level
3125
- for element in self.contents:
3126
- element.size = self.size
3127
-
3128
-
3129
- class HybridSize:
3130
- "The size associated with a hybrid function."
3131
-
3132
- configsizes = FormulaConfig.hybridsizes
3133
-
3134
- def getsize(self, function):
3135
- "Read the size for a function and parse it."
3136
- sizestring = self.configsizes[function.command]
3137
- for name in function.params:
3138
- if name in sizestring:
3139
- size = function.params[name].value.computesize()
3140
- sizestring = sizestring.replace(name, str(size))
3141
- if '$' in sizestring:
3142
- Trace.error('Unconverted variable in hybrid size: ' + sizestring)
3143
- return 1
3144
- return eval(sizestring)
3145
-
3146
-
3147
- FormulaCommand.types += [HybridFunction]
3148
-
3149
-
3150
- def math2html(formula):
3151
- "Convert some TeX math to HTML."
3152
- factory = FormulaFactory()
3153
- whole = factory.parseformula(formula)
3154
- FormulaProcessor().process(whole)
3155
- whole.process()
3156
- return ''.join(whole.gethtml())
3157
-
3158
-
3159
- def main():
3160
- "Main function, called if invoked from the command line"
3161
- args = sys.argv
3162
- Options().parseoptions(args)
3163
- if len(args) != 1:
3164
- Trace.error('Usage: math2html.py escaped_string')
3165
- exit()
3166
- result = math2html(args[0])
3167
- Trace.message(result)
3168
-
3169
-
3170
- if __name__ == '__main__':
3171
- main()