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,2965 +0,0 @@
1
- """Header value parser implementing various email-related RFC parsing rules.
2
-
3
- The parsing methods defined in this module implement various email related
4
- parsing rules. Principal among them is RFC 5322, which is the followon
5
- to RFC 2822 and primarily a clarification of the former. It also implements
6
- RFC 2047 encoded word decoding.
7
-
8
- RFC 5322 goes to considerable trouble to maintain backward compatibility with
9
- RFC 822 in the parse phase, while cleaning up the structure on the generation
10
- phase. This parser supports correct RFC 5322 generation by tagging white space
11
- as folding white space only when folding is allowed in the non-obsolete rule
12
- sets. Actually, the parser is even more generous when accepting input than RFC
13
- 5322 mandates, following the spirit of Postel's Law, which RFC 5322 encourages.
14
- Where possible deviations from the standard are annotated on the 'defects'
15
- attribute of tokens that deviate.
16
-
17
- The general structure of the parser follows RFC 5322, and uses its terminology
18
- where there is a direct correspondence. Where the implementation requires a
19
- somewhat different structure than that used by the formal grammar, new terms
20
- that mimic the closest existing terms are used. Thus, it really helps to have
21
- a copy of RFC 5322 handy when studying this code.
22
-
23
- Input to the parser is a string that has already been unfolded according to
24
- RFC 5322 rules. According to the RFC this unfolding is the very first step, and
25
- this parser leaves the unfolding step to a higher level message parser, which
26
- will have already detected the line breaks that need unfolding while
27
- determining the beginning and end of each header.
28
-
29
- The output of the parser is a TokenList object, which is a list subclass. A
30
- TokenList is a recursive data structure. The terminal nodes of the structure
31
- are Terminal objects, which are subclasses of str. These do not correspond
32
- directly to terminal objects in the formal grammar, but are instead more
33
- practical higher level combinations of true terminals.
34
-
35
- All TokenList and Terminal objects have a 'value' attribute, which produces the
36
- semantically meaningful value of that part of the parse subtree. The value of
37
- all whitespace tokens (no matter how many sub-tokens they may contain) is a
38
- single space, as per the RFC rules. This includes 'CFWS', which is herein
39
- included in the general class of whitespace tokens. There is one exception to
40
- the rule that whitespace tokens are collapsed into single spaces in values: in
41
- the value of a 'bare-quoted-string' (a quoted-string with no leading or
42
- trailing whitespace), any whitespace that appeared between the quotation marks
43
- is preserved in the returned value. Note that in all Terminal strings quoted
44
- pairs are turned into their unquoted values.
45
-
46
- All TokenList and Terminal objects also have a string value, which attempts to
47
- be a "canonical" representation of the RFC-compliant form of the substring that
48
- produced the parsed subtree, including minimal use of quoted pair quoting.
49
- Whitespace runs are not collapsed.
50
-
51
- Comment tokens also have a 'content' attribute providing the string found
52
- between the parens (including any nested comments) with whitespace preserved.
53
-
54
- All TokenList and Terminal objects have a 'defects' attribute which is a
55
- possibly empty list all of the defects found while creating the token. Defects
56
- may appear on any token in the tree, and a composite list of all defects in the
57
- subtree is available through the 'all_defects' attribute of any node. (For
58
- Terminal notes x.defects == x.all_defects.)
59
-
60
- Each object in a parse tree is called a 'token', and each has a 'token_type'
61
- attribute that gives the name from the RFC 5322 grammar that it represents.
62
- Not all RFC 5322 nodes are produced, and there is one non-RFC 5322 node that
63
- may be produced: 'ptext'. A 'ptext' is a string of printable ascii characters.
64
- It is returned in place of lists of (ctext/quoted-pair) and
65
- (qtext/quoted-pair).
66
-
67
- XXX: provide complete list of token types.
68
- """
69
- from __future__ import print_function
70
- from __future__ import unicode_literals
71
- from __future__ import division
72
- from __future__ import absolute_import
73
- from future.builtins import int, range, str, super, list
74
-
75
- import re
76
- from collections import namedtuple, OrderedDict
77
-
78
- from future.backports.urllib.parse import (unquote, unquote_to_bytes)
79
- from future.backports.email import _encoded_words as _ew
80
- from future.backports.email import errors
81
- from future.backports.email import utils
82
-
83
- #
84
- # Useful constants and functions
85
- #
86
-
87
- WSP = set(' \t')
88
- CFWS_LEADER = WSP | set('(')
89
- SPECIALS = set(r'()<>@,:;.\"[]')
90
- ATOM_ENDS = SPECIALS | WSP
91
- DOT_ATOM_ENDS = ATOM_ENDS - set('.')
92
- # '.', '"', and '(' do not end phrases in order to support obs-phrase
93
- PHRASE_ENDS = SPECIALS - set('."(')
94
- TSPECIALS = (SPECIALS | set('/?=')) - set('.')
95
- TOKEN_ENDS = TSPECIALS | WSP
96
- ASPECIALS = TSPECIALS | set("*'%")
97
- ATTRIBUTE_ENDS = ASPECIALS | WSP
98
- EXTENDED_ATTRIBUTE_ENDS = ATTRIBUTE_ENDS - set('%')
99
-
100
- def quote_string(value):
101
- return '"'+str(value).replace('\\', '\\\\').replace('"', r'\"')+'"'
102
-
103
- #
104
- # Accumulator for header folding
105
- #
106
-
107
- class _Folded(object):
108
-
109
- def __init__(self, maxlen, policy):
110
- self.maxlen = maxlen
111
- self.policy = policy
112
- self.lastlen = 0
113
- self.stickyspace = None
114
- self.firstline = True
115
- self.done = []
116
- self.current = list() # uses l.clear()
117
-
118
- def newline(self):
119
- self.done.extend(self.current)
120
- self.done.append(self.policy.linesep)
121
- self.current.clear()
122
- self.lastlen = 0
123
-
124
- def finalize(self):
125
- if self.current:
126
- self.newline()
127
-
128
- def __str__(self):
129
- return ''.join(self.done)
130
-
131
- def append(self, stoken):
132
- self.current.append(stoken)
133
-
134
- def append_if_fits(self, token, stoken=None):
135
- if stoken is None:
136
- stoken = str(token)
137
- l = len(stoken)
138
- if self.stickyspace is not None:
139
- stickyspace_len = len(self.stickyspace)
140
- if self.lastlen + stickyspace_len + l <= self.maxlen:
141
- self.current.append(self.stickyspace)
142
- self.lastlen += stickyspace_len
143
- self.current.append(stoken)
144
- self.lastlen += l
145
- self.stickyspace = None
146
- self.firstline = False
147
- return True
148
- if token.has_fws:
149
- ws = token.pop_leading_fws()
150
- if ws is not None:
151
- self.stickyspace += str(ws)
152
- stickyspace_len += len(ws)
153
- token._fold(self)
154
- return True
155
- if stickyspace_len and l + 1 <= self.maxlen:
156
- margin = self.maxlen - l
157
- if 0 < margin < stickyspace_len:
158
- trim = stickyspace_len - margin
159
- self.current.append(self.stickyspace[:trim])
160
- self.stickyspace = self.stickyspace[trim:]
161
- stickyspace_len = trim
162
- self.newline()
163
- self.current.append(self.stickyspace)
164
- self.current.append(stoken)
165
- self.lastlen = l + stickyspace_len
166
- self.stickyspace = None
167
- self.firstline = False
168
- return True
169
- if not self.firstline:
170
- self.newline()
171
- self.current.append(self.stickyspace)
172
- self.current.append(stoken)
173
- self.stickyspace = None
174
- self.firstline = False
175
- return True
176
- if self.lastlen + l <= self.maxlen:
177
- self.current.append(stoken)
178
- self.lastlen += l
179
- return True
180
- if l < self.maxlen:
181
- self.newline()
182
- self.current.append(stoken)
183
- self.lastlen = l
184
- return True
185
- return False
186
-
187
- #
188
- # TokenList and its subclasses
189
- #
190
-
191
- class TokenList(list):
192
-
193
- token_type = None
194
-
195
- def __init__(self, *args, **kw):
196
- super(TokenList, self).__init__(*args, **kw)
197
- self.defects = []
198
-
199
- def __str__(self):
200
- return ''.join(str(x) for x in self)
201
-
202
- def __repr__(self):
203
- return '{}({})'.format(self.__class__.__name__,
204
- super(TokenList, self).__repr__())
205
-
206
- @property
207
- def value(self):
208
- return ''.join(x.value for x in self if x.value)
209
-
210
- @property
211
- def all_defects(self):
212
- return sum((x.all_defects for x in self), self.defects)
213
-
214
- #
215
- # Folding API
216
- #
217
- # parts():
218
- #
219
- # return a list of objects that constitute the "higher level syntactic
220
- # objects" specified by the RFC as the best places to fold a header line.
221
- # The returned objects must include leading folding white space, even if
222
- # this means mutating the underlying parse tree of the object. Each object
223
- # is only responsible for returning *its* parts, and should not drill down
224
- # to any lower level except as required to meet the leading folding white
225
- # space constraint.
226
- #
227
- # _fold(folded):
228
- #
229
- # folded: the result accumulator. This is an instance of _Folded.
230
- # (XXX: I haven't finished factoring this out yet, the folding code
231
- # pretty much uses this as a state object.) When the folded.current
232
- # contains as much text as will fit, the _fold method should call
233
- # folded.newline.
234
- # folded.lastlen: the current length of the test stored in folded.current.
235
- # folded.maxlen: The maximum number of characters that may appear on a
236
- # folded line. Differs from the policy setting in that "no limit" is
237
- # represented by +inf, which means it can be used in the trivially
238
- # logical fashion in comparisons.
239
- #
240
- # Currently no subclasses implement parts, and I think this will remain
241
- # true. A subclass only needs to implement _fold when the generic version
242
- # isn't sufficient. _fold will need to be implemented primarily when it is
243
- # possible for encoded words to appear in the specialized token-list, since
244
- # there is no generic algorithm that can know where exactly the encoded
245
- # words are allowed. A _fold implementation is responsible for filling
246
- # lines in the same general way that the top level _fold does. It may, and
247
- # should, call the _fold method of sub-objects in a similar fashion to that
248
- # of the top level _fold.
249
- #
250
- # XXX: I'm hoping it will be possible to factor the existing code further
251
- # to reduce redundancy and make the logic clearer.
252
-
253
- @property
254
- def parts(self):
255
- klass = self.__class__
256
- this = list()
257
- for token in self:
258
- if token.startswith_fws():
259
- if this:
260
- yield this[0] if len(this)==1 else klass(this)
261
- this.clear()
262
- end_ws = token.pop_trailing_ws()
263
- this.append(token)
264
- if end_ws:
265
- yield klass(this)
266
- this = [end_ws]
267
- if this:
268
- yield this[0] if len(this)==1 else klass(this)
269
-
270
- def startswith_fws(self):
271
- return self[0].startswith_fws()
272
-
273
- def pop_leading_fws(self):
274
- if self[0].token_type == 'fws':
275
- return self.pop(0)
276
- return self[0].pop_leading_fws()
277
-
278
- def pop_trailing_ws(self):
279
- if self[-1].token_type == 'cfws':
280
- return self.pop(-1)
281
- return self[-1].pop_trailing_ws()
282
-
283
- @property
284
- def has_fws(self):
285
- for part in self:
286
- if part.has_fws:
287
- return True
288
- return False
289
-
290
- def has_leading_comment(self):
291
- return self[0].has_leading_comment()
292
-
293
- @property
294
- def comments(self):
295
- comments = []
296
- for token in self:
297
- comments.extend(token.comments)
298
- return comments
299
-
300
- def fold(self, **_3to2kwargs):
301
- # max_line_length 0/None means no limit, ie: infinitely long.
302
- policy = _3to2kwargs['policy']; del _3to2kwargs['policy']
303
- maxlen = policy.max_line_length or float("+inf")
304
- folded = _Folded(maxlen, policy)
305
- self._fold(folded)
306
- folded.finalize()
307
- return str(folded)
308
-
309
- def as_encoded_word(self, charset):
310
- # This works only for things returned by 'parts', which include
311
- # the leading fws, if any, that should be used.
312
- res = []
313
- ws = self.pop_leading_fws()
314
- if ws:
315
- res.append(ws)
316
- trailer = self.pop(-1) if self[-1].token_type=='fws' else ''
317
- res.append(_ew.encode(str(self), charset))
318
- res.append(trailer)
319
- return ''.join(res)
320
-
321
- def cte_encode(self, charset, policy):
322
- res = []
323
- for part in self:
324
- res.append(part.cte_encode(charset, policy))
325
- return ''.join(res)
326
-
327
- def _fold(self, folded):
328
- for part in self.parts:
329
- tstr = str(part)
330
- tlen = len(tstr)
331
- try:
332
- str(part).encode('us-ascii')
333
- except UnicodeEncodeError:
334
- if any(isinstance(x, errors.UndecodableBytesDefect)
335
- for x in part.all_defects):
336
- charset = 'unknown-8bit'
337
- else:
338
- # XXX: this should be a policy setting
339
- charset = 'utf-8'
340
- tstr = part.cte_encode(charset, folded.policy)
341
- tlen = len(tstr)
342
- if folded.append_if_fits(part, tstr):
343
- continue
344
- # Peel off the leading whitespace if any and make it sticky, to
345
- # avoid infinite recursion.
346
- ws = part.pop_leading_fws()
347
- if ws is not None:
348
- # Peel off the leading whitespace and make it sticky, to
349
- # avoid infinite recursion.
350
- folded.stickyspace = str(part.pop(0))
351
- if folded.append_if_fits(part):
352
- continue
353
- if part.has_fws:
354
- part._fold(folded)
355
- continue
356
- # There are no fold points in this one; it is too long for a single
357
- # line and can't be split...we just have to put it on its own line.
358
- folded.append(tstr)
359
- folded.newline()
360
-
361
- def pprint(self, indent=''):
362
- print('\n'.join(self._pp(indent='')))
363
-
364
- def ppstr(self, indent=''):
365
- return '\n'.join(self._pp(indent=''))
366
-
367
- def _pp(self, indent=''):
368
- yield '{}{}/{}('.format(
369
- indent,
370
- self.__class__.__name__,
371
- self.token_type)
372
- for token in self:
373
- if not hasattr(token, '_pp'):
374
- yield (indent + ' !! invalid element in token '
375
- 'list: {!r}'.format(token))
376
- else:
377
- for line in token._pp(indent+' '):
378
- yield line
379
- if self.defects:
380
- extra = ' Defects: {}'.format(self.defects)
381
- else:
382
- extra = ''
383
- yield '{}){}'.format(indent, extra)
384
-
385
-
386
- class WhiteSpaceTokenList(TokenList):
387
-
388
- @property
389
- def value(self):
390
- return ' '
391
-
392
- @property
393
- def comments(self):
394
- return [x.content for x in self if x.token_type=='comment']
395
-
396
-
397
- class UnstructuredTokenList(TokenList):
398
-
399
- token_type = 'unstructured'
400
-
401
- def _fold(self, folded):
402
- if any(x.token_type=='encoded-word' for x in self):
403
- return self._fold_encoded(folded)
404
- # Here we can have either a pure ASCII string that may or may not
405
- # have surrogateescape encoded bytes, or a unicode string.
406
- last_ew = None
407
- for part in self.parts:
408
- tstr = str(part)
409
- is_ew = False
410
- try:
411
- str(part).encode('us-ascii')
412
- except UnicodeEncodeError:
413
- if any(isinstance(x, errors.UndecodableBytesDefect)
414
- for x in part.all_defects):
415
- charset = 'unknown-8bit'
416
- else:
417
- charset = 'utf-8'
418
- if last_ew is not None:
419
- # We've already done an EW, combine this one with it
420
- # if there's room.
421
- chunk = get_unstructured(
422
- ''.join(folded.current[last_ew:]+[tstr])).as_encoded_word(charset)
423
- oldlastlen = sum(len(x) for x in folded.current[:last_ew])
424
- schunk = str(chunk)
425
- lchunk = len(schunk)
426
- if oldlastlen + lchunk <= folded.maxlen:
427
- del folded.current[last_ew:]
428
- folded.append(schunk)
429
- folded.lastlen = oldlastlen + lchunk
430
- continue
431
- tstr = part.as_encoded_word(charset)
432
- is_ew = True
433
- if folded.append_if_fits(part, tstr):
434
- if is_ew:
435
- last_ew = len(folded.current) - 1
436
- continue
437
- if is_ew or last_ew:
438
- # It's too big to fit on the line, but since we've
439
- # got encoded words we can use encoded word folding.
440
- part._fold_as_ew(folded)
441
- continue
442
- # Peel off the leading whitespace if any and make it sticky, to
443
- # avoid infinite recursion.
444
- ws = part.pop_leading_fws()
445
- if ws is not None:
446
- folded.stickyspace = str(ws)
447
- if folded.append_if_fits(part):
448
- continue
449
- if part.has_fws:
450
- part.fold(folded)
451
- continue
452
- # It can't be split...we just have to put it on its own line.
453
- folded.append(tstr)
454
- folded.newline()
455
- last_ew = None
456
-
457
- def cte_encode(self, charset, policy):
458
- res = []
459
- last_ew = None
460
- for part in self:
461
- spart = str(part)
462
- try:
463
- spart.encode('us-ascii')
464
- res.append(spart)
465
- except UnicodeEncodeError:
466
- if last_ew is None:
467
- res.append(part.cte_encode(charset, policy))
468
- last_ew = len(res)
469
- else:
470
- tl = get_unstructured(''.join(res[last_ew:] + [spart]))
471
- res.append(tl.as_encoded_word())
472
- return ''.join(res)
473
-
474
-
475
- class Phrase(TokenList):
476
-
477
- token_type = 'phrase'
478
-
479
- def _fold(self, folded):
480
- # As with Unstructured, we can have pure ASCII with or without
481
- # surrogateescape encoded bytes, or we could have unicode. But this
482
- # case is more complicated, since we have to deal with the various
483
- # sub-token types and how they can be composed in the face of
484
- # unicode-that-needs-CTE-encoding, and the fact that if a token a
485
- # comment that becomes a barrier across which we can't compose encoded
486
- # words.
487
- last_ew = None
488
- for part in self.parts:
489
- tstr = str(part)
490
- tlen = len(tstr)
491
- has_ew = False
492
- try:
493
- str(part).encode('us-ascii')
494
- except UnicodeEncodeError:
495
- if any(isinstance(x, errors.UndecodableBytesDefect)
496
- for x in part.all_defects):
497
- charset = 'unknown-8bit'
498
- else:
499
- charset = 'utf-8'
500
- if last_ew is not None and not part.has_leading_comment():
501
- # We've already done an EW, let's see if we can combine
502
- # this one with it. The last_ew logic ensures that all we
503
- # have at this point is atoms, no comments or quoted
504
- # strings. So we can treat the text between the last
505
- # encoded word and the content of this token as
506
- # unstructured text, and things will work correctly. But
507
- # we have to strip off any trailing comment on this token
508
- # first, and if it is a quoted string we have to pull out
509
- # the content (we're encoding it, so it no longer needs to
510
- # be quoted).
511
- if part[-1].token_type == 'cfws' and part.comments:
512
- remainder = part.pop(-1)
513
- else:
514
- remainder = ''
515
- for i, token in enumerate(part):
516
- if token.token_type == 'bare-quoted-string':
517
- part[i] = UnstructuredTokenList(token[:])
518
- chunk = get_unstructured(
519
- ''.join(folded.current[last_ew:]+[tstr])).as_encoded_word(charset)
520
- schunk = str(chunk)
521
- lchunk = len(schunk)
522
- if last_ew + lchunk <= folded.maxlen:
523
- del folded.current[last_ew:]
524
- folded.append(schunk)
525
- folded.lastlen = sum(len(x) for x in folded.current)
526
- continue
527
- tstr = part.as_encoded_word(charset)
528
- tlen = len(tstr)
529
- has_ew = True
530
- if folded.append_if_fits(part, tstr):
531
- if has_ew and not part.comments:
532
- last_ew = len(folded.current) - 1
533
- elif part.comments or part.token_type == 'quoted-string':
534
- # If a comment is involved we can't combine EWs. And if a
535
- # quoted string is involved, it's not worth the effort to
536
- # try to combine them.
537
- last_ew = None
538
- continue
539
- part._fold(folded)
540
-
541
- def cte_encode(self, charset, policy):
542
- res = []
543
- last_ew = None
544
- is_ew = False
545
- for part in self:
546
- spart = str(part)
547
- try:
548
- spart.encode('us-ascii')
549
- res.append(spart)
550
- except UnicodeEncodeError:
551
- is_ew = True
552
- if last_ew is None:
553
- if not part.comments:
554
- last_ew = len(res)
555
- res.append(part.cte_encode(charset, policy))
556
- elif not part.has_leading_comment():
557
- if part[-1].token_type == 'cfws' and part.comments:
558
- remainder = part.pop(-1)
559
- else:
560
- remainder = ''
561
- for i, token in enumerate(part):
562
- if token.token_type == 'bare-quoted-string':
563
- part[i] = UnstructuredTokenList(token[:])
564
- tl = get_unstructured(''.join(res[last_ew:] + [spart]))
565
- res[last_ew:] = [tl.as_encoded_word(charset)]
566
- if part.comments or (not is_ew and part.token_type == 'quoted-string'):
567
- last_ew = None
568
- return ''.join(res)
569
-
570
- class Word(TokenList):
571
-
572
- token_type = 'word'
573
-
574
-
575
- class CFWSList(WhiteSpaceTokenList):
576
-
577
- token_type = 'cfws'
578
-
579
- def has_leading_comment(self):
580
- return bool(self.comments)
581
-
582
-
583
- class Atom(TokenList):
584
-
585
- token_type = 'atom'
586
-
587
-
588
- class Token(TokenList):
589
-
590
- token_type = 'token'
591
-
592
-
593
- class EncodedWord(TokenList):
594
-
595
- token_type = 'encoded-word'
596
- cte = None
597
- charset = None
598
- lang = None
599
-
600
- @property
601
- def encoded(self):
602
- if self.cte is not None:
603
- return self.cte
604
- _ew.encode(str(self), self.charset)
605
-
606
-
607
-
608
- class QuotedString(TokenList):
609
-
610
- token_type = 'quoted-string'
611
-
612
- @property
613
- def content(self):
614
- for x in self:
615
- if x.token_type == 'bare-quoted-string':
616
- return x.value
617
-
618
- @property
619
- def quoted_value(self):
620
- res = []
621
- for x in self:
622
- if x.token_type == 'bare-quoted-string':
623
- res.append(str(x))
624
- else:
625
- res.append(x.value)
626
- return ''.join(res)
627
-
628
- @property
629
- def stripped_value(self):
630
- for token in self:
631
- if token.token_type == 'bare-quoted-string':
632
- return token.value
633
-
634
-
635
- class BareQuotedString(QuotedString):
636
-
637
- token_type = 'bare-quoted-string'
638
-
639
- def __str__(self):
640
- return quote_string(''.join(str(x) for x in self))
641
-
642
- @property
643
- def value(self):
644
- return ''.join(str(x) for x in self)
645
-
646
-
647
- class Comment(WhiteSpaceTokenList):
648
-
649
- token_type = 'comment'
650
-
651
- def __str__(self):
652
- return ''.join(sum([
653
- ["("],
654
- [self.quote(x) for x in self],
655
- [")"],
656
- ], []))
657
-
658
- def quote(self, value):
659
- if value.token_type == 'comment':
660
- return str(value)
661
- return str(value).replace('\\', '\\\\').replace(
662
- '(', '\(').replace(
663
- ')', '\)')
664
-
665
- @property
666
- def content(self):
667
- return ''.join(str(x) for x in self)
668
-
669
- @property
670
- def comments(self):
671
- return [self.content]
672
-
673
- class AddressList(TokenList):
674
-
675
- token_type = 'address-list'
676
-
677
- @property
678
- def addresses(self):
679
- return [x for x in self if x.token_type=='address']
680
-
681
- @property
682
- def mailboxes(self):
683
- return sum((x.mailboxes
684
- for x in self if x.token_type=='address'), [])
685
-
686
- @property
687
- def all_mailboxes(self):
688
- return sum((x.all_mailboxes
689
- for x in self if x.token_type=='address'), [])
690
-
691
-
692
- class Address(TokenList):
693
-
694
- token_type = 'address'
695
-
696
- @property
697
- def display_name(self):
698
- if self[0].token_type == 'group':
699
- return self[0].display_name
700
-
701
- @property
702
- def mailboxes(self):
703
- if self[0].token_type == 'mailbox':
704
- return [self[0]]
705
- elif self[0].token_type == 'invalid-mailbox':
706
- return []
707
- return self[0].mailboxes
708
-
709
- @property
710
- def all_mailboxes(self):
711
- if self[0].token_type == 'mailbox':
712
- return [self[0]]
713
- elif self[0].token_type == 'invalid-mailbox':
714
- return [self[0]]
715
- return self[0].all_mailboxes
716
-
717
- class MailboxList(TokenList):
718
-
719
- token_type = 'mailbox-list'
720
-
721
- @property
722
- def mailboxes(self):
723
- return [x for x in self if x.token_type=='mailbox']
724
-
725
- @property
726
- def all_mailboxes(self):
727
- return [x for x in self
728
- if x.token_type in ('mailbox', 'invalid-mailbox')]
729
-
730
-
731
- class GroupList(TokenList):
732
-
733
- token_type = 'group-list'
734
-
735
- @property
736
- def mailboxes(self):
737
- if not self or self[0].token_type != 'mailbox-list':
738
- return []
739
- return self[0].mailboxes
740
-
741
- @property
742
- def all_mailboxes(self):
743
- if not self or self[0].token_type != 'mailbox-list':
744
- return []
745
- return self[0].all_mailboxes
746
-
747
-
748
- class Group(TokenList):
749
-
750
- token_type = "group"
751
-
752
- @property
753
- def mailboxes(self):
754
- if self[2].token_type != 'group-list':
755
- return []
756
- return self[2].mailboxes
757
-
758
- @property
759
- def all_mailboxes(self):
760
- if self[2].token_type != 'group-list':
761
- return []
762
- return self[2].all_mailboxes
763
-
764
- @property
765
- def display_name(self):
766
- return self[0].display_name
767
-
768
-
769
- class NameAddr(TokenList):
770
-
771
- token_type = 'name-addr'
772
-
773
- @property
774
- def display_name(self):
775
- if len(self) == 1:
776
- return None
777
- return self[0].display_name
778
-
779
- @property
780
- def local_part(self):
781
- return self[-1].local_part
782
-
783
- @property
784
- def domain(self):
785
- return self[-1].domain
786
-
787
- @property
788
- def route(self):
789
- return self[-1].route
790
-
791
- @property
792
- def addr_spec(self):
793
- return self[-1].addr_spec
794
-
795
-
796
- class AngleAddr(TokenList):
797
-
798
- token_type = 'angle-addr'
799
-
800
- @property
801
- def local_part(self):
802
- for x in self:
803
- if x.token_type == 'addr-spec':
804
- return x.local_part
805
-
806
- @property
807
- def domain(self):
808
- for x in self:
809
- if x.token_type == 'addr-spec':
810
- return x.domain
811
-
812
- @property
813
- def route(self):
814
- for x in self:
815
- if x.token_type == 'obs-route':
816
- return x.domains
817
-
818
- @property
819
- def addr_spec(self):
820
- for x in self:
821
- if x.token_type == 'addr-spec':
822
- return x.addr_spec
823
- else:
824
- return '<>'
825
-
826
-
827
- class ObsRoute(TokenList):
828
-
829
- token_type = 'obs-route'
830
-
831
- @property
832
- def domains(self):
833
- return [x.domain for x in self if x.token_type == 'domain']
834
-
835
-
836
- class Mailbox(TokenList):
837
-
838
- token_type = 'mailbox'
839
-
840
- @property
841
- def display_name(self):
842
- if self[0].token_type == 'name-addr':
843
- return self[0].display_name
844
-
845
- @property
846
- def local_part(self):
847
- return self[0].local_part
848
-
849
- @property
850
- def domain(self):
851
- return self[0].domain
852
-
853
- @property
854
- def route(self):
855
- if self[0].token_type == 'name-addr':
856
- return self[0].route
857
-
858
- @property
859
- def addr_spec(self):
860
- return self[0].addr_spec
861
-
862
-
863
- class InvalidMailbox(TokenList):
864
-
865
- token_type = 'invalid-mailbox'
866
-
867
- @property
868
- def display_name(self):
869
- return None
870
-
871
- local_part = domain = route = addr_spec = display_name
872
-
873
-
874
- class Domain(TokenList):
875
-
876
- token_type = 'domain'
877
-
878
- @property
879
- def domain(self):
880
- return ''.join(super(Domain, self).value.split())
881
-
882
-
883
- class DotAtom(TokenList):
884
-
885
- token_type = 'dot-atom'
886
-
887
-
888
- class DotAtomText(TokenList):
889
-
890
- token_type = 'dot-atom-text'
891
-
892
-
893
- class AddrSpec(TokenList):
894
-
895
- token_type = 'addr-spec'
896
-
897
- @property
898
- def local_part(self):
899
- return self[0].local_part
900
-
901
- @property
902
- def domain(self):
903
- if len(self) < 3:
904
- return None
905
- return self[-1].domain
906
-
907
- @property
908
- def value(self):
909
- if len(self) < 3:
910
- return self[0].value
911
- return self[0].value.rstrip()+self[1].value+self[2].value.lstrip()
912
-
913
- @property
914
- def addr_spec(self):
915
- nameset = set(self.local_part)
916
- if len(nameset) > len(nameset-DOT_ATOM_ENDS):
917
- lp = quote_string(self.local_part)
918
- else:
919
- lp = self.local_part
920
- if self.domain is not None:
921
- return lp + '@' + self.domain
922
- return lp
923
-
924
-
925
- class ObsLocalPart(TokenList):
926
-
927
- token_type = 'obs-local-part'
928
-
929
-
930
- class DisplayName(Phrase):
931
-
932
- token_type = 'display-name'
933
-
934
- @property
935
- def display_name(self):
936
- res = TokenList(self)
937
- if res[0].token_type == 'cfws':
938
- res.pop(0)
939
- else:
940
- if res[0][0].token_type == 'cfws':
941
- res[0] = TokenList(res[0][1:])
942
- if res[-1].token_type == 'cfws':
943
- res.pop()
944
- else:
945
- if res[-1][-1].token_type == 'cfws':
946
- res[-1] = TokenList(res[-1][:-1])
947
- return res.value
948
-
949
- @property
950
- def value(self):
951
- quote = False
952
- if self.defects:
953
- quote = True
954
- else:
955
- for x in self:
956
- if x.token_type == 'quoted-string':
957
- quote = True
958
- if quote:
959
- pre = post = ''
960
- if self[0].token_type=='cfws' or self[0][0].token_type=='cfws':
961
- pre = ' '
962
- if self[-1].token_type=='cfws' or self[-1][-1].token_type=='cfws':
963
- post = ' '
964
- return pre+quote_string(self.display_name)+post
965
- else:
966
- return super(DisplayName, self).value
967
-
968
-
969
- class LocalPart(TokenList):
970
-
971
- token_type = 'local-part'
972
-
973
- @property
974
- def value(self):
975
- if self[0].token_type == "quoted-string":
976
- return self[0].quoted_value
977
- else:
978
- return self[0].value
979
-
980
- @property
981
- def local_part(self):
982
- # Strip whitespace from front, back, and around dots.
983
- res = [DOT]
984
- last = DOT
985
- last_is_tl = False
986
- for tok in self[0] + [DOT]:
987
- if tok.token_type == 'cfws':
988
- continue
989
- if (last_is_tl and tok.token_type == 'dot' and
990
- last[-1].token_type == 'cfws'):
991
- res[-1] = TokenList(last[:-1])
992
- is_tl = isinstance(tok, TokenList)
993
- if (is_tl and last.token_type == 'dot' and
994
- tok[0].token_type == 'cfws'):
995
- res.append(TokenList(tok[1:]))
996
- else:
997
- res.append(tok)
998
- last = res[-1]
999
- last_is_tl = is_tl
1000
- res = TokenList(res[1:-1])
1001
- return res.value
1002
-
1003
-
1004
- class DomainLiteral(TokenList):
1005
-
1006
- token_type = 'domain-literal'
1007
-
1008
- @property
1009
- def domain(self):
1010
- return ''.join(super(DomainLiteral, self).value.split())
1011
-
1012
- @property
1013
- def ip(self):
1014
- for x in self:
1015
- if x.token_type == 'ptext':
1016
- return x.value
1017
-
1018
-
1019
- class MIMEVersion(TokenList):
1020
-
1021
- token_type = 'mime-version'
1022
- major = None
1023
- minor = None
1024
-
1025
-
1026
- class Parameter(TokenList):
1027
-
1028
- token_type = 'parameter'
1029
- sectioned = False
1030
- extended = False
1031
- charset = 'us-ascii'
1032
-
1033
- @property
1034
- def section_number(self):
1035
- # Because the first token, the attribute (name) eats CFWS, the second
1036
- # token is always the section if there is one.
1037
- return self[1].number if self.sectioned else 0
1038
-
1039
- @property
1040
- def param_value(self):
1041
- # This is part of the "handle quoted extended parameters" hack.
1042
- for token in self:
1043
- if token.token_type == 'value':
1044
- return token.stripped_value
1045
- if token.token_type == 'quoted-string':
1046
- for token in token:
1047
- if token.token_type == 'bare-quoted-string':
1048
- for token in token:
1049
- if token.token_type == 'value':
1050
- return token.stripped_value
1051
- return ''
1052
-
1053
-
1054
- class InvalidParameter(Parameter):
1055
-
1056
- token_type = 'invalid-parameter'
1057
-
1058
-
1059
- class Attribute(TokenList):
1060
-
1061
- token_type = 'attribute'
1062
-
1063
- @property
1064
- def stripped_value(self):
1065
- for token in self:
1066
- if token.token_type.endswith('attrtext'):
1067
- return token.value
1068
-
1069
- class Section(TokenList):
1070
-
1071
- token_type = 'section'
1072
- number = None
1073
-
1074
-
1075
- class Value(TokenList):
1076
-
1077
- token_type = 'value'
1078
-
1079
- @property
1080
- def stripped_value(self):
1081
- token = self[0]
1082
- if token.token_type == 'cfws':
1083
- token = self[1]
1084
- if token.token_type.endswith(
1085
- ('quoted-string', 'attribute', 'extended-attribute')):
1086
- return token.stripped_value
1087
- return self.value
1088
-
1089
-
1090
- class MimeParameters(TokenList):
1091
-
1092
- token_type = 'mime-parameters'
1093
-
1094
- @property
1095
- def params(self):
1096
- # The RFC specifically states that the ordering of parameters is not
1097
- # guaranteed and may be reordered by the transport layer. So we have
1098
- # to assume the RFC 2231 pieces can come in any order. However, we
1099
- # output them in the order that we first see a given name, which gives
1100
- # us a stable __str__.
1101
- params = OrderedDict()
1102
- for token in self:
1103
- if not token.token_type.endswith('parameter'):
1104
- continue
1105
- if token[0].token_type != 'attribute':
1106
- continue
1107
- name = token[0].value.strip()
1108
- if name not in params:
1109
- params[name] = []
1110
- params[name].append((token.section_number, token))
1111
- for name, parts in params.items():
1112
- parts = sorted(parts)
1113
- # XXX: there might be more recovery we could do here if, for
1114
- # example, this is really a case of a duplicate attribute name.
1115
- value_parts = []
1116
- charset = parts[0][1].charset
1117
- for i, (section_number, param) in enumerate(parts):
1118
- if section_number != i:
1119
- param.defects.append(errors.InvalidHeaderDefect(
1120
- "inconsistent multipart parameter numbering"))
1121
- value = param.param_value
1122
- if param.extended:
1123
- try:
1124
- value = unquote_to_bytes(value)
1125
- except UnicodeEncodeError:
1126
- # source had surrogate escaped bytes. What we do now
1127
- # is a bit of an open question. I'm not sure this is
1128
- # the best choice, but it is what the old algorithm did
1129
- value = unquote(value, encoding='latin-1')
1130
- else:
1131
- try:
1132
- value = value.decode(charset, 'surrogateescape')
1133
- except LookupError:
1134
- # XXX: there should really be a custom defect for
1135
- # unknown character set to make it easy to find,
1136
- # because otherwise unknown charset is a silent
1137
- # failure.
1138
- value = value.decode('us-ascii', 'surrogateescape')
1139
- if utils._has_surrogates(value):
1140
- param.defects.append(errors.UndecodableBytesDefect())
1141
- value_parts.append(value)
1142
- value = ''.join(value_parts)
1143
- yield name, value
1144
-
1145
- def __str__(self):
1146
- params = []
1147
- for name, value in self.params:
1148
- if value:
1149
- params.append('{}={}'.format(name, quote_string(value)))
1150
- else:
1151
- params.append(name)
1152
- params = '; '.join(params)
1153
- return ' ' + params if params else ''
1154
-
1155
-
1156
- class ParameterizedHeaderValue(TokenList):
1157
-
1158
- @property
1159
- def params(self):
1160
- for token in reversed(self):
1161
- if token.token_type == 'mime-parameters':
1162
- return token.params
1163
- return {}
1164
-
1165
- @property
1166
- def parts(self):
1167
- if self and self[-1].token_type == 'mime-parameters':
1168
- # We don't want to start a new line if all of the params don't fit
1169
- # after the value, so unwrap the parameter list.
1170
- return TokenList(self[:-1] + self[-1])
1171
- return TokenList(self).parts
1172
-
1173
-
1174
- class ContentType(ParameterizedHeaderValue):
1175
-
1176
- token_type = 'content-type'
1177
- maintype = 'text'
1178
- subtype = 'plain'
1179
-
1180
-
1181
- class ContentDisposition(ParameterizedHeaderValue):
1182
-
1183
- token_type = 'content-disposition'
1184
- content_disposition = None
1185
-
1186
-
1187
- class ContentTransferEncoding(TokenList):
1188
-
1189
- token_type = 'content-transfer-encoding'
1190
- cte = '7bit'
1191
-
1192
-
1193
- class HeaderLabel(TokenList):
1194
-
1195
- token_type = 'header-label'
1196
-
1197
-
1198
- class Header(TokenList):
1199
-
1200
- token_type = 'header'
1201
-
1202
- def _fold(self, folded):
1203
- folded.append(str(self.pop(0)))
1204
- folded.lastlen = len(folded.current[0])
1205
- # The first line of the header is different from all others: we don't
1206
- # want to start a new object on a new line if it has any fold points in
1207
- # it that would allow part of it to be on the first header line.
1208
- # Further, if the first fold point would fit on the new line, we want
1209
- # to do that, but if it doesn't we want to put it on the first line.
1210
- # Folded supports this via the stickyspace attribute. If this
1211
- # attribute is not None, it does the special handling.
1212
- folded.stickyspace = str(self.pop(0)) if self[0].token_type == 'cfws' else ''
1213
- rest = self.pop(0)
1214
- if self:
1215
- raise ValueError("Malformed Header token list")
1216
- rest._fold(folded)
1217
-
1218
-
1219
- #
1220
- # Terminal classes and instances
1221
- #
1222
-
1223
- class Terminal(str):
1224
-
1225
- def __new__(cls, value, token_type):
1226
- self = super(Terminal, cls).__new__(cls, value)
1227
- self.token_type = token_type
1228
- self.defects = []
1229
- return self
1230
-
1231
- def __repr__(self):
1232
- return "{}({})".format(self.__class__.__name__, super(Terminal, self).__repr__())
1233
-
1234
- @property
1235
- def all_defects(self):
1236
- return list(self.defects)
1237
-
1238
- def _pp(self, indent=''):
1239
- return ["{}{}/{}({}){}".format(
1240
- indent,
1241
- self.__class__.__name__,
1242
- self.token_type,
1243
- super(Terminal, self).__repr__(),
1244
- '' if not self.defects else ' {}'.format(self.defects),
1245
- )]
1246
-
1247
- def cte_encode(self, charset, policy):
1248
- value = str(self)
1249
- try:
1250
- value.encode('us-ascii')
1251
- return value
1252
- except UnicodeEncodeError:
1253
- return _ew.encode(value, charset)
1254
-
1255
- def pop_trailing_ws(self):
1256
- # This terminates the recursion.
1257
- return None
1258
-
1259
- def pop_leading_fws(self):
1260
- # This terminates the recursion.
1261
- return None
1262
-
1263
- @property
1264
- def comments(self):
1265
- return []
1266
-
1267
- def has_leading_comment(self):
1268
- return False
1269
-
1270
- def __getnewargs__(self):
1271
- return(str(self), self.token_type)
1272
-
1273
-
1274
- class WhiteSpaceTerminal(Terminal):
1275
-
1276
- @property
1277
- def value(self):
1278
- return ' '
1279
-
1280
- def startswith_fws(self):
1281
- return True
1282
-
1283
- has_fws = True
1284
-
1285
-
1286
- class ValueTerminal(Terminal):
1287
-
1288
- @property
1289
- def value(self):
1290
- return self
1291
-
1292
- def startswith_fws(self):
1293
- return False
1294
-
1295
- has_fws = False
1296
-
1297
- def as_encoded_word(self, charset):
1298
- return _ew.encode(str(self), charset)
1299
-
1300
-
1301
- class EWWhiteSpaceTerminal(WhiteSpaceTerminal):
1302
-
1303
- @property
1304
- def value(self):
1305
- return ''
1306
-
1307
- @property
1308
- def encoded(self):
1309
- return self[:]
1310
-
1311
- def __str__(self):
1312
- return ''
1313
-
1314
- has_fws = True
1315
-
1316
-
1317
- # XXX these need to become classes and used as instances so
1318
- # that a program can't change them in a parse tree and screw
1319
- # up other parse trees. Maybe should have tests for that, too.
1320
- DOT = ValueTerminal('.', 'dot')
1321
- ListSeparator = ValueTerminal(',', 'list-separator')
1322
- RouteComponentMarker = ValueTerminal('@', 'route-component-marker')
1323
-
1324
- #
1325
- # Parser
1326
- #
1327
-
1328
- """Parse strings according to RFC822/2047/2822/5322 rules.
1329
-
1330
- This is a stateless parser. Each get_XXX function accepts a string and
1331
- returns either a Terminal or a TokenList representing the RFC object named
1332
- by the method and a string containing the remaining unparsed characters
1333
- from the input. Thus a parser method consumes the next syntactic construct
1334
- of a given type and returns a token representing the construct plus the
1335
- unparsed remainder of the input string.
1336
-
1337
- For example, if the first element of a structured header is a 'phrase',
1338
- then:
1339
-
1340
- phrase, value = get_phrase(value)
1341
-
1342
- returns the complete phrase from the start of the string value, plus any
1343
- characters left in the string after the phrase is removed.
1344
-
1345
- """
1346
-
1347
- _wsp_splitter = re.compile(r'([{}]+)'.format(''.join(WSP))).split
1348
- _non_atom_end_matcher = re.compile(r"[^{}]+".format(
1349
- ''.join(ATOM_ENDS).replace('\\','\\\\').replace(']','\]'))).match
1350
- _non_printable_finder = re.compile(r"[\x00-\x20\x7F]").findall
1351
- _non_token_end_matcher = re.compile(r"[^{}]+".format(
1352
- ''.join(TOKEN_ENDS).replace('\\','\\\\').replace(']','\]'))).match
1353
- _non_attribute_end_matcher = re.compile(r"[^{}]+".format(
1354
- ''.join(ATTRIBUTE_ENDS).replace('\\','\\\\').replace(']','\]'))).match
1355
- _non_extended_attribute_end_matcher = re.compile(r"[^{}]+".format(
1356
- ''.join(EXTENDED_ATTRIBUTE_ENDS).replace(
1357
- '\\','\\\\').replace(']','\]'))).match
1358
-
1359
- def _validate_xtext(xtext):
1360
- """If input token contains ASCII non-printables, register a defect."""
1361
-
1362
- non_printables = _non_printable_finder(xtext)
1363
- if non_printables:
1364
- xtext.defects.append(errors.NonPrintableDefect(non_printables))
1365
- if utils._has_surrogates(xtext):
1366
- xtext.defects.append(errors.UndecodableBytesDefect(
1367
- "Non-ASCII characters found in header token"))
1368
-
1369
- def _get_ptext_to_endchars(value, endchars):
1370
- """Scan printables/quoted-pairs until endchars and return unquoted ptext.
1371
-
1372
- This function turns a run of qcontent, ccontent-without-comments, or
1373
- dtext-with-quoted-printables into a single string by unquoting any
1374
- quoted printables. It returns the string, the remaining value, and
1375
- a flag that is True iff there were any quoted printables decoded.
1376
-
1377
- """
1378
- _3to2list = list(_wsp_splitter(value, 1))
1379
- fragment, remainder, = _3to2list[:1] + [_3to2list[1:]]
1380
- vchars = []
1381
- escape = False
1382
- had_qp = False
1383
- for pos in range(len(fragment)):
1384
- if fragment[pos] == '\\':
1385
- if escape:
1386
- escape = False
1387
- had_qp = True
1388
- else:
1389
- escape = True
1390
- continue
1391
- if escape:
1392
- escape = False
1393
- elif fragment[pos] in endchars:
1394
- break
1395
- vchars.append(fragment[pos])
1396
- else:
1397
- pos = pos + 1
1398
- return ''.join(vchars), ''.join([fragment[pos:]] + remainder), had_qp
1399
-
1400
- def _decode_ew_run(value):
1401
- """ Decode a run of RFC2047 encoded words.
1402
-
1403
- _decode_ew_run(value) -> (text, value, defects)
1404
-
1405
- Scans the supplied value for a run of tokens that look like they are RFC
1406
- 2047 encoded words, decodes those words into text according to RFC 2047
1407
- rules (whitespace between encoded words is discarded), and returns the text
1408
- and the remaining value (including any leading whitespace on the remaining
1409
- value), as well as a list of any defects encountered while decoding. The
1410
- input value may not have any leading whitespace.
1411
-
1412
- """
1413
- res = []
1414
- defects = []
1415
- last_ws = ''
1416
- while value:
1417
- try:
1418
- tok, ws, value = _wsp_splitter(value, 1)
1419
- except ValueError:
1420
- tok, ws, value = value, '', ''
1421
- if not (tok.startswith('=?') and tok.endswith('?=')):
1422
- return ''.join(res), last_ws + tok + ws + value, defects
1423
- text, charset, lang, new_defects = _ew.decode(tok)
1424
- res.append(text)
1425
- defects.extend(new_defects)
1426
- last_ws = ws
1427
- return ''.join(res), last_ws, defects
1428
-
1429
- def get_fws(value):
1430
- """FWS = 1*WSP
1431
-
1432
- This isn't the RFC definition. We're using fws to represent tokens where
1433
- folding can be done, but when we are parsing the *un*folding has already
1434
- been done so we don't need to watch out for CRLF.
1435
-
1436
- """
1437
- newvalue = value.lstrip()
1438
- fws = WhiteSpaceTerminal(value[:len(value)-len(newvalue)], 'fws')
1439
- return fws, newvalue
1440
-
1441
- def get_encoded_word(value):
1442
- """ encoded-word = "=?" charset "?" encoding "?" encoded-text "?="
1443
-
1444
- """
1445
- ew = EncodedWord()
1446
- if not value.startswith('=?'):
1447
- raise errors.HeaderParseError(
1448
- "expected encoded word but found {}".format(value))
1449
- _3to2list1 = list(value[2:].split('?=', 1))
1450
- tok, remainder, = _3to2list1[:1] + [_3to2list1[1:]]
1451
- if tok == value[2:]:
1452
- raise errors.HeaderParseError(
1453
- "expected encoded word but found {}".format(value))
1454
- remstr = ''.join(remainder)
1455
- if remstr[:2].isdigit():
1456
- _3to2list3 = list(remstr.split('?=', 1))
1457
- rest, remainder, = _3to2list3[:1] + [_3to2list3[1:]]
1458
- tok = tok + '?=' + rest
1459
- if len(tok.split()) > 1:
1460
- ew.defects.append(errors.InvalidHeaderDefect(
1461
- "whitespace inside encoded word"))
1462
- ew.cte = value
1463
- value = ''.join(remainder)
1464
- try:
1465
- text, charset, lang, defects = _ew.decode('=?' + tok + '?=')
1466
- except ValueError:
1467
- raise errors.HeaderParseError(
1468
- "encoded word format invalid: '{}'".format(ew.cte))
1469
- ew.charset = charset
1470
- ew.lang = lang
1471
- ew.defects.extend(defects)
1472
- while text:
1473
- if text[0] in WSP:
1474
- token, text = get_fws(text)
1475
- ew.append(token)
1476
- continue
1477
- _3to2list5 = list(_wsp_splitter(text, 1))
1478
- chars, remainder, = _3to2list5[:1] + [_3to2list5[1:]]
1479
- vtext = ValueTerminal(chars, 'vtext')
1480
- _validate_xtext(vtext)
1481
- ew.append(vtext)
1482
- text = ''.join(remainder)
1483
- return ew, value
1484
-
1485
- def get_unstructured(value):
1486
- """unstructured = (*([FWS] vchar) *WSP) / obs-unstruct
1487
- obs-unstruct = *((*LF *CR *(obs-utext) *LF *CR)) / FWS)
1488
- obs-utext = %d0 / obs-NO-WS-CTL / LF / CR
1489
-
1490
- obs-NO-WS-CTL is control characters except WSP/CR/LF.
1491
-
1492
- So, basically, we have printable runs, plus control characters or nulls in
1493
- the obsolete syntax, separated by whitespace. Since RFC 2047 uses the
1494
- obsolete syntax in its specification, but requires whitespace on either
1495
- side of the encoded words, I can see no reason to need to separate the
1496
- non-printable-non-whitespace from the printable runs if they occur, so we
1497
- parse this into xtext tokens separated by WSP tokens.
1498
-
1499
- Because an 'unstructured' value must by definition constitute the entire
1500
- value, this 'get' routine does not return a remaining value, only the
1501
- parsed TokenList.
1502
-
1503
- """
1504
- # XXX: but what about bare CR and LF? They might signal the start or
1505
- # end of an encoded word. YAGNI for now, since out current parsers
1506
- # will never send us strings with bard CR or LF.
1507
-
1508
- unstructured = UnstructuredTokenList()
1509
- while value:
1510
- if value[0] in WSP:
1511
- token, value = get_fws(value)
1512
- unstructured.append(token)
1513
- continue
1514
- if value.startswith('=?'):
1515
- try:
1516
- token, value = get_encoded_word(value)
1517
- except errors.HeaderParseError:
1518
- pass
1519
- else:
1520
- have_ws = True
1521
- if len(unstructured) > 0:
1522
- if unstructured[-1].token_type != 'fws':
1523
- unstructured.defects.append(errors.InvalidHeaderDefect(
1524
- "missing whitespace before encoded word"))
1525
- have_ws = False
1526
- if have_ws and len(unstructured) > 1:
1527
- if unstructured[-2].token_type == 'encoded-word':
1528
- unstructured[-1] = EWWhiteSpaceTerminal(
1529
- unstructured[-1], 'fws')
1530
- unstructured.append(token)
1531
- continue
1532
- _3to2list7 = list(_wsp_splitter(value, 1))
1533
- tok, remainder, = _3to2list7[:1] + [_3to2list7[1:]]
1534
- vtext = ValueTerminal(tok, 'vtext')
1535
- _validate_xtext(vtext)
1536
- unstructured.append(vtext)
1537
- value = ''.join(remainder)
1538
- return unstructured
1539
-
1540
- def get_qp_ctext(value):
1541
- """ctext = <printable ascii except \ ( )>
1542
-
1543
- This is not the RFC ctext, since we are handling nested comments in comment
1544
- and unquoting quoted-pairs here. We allow anything except the '()'
1545
- characters, but if we find any ASCII other than the RFC defined printable
1546
- ASCII an NonPrintableDefect is added to the token's defects list. Since
1547
- quoted pairs are converted to their unquoted values, what is returned is
1548
- a 'ptext' token. In this case it is a WhiteSpaceTerminal, so it's value
1549
- is ' '.
1550
-
1551
- """
1552
- ptext, value, _ = _get_ptext_to_endchars(value, '()')
1553
- ptext = WhiteSpaceTerminal(ptext, 'ptext')
1554
- _validate_xtext(ptext)
1555
- return ptext, value
1556
-
1557
- def get_qcontent(value):
1558
- """qcontent = qtext / quoted-pair
1559
-
1560
- We allow anything except the DQUOTE character, but if we find any ASCII
1561
- other than the RFC defined printable ASCII an NonPrintableDefect is
1562
- added to the token's defects list. Any quoted pairs are converted to their
1563
- unquoted values, so what is returned is a 'ptext' token. In this case it
1564
- is a ValueTerminal.
1565
-
1566
- """
1567
- ptext, value, _ = _get_ptext_to_endchars(value, '"')
1568
- ptext = ValueTerminal(ptext, 'ptext')
1569
- _validate_xtext(ptext)
1570
- return ptext, value
1571
-
1572
- def get_atext(value):
1573
- """atext = <matches _atext_matcher>
1574
-
1575
- We allow any non-ATOM_ENDS in atext, but add an InvalidATextDefect to
1576
- the token's defects list if we find non-atext characters.
1577
- """
1578
- m = _non_atom_end_matcher(value)
1579
- if not m:
1580
- raise errors.HeaderParseError(
1581
- "expected atext but found '{}'".format(value))
1582
- atext = m.group()
1583
- value = value[len(atext):]
1584
- atext = ValueTerminal(atext, 'atext')
1585
- _validate_xtext(atext)
1586
- return atext, value
1587
-
1588
- def get_bare_quoted_string(value):
1589
- """bare-quoted-string = DQUOTE *([FWS] qcontent) [FWS] DQUOTE
1590
-
1591
- A quoted-string without the leading or trailing white space. Its
1592
- value is the text between the quote marks, with whitespace
1593
- preserved and quoted pairs decoded.
1594
- """
1595
- if value[0] != '"':
1596
- raise errors.HeaderParseError(
1597
- "expected '\"' but found '{}'".format(value))
1598
- bare_quoted_string = BareQuotedString()
1599
- value = value[1:]
1600
- while value and value[0] != '"':
1601
- if value[0] in WSP:
1602
- token, value = get_fws(value)
1603
- else:
1604
- token, value = get_qcontent(value)
1605
- bare_quoted_string.append(token)
1606
- if not value:
1607
- bare_quoted_string.defects.append(errors.InvalidHeaderDefect(
1608
- "end of header inside quoted string"))
1609
- return bare_quoted_string, value
1610
- return bare_quoted_string, value[1:]
1611
-
1612
- def get_comment(value):
1613
- """comment = "(" *([FWS] ccontent) [FWS] ")"
1614
- ccontent = ctext / quoted-pair / comment
1615
-
1616
- We handle nested comments here, and quoted-pair in our qp-ctext routine.
1617
- """
1618
- if value and value[0] != '(':
1619
- raise errors.HeaderParseError(
1620
- "expected '(' but found '{}'".format(value))
1621
- comment = Comment()
1622
- value = value[1:]
1623
- while value and value[0] != ")":
1624
- if value[0] in WSP:
1625
- token, value = get_fws(value)
1626
- elif value[0] == '(':
1627
- token, value = get_comment(value)
1628
- else:
1629
- token, value = get_qp_ctext(value)
1630
- comment.append(token)
1631
- if not value:
1632
- comment.defects.append(errors.InvalidHeaderDefect(
1633
- "end of header inside comment"))
1634
- return comment, value
1635
- return comment, value[1:]
1636
-
1637
- def get_cfws(value):
1638
- """CFWS = (1*([FWS] comment) [FWS]) / FWS
1639
-
1640
- """
1641
- cfws = CFWSList()
1642
- while value and value[0] in CFWS_LEADER:
1643
- if value[0] in WSP:
1644
- token, value = get_fws(value)
1645
- else:
1646
- token, value = get_comment(value)
1647
- cfws.append(token)
1648
- return cfws, value
1649
-
1650
- def get_quoted_string(value):
1651
- """quoted-string = [CFWS] <bare-quoted-string> [CFWS]
1652
-
1653
- 'bare-quoted-string' is an intermediate class defined by this
1654
- parser and not by the RFC grammar. It is the quoted string
1655
- without any attached CFWS.
1656
- """
1657
- quoted_string = QuotedString()
1658
- if value and value[0] in CFWS_LEADER:
1659
- token, value = get_cfws(value)
1660
- quoted_string.append(token)
1661
- token, value = get_bare_quoted_string(value)
1662
- quoted_string.append(token)
1663
- if value and value[0] in CFWS_LEADER:
1664
- token, value = get_cfws(value)
1665
- quoted_string.append(token)
1666
- return quoted_string, value
1667
-
1668
- def get_atom(value):
1669
- """atom = [CFWS] 1*atext [CFWS]
1670
-
1671
- """
1672
- atom = Atom()
1673
- if value and value[0] in CFWS_LEADER:
1674
- token, value = get_cfws(value)
1675
- atom.append(token)
1676
- if value and value[0] in ATOM_ENDS:
1677
- raise errors.HeaderParseError(
1678
- "expected atom but found '{}'".format(value))
1679
- token, value = get_atext(value)
1680
- atom.append(token)
1681
- if value and value[0] in CFWS_LEADER:
1682
- token, value = get_cfws(value)
1683
- atom.append(token)
1684
- return atom, value
1685
-
1686
- def get_dot_atom_text(value):
1687
- """ dot-text = 1*atext *("." 1*atext)
1688
-
1689
- """
1690
- dot_atom_text = DotAtomText()
1691
- if not value or value[0] in ATOM_ENDS:
1692
- raise errors.HeaderParseError("expected atom at a start of "
1693
- "dot-atom-text but found '{}'".format(value))
1694
- while value and value[0] not in ATOM_ENDS:
1695
- token, value = get_atext(value)
1696
- dot_atom_text.append(token)
1697
- if value and value[0] == '.':
1698
- dot_atom_text.append(DOT)
1699
- value = value[1:]
1700
- if dot_atom_text[-1] is DOT:
1701
- raise errors.HeaderParseError("expected atom at end of dot-atom-text "
1702
- "but found '{}'".format('.'+value))
1703
- return dot_atom_text, value
1704
-
1705
- def get_dot_atom(value):
1706
- """ dot-atom = [CFWS] dot-atom-text [CFWS]
1707
-
1708
- """
1709
- dot_atom = DotAtom()
1710
- if value[0] in CFWS_LEADER:
1711
- token, value = get_cfws(value)
1712
- dot_atom.append(token)
1713
- token, value = get_dot_atom_text(value)
1714
- dot_atom.append(token)
1715
- if value and value[0] in CFWS_LEADER:
1716
- token, value = get_cfws(value)
1717
- dot_atom.append(token)
1718
- return dot_atom, value
1719
-
1720
- def get_word(value):
1721
- """word = atom / quoted-string
1722
-
1723
- Either atom or quoted-string may start with CFWS. We have to peel off this
1724
- CFWS first to determine which type of word to parse. Afterward we splice
1725
- the leading CFWS, if any, into the parsed sub-token.
1726
-
1727
- If neither an atom or a quoted-string is found before the next special, a
1728
- HeaderParseError is raised.
1729
-
1730
- The token returned is either an Atom or a QuotedString, as appropriate.
1731
- This means the 'word' level of the formal grammar is not represented in the
1732
- parse tree; this is because having that extra layer when manipulating the
1733
- parse tree is more confusing than it is helpful.
1734
-
1735
- """
1736
- if value[0] in CFWS_LEADER:
1737
- leader, value = get_cfws(value)
1738
- else:
1739
- leader = None
1740
- if value[0]=='"':
1741
- token, value = get_quoted_string(value)
1742
- elif value[0] in SPECIALS:
1743
- raise errors.HeaderParseError("Expected 'atom' or 'quoted-string' "
1744
- "but found '{}'".format(value))
1745
- else:
1746
- token, value = get_atom(value)
1747
- if leader is not None:
1748
- token[:0] = [leader]
1749
- return token, value
1750
-
1751
- def get_phrase(value):
1752
- """ phrase = 1*word / obs-phrase
1753
- obs-phrase = word *(word / "." / CFWS)
1754
-
1755
- This means a phrase can be a sequence of words, periods, and CFWS in any
1756
- order as long as it starts with at least one word. If anything other than
1757
- words is detected, an ObsoleteHeaderDefect is added to the token's defect
1758
- list. We also accept a phrase that starts with CFWS followed by a dot;
1759
- this is registered as an InvalidHeaderDefect, since it is not supported by
1760
- even the obsolete grammar.
1761
-
1762
- """
1763
- phrase = Phrase()
1764
- try:
1765
- token, value = get_word(value)
1766
- phrase.append(token)
1767
- except errors.HeaderParseError:
1768
- phrase.defects.append(errors.InvalidHeaderDefect(
1769
- "phrase does not start with word"))
1770
- while value and value[0] not in PHRASE_ENDS:
1771
- if value[0]=='.':
1772
- phrase.append(DOT)
1773
- phrase.defects.append(errors.ObsoleteHeaderDefect(
1774
- "period in 'phrase'"))
1775
- value = value[1:]
1776
- else:
1777
- try:
1778
- token, value = get_word(value)
1779
- except errors.HeaderParseError:
1780
- if value[0] in CFWS_LEADER:
1781
- token, value = get_cfws(value)
1782
- phrase.defects.append(errors.ObsoleteHeaderDefect(
1783
- "comment found without atom"))
1784
- else:
1785
- raise
1786
- phrase.append(token)
1787
- return phrase, value
1788
-
1789
- def get_local_part(value):
1790
- """ local-part = dot-atom / quoted-string / obs-local-part
1791
-
1792
- """
1793
- local_part = LocalPart()
1794
- leader = None
1795
- if value[0] in CFWS_LEADER:
1796
- leader, value = get_cfws(value)
1797
- if not value:
1798
- raise errors.HeaderParseError(
1799
- "expected local-part but found '{}'".format(value))
1800
- try:
1801
- token, value = get_dot_atom(value)
1802
- except errors.HeaderParseError:
1803
- try:
1804
- token, value = get_word(value)
1805
- except errors.HeaderParseError:
1806
- if value[0] != '\\' and value[0] in PHRASE_ENDS:
1807
- raise
1808
- token = TokenList()
1809
- if leader is not None:
1810
- token[:0] = [leader]
1811
- local_part.append(token)
1812
- if value and (value[0]=='\\' or value[0] not in PHRASE_ENDS):
1813
- obs_local_part, value = get_obs_local_part(str(local_part) + value)
1814
- if obs_local_part.token_type == 'invalid-obs-local-part':
1815
- local_part.defects.append(errors.InvalidHeaderDefect(
1816
- "local-part is not dot-atom, quoted-string, or obs-local-part"))
1817
- else:
1818
- local_part.defects.append(errors.ObsoleteHeaderDefect(
1819
- "local-part is not a dot-atom (contains CFWS)"))
1820
- local_part[0] = obs_local_part
1821
- try:
1822
- local_part.value.encode('ascii')
1823
- except UnicodeEncodeError:
1824
- local_part.defects.append(errors.NonASCIILocalPartDefect(
1825
- "local-part contains non-ASCII characters)"))
1826
- return local_part, value
1827
-
1828
- def get_obs_local_part(value):
1829
- """ obs-local-part = word *("." word)
1830
- """
1831
- obs_local_part = ObsLocalPart()
1832
- last_non_ws_was_dot = False
1833
- while value and (value[0]=='\\' or value[0] not in PHRASE_ENDS):
1834
- if value[0] == '.':
1835
- if last_non_ws_was_dot:
1836
- obs_local_part.defects.append(errors.InvalidHeaderDefect(
1837
- "invalid repeated '.'"))
1838
- obs_local_part.append(DOT)
1839
- last_non_ws_was_dot = True
1840
- value = value[1:]
1841
- continue
1842
- elif value[0]=='\\':
1843
- obs_local_part.append(ValueTerminal(value[0],
1844
- 'misplaced-special'))
1845
- value = value[1:]
1846
- obs_local_part.defects.append(errors.InvalidHeaderDefect(
1847
- "'\\' character outside of quoted-string/ccontent"))
1848
- last_non_ws_was_dot = False
1849
- continue
1850
- if obs_local_part and obs_local_part[-1].token_type != 'dot':
1851
- obs_local_part.defects.append(errors.InvalidHeaderDefect(
1852
- "missing '.' between words"))
1853
- try:
1854
- token, value = get_word(value)
1855
- last_non_ws_was_dot = False
1856
- except errors.HeaderParseError:
1857
- if value[0] not in CFWS_LEADER:
1858
- raise
1859
- token, value = get_cfws(value)
1860
- obs_local_part.append(token)
1861
- if (obs_local_part[0].token_type == 'dot' or
1862
- obs_local_part[0].token_type=='cfws' and
1863
- obs_local_part[1].token_type=='dot'):
1864
- obs_local_part.defects.append(errors.InvalidHeaderDefect(
1865
- "Invalid leading '.' in local part"))
1866
- if (obs_local_part[-1].token_type == 'dot' or
1867
- obs_local_part[-1].token_type=='cfws' and
1868
- obs_local_part[-2].token_type=='dot'):
1869
- obs_local_part.defects.append(errors.InvalidHeaderDefect(
1870
- "Invalid trailing '.' in local part"))
1871
- if obs_local_part.defects:
1872
- obs_local_part.token_type = 'invalid-obs-local-part'
1873
- return obs_local_part, value
1874
-
1875
- def get_dtext(value):
1876
- """ dtext = <printable ascii except \ [ ]> / obs-dtext
1877
- obs-dtext = obs-NO-WS-CTL / quoted-pair
1878
-
1879
- We allow anything except the excluded characters, but if we find any
1880
- ASCII other than the RFC defined printable ASCII an NonPrintableDefect is
1881
- added to the token's defects list. Quoted pairs are converted to their
1882
- unquoted values, so what is returned is a ptext token, in this case a
1883
- ValueTerminal. If there were quoted-printables, an ObsoleteHeaderDefect is
1884
- added to the returned token's defect list.
1885
-
1886
- """
1887
- ptext, value, had_qp = _get_ptext_to_endchars(value, '[]')
1888
- ptext = ValueTerminal(ptext, 'ptext')
1889
- if had_qp:
1890
- ptext.defects.append(errors.ObsoleteHeaderDefect(
1891
- "quoted printable found in domain-literal"))
1892
- _validate_xtext(ptext)
1893
- return ptext, value
1894
-
1895
- def _check_for_early_dl_end(value, domain_literal):
1896
- if value:
1897
- return False
1898
- domain_literal.append(errors.InvalidHeaderDefect(
1899
- "end of input inside domain-literal"))
1900
- domain_literal.append(ValueTerminal(']', 'domain-literal-end'))
1901
- return True
1902
-
1903
- def get_domain_literal(value):
1904
- """ domain-literal = [CFWS] "[" *([FWS] dtext) [FWS] "]" [CFWS]
1905
-
1906
- """
1907
- domain_literal = DomainLiteral()
1908
- if value[0] in CFWS_LEADER:
1909
- token, value = get_cfws(value)
1910
- domain_literal.append(token)
1911
- if not value:
1912
- raise errors.HeaderParseError("expected domain-literal")
1913
- if value[0] != '[':
1914
- raise errors.HeaderParseError("expected '[' at start of domain-literal "
1915
- "but found '{}'".format(value))
1916
- value = value[1:]
1917
- if _check_for_early_dl_end(value, domain_literal):
1918
- return domain_literal, value
1919
- domain_literal.append(ValueTerminal('[', 'domain-literal-start'))
1920
- if value[0] in WSP:
1921
- token, value = get_fws(value)
1922
- domain_literal.append(token)
1923
- token, value = get_dtext(value)
1924
- domain_literal.append(token)
1925
- if _check_for_early_dl_end(value, domain_literal):
1926
- return domain_literal, value
1927
- if value[0] in WSP:
1928
- token, value = get_fws(value)
1929
- domain_literal.append(token)
1930
- if _check_for_early_dl_end(value, domain_literal):
1931
- return domain_literal, value
1932
- if value[0] != ']':
1933
- raise errors.HeaderParseError("expected ']' at end of domain-literal "
1934
- "but found '{}'".format(value))
1935
- domain_literal.append(ValueTerminal(']', 'domain-literal-end'))
1936
- value = value[1:]
1937
- if value and value[0] in CFWS_LEADER:
1938
- token, value = get_cfws(value)
1939
- domain_literal.append(token)
1940
- return domain_literal, value
1941
-
1942
- def get_domain(value):
1943
- """ domain = dot-atom / domain-literal / obs-domain
1944
- obs-domain = atom *("." atom))
1945
-
1946
- """
1947
- domain = Domain()
1948
- leader = None
1949
- if value[0] in CFWS_LEADER:
1950
- leader, value = get_cfws(value)
1951
- if not value:
1952
- raise errors.HeaderParseError(
1953
- "expected domain but found '{}'".format(value))
1954
- if value[0] == '[':
1955
- token, value = get_domain_literal(value)
1956
- if leader is not None:
1957
- token[:0] = [leader]
1958
- domain.append(token)
1959
- return domain, value
1960
- try:
1961
- token, value = get_dot_atom(value)
1962
- except errors.HeaderParseError:
1963
- token, value = get_atom(value)
1964
- if leader is not None:
1965
- token[:0] = [leader]
1966
- domain.append(token)
1967
- if value and value[0] == '.':
1968
- domain.defects.append(errors.ObsoleteHeaderDefect(
1969
- "domain is not a dot-atom (contains CFWS)"))
1970
- if domain[0].token_type == 'dot-atom':
1971
- domain[:] = domain[0]
1972
- while value and value[0] == '.':
1973
- domain.append(DOT)
1974
- token, value = get_atom(value[1:])
1975
- domain.append(token)
1976
- return domain, value
1977
-
1978
- def get_addr_spec(value):
1979
- """ addr-spec = local-part "@" domain
1980
-
1981
- """
1982
- addr_spec = AddrSpec()
1983
- token, value = get_local_part(value)
1984
- addr_spec.append(token)
1985
- if not value or value[0] != '@':
1986
- addr_spec.defects.append(errors.InvalidHeaderDefect(
1987
- "add-spec local part with no domain"))
1988
- return addr_spec, value
1989
- addr_spec.append(ValueTerminal('@', 'address-at-symbol'))
1990
- token, value = get_domain(value[1:])
1991
- addr_spec.append(token)
1992
- return addr_spec, value
1993
-
1994
- def get_obs_route(value):
1995
- """ obs-route = obs-domain-list ":"
1996
- obs-domain-list = *(CFWS / ",") "@" domain *("," [CFWS] ["@" domain])
1997
-
1998
- Returns an obs-route token with the appropriate sub-tokens (that is,
1999
- there is no obs-domain-list in the parse tree).
2000
- """
2001
- obs_route = ObsRoute()
2002
- while value and (value[0]==',' or value[0] in CFWS_LEADER):
2003
- if value[0] in CFWS_LEADER:
2004
- token, value = get_cfws(value)
2005
- obs_route.append(token)
2006
- elif value[0] == ',':
2007
- obs_route.append(ListSeparator)
2008
- value = value[1:]
2009
- if not value or value[0] != '@':
2010
- raise errors.HeaderParseError(
2011
- "expected obs-route domain but found '{}'".format(value))
2012
- obs_route.append(RouteComponentMarker)
2013
- token, value = get_domain(value[1:])
2014
- obs_route.append(token)
2015
- while value and value[0]==',':
2016
- obs_route.append(ListSeparator)
2017
- value = value[1:]
2018
- if not value:
2019
- break
2020
- if value[0] in CFWS_LEADER:
2021
- token, value = get_cfws(value)
2022
- obs_route.append(token)
2023
- if value[0] == '@':
2024
- obs_route.append(RouteComponentMarker)
2025
- token, value = get_domain(value[1:])
2026
- obs_route.append(token)
2027
- if not value:
2028
- raise errors.HeaderParseError("end of header while parsing obs-route")
2029
- if value[0] != ':':
2030
- raise errors.HeaderParseError( "expected ':' marking end of "
2031
- "obs-route but found '{}'".format(value))
2032
- obs_route.append(ValueTerminal(':', 'end-of-obs-route-marker'))
2033
- return obs_route, value[1:]
2034
-
2035
- def get_angle_addr(value):
2036
- """ angle-addr = [CFWS] "<" addr-spec ">" [CFWS] / obs-angle-addr
2037
- obs-angle-addr = [CFWS] "<" obs-route addr-spec ">" [CFWS]
2038
-
2039
- """
2040
- angle_addr = AngleAddr()
2041
- if value[0] in CFWS_LEADER:
2042
- token, value = get_cfws(value)
2043
- angle_addr.append(token)
2044
- if not value or value[0] != '<':
2045
- raise errors.HeaderParseError(
2046
- "expected angle-addr but found '{}'".format(value))
2047
- angle_addr.append(ValueTerminal('<', 'angle-addr-start'))
2048
- value = value[1:]
2049
- # Although it is not legal per RFC5322, SMTP uses '<>' in certain
2050
- # circumstances.
2051
- if value[0] == '>':
2052
- angle_addr.append(ValueTerminal('>', 'angle-addr-end'))
2053
- angle_addr.defects.append(errors.InvalidHeaderDefect(
2054
- "null addr-spec in angle-addr"))
2055
- value = value[1:]
2056
- return angle_addr, value
2057
- try:
2058
- token, value = get_addr_spec(value)
2059
- except errors.HeaderParseError:
2060
- try:
2061
- token, value = get_obs_route(value)
2062
- angle_addr.defects.append(errors.ObsoleteHeaderDefect(
2063
- "obsolete route specification in angle-addr"))
2064
- except errors.HeaderParseError:
2065
- raise errors.HeaderParseError(
2066
- "expected addr-spec or obs-route but found '{}'".format(value))
2067
- angle_addr.append(token)
2068
- token, value = get_addr_spec(value)
2069
- angle_addr.append(token)
2070
- if value and value[0] == '>':
2071
- value = value[1:]
2072
- else:
2073
- angle_addr.defects.append(errors.InvalidHeaderDefect(
2074
- "missing trailing '>' on angle-addr"))
2075
- angle_addr.append(ValueTerminal('>', 'angle-addr-end'))
2076
- if value and value[0] in CFWS_LEADER:
2077
- token, value = get_cfws(value)
2078
- angle_addr.append(token)
2079
- return angle_addr, value
2080
-
2081
- def get_display_name(value):
2082
- """ display-name = phrase
2083
-
2084
- Because this is simply a name-rule, we don't return a display-name
2085
- token containing a phrase, but rather a display-name token with
2086
- the content of the phrase.
2087
-
2088
- """
2089
- display_name = DisplayName()
2090
- token, value = get_phrase(value)
2091
- display_name.extend(token[:])
2092
- display_name.defects = token.defects[:]
2093
- return display_name, value
2094
-
2095
-
2096
- def get_name_addr(value):
2097
- """ name-addr = [display-name] angle-addr
2098
-
2099
- """
2100
- name_addr = NameAddr()
2101
- # Both the optional display name and the angle-addr can start with cfws.
2102
- leader = None
2103
- if value[0] in CFWS_LEADER:
2104
- leader, value = get_cfws(value)
2105
- if not value:
2106
- raise errors.HeaderParseError(
2107
- "expected name-addr but found '{}'".format(leader))
2108
- if value[0] != '<':
2109
- if value[0] in PHRASE_ENDS:
2110
- raise errors.HeaderParseError(
2111
- "expected name-addr but found '{}'".format(value))
2112
- token, value = get_display_name(value)
2113
- if not value:
2114
- raise errors.HeaderParseError(
2115
- "expected name-addr but found '{}'".format(token))
2116
- if leader is not None:
2117
- token[0][:0] = [leader]
2118
- leader = None
2119
- name_addr.append(token)
2120
- token, value = get_angle_addr(value)
2121
- if leader is not None:
2122
- token[:0] = [leader]
2123
- name_addr.append(token)
2124
- return name_addr, value
2125
-
2126
- def get_mailbox(value):
2127
- """ mailbox = name-addr / addr-spec
2128
-
2129
- """
2130
- # The only way to figure out if we are dealing with a name-addr or an
2131
- # addr-spec is to try parsing each one.
2132
- mailbox = Mailbox()
2133
- try:
2134
- token, value = get_name_addr(value)
2135
- except errors.HeaderParseError:
2136
- try:
2137
- token, value = get_addr_spec(value)
2138
- except errors.HeaderParseError:
2139
- raise errors.HeaderParseError(
2140
- "expected mailbox but found '{}'".format(value))
2141
- if any(isinstance(x, errors.InvalidHeaderDefect)
2142
- for x in token.all_defects):
2143
- mailbox.token_type = 'invalid-mailbox'
2144
- mailbox.append(token)
2145
- return mailbox, value
2146
-
2147
- def get_invalid_mailbox(value, endchars):
2148
- """ Read everything up to one of the chars in endchars.
2149
-
2150
- This is outside the formal grammar. The InvalidMailbox TokenList that is
2151
- returned acts like a Mailbox, but the data attributes are None.
2152
-
2153
- """
2154
- invalid_mailbox = InvalidMailbox()
2155
- while value and value[0] not in endchars:
2156
- if value[0] in PHRASE_ENDS:
2157
- invalid_mailbox.append(ValueTerminal(value[0],
2158
- 'misplaced-special'))
2159
- value = value[1:]
2160
- else:
2161
- token, value = get_phrase(value)
2162
- invalid_mailbox.append(token)
2163
- return invalid_mailbox, value
2164
-
2165
- def get_mailbox_list(value):
2166
- """ mailbox-list = (mailbox *("," mailbox)) / obs-mbox-list
2167
- obs-mbox-list = *([CFWS] ",") mailbox *("," [mailbox / CFWS])
2168
-
2169
- For this routine we go outside the formal grammar in order to improve error
2170
- handling. We recognize the end of the mailbox list only at the end of the
2171
- value or at a ';' (the group terminator). This is so that we can turn
2172
- invalid mailboxes into InvalidMailbox tokens and continue parsing any
2173
- remaining valid mailboxes. We also allow all mailbox entries to be null,
2174
- and this condition is handled appropriately at a higher level.
2175
-
2176
- """
2177
- mailbox_list = MailboxList()
2178
- while value and value[0] != ';':
2179
- try:
2180
- token, value = get_mailbox(value)
2181
- mailbox_list.append(token)
2182
- except errors.HeaderParseError:
2183
- leader = None
2184
- if value[0] in CFWS_LEADER:
2185
- leader, value = get_cfws(value)
2186
- if not value or value[0] in ',;':
2187
- mailbox_list.append(leader)
2188
- mailbox_list.defects.append(errors.ObsoleteHeaderDefect(
2189
- "empty element in mailbox-list"))
2190
- else:
2191
- token, value = get_invalid_mailbox(value, ',;')
2192
- if leader is not None:
2193
- token[:0] = [leader]
2194
- mailbox_list.append(token)
2195
- mailbox_list.defects.append(errors.InvalidHeaderDefect(
2196
- "invalid mailbox in mailbox-list"))
2197
- elif value[0] == ',':
2198
- mailbox_list.defects.append(errors.ObsoleteHeaderDefect(
2199
- "empty element in mailbox-list"))
2200
- else:
2201
- token, value = get_invalid_mailbox(value, ',;')
2202
- if leader is not None:
2203
- token[:0] = [leader]
2204
- mailbox_list.append(token)
2205
- mailbox_list.defects.append(errors.InvalidHeaderDefect(
2206
- "invalid mailbox in mailbox-list"))
2207
- if value and value[0] not in ',;':
2208
- # Crap after mailbox; treat it as an invalid mailbox.
2209
- # The mailbox info will still be available.
2210
- mailbox = mailbox_list[-1]
2211
- mailbox.token_type = 'invalid-mailbox'
2212
- token, value = get_invalid_mailbox(value, ',;')
2213
- mailbox.extend(token)
2214
- mailbox_list.defects.append(errors.InvalidHeaderDefect(
2215
- "invalid mailbox in mailbox-list"))
2216
- if value and value[0] == ',':
2217
- mailbox_list.append(ListSeparator)
2218
- value = value[1:]
2219
- return mailbox_list, value
2220
-
2221
-
2222
- def get_group_list(value):
2223
- """ group-list = mailbox-list / CFWS / obs-group-list
2224
- obs-group-list = 1*([CFWS] ",") [CFWS]
2225
-
2226
- """
2227
- group_list = GroupList()
2228
- if not value:
2229
- group_list.defects.append(errors.InvalidHeaderDefect(
2230
- "end of header before group-list"))
2231
- return group_list, value
2232
- leader = None
2233
- if value and value[0] in CFWS_LEADER:
2234
- leader, value = get_cfws(value)
2235
- if not value:
2236
- # This should never happen in email parsing, since CFWS-only is a
2237
- # legal alternative to group-list in a group, which is the only
2238
- # place group-list appears.
2239
- group_list.defects.append(errors.InvalidHeaderDefect(
2240
- "end of header in group-list"))
2241
- group_list.append(leader)
2242
- return group_list, value
2243
- if value[0] == ';':
2244
- group_list.append(leader)
2245
- return group_list, value
2246
- token, value = get_mailbox_list(value)
2247
- if len(token.all_mailboxes)==0:
2248
- if leader is not None:
2249
- group_list.append(leader)
2250
- group_list.extend(token)
2251
- group_list.defects.append(errors.ObsoleteHeaderDefect(
2252
- "group-list with empty entries"))
2253
- return group_list, value
2254
- if leader is not None:
2255
- token[:0] = [leader]
2256
- group_list.append(token)
2257
- return group_list, value
2258
-
2259
- def get_group(value):
2260
- """ group = display-name ":" [group-list] ";" [CFWS]
2261
-
2262
- """
2263
- group = Group()
2264
- token, value = get_display_name(value)
2265
- if not value or value[0] != ':':
2266
- raise errors.HeaderParseError("expected ':' at end of group "
2267
- "display name but found '{}'".format(value))
2268
- group.append(token)
2269
- group.append(ValueTerminal(':', 'group-display-name-terminator'))
2270
- value = value[1:]
2271
- if value and value[0] == ';':
2272
- group.append(ValueTerminal(';', 'group-terminator'))
2273
- return group, value[1:]
2274
- token, value = get_group_list(value)
2275
- group.append(token)
2276
- if not value:
2277
- group.defects.append(errors.InvalidHeaderDefect(
2278
- "end of header in group"))
2279
- if value[0] != ';':
2280
- raise errors.HeaderParseError(
2281
- "expected ';' at end of group but found {}".format(value))
2282
- group.append(ValueTerminal(';', 'group-terminator'))
2283
- value = value[1:]
2284
- if value and value[0] in CFWS_LEADER:
2285
- token, value = get_cfws(value)
2286
- group.append(token)
2287
- return group, value
2288
-
2289
- def get_address(value):
2290
- """ address = mailbox / group
2291
-
2292
- Note that counter-intuitively, an address can be either a single address or
2293
- a list of addresses (a group). This is why the returned Address object has
2294
- a 'mailboxes' attribute which treats a single address as a list of length
2295
- one. When you need to differentiate between to two cases, extract the single
2296
- element, which is either a mailbox or a group token.
2297
-
2298
- """
2299
- # The formal grammar isn't very helpful when parsing an address. mailbox
2300
- # and group, especially when allowing for obsolete forms, start off very
2301
- # similarly. It is only when you reach one of @, <, or : that you know
2302
- # what you've got. So, we try each one in turn, starting with the more
2303
- # likely of the two. We could perhaps make this more efficient by looking
2304
- # for a phrase and then branching based on the next character, but that
2305
- # would be a premature optimization.
2306
- address = Address()
2307
- try:
2308
- token, value = get_group(value)
2309
- except errors.HeaderParseError:
2310
- try:
2311
- token, value = get_mailbox(value)
2312
- except errors.HeaderParseError:
2313
- raise errors.HeaderParseError(
2314
- "expected address but found '{}'".format(value))
2315
- address.append(token)
2316
- return address, value
2317
-
2318
- def get_address_list(value):
2319
- """ address_list = (address *("," address)) / obs-addr-list
2320
- obs-addr-list = *([CFWS] ",") address *("," [address / CFWS])
2321
-
2322
- We depart from the formal grammar here by continuing to parse until the end
2323
- of the input, assuming the input to be entirely composed of an
2324
- address-list. This is always true in email parsing, and allows us
2325
- to skip invalid addresses to parse additional valid ones.
2326
-
2327
- """
2328
- address_list = AddressList()
2329
- while value:
2330
- try:
2331
- token, value = get_address(value)
2332
- address_list.append(token)
2333
- except errors.HeaderParseError as err:
2334
- leader = None
2335
- if value[0] in CFWS_LEADER:
2336
- leader, value = get_cfws(value)
2337
- if not value or value[0] == ',':
2338
- address_list.append(leader)
2339
- address_list.defects.append(errors.ObsoleteHeaderDefect(
2340
- "address-list entry with no content"))
2341
- else:
2342
- token, value = get_invalid_mailbox(value, ',')
2343
- if leader is not None:
2344
- token[:0] = [leader]
2345
- address_list.append(Address([token]))
2346
- address_list.defects.append(errors.InvalidHeaderDefect(
2347
- "invalid address in address-list"))
2348
- elif value[0] == ',':
2349
- address_list.defects.append(errors.ObsoleteHeaderDefect(
2350
- "empty element in address-list"))
2351
- else:
2352
- token, value = get_invalid_mailbox(value, ',')
2353
- if leader is not None:
2354
- token[:0] = [leader]
2355
- address_list.append(Address([token]))
2356
- address_list.defects.append(errors.InvalidHeaderDefect(
2357
- "invalid address in address-list"))
2358
- if value and value[0] != ',':
2359
- # Crap after address; treat it as an invalid mailbox.
2360
- # The mailbox info will still be available.
2361
- mailbox = address_list[-1][0]
2362
- mailbox.token_type = 'invalid-mailbox'
2363
- token, value = get_invalid_mailbox(value, ',')
2364
- mailbox.extend(token)
2365
- address_list.defects.append(errors.InvalidHeaderDefect(
2366
- "invalid address in address-list"))
2367
- if value: # Must be a , at this point.
2368
- address_list.append(ValueTerminal(',', 'list-separator'))
2369
- value = value[1:]
2370
- return address_list, value
2371
-
2372
- #
2373
- # XXX: As I begin to add additional header parsers, I'm realizing we probably
2374
- # have two level of parser routines: the get_XXX methods that get a token in
2375
- # the grammar, and parse_XXX methods that parse an entire field value. So
2376
- # get_address_list above should really be a parse_ method, as probably should
2377
- # be get_unstructured.
2378
- #
2379
-
2380
- def parse_mime_version(value):
2381
- """ mime-version = [CFWS] 1*digit [CFWS] "." [CFWS] 1*digit [CFWS]
2382
-
2383
- """
2384
- # The [CFWS] is implicit in the RFC 2045 BNF.
2385
- # XXX: This routine is a bit verbose, should factor out a get_int method.
2386
- mime_version = MIMEVersion()
2387
- if not value:
2388
- mime_version.defects.append(errors.HeaderMissingRequiredValue(
2389
- "Missing MIME version number (eg: 1.0)"))
2390
- return mime_version
2391
- if value[0] in CFWS_LEADER:
2392
- token, value = get_cfws(value)
2393
- mime_version.append(token)
2394
- if not value:
2395
- mime_version.defects.append(errors.HeaderMissingRequiredValue(
2396
- "Expected MIME version number but found only CFWS"))
2397
- digits = ''
2398
- while value and value[0] != '.' and value[0] not in CFWS_LEADER:
2399
- digits += value[0]
2400
- value = value[1:]
2401
- if not digits.isdigit():
2402
- mime_version.defects.append(errors.InvalidHeaderDefect(
2403
- "Expected MIME major version number but found {!r}".format(digits)))
2404
- mime_version.append(ValueTerminal(digits, 'xtext'))
2405
- else:
2406
- mime_version.major = int(digits)
2407
- mime_version.append(ValueTerminal(digits, 'digits'))
2408
- if value and value[0] in CFWS_LEADER:
2409
- token, value = get_cfws(value)
2410
- mime_version.append(token)
2411
- if not value or value[0] != '.':
2412
- if mime_version.major is not None:
2413
- mime_version.defects.append(errors.InvalidHeaderDefect(
2414
- "Incomplete MIME version; found only major number"))
2415
- if value:
2416
- mime_version.append(ValueTerminal(value, 'xtext'))
2417
- return mime_version
2418
- mime_version.append(ValueTerminal('.', 'version-separator'))
2419
- value = value[1:]
2420
- if value and value[0] in CFWS_LEADER:
2421
- token, value = get_cfws(value)
2422
- mime_version.append(token)
2423
- if not value:
2424
- if mime_version.major is not None:
2425
- mime_version.defects.append(errors.InvalidHeaderDefect(
2426
- "Incomplete MIME version; found only major number"))
2427
- return mime_version
2428
- digits = ''
2429
- while value and value[0] not in CFWS_LEADER:
2430
- digits += value[0]
2431
- value = value[1:]
2432
- if not digits.isdigit():
2433
- mime_version.defects.append(errors.InvalidHeaderDefect(
2434
- "Expected MIME minor version number but found {!r}".format(digits)))
2435
- mime_version.append(ValueTerminal(digits, 'xtext'))
2436
- else:
2437
- mime_version.minor = int(digits)
2438
- mime_version.append(ValueTerminal(digits, 'digits'))
2439
- if value and value[0] in CFWS_LEADER:
2440
- token, value = get_cfws(value)
2441
- mime_version.append(token)
2442
- if value:
2443
- mime_version.defects.append(errors.InvalidHeaderDefect(
2444
- "Excess non-CFWS text after MIME version"))
2445
- mime_version.append(ValueTerminal(value, 'xtext'))
2446
- return mime_version
2447
-
2448
- def get_invalid_parameter(value):
2449
- """ Read everything up to the next ';'.
2450
-
2451
- This is outside the formal grammar. The InvalidParameter TokenList that is
2452
- returned acts like a Parameter, but the data attributes are None.
2453
-
2454
- """
2455
- invalid_parameter = InvalidParameter()
2456
- while value and value[0] != ';':
2457
- if value[0] in PHRASE_ENDS:
2458
- invalid_parameter.append(ValueTerminal(value[0],
2459
- 'misplaced-special'))
2460
- value = value[1:]
2461
- else:
2462
- token, value = get_phrase(value)
2463
- invalid_parameter.append(token)
2464
- return invalid_parameter, value
2465
-
2466
- def get_ttext(value):
2467
- """ttext = <matches _ttext_matcher>
2468
-
2469
- We allow any non-TOKEN_ENDS in ttext, but add defects to the token's
2470
- defects list if we find non-ttext characters. We also register defects for
2471
- *any* non-printables even though the RFC doesn't exclude all of them,
2472
- because we follow the spirit of RFC 5322.
2473
-
2474
- """
2475
- m = _non_token_end_matcher(value)
2476
- if not m:
2477
- raise errors.HeaderParseError(
2478
- "expected ttext but found '{}'".format(value))
2479
- ttext = m.group()
2480
- value = value[len(ttext):]
2481
- ttext = ValueTerminal(ttext, 'ttext')
2482
- _validate_xtext(ttext)
2483
- return ttext, value
2484
-
2485
- def get_token(value):
2486
- """token = [CFWS] 1*ttext [CFWS]
2487
-
2488
- The RFC equivalent of ttext is any US-ASCII chars except space, ctls, or
2489
- tspecials. We also exclude tabs even though the RFC doesn't.
2490
-
2491
- The RFC implies the CFWS but is not explicit about it in the BNF.
2492
-
2493
- """
2494
- mtoken = Token()
2495
- if value and value[0] in CFWS_LEADER:
2496
- token, value = get_cfws(value)
2497
- mtoken.append(token)
2498
- if value and value[0] in TOKEN_ENDS:
2499
- raise errors.HeaderParseError(
2500
- "expected token but found '{}'".format(value))
2501
- token, value = get_ttext(value)
2502
- mtoken.append(token)
2503
- if value and value[0] in CFWS_LEADER:
2504
- token, value = get_cfws(value)
2505
- mtoken.append(token)
2506
- return mtoken, value
2507
-
2508
- def get_attrtext(value):
2509
- """attrtext = 1*(any non-ATTRIBUTE_ENDS character)
2510
-
2511
- We allow any non-ATTRIBUTE_ENDS in attrtext, but add defects to the
2512
- token's defects list if we find non-attrtext characters. We also register
2513
- defects for *any* non-printables even though the RFC doesn't exclude all of
2514
- them, because we follow the spirit of RFC 5322.
2515
-
2516
- """
2517
- m = _non_attribute_end_matcher(value)
2518
- if not m:
2519
- raise errors.HeaderParseError(
2520
- "expected attrtext but found {!r}".format(value))
2521
- attrtext = m.group()
2522
- value = value[len(attrtext):]
2523
- attrtext = ValueTerminal(attrtext, 'attrtext')
2524
- _validate_xtext(attrtext)
2525
- return attrtext, value
2526
-
2527
- def get_attribute(value):
2528
- """ [CFWS] 1*attrtext [CFWS]
2529
-
2530
- This version of the BNF makes the CFWS explicit, and as usual we use a
2531
- value terminal for the actual run of characters. The RFC equivalent of
2532
- attrtext is the token characters, with the subtraction of '*', "'", and '%'.
2533
- We include tab in the excluded set just as we do for token.
2534
-
2535
- """
2536
- attribute = Attribute()
2537
- if value and value[0] in CFWS_LEADER:
2538
- token, value = get_cfws(value)
2539
- attribute.append(token)
2540
- if value and value[0] in ATTRIBUTE_ENDS:
2541
- raise errors.HeaderParseError(
2542
- "expected token but found '{}'".format(value))
2543
- token, value = get_attrtext(value)
2544
- attribute.append(token)
2545
- if value and value[0] in CFWS_LEADER:
2546
- token, value = get_cfws(value)
2547
- attribute.append(token)
2548
- return attribute, value
2549
-
2550
- def get_extended_attrtext(value):
2551
- """attrtext = 1*(any non-ATTRIBUTE_ENDS character plus '%')
2552
-
2553
- This is a special parsing routine so that we get a value that
2554
- includes % escapes as a single string (which we decode as a single
2555
- string later).
2556
-
2557
- """
2558
- m = _non_extended_attribute_end_matcher(value)
2559
- if not m:
2560
- raise errors.HeaderParseError(
2561
- "expected extended attrtext but found {!r}".format(value))
2562
- attrtext = m.group()
2563
- value = value[len(attrtext):]
2564
- attrtext = ValueTerminal(attrtext, 'extended-attrtext')
2565
- _validate_xtext(attrtext)
2566
- return attrtext, value
2567
-
2568
- def get_extended_attribute(value):
2569
- """ [CFWS] 1*extended_attrtext [CFWS]
2570
-
2571
- This is like the non-extended version except we allow % characters, so that
2572
- we can pick up an encoded value as a single string.
2573
-
2574
- """
2575
- # XXX: should we have an ExtendedAttribute TokenList?
2576
- attribute = Attribute()
2577
- if value and value[0] in CFWS_LEADER:
2578
- token, value = get_cfws(value)
2579
- attribute.append(token)
2580
- if value and value[0] in EXTENDED_ATTRIBUTE_ENDS:
2581
- raise errors.HeaderParseError(
2582
- "expected token but found '{}'".format(value))
2583
- token, value = get_extended_attrtext(value)
2584
- attribute.append(token)
2585
- if value and value[0] in CFWS_LEADER:
2586
- token, value = get_cfws(value)
2587
- attribute.append(token)
2588
- return attribute, value
2589
-
2590
- def get_section(value):
2591
- """ '*' digits
2592
-
2593
- The formal BNF is more complicated because leading 0s are not allowed. We
2594
- check for that and add a defect. We also assume no CFWS is allowed between
2595
- the '*' and the digits, though the RFC is not crystal clear on that.
2596
- The caller should already have dealt with leading CFWS.
2597
-
2598
- """
2599
- section = Section()
2600
- if not value or value[0] != '*':
2601
- raise errors.HeaderParseError("Expected section but found {}".format(
2602
- value))
2603
- section.append(ValueTerminal('*', 'section-marker'))
2604
- value = value[1:]
2605
- if not value or not value[0].isdigit():
2606
- raise errors.HeaderParseError("Expected section number but "
2607
- "found {}".format(value))
2608
- digits = ''
2609
- while value and value[0].isdigit():
2610
- digits += value[0]
2611
- value = value[1:]
2612
- if digits[0] == '0' and digits != '0':
2613
- section.defects.append(errors.InvalidHeaderError("section number"
2614
- "has an invalid leading 0"))
2615
- section.number = int(digits)
2616
- section.append(ValueTerminal(digits, 'digits'))
2617
- return section, value
2618
-
2619
-
2620
- def get_value(value):
2621
- """ quoted-string / attribute
2622
-
2623
- """
2624
- v = Value()
2625
- if not value:
2626
- raise errors.HeaderParseError("Expected value but found end of string")
2627
- leader = None
2628
- if value[0] in CFWS_LEADER:
2629
- leader, value = get_cfws(value)
2630
- if not value:
2631
- raise errors.HeaderParseError("Expected value but found "
2632
- "only {}".format(leader))
2633
- if value[0] == '"':
2634
- token, value = get_quoted_string(value)
2635
- else:
2636
- token, value = get_extended_attribute(value)
2637
- if leader is not None:
2638
- token[:0] = [leader]
2639
- v.append(token)
2640
- return v, value
2641
-
2642
- def get_parameter(value):
2643
- """ attribute [section] ["*"] [CFWS] "=" value
2644
-
2645
- The CFWS is implied by the RFC but not made explicit in the BNF. This
2646
- simplified form of the BNF from the RFC is made to conform with the RFC BNF
2647
- through some extra checks. We do it this way because it makes both error
2648
- recovery and working with the resulting parse tree easier.
2649
- """
2650
- # It is possible CFWS would also be implicitly allowed between the section
2651
- # and the 'extended-attribute' marker (the '*') , but we've never seen that
2652
- # in the wild and we will therefore ignore the possibility.
2653
- param = Parameter()
2654
- token, value = get_attribute(value)
2655
- param.append(token)
2656
- if not value or value[0] == ';':
2657
- param.defects.append(errors.InvalidHeaderDefect("Parameter contains "
2658
- "name ({}) but no value".format(token)))
2659
- return param, value
2660
- if value[0] == '*':
2661
- try:
2662
- token, value = get_section(value)
2663
- param.sectioned = True
2664
- param.append(token)
2665
- except errors.HeaderParseError:
2666
- pass
2667
- if not value:
2668
- raise errors.HeaderParseError("Incomplete parameter")
2669
- if value[0] == '*':
2670
- param.append(ValueTerminal('*', 'extended-parameter-marker'))
2671
- value = value[1:]
2672
- param.extended = True
2673
- if value[0] != '=':
2674
- raise errors.HeaderParseError("Parameter not followed by '='")
2675
- param.append(ValueTerminal('=', 'parameter-separator'))
2676
- value = value[1:]
2677
- leader = None
2678
- if value and value[0] in CFWS_LEADER:
2679
- token, value = get_cfws(value)
2680
- param.append(token)
2681
- remainder = None
2682
- appendto = param
2683
- if param.extended and value and value[0] == '"':
2684
- # Now for some serious hackery to handle the common invalid case of
2685
- # double quotes around an extended value. We also accept (with defect)
2686
- # a value marked as encoded that isn't really.
2687
- qstring, remainder = get_quoted_string(value)
2688
- inner_value = qstring.stripped_value
2689
- semi_valid = False
2690
- if param.section_number == 0:
2691
- if inner_value and inner_value[0] == "'":
2692
- semi_valid = True
2693
- else:
2694
- token, rest = get_attrtext(inner_value)
2695
- if rest and rest[0] == "'":
2696
- semi_valid = True
2697
- else:
2698
- try:
2699
- token, rest = get_extended_attrtext(inner_value)
2700
- except:
2701
- pass
2702
- else:
2703
- if not rest:
2704
- semi_valid = True
2705
- if semi_valid:
2706
- param.defects.append(errors.InvalidHeaderDefect(
2707
- "Quoted string value for extended parameter is invalid"))
2708
- param.append(qstring)
2709
- for t in qstring:
2710
- if t.token_type == 'bare-quoted-string':
2711
- t[:] = []
2712
- appendto = t
2713
- break
2714
- value = inner_value
2715
- else:
2716
- remainder = None
2717
- param.defects.append(errors.InvalidHeaderDefect(
2718
- "Parameter marked as extended but appears to have a "
2719
- "quoted string value that is non-encoded"))
2720
- if value and value[0] == "'":
2721
- token = None
2722
- else:
2723
- token, value = get_value(value)
2724
- if not param.extended or param.section_number > 0:
2725
- if not value or value[0] != "'":
2726
- appendto.append(token)
2727
- if remainder is not None:
2728
- assert not value, value
2729
- value = remainder
2730
- return param, value
2731
- param.defects.append(errors.InvalidHeaderDefect(
2732
- "Apparent initial-extended-value but attribute "
2733
- "was not marked as extended or was not initial section"))
2734
- if not value:
2735
- # Assume the charset/lang is missing and the token is the value.
2736
- param.defects.append(errors.InvalidHeaderDefect(
2737
- "Missing required charset/lang delimiters"))
2738
- appendto.append(token)
2739
- if remainder is None:
2740
- return param, value
2741
- else:
2742
- if token is not None:
2743
- for t in token:
2744
- if t.token_type == 'extended-attrtext':
2745
- break
2746
- t.token_type == 'attrtext'
2747
- appendto.append(t)
2748
- param.charset = t.value
2749
- if value[0] != "'":
2750
- raise errors.HeaderParseError("Expected RFC2231 char/lang encoding "
2751
- "delimiter, but found {!r}".format(value))
2752
- appendto.append(ValueTerminal("'", 'RFC2231 delimiter'))
2753
- value = value[1:]
2754
- if value and value[0] != "'":
2755
- token, value = get_attrtext(value)
2756
- appendto.append(token)
2757
- param.lang = token.value
2758
- if not value or value[0] != "'":
2759
- raise errors.HeaderParseError("Expected RFC2231 char/lang encoding "
2760
- "delimiter, but found {}".format(value))
2761
- appendto.append(ValueTerminal("'", 'RFC2231 delimiter'))
2762
- value = value[1:]
2763
- if remainder is not None:
2764
- # Treat the rest of value as bare quoted string content.
2765
- v = Value()
2766
- while value:
2767
- if value[0] in WSP:
2768
- token, value = get_fws(value)
2769
- else:
2770
- token, value = get_qcontent(value)
2771
- v.append(token)
2772
- token = v
2773
- else:
2774
- token, value = get_value(value)
2775
- appendto.append(token)
2776
- if remainder is not None:
2777
- assert not value, value
2778
- value = remainder
2779
- return param, value
2780
-
2781
- def parse_mime_parameters(value):
2782
- """ parameter *( ";" parameter )
2783
-
2784
- That BNF is meant to indicate this routine should only be called after
2785
- finding and handling the leading ';'. There is no corresponding rule in
2786
- the formal RFC grammar, but it is more convenient for us for the set of
2787
- parameters to be treated as its own TokenList.
2788
-
2789
- This is 'parse' routine because it consumes the reminaing value, but it
2790
- would never be called to parse a full header. Instead it is called to
2791
- parse everything after the non-parameter value of a specific MIME header.
2792
-
2793
- """
2794
- mime_parameters = MimeParameters()
2795
- while value:
2796
- try:
2797
- token, value = get_parameter(value)
2798
- mime_parameters.append(token)
2799
- except errors.HeaderParseError as err:
2800
- leader = None
2801
- if value[0] in CFWS_LEADER:
2802
- leader, value = get_cfws(value)
2803
- if not value:
2804
- mime_parameters.append(leader)
2805
- return mime_parameters
2806
- if value[0] == ';':
2807
- if leader is not None:
2808
- mime_parameters.append(leader)
2809
- mime_parameters.defects.append(errors.InvalidHeaderDefect(
2810
- "parameter entry with no content"))
2811
- else:
2812
- token, value = get_invalid_parameter(value)
2813
- if leader:
2814
- token[:0] = [leader]
2815
- mime_parameters.append(token)
2816
- mime_parameters.defects.append(errors.InvalidHeaderDefect(
2817
- "invalid parameter {!r}".format(token)))
2818
- if value and value[0] != ';':
2819
- # Junk after the otherwise valid parameter. Mark it as
2820
- # invalid, but it will have a value.
2821
- param = mime_parameters[-1]
2822
- param.token_type = 'invalid-parameter'
2823
- token, value = get_invalid_parameter(value)
2824
- param.extend(token)
2825
- mime_parameters.defects.append(errors.InvalidHeaderDefect(
2826
- "parameter with invalid trailing text {!r}".format(token)))
2827
- if value:
2828
- # Must be a ';' at this point.
2829
- mime_parameters.append(ValueTerminal(';', 'parameter-separator'))
2830
- value = value[1:]
2831
- return mime_parameters
2832
-
2833
- def _find_mime_parameters(tokenlist, value):
2834
- """Do our best to find the parameters in an invalid MIME header
2835
-
2836
- """
2837
- while value and value[0] != ';':
2838
- if value[0] in PHRASE_ENDS:
2839
- tokenlist.append(ValueTerminal(value[0], 'misplaced-special'))
2840
- value = value[1:]
2841
- else:
2842
- token, value = get_phrase(value)
2843
- tokenlist.append(token)
2844
- if not value:
2845
- return
2846
- tokenlist.append(ValueTerminal(';', 'parameter-separator'))
2847
- tokenlist.append(parse_mime_parameters(value[1:]))
2848
-
2849
- def parse_content_type_header(value):
2850
- """ maintype "/" subtype *( ";" parameter )
2851
-
2852
- The maintype and substype are tokens. Theoretically they could
2853
- be checked against the official IANA list + x-token, but we
2854
- don't do that.
2855
- """
2856
- ctype = ContentType()
2857
- recover = False
2858
- if not value:
2859
- ctype.defects.append(errors.HeaderMissingRequiredValue(
2860
- "Missing content type specification"))
2861
- return ctype
2862
- try:
2863
- token, value = get_token(value)
2864
- except errors.HeaderParseError:
2865
- ctype.defects.append(errors.InvalidHeaderDefect(
2866
- "Expected content maintype but found {!r}".format(value)))
2867
- _find_mime_parameters(ctype, value)
2868
- return ctype
2869
- ctype.append(token)
2870
- # XXX: If we really want to follow the formal grammer we should make
2871
- # mantype and subtype specialized TokenLists here. Probably not worth it.
2872
- if not value or value[0] != '/':
2873
- ctype.defects.append(errors.InvalidHeaderDefect(
2874
- "Invalid content type"))
2875
- if value:
2876
- _find_mime_parameters(ctype, value)
2877
- return ctype
2878
- ctype.maintype = token.value.strip().lower()
2879
- ctype.append(ValueTerminal('/', 'content-type-separator'))
2880
- value = value[1:]
2881
- try:
2882
- token, value = get_token(value)
2883
- except errors.HeaderParseError:
2884
- ctype.defects.append(errors.InvalidHeaderDefect(
2885
- "Expected content subtype but found {!r}".format(value)))
2886
- _find_mime_parameters(ctype, value)
2887
- return ctype
2888
- ctype.append(token)
2889
- ctype.subtype = token.value.strip().lower()
2890
- if not value:
2891
- return ctype
2892
- if value[0] != ';':
2893
- ctype.defects.append(errors.InvalidHeaderDefect(
2894
- "Only parameters are valid after content type, but "
2895
- "found {!r}".format(value)))
2896
- # The RFC requires that a syntactically invalid content-type be treated
2897
- # as text/plain. Perhaps we should postel this, but we should probably
2898
- # only do that if we were checking the subtype value against IANA.
2899
- del ctype.maintype, ctype.subtype
2900
- _find_mime_parameters(ctype, value)
2901
- return ctype
2902
- ctype.append(ValueTerminal(';', 'parameter-separator'))
2903
- ctype.append(parse_mime_parameters(value[1:]))
2904
- return ctype
2905
-
2906
- def parse_content_disposition_header(value):
2907
- """ disposition-type *( ";" parameter )
2908
-
2909
- """
2910
- disp_header = ContentDisposition()
2911
- if not value:
2912
- disp_header.defects.append(errors.HeaderMissingRequiredValue(
2913
- "Missing content disposition"))
2914
- return disp_header
2915
- try:
2916
- token, value = get_token(value)
2917
- except errors.HeaderParseError:
2918
- ctype.defects.append(errors.InvalidHeaderDefect(
2919
- "Expected content disposition but found {!r}".format(value)))
2920
- _find_mime_parameters(disp_header, value)
2921
- return disp_header
2922
- disp_header.append(token)
2923
- disp_header.content_disposition = token.value.strip().lower()
2924
- if not value:
2925
- return disp_header
2926
- if value[0] != ';':
2927
- disp_header.defects.append(errors.InvalidHeaderDefect(
2928
- "Only parameters are valid after content disposition, but "
2929
- "found {!r}".format(value)))
2930
- _find_mime_parameters(disp_header, value)
2931
- return disp_header
2932
- disp_header.append(ValueTerminal(';', 'parameter-separator'))
2933
- disp_header.append(parse_mime_parameters(value[1:]))
2934
- return disp_header
2935
-
2936
- def parse_content_transfer_encoding_header(value):
2937
- """ mechanism
2938
-
2939
- """
2940
- # We should probably validate the values, since the list is fixed.
2941
- cte_header = ContentTransferEncoding()
2942
- if not value:
2943
- cte_header.defects.append(errors.HeaderMissingRequiredValue(
2944
- "Missing content transfer encoding"))
2945
- return cte_header
2946
- try:
2947
- token, value = get_token(value)
2948
- except errors.HeaderParseError:
2949
- ctype.defects.append(errors.InvalidHeaderDefect(
2950
- "Expected content trnasfer encoding but found {!r}".format(value)))
2951
- else:
2952
- cte_header.append(token)
2953
- cte_header.cte = token.value.strip().lower()
2954
- if not value:
2955
- return cte_header
2956
- while value:
2957
- cte_header.defects.append(errors.InvalidHeaderDefect(
2958
- "Extra text after content transfer encoding"))
2959
- if value[0] in PHRASE_ENDS:
2960
- cte_header.append(ValueTerminal(value[0], 'misplaced-special'))
2961
- value = value[1:]
2962
- else:
2963
- token, value = get_phrase(value)
2964
- cte_header.append(token)
2965
- return cte_header