@pairling/runtime-darwin-x64 0.1.0 → 0.2.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (1238) hide show
  1. package/bin/pairling-connectd +0 -0
  2. package/manifest.json +9 -3
  3. package/package.json +1 -1
  4. package/python/bin/2to3-3.12 +7 -0
  5. package/python/bin/idle3.12 +7 -0
  6. package/python/bin/pip +8 -0
  7. package/python/bin/pip3 +8 -0
  8. package/python/bin/pip3.12 +8 -0
  9. package/python/bin/pydoc3.12 +7 -0
  10. package/python/bin/python3 +0 -0
  11. package/python/bin/python3.12 +0 -0
  12. package/python/bin/python3.12-config +76 -0
  13. package/python/include/python3.12/Python.h +109 -0
  14. package/python/include/python3.12/abstract.h +899 -0
  15. package/python/include/python3.12/bltinmodule.h +14 -0
  16. package/python/include/python3.12/boolobject.h +42 -0
  17. package/python/include/python3.12/bytearrayobject.h +44 -0
  18. package/python/include/python3.12/bytesobject.h +69 -0
  19. package/python/include/python3.12/ceval.h +168 -0
  20. package/python/include/python3.12/codecs.h +248 -0
  21. package/python/include/python3.12/compile.h +22 -0
  22. package/python/include/python3.12/complexobject.h +30 -0
  23. package/python/include/python3.12/cpython/abstract.h +206 -0
  24. package/python/include/python3.12/cpython/bytearrayobject.h +34 -0
  25. package/python/include/python3.12/cpython/bytesobject.h +133 -0
  26. package/python/include/python3.12/cpython/cellobject.h +44 -0
  27. package/python/include/python3.12/cpython/ceval.h +35 -0
  28. package/python/include/python3.12/cpython/classobject.h +71 -0
  29. package/python/include/python3.12/cpython/code.h +389 -0
  30. package/python/include/python3.12/cpython/compile.h +69 -0
  31. package/python/include/python3.12/cpython/complexobject.h +44 -0
  32. package/python/include/python3.12/cpython/context.h +78 -0
  33. package/python/include/python3.12/cpython/descrobject.h +64 -0
  34. package/python/include/python3.12/cpython/dictobject.h +118 -0
  35. package/python/include/python3.12/cpython/fileobject.h +19 -0
  36. package/python/include/python3.12/cpython/fileutils.h +8 -0
  37. package/python/include/python3.12/cpython/floatobject.h +27 -0
  38. package/python/include/python3.12/cpython/frameobject.h +29 -0
  39. package/python/include/python3.12/cpython/funcobject.h +190 -0
  40. package/python/include/python3.12/cpython/genobject.h +89 -0
  41. package/python/include/python3.12/cpython/import.h +46 -0
  42. package/python/include/python3.12/cpython/initconfig.h +256 -0
  43. package/python/include/python3.12/cpython/interpreteridobject.h +11 -0
  44. package/python/include/python3.12/cpython/listobject.h +47 -0
  45. package/python/include/python3.12/cpython/longintrepr.h +133 -0
  46. package/python/include/python3.12/cpython/longobject.h +100 -0
  47. package/python/include/python3.12/cpython/memoryobject.h +52 -0
  48. package/python/include/python3.12/cpython/methodobject.h +66 -0
  49. package/python/include/python3.12/cpython/modsupport.h +109 -0
  50. package/python/include/python3.12/cpython/object.h +575 -0
  51. package/python/include/python3.12/cpython/objimpl.h +95 -0
  52. package/python/include/python3.12/cpython/odictobject.h +43 -0
  53. package/python/include/python3.12/cpython/picklebufobject.h +31 -0
  54. package/python/include/python3.12/cpython/pthread_stubs.h +88 -0
  55. package/python/include/python3.12/cpython/pyctype.h +39 -0
  56. package/python/include/python3.12/cpython/pydebug.h +38 -0
  57. package/python/include/python3.12/cpython/pyerrors.h +178 -0
  58. package/python/include/python3.12/cpython/pyfpe.h +15 -0
  59. package/python/include/python3.12/cpython/pyframe.h +35 -0
  60. package/python/include/python3.12/cpython/pylifecycle.h +111 -0
  61. package/python/include/python3.12/cpython/pymem.h +98 -0
  62. package/python/include/python3.12/cpython/pystate.h +456 -0
  63. package/python/include/python3.12/cpython/pythonrun.h +121 -0
  64. package/python/include/python3.12/cpython/pythread.h +42 -0
  65. package/python/include/python3.12/cpython/pytime.h +331 -0
  66. package/python/include/python3.12/cpython/setobject.h +72 -0
  67. package/python/include/python3.12/cpython/sysmodule.h +16 -0
  68. package/python/include/python3.12/cpython/traceback.h +16 -0
  69. package/python/include/python3.12/cpython/tupleobject.h +39 -0
  70. package/python/include/python3.12/cpython/unicodeobject.h +976 -0
  71. package/python/include/python3.12/cpython/warnings.h +20 -0
  72. package/python/include/python3.12/cpython/weakrefobject.h +56 -0
  73. package/python/include/python3.12/datetime.h +267 -0
  74. package/python/include/python3.12/descrobject.h +100 -0
  75. package/python/include/python3.12/dictobject.h +97 -0
  76. package/python/include/python3.12/dynamic_annotations.h +499 -0
  77. package/python/include/python3.12/enumobject.h +17 -0
  78. package/python/include/python3.12/errcode.h +38 -0
  79. package/python/include/python3.12/exports.h +36 -0
  80. package/python/include/python3.12/fileobject.h +49 -0
  81. package/python/include/python3.12/fileutils.h +26 -0
  82. package/python/include/python3.12/floatobject.h +54 -0
  83. package/python/include/python3.12/frameobject.h +20 -0
  84. package/python/include/python3.12/genericaliasobject.h +14 -0
  85. package/python/include/python3.12/import.h +98 -0
  86. package/python/include/python3.12/internal/pycore_abstract.h +25 -0
  87. package/python/include/python3.12/internal/pycore_asdl.h +112 -0
  88. package/python/include/python3.12/internal/pycore_ast.h +922 -0
  89. package/python/include/python3.12/internal/pycore_ast_state.h +265 -0
  90. package/python/include/python3.12/internal/pycore_atexit.h +57 -0
  91. package/python/include/python3.12/internal/pycore_atomic.h +557 -0
  92. package/python/include/python3.12/internal/pycore_atomic_funcs.h +94 -0
  93. package/python/include/python3.12/internal/pycore_bitutils.h +186 -0
  94. package/python/include/python3.12/internal/pycore_blocks_output_buffer.h +317 -0
  95. package/python/include/python3.12/internal/pycore_bytes_methods.h +73 -0
  96. package/python/include/python3.12/internal/pycore_bytesobject.h +47 -0
  97. package/python/include/python3.12/internal/pycore_call.h +133 -0
  98. package/python/include/python3.12/internal/pycore_ceval.h +164 -0
  99. package/python/include/python3.12/internal/pycore_ceval_state.h +103 -0
  100. package/python/include/python3.12/internal/pycore_code.h +496 -0
  101. package/python/include/python3.12/internal/pycore_compile.h +118 -0
  102. package/python/include/python3.12/internal/pycore_condvar.h +99 -0
  103. package/python/include/python3.12/internal/pycore_context.h +71 -0
  104. package/python/include/python3.12/internal/pycore_descrobject.h +26 -0
  105. package/python/include/python3.12/internal/pycore_dict.h +199 -0
  106. package/python/include/python3.12/internal/pycore_dict_state.h +50 -0
  107. package/python/include/python3.12/internal/pycore_dtoa.h +69 -0
  108. package/python/include/python3.12/internal/pycore_emscripten_signal.h +25 -0
  109. package/python/include/python3.12/internal/pycore_exceptions.h +37 -0
  110. package/python/include/python3.12/internal/pycore_faulthandler.h +99 -0
  111. package/python/include/python3.12/internal/pycore_fileutils.h +292 -0
  112. package/python/include/python3.12/internal/pycore_fileutils_windows.h +98 -0
  113. package/python/include/python3.12/internal/pycore_floatobject.h +71 -0
  114. package/python/include/python3.12/internal/pycore_flowgraph.h +120 -0
  115. package/python/include/python3.12/internal/pycore_format.h +27 -0
  116. package/python/include/python3.12/internal/pycore_frame.h +283 -0
  117. package/python/include/python3.12/internal/pycore_function.h +26 -0
  118. package/python/include/python3.12/internal/pycore_gc.h +211 -0
  119. package/python/include/python3.12/internal/pycore_genobject.h +49 -0
  120. package/python/include/python3.12/internal/pycore_getopt.h +22 -0
  121. package/python/include/python3.12/internal/pycore_gil.h +50 -0
  122. package/python/include/python3.12/internal/pycore_global_objects.h +105 -0
  123. package/python/include/python3.12/internal/pycore_global_objects_fini_generated.h +1517 -0
  124. package/python/include/python3.12/internal/pycore_global_strings.h +777 -0
  125. package/python/include/python3.12/internal/pycore_hamt.h +134 -0
  126. package/python/include/python3.12/internal/pycore_hashtable.h +149 -0
  127. package/python/include/python3.12/internal/pycore_import.h +183 -0
  128. package/python/include/python3.12/internal/pycore_initconfig.h +179 -0
  129. package/python/include/python3.12/internal/pycore_instruments.h +106 -0
  130. package/python/include/python3.12/internal/pycore_interp.h +275 -0
  131. package/python/include/python3.12/internal/pycore_intrinsics.h +32 -0
  132. package/python/include/python3.12/internal/pycore_list.h +83 -0
  133. package/python/include/python3.12/internal/pycore_long.h +258 -0
  134. package/python/include/python3.12/internal/pycore_memoryobject.h +18 -0
  135. package/python/include/python3.12/internal/pycore_moduleobject.h +45 -0
  136. package/python/include/python3.12/internal/pycore_namespace.h +20 -0
  137. package/python/include/python3.12/internal/pycore_object.h +455 -0
  138. package/python/include/python3.12/internal/pycore_object_state.h +42 -0
  139. package/python/include/python3.12/internal/pycore_obmalloc.h +700 -0
  140. package/python/include/python3.12/internal/pycore_obmalloc_init.h +73 -0
  141. package/python/include/python3.12/internal/pycore_opcode.h +587 -0
  142. package/python/include/python3.12/internal/pycore_opcode_utils.h +92 -0
  143. package/python/include/python3.12/internal/pycore_parser.h +66 -0
  144. package/python/include/python3.12/internal/pycore_pathconfig.h +24 -0
  145. package/python/include/python3.12/internal/pycore_pyarena.h +64 -0
  146. package/python/include/python3.12/internal/pycore_pyerrors.h +129 -0
  147. package/python/include/python3.12/internal/pycore_pyhash.h +40 -0
  148. package/python/include/python3.12/internal/pycore_pylifecycle.h +99 -0
  149. package/python/include/python3.12/internal/pycore_pymath.h +205 -0
  150. package/python/include/python3.12/internal/pycore_pymem.h +98 -0
  151. package/python/include/python3.12/internal/pycore_pymem_init.h +85 -0
  152. package/python/include/python3.12/internal/pycore_pystate.h +180 -0
  153. package/python/include/python3.12/internal/pycore_pythread.h +81 -0
  154. package/python/include/python3.12/internal/pycore_range.h +21 -0
  155. package/python/include/python3.12/internal/pycore_runtime.h +235 -0
  156. package/python/include/python3.12/internal/pycore_runtime_init.h +188 -0
  157. package/python/include/python3.12/internal/pycore_runtime_init_generated.h +1511 -0
  158. package/python/include/python3.12/internal/pycore_signal.h +98 -0
  159. package/python/include/python3.12/internal/pycore_sliceobject.h +22 -0
  160. package/python/include/python3.12/internal/pycore_strhex.h +36 -0
  161. package/python/include/python3.12/internal/pycore_structseq.h +39 -0
  162. package/python/include/python3.12/internal/pycore_symtable.h +160 -0
  163. package/python/include/python3.12/internal/pycore_sysmodule.h +34 -0
  164. package/python/include/python3.12/internal/pycore_time.h +25 -0
  165. package/python/include/python3.12/internal/pycore_token.h +108 -0
  166. package/python/include/python3.12/internal/pycore_traceback.h +101 -0
  167. package/python/include/python3.12/internal/pycore_tracemalloc.h +123 -0
  168. package/python/include/python3.12/internal/pycore_tuple.h +79 -0
  169. package/python/include/python3.12/internal/pycore_typeobject.h +151 -0
  170. package/python/include/python3.12/internal/pycore_typevarobject.h +24 -0
  171. package/python/include/python3.12/internal/pycore_ucnhash.h +34 -0
  172. package/python/include/python3.12/internal/pycore_unicodeobject.h +86 -0
  173. package/python/include/python3.12/internal/pycore_unicodeobject_generated.h +2832 -0
  174. package/python/include/python3.12/internal/pycore_unionobject.h +23 -0
  175. package/python/include/python3.12/internal/pycore_warnings.h +29 -0
  176. package/python/include/python3.12/interpreteridobject.h +17 -0
  177. package/python/include/python3.12/intrcheck.h +30 -0
  178. package/python/include/python3.12/iterobject.h +27 -0
  179. package/python/include/python3.12/listobject.h +52 -0
  180. package/python/include/python3.12/longobject.h +108 -0
  181. package/python/include/python3.12/marshal.h +31 -0
  182. package/python/include/python3.12/memoryobject.h +34 -0
  183. package/python/include/python3.12/methodobject.h +132 -0
  184. package/python/include/python3.12/modsupport.h +168 -0
  185. package/python/include/python3.12/moduleobject.h +119 -0
  186. package/python/include/python3.12/object.h +993 -0
  187. package/python/include/python3.12/objimpl.h +234 -0
  188. package/python/include/python3.12/opcode.h +271 -0
  189. package/python/include/python3.12/osdefs.h +51 -0
  190. package/python/include/python3.12/osmodule.h +17 -0
  191. package/python/include/python3.12/patchlevel.h +35 -0
  192. package/python/include/python3.12/py_curses.h +99 -0
  193. package/python/include/python3.12/pybuffer.h +145 -0
  194. package/python/include/python3.12/pycapsule.h +59 -0
  195. package/python/include/python3.12/pyconfig.h +1943 -0
  196. package/python/include/python3.12/pydtrace.h +59 -0
  197. package/python/include/python3.12/pyerrors.h +337 -0
  198. package/python/include/python3.12/pyexpat.h +62 -0
  199. package/python/include/python3.12/pyframe.h +26 -0
  200. package/python/include/python3.12/pyhash.h +144 -0
  201. package/python/include/python3.12/pylifecycle.h +78 -0
  202. package/python/include/python3.12/pymacconfig.h +99 -0
  203. package/python/include/python3.12/pymacro.h +172 -0
  204. package/python/include/python3.12/pymath.h +62 -0
  205. package/python/include/python3.12/pymem.h +104 -0
  206. package/python/include/python3.12/pyport.h +782 -0
  207. package/python/include/python3.12/pystate.h +132 -0
  208. package/python/include/python3.12/pystats.h +110 -0
  209. package/python/include/python3.12/pystrcmp.h +23 -0
  210. package/python/include/python3.12/pystrtod.h +46 -0
  211. package/python/include/python3.12/pythonrun.h +49 -0
  212. package/python/include/python3.12/pythread.h +135 -0
  213. package/python/include/python3.12/pytypedefs.h +30 -0
  214. package/python/include/python3.12/rangeobject.h +27 -0
  215. package/python/include/python3.12/setobject.h +49 -0
  216. package/python/include/python3.12/sliceobject.h +65 -0
  217. package/python/include/python3.12/structmember.h +56 -0
  218. package/python/include/python3.12/structseq.h +49 -0
  219. package/python/include/python3.12/sysmodule.h +54 -0
  220. package/python/include/python3.12/traceback.h +26 -0
  221. package/python/include/python3.12/tracemalloc.h +77 -0
  222. package/python/include/python3.12/tupleobject.h +46 -0
  223. package/python/include/python3.12/typeslots.h +88 -0
  224. package/python/include/python3.12/unicodeobject.h +1020 -0
  225. package/python/include/python3.12/warnings.h +45 -0
  226. package/python/include/python3.12/weakrefobject.h +42 -0
  227. package/python/lib/libpython3.12.dylib +0 -0
  228. package/python/lib/python3.12/LICENSE.txt +279 -0
  229. package/python/lib/python3.12/__future__.py +147 -0
  230. package/python/lib/python3.12/__hello__.py +16 -0
  231. package/python/lib/python3.12/__phello__/__init__.py +7 -0
  232. package/python/lib/python3.12/__phello__/spam.py +7 -0
  233. package/python/lib/python3.12/_aix_support.py +108 -0
  234. package/python/lib/python3.12/_collections_abc.py +1173 -0
  235. package/python/lib/python3.12/_compat_pickle.py +252 -0
  236. package/python/lib/python3.12/_compression.py +162 -0
  237. package/python/lib/python3.12/_markupbase.py +396 -0
  238. package/python/lib/python3.12/_osx_support.py +579 -0
  239. package/python/lib/python3.12/_py_abc.py +147 -0
  240. package/python/lib/python3.12/_pydatetime.py +2643 -0
  241. package/python/lib/python3.12/_pydecimal.py +6339 -0
  242. package/python/lib/python3.12/_pyio.py +2698 -0
  243. package/python/lib/python3.12/_pylong.py +329 -0
  244. package/python/lib/python3.12/_sitebuiltins.py +103 -0
  245. package/python/lib/python3.12/_strptime.py +664 -0
  246. package/python/lib/python3.12/_sysconfigdata__darwin_darwin.py +984 -0
  247. package/python/lib/python3.12/_threading_local.py +242 -0
  248. package/python/lib/python3.12/_weakrefset.py +205 -0
  249. package/python/lib/python3.12/abc.py +188 -0
  250. package/python/lib/python3.12/aifc.py +984 -0
  251. package/python/lib/python3.12/antigravity.py +17 -0
  252. package/python/lib/python3.12/argparse.py +2650 -0
  253. package/python/lib/python3.12/ast.py +1840 -0
  254. package/python/lib/python3.12/asyncio/__init__.py +47 -0
  255. package/python/lib/python3.12/asyncio/__main__.py +128 -0
  256. package/python/lib/python3.12/asyncio/base_events.py +2024 -0
  257. package/python/lib/python3.12/asyncio/base_futures.py +67 -0
  258. package/python/lib/python3.12/asyncio/base_subprocess.py +285 -0
  259. package/python/lib/python3.12/asyncio/base_tasks.py +94 -0
  260. package/python/lib/python3.12/asyncio/constants.py +41 -0
  261. package/python/lib/python3.12/asyncio/coroutines.py +109 -0
  262. package/python/lib/python3.12/asyncio/events.py +868 -0
  263. package/python/lib/python3.12/asyncio/exceptions.py +62 -0
  264. package/python/lib/python3.12/asyncio/format_helpers.py +76 -0
  265. package/python/lib/python3.12/asyncio/futures.py +430 -0
  266. package/python/lib/python3.12/asyncio/locks.py +586 -0
  267. package/python/lib/python3.12/asyncio/log.py +7 -0
  268. package/python/lib/python3.12/asyncio/mixins.py +21 -0
  269. package/python/lib/python3.12/asyncio/proactor_events.py +897 -0
  270. package/python/lib/python3.12/asyncio/protocols.py +216 -0
  271. package/python/lib/python3.12/asyncio/queues.py +244 -0
  272. package/python/lib/python3.12/asyncio/runners.py +216 -0
  273. package/python/lib/python3.12/asyncio/selector_events.py +1324 -0
  274. package/python/lib/python3.12/asyncio/sslproto.py +929 -0
  275. package/python/lib/python3.12/asyncio/staggered.py +174 -0
  276. package/python/lib/python3.12/asyncio/streams.py +770 -0
  277. package/python/lib/python3.12/asyncio/subprocess.py +229 -0
  278. package/python/lib/python3.12/asyncio/taskgroups.py +268 -0
  279. package/python/lib/python3.12/asyncio/tasks.py +1065 -0
  280. package/python/lib/python3.12/asyncio/threads.py +25 -0
  281. package/python/lib/python3.12/asyncio/timeouts.py +168 -0
  282. package/python/lib/python3.12/asyncio/transports.py +335 -0
  283. package/python/lib/python3.12/asyncio/trsock.py +98 -0
  284. package/python/lib/python3.12/asyncio/unix_events.py +1500 -0
  285. package/python/lib/python3.12/asyncio/windows_events.py +901 -0
  286. package/python/lib/python3.12/asyncio/windows_utils.py +173 -0
  287. package/python/lib/python3.12/base64.py +586 -0
  288. package/python/lib/python3.12/bdb.py +920 -0
  289. package/python/lib/python3.12/bisect.py +118 -0
  290. package/python/lib/python3.12/bz2.py +344 -0
  291. package/python/lib/python3.12/cProfile.py +195 -0
  292. package/python/lib/python3.12/calendar.py +808 -0
  293. package/python/lib/python3.12/cgi.py +1014 -0
  294. package/python/lib/python3.12/cgitb.py +332 -0
  295. package/python/lib/python3.12/chunk.py +173 -0
  296. package/python/lib/python3.12/cmd.py +401 -0
  297. package/python/lib/python3.12/code.py +324 -0
  298. package/python/lib/python3.12/codecs.py +1129 -0
  299. package/python/lib/python3.12/codeop.py +161 -0
  300. package/python/lib/python3.12/collections/__init__.py +1592 -0
  301. package/python/lib/python3.12/collections/abc.py +3 -0
  302. package/python/lib/python3.12/colorsys.py +166 -0
  303. package/python/lib/python3.12/compileall.py +469 -0
  304. package/python/lib/python3.12/concurrent/__init__.py +1 -0
  305. package/python/lib/python3.12/concurrent/futures/__init__.py +54 -0
  306. package/python/lib/python3.12/concurrent/futures/_base.py +654 -0
  307. package/python/lib/python3.12/concurrent/futures/process.py +876 -0
  308. package/python/lib/python3.12/concurrent/futures/thread.py +240 -0
  309. package/python/lib/python3.12/config-3.12-darwin/Makefile +3224 -0
  310. package/python/lib/python3.12/config-3.12-darwin/Setup +303 -0
  311. package/python/lib/python3.12/config-3.12-darwin/Setup.bootstrap +36 -0
  312. package/python/lib/python3.12/config-3.12-darwin/Setup.local +90 -0
  313. package/python/lib/python3.12/config-3.12-darwin/Setup.stdlib +183 -0
  314. package/python/lib/python3.12/config-3.12-darwin/config.c +246 -0
  315. package/python/lib/python3.12/config-3.12-darwin/config.c.in +71 -0
  316. package/python/lib/python3.12/config-3.12-darwin/install-sh +541 -0
  317. package/python/lib/python3.12/config-3.12-darwin/makesetup +353 -0
  318. package/python/lib/python3.12/config-3.12-darwin/python-config.py +76 -0
  319. package/python/lib/python3.12/config-3.12-darwin/python.o +0 -0
  320. package/python/lib/python3.12/configparser.py +1333 -0
  321. package/python/lib/python3.12/contextlib.py +800 -0
  322. package/python/lib/python3.12/contextvars.py +4 -0
  323. package/python/lib/python3.12/copy.py +292 -0
  324. package/python/lib/python3.12/copyreg.py +217 -0
  325. package/python/lib/python3.12/crypt.py +124 -0
  326. package/python/lib/python3.12/csv.py +451 -0
  327. package/python/lib/python3.12/ctypes/__init__.py +582 -0
  328. package/python/lib/python3.12/ctypes/_aix.py +327 -0
  329. package/python/lib/python3.12/ctypes/_endian.py +78 -0
  330. package/python/lib/python3.12/ctypes/macholib/README.ctypes +7 -0
  331. package/python/lib/python3.12/ctypes/macholib/__init__.py +9 -0
  332. package/python/lib/python3.12/ctypes/macholib/dyld.py +165 -0
  333. package/python/lib/python3.12/ctypes/macholib/dylib.py +42 -0
  334. package/python/lib/python3.12/ctypes/macholib/fetch_macholib +2 -0
  335. package/python/lib/python3.12/ctypes/macholib/fetch_macholib.bat +1 -0
  336. package/python/lib/python3.12/ctypes/macholib/framework.py +42 -0
  337. package/python/lib/python3.12/ctypes/util.py +379 -0
  338. package/python/lib/python3.12/ctypes/wintypes.py +202 -0
  339. package/python/lib/python3.12/curses/__init__.py +101 -0
  340. package/python/lib/python3.12/curses/ascii.py +99 -0
  341. package/python/lib/python3.12/curses/has_key.py +192 -0
  342. package/python/lib/python3.12/curses/panel.py +6 -0
  343. package/python/lib/python3.12/curses/textpad.py +204 -0
  344. package/python/lib/python3.12/dataclasses.py +1588 -0
  345. package/python/lib/python3.12/datetime.py +9 -0
  346. package/python/lib/python3.12/dbm/__init__.py +190 -0
  347. package/python/lib/python3.12/dbm/dumb.py +317 -0
  348. package/python/lib/python3.12/dbm/gnu.py +3 -0
  349. package/python/lib/python3.12/dbm/ndbm.py +3 -0
  350. package/python/lib/python3.12/decimal.py +108 -0
  351. package/python/lib/python3.12/difflib.py +2056 -0
  352. package/python/lib/python3.12/dis.py +805 -0
  353. package/python/lib/python3.12/doctest.py +2845 -0
  354. package/python/lib/python3.12/email/__init__.py +61 -0
  355. package/python/lib/python3.12/email/_encoded_words.py +233 -0
  356. package/python/lib/python3.12/email/_header_value_parser.py +3108 -0
  357. package/python/lib/python3.12/email/_parseaddr.py +557 -0
  358. package/python/lib/python3.12/email/_policybase.py +382 -0
  359. package/python/lib/python3.12/email/architecture.rst +216 -0
  360. package/python/lib/python3.12/email/base64mime.py +115 -0
  361. package/python/lib/python3.12/email/charset.py +398 -0
  362. package/python/lib/python3.12/email/contentmanager.py +251 -0
  363. package/python/lib/python3.12/email/encoders.py +65 -0
  364. package/python/lib/python3.12/email/errors.py +117 -0
  365. package/python/lib/python3.12/email/feedparser.py +534 -0
  366. package/python/lib/python3.12/email/generator.py +530 -0
  367. package/python/lib/python3.12/email/header.py +573 -0
  368. package/python/lib/python3.12/email/headerregistry.py +604 -0
  369. package/python/lib/python3.12/email/iterators.py +68 -0
  370. package/python/lib/python3.12/email/message.py +1215 -0
  371. package/python/lib/python3.12/email/mime/__init__.py +0 -0
  372. package/python/lib/python3.12/email/mime/application.py +37 -0
  373. package/python/lib/python3.12/email/mime/audio.py +100 -0
  374. package/python/lib/python3.12/email/mime/base.py +29 -0
  375. package/python/lib/python3.12/email/mime/image.py +152 -0
  376. package/python/lib/python3.12/email/mime/message.py +33 -0
  377. package/python/lib/python3.12/email/mime/multipart.py +47 -0
  378. package/python/lib/python3.12/email/mime/nonmultipart.py +21 -0
  379. package/python/lib/python3.12/email/mime/text.py +40 -0
  380. package/python/lib/python3.12/email/parser.py +127 -0
  381. package/python/lib/python3.12/email/policy.py +232 -0
  382. package/python/lib/python3.12/email/quoprimime.py +300 -0
  383. package/python/lib/python3.12/email/utils.py +486 -0
  384. package/python/lib/python3.12/encodings/__init__.py +174 -0
  385. package/python/lib/python3.12/encodings/aliases.py +551 -0
  386. package/python/lib/python3.12/encodings/ascii.py +50 -0
  387. package/python/lib/python3.12/encodings/base64_codec.py +55 -0
  388. package/python/lib/python3.12/encodings/big5.py +39 -0
  389. package/python/lib/python3.12/encodings/big5hkscs.py +39 -0
  390. package/python/lib/python3.12/encodings/bz2_codec.py +78 -0
  391. package/python/lib/python3.12/encodings/charmap.py +69 -0
  392. package/python/lib/python3.12/encodings/cp037.py +307 -0
  393. package/python/lib/python3.12/encodings/cp1006.py +307 -0
  394. package/python/lib/python3.12/encodings/cp1026.py +307 -0
  395. package/python/lib/python3.12/encodings/cp1125.py +698 -0
  396. package/python/lib/python3.12/encodings/cp1140.py +307 -0
  397. package/python/lib/python3.12/encodings/cp1250.py +307 -0
  398. package/python/lib/python3.12/encodings/cp1251.py +307 -0
  399. package/python/lib/python3.12/encodings/cp1252.py +307 -0
  400. package/python/lib/python3.12/encodings/cp1253.py +307 -0
  401. package/python/lib/python3.12/encodings/cp1254.py +307 -0
  402. package/python/lib/python3.12/encodings/cp1255.py +307 -0
  403. package/python/lib/python3.12/encodings/cp1256.py +307 -0
  404. package/python/lib/python3.12/encodings/cp1257.py +307 -0
  405. package/python/lib/python3.12/encodings/cp1258.py +307 -0
  406. package/python/lib/python3.12/encodings/cp273.py +307 -0
  407. package/python/lib/python3.12/encodings/cp424.py +307 -0
  408. package/python/lib/python3.12/encodings/cp437.py +698 -0
  409. package/python/lib/python3.12/encodings/cp500.py +307 -0
  410. package/python/lib/python3.12/encodings/cp720.py +309 -0
  411. package/python/lib/python3.12/encodings/cp737.py +698 -0
  412. package/python/lib/python3.12/encodings/cp775.py +697 -0
  413. package/python/lib/python3.12/encodings/cp850.py +698 -0
  414. package/python/lib/python3.12/encodings/cp852.py +698 -0
  415. package/python/lib/python3.12/encodings/cp855.py +698 -0
  416. package/python/lib/python3.12/encodings/cp856.py +307 -0
  417. package/python/lib/python3.12/encodings/cp857.py +694 -0
  418. package/python/lib/python3.12/encodings/cp858.py +698 -0
  419. package/python/lib/python3.12/encodings/cp860.py +698 -0
  420. package/python/lib/python3.12/encodings/cp861.py +698 -0
  421. package/python/lib/python3.12/encodings/cp862.py +698 -0
  422. package/python/lib/python3.12/encodings/cp863.py +698 -0
  423. package/python/lib/python3.12/encodings/cp864.py +690 -0
  424. package/python/lib/python3.12/encodings/cp865.py +698 -0
  425. package/python/lib/python3.12/encodings/cp866.py +698 -0
  426. package/python/lib/python3.12/encodings/cp869.py +689 -0
  427. package/python/lib/python3.12/encodings/cp874.py +307 -0
  428. package/python/lib/python3.12/encodings/cp875.py +307 -0
  429. package/python/lib/python3.12/encodings/cp932.py +39 -0
  430. package/python/lib/python3.12/encodings/cp949.py +39 -0
  431. package/python/lib/python3.12/encodings/cp950.py +39 -0
  432. package/python/lib/python3.12/encodings/euc_jis_2004.py +39 -0
  433. package/python/lib/python3.12/encodings/euc_jisx0213.py +39 -0
  434. package/python/lib/python3.12/encodings/euc_jp.py +39 -0
  435. package/python/lib/python3.12/encodings/euc_kr.py +39 -0
  436. package/python/lib/python3.12/encodings/gb18030.py +39 -0
  437. package/python/lib/python3.12/encodings/gb2312.py +39 -0
  438. package/python/lib/python3.12/encodings/gbk.py +39 -0
  439. package/python/lib/python3.12/encodings/hex_codec.py +55 -0
  440. package/python/lib/python3.12/encodings/hp_roman8.py +314 -0
  441. package/python/lib/python3.12/encodings/hz.py +39 -0
  442. package/python/lib/python3.12/encodings/idna.py +317 -0
  443. package/python/lib/python3.12/encodings/iso2022_jp.py +39 -0
  444. package/python/lib/python3.12/encodings/iso2022_jp_1.py +39 -0
  445. package/python/lib/python3.12/encodings/iso2022_jp_2.py +39 -0
  446. package/python/lib/python3.12/encodings/iso2022_jp_2004.py +39 -0
  447. package/python/lib/python3.12/encodings/iso2022_jp_3.py +39 -0
  448. package/python/lib/python3.12/encodings/iso2022_jp_ext.py +39 -0
  449. package/python/lib/python3.12/encodings/iso2022_kr.py +39 -0
  450. package/python/lib/python3.12/encodings/iso8859_1.py +307 -0
  451. package/python/lib/python3.12/encodings/iso8859_10.py +307 -0
  452. package/python/lib/python3.12/encodings/iso8859_11.py +307 -0
  453. package/python/lib/python3.12/encodings/iso8859_13.py +307 -0
  454. package/python/lib/python3.12/encodings/iso8859_14.py +307 -0
  455. package/python/lib/python3.12/encodings/iso8859_15.py +307 -0
  456. package/python/lib/python3.12/encodings/iso8859_16.py +307 -0
  457. package/python/lib/python3.12/encodings/iso8859_2.py +307 -0
  458. package/python/lib/python3.12/encodings/iso8859_3.py +307 -0
  459. package/python/lib/python3.12/encodings/iso8859_4.py +307 -0
  460. package/python/lib/python3.12/encodings/iso8859_5.py +307 -0
  461. package/python/lib/python3.12/encodings/iso8859_6.py +307 -0
  462. package/python/lib/python3.12/encodings/iso8859_7.py +307 -0
  463. package/python/lib/python3.12/encodings/iso8859_8.py +307 -0
  464. package/python/lib/python3.12/encodings/iso8859_9.py +307 -0
  465. package/python/lib/python3.12/encodings/johab.py +39 -0
  466. package/python/lib/python3.12/encodings/koi8_r.py +307 -0
  467. package/python/lib/python3.12/encodings/koi8_t.py +308 -0
  468. package/python/lib/python3.12/encodings/koi8_u.py +307 -0
  469. package/python/lib/python3.12/encodings/kz1048.py +307 -0
  470. package/python/lib/python3.12/encodings/latin_1.py +50 -0
  471. package/python/lib/python3.12/encodings/mac_arabic.py +698 -0
  472. package/python/lib/python3.12/encodings/mac_croatian.py +307 -0
  473. package/python/lib/python3.12/encodings/mac_cyrillic.py +307 -0
  474. package/python/lib/python3.12/encodings/mac_farsi.py +307 -0
  475. package/python/lib/python3.12/encodings/mac_greek.py +307 -0
  476. package/python/lib/python3.12/encodings/mac_iceland.py +307 -0
  477. package/python/lib/python3.12/encodings/mac_latin2.py +312 -0
  478. package/python/lib/python3.12/encodings/mac_roman.py +307 -0
  479. package/python/lib/python3.12/encodings/mac_romanian.py +307 -0
  480. package/python/lib/python3.12/encodings/mac_turkish.py +307 -0
  481. package/python/lib/python3.12/encodings/mbcs.py +47 -0
  482. package/python/lib/python3.12/encodings/oem.py +41 -0
  483. package/python/lib/python3.12/encodings/palmos.py +308 -0
  484. package/python/lib/python3.12/encodings/ptcp154.py +312 -0
  485. package/python/lib/python3.12/encodings/punycode.py +237 -0
  486. package/python/lib/python3.12/encodings/quopri_codec.py +56 -0
  487. package/python/lib/python3.12/encodings/raw_unicode_escape.py +46 -0
  488. package/python/lib/python3.12/encodings/rot_13.py +113 -0
  489. package/python/lib/python3.12/encodings/shift_jis.py +39 -0
  490. package/python/lib/python3.12/encodings/shift_jis_2004.py +39 -0
  491. package/python/lib/python3.12/encodings/shift_jisx0213.py +39 -0
  492. package/python/lib/python3.12/encodings/tis_620.py +307 -0
  493. package/python/lib/python3.12/encodings/undefined.py +49 -0
  494. package/python/lib/python3.12/encodings/unicode_escape.py +46 -0
  495. package/python/lib/python3.12/encodings/utf_16.py +155 -0
  496. package/python/lib/python3.12/encodings/utf_16_be.py +42 -0
  497. package/python/lib/python3.12/encodings/utf_16_le.py +42 -0
  498. package/python/lib/python3.12/encodings/utf_32.py +150 -0
  499. package/python/lib/python3.12/encodings/utf_32_be.py +37 -0
  500. package/python/lib/python3.12/encodings/utf_32_le.py +37 -0
  501. package/python/lib/python3.12/encodings/utf_7.py +38 -0
  502. package/python/lib/python3.12/encodings/utf_8.py +42 -0
  503. package/python/lib/python3.12/encodings/utf_8_sig.py +130 -0
  504. package/python/lib/python3.12/encodings/uu_codec.py +103 -0
  505. package/python/lib/python3.12/encodings/zlib_codec.py +77 -0
  506. package/python/lib/python3.12/ensurepip/__init__.py +291 -0
  507. package/python/lib/python3.12/ensurepip/__main__.py +5 -0
  508. package/python/lib/python3.12/ensurepip/_bundled/pip-25.0.1-py3-none-any.whl +0 -0
  509. package/python/lib/python3.12/ensurepip/_uninstall.py +31 -0
  510. package/python/lib/python3.12/enum.py +2108 -0
  511. package/python/lib/python3.12/filecmp.py +315 -0
  512. package/python/lib/python3.12/fileinput.py +442 -0
  513. package/python/lib/python3.12/fnmatch.py +185 -0
  514. package/python/lib/python3.12/fractions.py +990 -0
  515. package/python/lib/python3.12/ftplib.py +966 -0
  516. package/python/lib/python3.12/functools.py +1009 -0
  517. package/python/lib/python3.12/genericpath.py +176 -0
  518. package/python/lib/python3.12/getopt.py +215 -0
  519. package/python/lib/python3.12/getpass.py +185 -0
  520. package/python/lib/python3.12/gettext.py +646 -0
  521. package/python/lib/python3.12/glob.py +252 -0
  522. package/python/lib/python3.12/graphlib.py +250 -0
  523. package/python/lib/python3.12/gzip.py +711 -0
  524. package/python/lib/python3.12/hashlib.py +253 -0
  525. package/python/lib/python3.12/heapq.py +603 -0
  526. package/python/lib/python3.12/hmac.py +219 -0
  527. package/python/lib/python3.12/html/__init__.py +132 -0
  528. package/python/lib/python3.12/html/entities.py +2513 -0
  529. package/python/lib/python3.12/html/parser.py +535 -0
  530. package/python/lib/python3.12/http/__init__.py +200 -0
  531. package/python/lib/python3.12/http/client.py +1570 -0
  532. package/python/lib/python3.12/http/cookiejar.py +2121 -0
  533. package/python/lib/python3.12/http/cookies.py +615 -0
  534. package/python/lib/python3.12/http/server.py +1335 -0
  535. package/python/lib/python3.12/imaplib.py +1641 -0
  536. package/python/lib/python3.12/imghdr.py +180 -0
  537. package/python/lib/python3.12/importlib/__init__.py +138 -0
  538. package/python/lib/python3.12/importlib/_abc.py +39 -0
  539. package/python/lib/python3.12/importlib/_bootstrap.py +1551 -0
  540. package/python/lib/python3.12/importlib/_bootstrap_external.py +1749 -0
  541. package/python/lib/python3.12/importlib/abc.py +239 -0
  542. package/python/lib/python3.12/importlib/machinery.py +20 -0
  543. package/python/lib/python3.12/importlib/metadata/__init__.py +966 -0
  544. package/python/lib/python3.12/importlib/metadata/_adapters.py +89 -0
  545. package/python/lib/python3.12/importlib/metadata/_collections.py +30 -0
  546. package/python/lib/python3.12/importlib/metadata/_functools.py +104 -0
  547. package/python/lib/python3.12/importlib/metadata/_itertools.py +73 -0
  548. package/python/lib/python3.12/importlib/metadata/_meta.py +63 -0
  549. package/python/lib/python3.12/importlib/metadata/_text.py +99 -0
  550. package/python/lib/python3.12/importlib/readers.py +12 -0
  551. package/python/lib/python3.12/importlib/resources/__init__.py +38 -0
  552. package/python/lib/python3.12/importlib/resources/_adapters.py +168 -0
  553. package/python/lib/python3.12/importlib/resources/_common.py +208 -0
  554. package/python/lib/python3.12/importlib/resources/_itertools.py +38 -0
  555. package/python/lib/python3.12/importlib/resources/_legacy.py +98 -0
  556. package/python/lib/python3.12/importlib/resources/abc.py +173 -0
  557. package/python/lib/python3.12/importlib/resources/readers.py +146 -0
  558. package/python/lib/python3.12/importlib/resources/simple.py +106 -0
  559. package/python/lib/python3.12/importlib/simple.py +14 -0
  560. package/python/lib/python3.12/importlib/util.py +270 -0
  561. package/python/lib/python3.12/inspect.py +3433 -0
  562. package/python/lib/python3.12/io.py +99 -0
  563. package/python/lib/python3.12/ipaddress.py +2430 -0
  564. package/python/lib/python3.12/json/__init__.py +359 -0
  565. package/python/lib/python3.12/json/decoder.py +357 -0
  566. package/python/lib/python3.12/json/encoder.py +443 -0
  567. package/python/lib/python3.12/json/scanner.py +73 -0
  568. package/python/lib/python3.12/json/tool.py +85 -0
  569. package/python/lib/python3.12/keyword.py +64 -0
  570. package/python/lib/python3.12/lib-dynload/.empty +0 -0
  571. package/python/lib/python3.12/lib-dynload/_crypt.cpython-312-darwin.so +0 -0
  572. package/python/lib/python3.12/lib-dynload/_dbm.cpython-312-darwin.so +0 -0
  573. package/python/lib/python3.12/linecache.py +185 -0
  574. package/python/lib/python3.12/locale.py +1779 -0
  575. package/python/lib/python3.12/logging/__init__.py +2345 -0
  576. package/python/lib/python3.12/logging/config.py +1078 -0
  577. package/python/lib/python3.12/logging/handlers.py +1624 -0
  578. package/python/lib/python3.12/lzma.py +356 -0
  579. package/python/lib/python3.12/mailbox.py +2153 -0
  580. package/python/lib/python3.12/mailcap.py +302 -0
  581. package/python/lib/python3.12/mimetypes.py +656 -0
  582. package/python/lib/python3.12/modulefinder.py +666 -0
  583. package/python/lib/python3.12/multiprocessing/__init__.py +37 -0
  584. package/python/lib/python3.12/multiprocessing/connection.py +1178 -0
  585. package/python/lib/python3.12/multiprocessing/context.py +377 -0
  586. package/python/lib/python3.12/multiprocessing/dummy/__init__.py +126 -0
  587. package/python/lib/python3.12/multiprocessing/dummy/connection.py +75 -0
  588. package/python/lib/python3.12/multiprocessing/forkserver.py +350 -0
  589. package/python/lib/python3.12/multiprocessing/heap.py +337 -0
  590. package/python/lib/python3.12/multiprocessing/managers.py +1387 -0
  591. package/python/lib/python3.12/multiprocessing/pool.py +957 -0
  592. package/python/lib/python3.12/multiprocessing/popen_fork.py +83 -0
  593. package/python/lib/python3.12/multiprocessing/popen_forkserver.py +74 -0
  594. package/python/lib/python3.12/multiprocessing/popen_spawn_posix.py +72 -0
  595. package/python/lib/python3.12/multiprocessing/popen_spawn_win32.py +145 -0
  596. package/python/lib/python3.12/multiprocessing/process.py +439 -0
  597. package/python/lib/python3.12/multiprocessing/queues.py +401 -0
  598. package/python/lib/python3.12/multiprocessing/reduction.py +281 -0
  599. package/python/lib/python3.12/multiprocessing/resource_sharer.py +154 -0
  600. package/python/lib/python3.12/multiprocessing/resource_tracker.py +294 -0
  601. package/python/lib/python3.12/multiprocessing/shared_memory.py +534 -0
  602. package/python/lib/python3.12/multiprocessing/sharedctypes.py +240 -0
  603. package/python/lib/python3.12/multiprocessing/spawn.py +307 -0
  604. package/python/lib/python3.12/multiprocessing/synchronize.py +404 -0
  605. package/python/lib/python3.12/multiprocessing/util.py +494 -0
  606. package/python/lib/python3.12/netrc.py +192 -0
  607. package/python/lib/python3.12/nntplib.py +1093 -0
  608. package/python/lib/python3.12/ntpath.py +869 -0
  609. package/python/lib/python3.12/nturl2path.py +69 -0
  610. package/python/lib/python3.12/numbers.py +418 -0
  611. package/python/lib/python3.12/opcode.py +493 -0
  612. package/python/lib/python3.12/operator.py +467 -0
  613. package/python/lib/python3.12/optparse.py +1681 -0
  614. package/python/lib/python3.12/os.py +1159 -0
  615. package/python/lib/python3.12/pathlib.py +1435 -0
  616. package/python/lib/python3.12/pdb.py +1987 -0
  617. package/python/lib/python3.12/pickle.py +1866 -0
  618. package/python/lib/python3.12/pickletools.py +2904 -0
  619. package/python/lib/python3.12/pipes.py +250 -0
  620. package/python/lib/python3.12/pkgutil.py +529 -0
  621. package/python/lib/python3.12/platform.py +1359 -0
  622. package/python/lib/python3.12/plistlib.py +920 -0
  623. package/python/lib/python3.12/poplib.py +478 -0
  624. package/python/lib/python3.12/posixpath.py +577 -0
  625. package/python/lib/python3.12/pprint.py +658 -0
  626. package/python/lib/python3.12/profile.py +615 -0
  627. package/python/lib/python3.12/pstats.py +778 -0
  628. package/python/lib/python3.12/pty.py +211 -0
  629. package/python/lib/python3.12/py_compile.py +212 -0
  630. package/python/lib/python3.12/pyclbr.py +314 -0
  631. package/python/lib/python3.12/pydoc.py +2950 -0
  632. package/python/lib/python3.12/pydoc_data/__init__.py +0 -0
  633. package/python/lib/python3.12/pydoc_data/_pydoc.css +112 -0
  634. package/python/lib/python3.12/pydoc_data/topics.py +12500 -0
  635. package/python/lib/python3.12/queue.py +326 -0
  636. package/python/lib/python3.12/quopri.py +237 -0
  637. package/python/lib/python3.12/random.py +996 -0
  638. package/python/lib/python3.12/re/__init__.py +385 -0
  639. package/python/lib/python3.12/re/_casefix.py +106 -0
  640. package/python/lib/python3.12/re/_compiler.py +770 -0
  641. package/python/lib/python3.12/re/_constants.py +220 -0
  642. package/python/lib/python3.12/re/_parser.py +1080 -0
  643. package/python/lib/python3.12/reprlib.py +214 -0
  644. package/python/lib/python3.12/rlcompleter.py +219 -0
  645. package/python/lib/python3.12/runpy.py +319 -0
  646. package/python/lib/python3.12/sched.py +167 -0
  647. package/python/lib/python3.12/secrets.py +71 -0
  648. package/python/lib/python3.12/selectors.py +623 -0
  649. package/python/lib/python3.12/shelve.py +243 -0
  650. package/python/lib/python3.12/shlex.py +345 -0
  651. package/python/lib/python3.12/shutil.py +1566 -0
  652. package/python/lib/python3.12/signal.py +94 -0
  653. package/python/lib/python3.12/site-packages/README.txt +2 -0
  654. package/python/lib/python3.12/site-packages/pip/__init__.py +13 -0
  655. package/python/lib/python3.12/site-packages/pip/__main__.py +24 -0
  656. package/python/lib/python3.12/site-packages/pip/__pip-runner__.py +50 -0
  657. package/python/lib/python3.12/site-packages/pip/_internal/__init__.py +18 -0
  658. package/python/lib/python3.12/site-packages/pip/_internal/build_env.py +606 -0
  659. package/python/lib/python3.12/site-packages/pip/_internal/cache.py +291 -0
  660. package/python/lib/python3.12/site-packages/pip/_internal/cli/__init__.py +3 -0
  661. package/python/lib/python3.12/site-packages/pip/_internal/cli/autocompletion.py +184 -0
  662. package/python/lib/python3.12/site-packages/pip/_internal/cli/base_command.py +264 -0
  663. package/python/lib/python3.12/site-packages/pip/_internal/cli/cmdoptions.py +1298 -0
  664. package/python/lib/python3.12/site-packages/pip/_internal/cli/command_context.py +28 -0
  665. package/python/lib/python3.12/site-packages/pip/_internal/cli/index_command.py +212 -0
  666. package/python/lib/python3.12/site-packages/pip/_internal/cli/main.py +85 -0
  667. package/python/lib/python3.12/site-packages/pip/_internal/cli/main_parser.py +136 -0
  668. package/python/lib/python3.12/site-packages/pip/_internal/cli/parser.py +358 -0
  669. package/python/lib/python3.12/site-packages/pip/_internal/cli/progress_bars.py +153 -0
  670. package/python/lib/python3.12/site-packages/pip/_internal/cli/req_command.py +472 -0
  671. package/python/lib/python3.12/site-packages/pip/_internal/cli/spinners.py +235 -0
  672. package/python/lib/python3.12/site-packages/pip/_internal/cli/status_codes.py +6 -0
  673. package/python/lib/python3.12/site-packages/pip/_internal/commands/__init__.py +139 -0
  674. package/python/lib/python3.12/site-packages/pip/_internal/commands/cache.py +255 -0
  675. package/python/lib/python3.12/site-packages/pip/_internal/commands/check.py +66 -0
  676. package/python/lib/python3.12/site-packages/pip/_internal/commands/completion.py +136 -0
  677. package/python/lib/python3.12/site-packages/pip/_internal/commands/configuration.py +288 -0
  678. package/python/lib/python3.12/site-packages/pip/_internal/commands/debug.py +196 -0
  679. package/python/lib/python3.12/site-packages/pip/_internal/commands/download.py +146 -0
  680. package/python/lib/python3.12/site-packages/pip/_internal/commands/freeze.py +107 -0
  681. package/python/lib/python3.12/site-packages/pip/_internal/commands/hash.py +58 -0
  682. package/python/lib/python3.12/site-packages/pip/_internal/commands/help.py +40 -0
  683. package/python/lib/python3.12/site-packages/pip/_internal/commands/index.py +166 -0
  684. package/python/lib/python3.12/site-packages/pip/_internal/commands/inspect.py +92 -0
  685. package/python/lib/python3.12/site-packages/pip/_internal/commands/install.py +904 -0
  686. package/python/lib/python3.12/site-packages/pip/_internal/commands/list.py +403 -0
  687. package/python/lib/python3.12/site-packages/pip/_internal/commands/lock.py +175 -0
  688. package/python/lib/python3.12/site-packages/pip/_internal/commands/search.py +178 -0
  689. package/python/lib/python3.12/site-packages/pip/_internal/commands/show.py +231 -0
  690. package/python/lib/python3.12/site-packages/pip/_internal/commands/uninstall.py +113 -0
  691. package/python/lib/python3.12/site-packages/pip/_internal/commands/wheel.py +171 -0
  692. package/python/lib/python3.12/site-packages/pip/_internal/configuration.py +396 -0
  693. package/python/lib/python3.12/site-packages/pip/_internal/distributions/__init__.py +21 -0
  694. package/python/lib/python3.12/site-packages/pip/_internal/distributions/base.py +55 -0
  695. package/python/lib/python3.12/site-packages/pip/_internal/distributions/installed.py +33 -0
  696. package/python/lib/python3.12/site-packages/pip/_internal/distributions/sdist.py +164 -0
  697. package/python/lib/python3.12/site-packages/pip/_internal/distributions/wheel.py +44 -0
  698. package/python/lib/python3.12/site-packages/pip/_internal/exceptions.py +971 -0
  699. package/python/lib/python3.12/site-packages/pip/_internal/index/__init__.py +1 -0
  700. package/python/lib/python3.12/site-packages/pip/_internal/index/collector.py +488 -0
  701. package/python/lib/python3.12/site-packages/pip/_internal/index/package_finder.py +1113 -0
  702. package/python/lib/python3.12/site-packages/pip/_internal/index/sources.py +287 -0
  703. package/python/lib/python3.12/site-packages/pip/_internal/locations/__init__.py +438 -0
  704. package/python/lib/python3.12/site-packages/pip/_internal/locations/_distutils.py +173 -0
  705. package/python/lib/python3.12/site-packages/pip/_internal/locations/_sysconfig.py +218 -0
  706. package/python/lib/python3.12/site-packages/pip/_internal/locations/base.py +82 -0
  707. package/python/lib/python3.12/site-packages/pip/_internal/main.py +12 -0
  708. package/python/lib/python3.12/site-packages/pip/_internal/metadata/__init__.py +169 -0
  709. package/python/lib/python3.12/site-packages/pip/_internal/metadata/_json.py +87 -0
  710. package/python/lib/python3.12/site-packages/pip/_internal/metadata/base.py +685 -0
  711. package/python/lib/python3.12/site-packages/pip/_internal/metadata/importlib/__init__.py +6 -0
  712. package/python/lib/python3.12/site-packages/pip/_internal/metadata/importlib/_compat.py +87 -0
  713. package/python/lib/python3.12/site-packages/pip/_internal/metadata/importlib/_dists.py +235 -0
  714. package/python/lib/python3.12/site-packages/pip/_internal/metadata/importlib/_envs.py +143 -0
  715. package/python/lib/python3.12/site-packages/pip/_internal/metadata/pkg_resources.py +298 -0
  716. package/python/lib/python3.12/site-packages/pip/_internal/models/__init__.py +1 -0
  717. package/python/lib/python3.12/site-packages/pip/_internal/models/candidate.py +23 -0
  718. package/python/lib/python3.12/site-packages/pip/_internal/models/direct_url.py +42 -0
  719. package/python/lib/python3.12/site-packages/pip/_internal/models/format_control.py +78 -0
  720. package/python/lib/python3.12/site-packages/pip/_internal/models/index.py +28 -0
  721. package/python/lib/python3.12/site-packages/pip/_internal/models/installation_report.py +57 -0
  722. package/python/lib/python3.12/site-packages/pip/_internal/models/link.py +617 -0
  723. package/python/lib/python3.12/site-packages/pip/_internal/models/release_control.py +91 -0
  724. package/python/lib/python3.12/site-packages/pip/_internal/models/scheme.py +23 -0
  725. package/python/lib/python3.12/site-packages/pip/_internal/models/search_scope.py +124 -0
  726. package/python/lib/python3.12/site-packages/pip/_internal/models/selection_prefs.py +36 -0
  727. package/python/lib/python3.12/site-packages/pip/_internal/models/target_python.py +122 -0
  728. package/python/lib/python3.12/site-packages/pip/_internal/models/wheel.py +80 -0
  729. package/python/lib/python3.12/site-packages/pip/_internal/network/__init__.py +1 -0
  730. package/python/lib/python3.12/site-packages/pip/_internal/network/auth.py +570 -0
  731. package/python/lib/python3.12/site-packages/pip/_internal/network/cache.py +128 -0
  732. package/python/lib/python3.12/site-packages/pip/_internal/network/download.py +340 -0
  733. package/python/lib/python3.12/site-packages/pip/_internal/network/lazy_wheel.py +215 -0
  734. package/python/lib/python3.12/site-packages/pip/_internal/network/session.py +537 -0
  735. package/python/lib/python3.12/site-packages/pip/_internal/network/utils.py +98 -0
  736. package/python/lib/python3.12/site-packages/pip/_internal/network/xmlrpc.py +61 -0
  737. package/python/lib/python3.12/site-packages/pip/_internal/operations/__init__.py +0 -0
  738. package/python/lib/python3.12/site-packages/pip/_internal/operations/build/__init__.py +0 -0
  739. package/python/lib/python3.12/site-packages/pip/_internal/operations/build/build_tracker.py +140 -0
  740. package/python/lib/python3.12/site-packages/pip/_internal/operations/build/metadata.py +38 -0
  741. package/python/lib/python3.12/site-packages/pip/_internal/operations/build/metadata_editable.py +41 -0
  742. package/python/lib/python3.12/site-packages/pip/_internal/operations/build/wheel.py +38 -0
  743. package/python/lib/python3.12/site-packages/pip/_internal/operations/build/wheel_editable.py +47 -0
  744. package/python/lib/python3.12/site-packages/pip/_internal/operations/check.py +175 -0
  745. package/python/lib/python3.12/site-packages/pip/_internal/operations/freeze.py +259 -0
  746. package/python/lib/python3.12/site-packages/pip/_internal/operations/install/__init__.py +1 -0
  747. package/python/lib/python3.12/site-packages/pip/_internal/operations/install/wheel.py +759 -0
  748. package/python/lib/python3.12/site-packages/pip/_internal/operations/prepare.py +751 -0
  749. package/python/lib/python3.12/site-packages/pip/_internal/pyproject.py +123 -0
  750. package/python/lib/python3.12/site-packages/pip/_internal/req/__init__.py +103 -0
  751. package/python/lib/python3.12/site-packages/pip/_internal/req/constructors.py +677 -0
  752. package/python/lib/python3.12/site-packages/pip/_internal/req/pep723.py +41 -0
  753. package/python/lib/python3.12/site-packages/pip/_internal/req/req_dependency_group.py +86 -0
  754. package/python/lib/python3.12/site-packages/pip/_internal/req/req_file.py +622 -0
  755. package/python/lib/python3.12/site-packages/pip/_internal/req/req_install.py +838 -0
  756. package/python/lib/python3.12/site-packages/pip/_internal/req/req_set.py +81 -0
  757. package/python/lib/python3.12/site-packages/pip/_internal/req/req_uninstall.py +639 -0
  758. package/python/lib/python3.12/site-packages/pip/_internal/resolution/__init__.py +0 -0
  759. package/python/lib/python3.12/site-packages/pip/_internal/resolution/base.py +20 -0
  760. package/python/lib/python3.12/site-packages/pip/_internal/resolution/legacy/__init__.py +0 -0
  761. package/python/lib/python3.12/site-packages/pip/_internal/resolution/legacy/resolver.py +598 -0
  762. package/python/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/__init__.py +0 -0
  763. package/python/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/base.py +164 -0
  764. package/python/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/candidates.py +599 -0
  765. package/python/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/factory.py +914 -0
  766. package/python/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/found_candidates.py +166 -0
  767. package/python/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/provider.py +306 -0
  768. package/python/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/reporter.py +98 -0
  769. package/python/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/requirements.py +251 -0
  770. package/python/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/resolver.py +332 -0
  771. package/python/lib/python3.12/site-packages/pip/_internal/self_outdated_check.py +246 -0
  772. package/python/lib/python3.12/site-packages/pip/_internal/utils/__init__.py +0 -0
  773. package/python/lib/python3.12/site-packages/pip/_internal/utils/_jaraco_text.py +109 -0
  774. package/python/lib/python3.12/site-packages/pip/_internal/utils/_log.py +38 -0
  775. package/python/lib/python3.12/site-packages/pip/_internal/utils/appdirs.py +52 -0
  776. package/python/lib/python3.12/site-packages/pip/_internal/utils/compat.py +85 -0
  777. package/python/lib/python3.12/site-packages/pip/_internal/utils/compatibility_tags.py +201 -0
  778. package/python/lib/python3.12/site-packages/pip/_internal/utils/datetime.py +28 -0
  779. package/python/lib/python3.12/site-packages/pip/_internal/utils/deprecation.py +139 -0
  780. package/python/lib/python3.12/site-packages/pip/_internal/utils/direct_url_helpers.py +92 -0
  781. package/python/lib/python3.12/site-packages/pip/_internal/utils/egg_link.py +81 -0
  782. package/python/lib/python3.12/site-packages/pip/_internal/utils/entrypoints.py +88 -0
  783. package/python/lib/python3.12/site-packages/pip/_internal/utils/filesystem.py +201 -0
  784. package/python/lib/python3.12/site-packages/pip/_internal/utils/filetypes.py +24 -0
  785. package/python/lib/python3.12/site-packages/pip/_internal/utils/glibc.py +102 -0
  786. package/python/lib/python3.12/site-packages/pip/_internal/utils/hashes.py +150 -0
  787. package/python/lib/python3.12/site-packages/pip/_internal/utils/logging.py +396 -0
  788. package/python/lib/python3.12/site-packages/pip/_internal/utils/misc.py +771 -0
  789. package/python/lib/python3.12/site-packages/pip/_internal/utils/packaging.py +44 -0
  790. package/python/lib/python3.12/site-packages/pip/_internal/utils/pylock.py +283 -0
  791. package/python/lib/python3.12/site-packages/pip/_internal/utils/retry.py +45 -0
  792. package/python/lib/python3.12/site-packages/pip/_internal/utils/subprocess.py +248 -0
  793. package/python/lib/python3.12/site-packages/pip/_internal/utils/temp_dir.py +294 -0
  794. package/python/lib/python3.12/site-packages/pip/_internal/utils/unpacking.py +381 -0
  795. package/python/lib/python3.12/site-packages/pip/_internal/utils/urls.py +55 -0
  796. package/python/lib/python3.12/site-packages/pip/_internal/utils/virtualenv.py +105 -0
  797. package/python/lib/python3.12/site-packages/pip/_internal/utils/wheel.py +132 -0
  798. package/python/lib/python3.12/site-packages/pip/_internal/vcs/__init__.py +15 -0
  799. package/python/lib/python3.12/site-packages/pip/_internal/vcs/bazaar.py +130 -0
  800. package/python/lib/python3.12/site-packages/pip/_internal/vcs/git.py +571 -0
  801. package/python/lib/python3.12/site-packages/pip/_internal/vcs/mercurial.py +186 -0
  802. package/python/lib/python3.12/site-packages/pip/_internal/vcs/subversion.py +335 -0
  803. package/python/lib/python3.12/site-packages/pip/_internal/vcs/versioncontrol.py +695 -0
  804. package/python/lib/python3.12/site-packages/pip/_internal/wheel_builder.py +261 -0
  805. package/python/lib/python3.12/site-packages/pip/_vendor/README.rst +178 -0
  806. package/python/lib/python3.12/site-packages/pip/_vendor/__init__.py +117 -0
  807. package/python/lib/python3.12/site-packages/pip/_vendor/cachecontrol/LICENSE.txt +13 -0
  808. package/python/lib/python3.12/site-packages/pip/_vendor/cachecontrol/__init__.py +32 -0
  809. package/python/lib/python3.12/site-packages/pip/_vendor/cachecontrol/_cmd.py +70 -0
  810. package/python/lib/python3.12/site-packages/pip/_vendor/cachecontrol/adapter.py +167 -0
  811. package/python/lib/python3.12/site-packages/pip/_vendor/cachecontrol/cache.py +75 -0
  812. package/python/lib/python3.12/site-packages/pip/_vendor/cachecontrol/caches/__init__.py +8 -0
  813. package/python/lib/python3.12/site-packages/pip/_vendor/cachecontrol/caches/file_cache.py +145 -0
  814. package/python/lib/python3.12/site-packages/pip/_vendor/cachecontrol/caches/redis_cache.py +48 -0
  815. package/python/lib/python3.12/site-packages/pip/_vendor/cachecontrol/controller.py +511 -0
  816. package/python/lib/python3.12/site-packages/pip/_vendor/cachecontrol/filewrapper.py +121 -0
  817. package/python/lib/python3.12/site-packages/pip/_vendor/cachecontrol/heuristics.py +157 -0
  818. package/python/lib/python3.12/site-packages/pip/_vendor/cachecontrol/py.typed +0 -0
  819. package/python/lib/python3.12/site-packages/pip/_vendor/cachecontrol/serialize.py +146 -0
  820. package/python/lib/python3.12/site-packages/pip/_vendor/cachecontrol/wrapper.py +43 -0
  821. package/python/lib/python3.12/site-packages/pip/_vendor/certifi/LICENSE +20 -0
  822. package/python/lib/python3.12/site-packages/pip/_vendor/certifi/__init__.py +4 -0
  823. package/python/lib/python3.12/site-packages/pip/_vendor/certifi/__main__.py +12 -0
  824. package/python/lib/python3.12/site-packages/pip/_vendor/certifi/cacert.pem +4494 -0
  825. package/python/lib/python3.12/site-packages/pip/_vendor/certifi/core.py +83 -0
  826. package/python/lib/python3.12/site-packages/pip/_vendor/certifi/py.typed +0 -0
  827. package/python/lib/python3.12/site-packages/pip/_vendor/distlib/LICENSE.txt +284 -0
  828. package/python/lib/python3.12/site-packages/pip/_vendor/distlib/__init__.py +33 -0
  829. package/python/lib/python3.12/site-packages/pip/_vendor/distlib/compat.py +1137 -0
  830. package/python/lib/python3.12/site-packages/pip/_vendor/distlib/resources.py +358 -0
  831. package/python/lib/python3.12/site-packages/pip/_vendor/distlib/scripts.py +447 -0
  832. package/python/lib/python3.12/site-packages/pip/_vendor/distlib/t32.exe +0 -0
  833. package/python/lib/python3.12/site-packages/pip/_vendor/distlib/t64-arm.exe +0 -0
  834. package/python/lib/python3.12/site-packages/pip/_vendor/distlib/t64.exe +0 -0
  835. package/python/lib/python3.12/site-packages/pip/_vendor/distlib/util.py +1984 -0
  836. package/python/lib/python3.12/site-packages/pip/_vendor/distlib/w32.exe +0 -0
  837. package/python/lib/python3.12/site-packages/pip/_vendor/distlib/w64-arm.exe +0 -0
  838. package/python/lib/python3.12/site-packages/pip/_vendor/distlib/w64.exe +0 -0
  839. package/python/lib/python3.12/site-packages/pip/_vendor/distro/LICENSE +202 -0
  840. package/python/lib/python3.12/site-packages/pip/_vendor/distro/__init__.py +54 -0
  841. package/python/lib/python3.12/site-packages/pip/_vendor/distro/__main__.py +4 -0
  842. package/python/lib/python3.12/site-packages/pip/_vendor/distro/distro.py +1403 -0
  843. package/python/lib/python3.12/site-packages/pip/_vendor/distro/py.typed +0 -0
  844. package/python/lib/python3.12/site-packages/pip/_vendor/idna/LICENSE.md +31 -0
  845. package/python/lib/python3.12/site-packages/pip/_vendor/idna/__init__.py +45 -0
  846. package/python/lib/python3.12/site-packages/pip/_vendor/idna/codec.py +122 -0
  847. package/python/lib/python3.12/site-packages/pip/_vendor/idna/compat.py +15 -0
  848. package/python/lib/python3.12/site-packages/pip/_vendor/idna/core.py +437 -0
  849. package/python/lib/python3.12/site-packages/pip/_vendor/idna/idnadata.py +4309 -0
  850. package/python/lib/python3.12/site-packages/pip/_vendor/idna/intranges.py +57 -0
  851. package/python/lib/python3.12/site-packages/pip/_vendor/idna/package_data.py +1 -0
  852. package/python/lib/python3.12/site-packages/pip/_vendor/idna/py.typed +0 -0
  853. package/python/lib/python3.12/site-packages/pip/_vendor/idna/uts46data.py +8841 -0
  854. package/python/lib/python3.12/site-packages/pip/_vendor/msgpack/COPYING +14 -0
  855. package/python/lib/python3.12/site-packages/pip/_vendor/msgpack/__init__.py +55 -0
  856. package/python/lib/python3.12/site-packages/pip/_vendor/msgpack/exceptions.py +48 -0
  857. package/python/lib/python3.12/site-packages/pip/_vendor/msgpack/ext.py +170 -0
  858. package/python/lib/python3.12/site-packages/pip/_vendor/msgpack/fallback.py +929 -0
  859. package/python/lib/python3.12/site-packages/pip/_vendor/packaging/LICENSE +3 -0
  860. package/python/lib/python3.12/site-packages/pip/_vendor/packaging/LICENSE.APACHE +177 -0
  861. package/python/lib/python3.12/site-packages/pip/_vendor/packaging/LICENSE.BSD +23 -0
  862. package/python/lib/python3.12/site-packages/pip/_vendor/packaging/__init__.py +15 -0
  863. package/python/lib/python3.12/site-packages/pip/_vendor/packaging/_elffile.py +108 -0
  864. package/python/lib/python3.12/site-packages/pip/_vendor/packaging/_manylinux.py +262 -0
  865. package/python/lib/python3.12/site-packages/pip/_vendor/packaging/_musllinux.py +85 -0
  866. package/python/lib/python3.12/site-packages/pip/_vendor/packaging/_parser.py +393 -0
  867. package/python/lib/python3.12/site-packages/pip/_vendor/packaging/_structures.py +33 -0
  868. package/python/lib/python3.12/site-packages/pip/_vendor/packaging/_tokenizer.py +193 -0
  869. package/python/lib/python3.12/site-packages/pip/_vendor/packaging/dependency_groups.py +302 -0
  870. package/python/lib/python3.12/site-packages/pip/_vendor/packaging/direct_url.py +325 -0
  871. package/python/lib/python3.12/site-packages/pip/_vendor/packaging/errors.py +94 -0
  872. package/python/lib/python3.12/site-packages/pip/_vendor/packaging/licenses/__init__.py +186 -0
  873. package/python/lib/python3.12/site-packages/pip/_vendor/packaging/licenses/_spdx.py +799 -0
  874. package/python/lib/python3.12/site-packages/pip/_vendor/packaging/markers.py +492 -0
  875. package/python/lib/python3.12/site-packages/pip/_vendor/packaging/metadata.py +964 -0
  876. package/python/lib/python3.12/site-packages/pip/_vendor/packaging/py.typed +0 -0
  877. package/python/lib/python3.12/site-packages/pip/_vendor/packaging/pylock.py +905 -0
  878. package/python/lib/python3.12/site-packages/pip/_vendor/packaging/requirements.py +129 -0
  879. package/python/lib/python3.12/site-packages/pip/_vendor/packaging/specifiers.py +1943 -0
  880. package/python/lib/python3.12/site-packages/pip/_vendor/packaging/tags.py +932 -0
  881. package/python/lib/python3.12/site-packages/pip/_vendor/packaging/utils.py +296 -0
  882. package/python/lib/python3.12/site-packages/pip/_vendor/packaging/version.py +1231 -0
  883. package/python/lib/python3.12/site-packages/pip/_vendor/pkg_resources/LICENSE +17 -0
  884. package/python/lib/python3.12/site-packages/pip/_vendor/pkg_resources/__init__.py +3676 -0
  885. package/python/lib/python3.12/site-packages/pip/_vendor/platformdirs/LICENSE +21 -0
  886. package/python/lib/python3.12/site-packages/pip/_vendor/platformdirs/__init__.py +631 -0
  887. package/python/lib/python3.12/site-packages/pip/_vendor/platformdirs/__main__.py +55 -0
  888. package/python/lib/python3.12/site-packages/pip/_vendor/platformdirs/android.py +249 -0
  889. package/python/lib/python3.12/site-packages/pip/_vendor/platformdirs/api.py +299 -0
  890. package/python/lib/python3.12/site-packages/pip/_vendor/platformdirs/macos.py +146 -0
  891. package/python/lib/python3.12/site-packages/pip/_vendor/platformdirs/py.typed +0 -0
  892. package/python/lib/python3.12/site-packages/pip/_vendor/platformdirs/unix.py +272 -0
  893. package/python/lib/python3.12/site-packages/pip/_vendor/platformdirs/version.py +34 -0
  894. package/python/lib/python3.12/site-packages/pip/_vendor/platformdirs/windows.py +278 -0
  895. package/python/lib/python3.12/site-packages/pip/_vendor/pygments/LICENSE +25 -0
  896. package/python/lib/python3.12/site-packages/pip/_vendor/pygments/__init__.py +82 -0
  897. package/python/lib/python3.12/site-packages/pip/_vendor/pygments/__main__.py +17 -0
  898. package/python/lib/python3.12/site-packages/pip/_vendor/pygments/console.py +70 -0
  899. package/python/lib/python3.12/site-packages/pip/_vendor/pygments/filter.py +70 -0
  900. package/python/lib/python3.12/site-packages/pip/_vendor/pygments/filters/__init__.py +940 -0
  901. package/python/lib/python3.12/site-packages/pip/_vendor/pygments/formatter.py +129 -0
  902. package/python/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/__init__.py +157 -0
  903. package/python/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/_mapping.py +23 -0
  904. package/python/lib/python3.12/site-packages/pip/_vendor/pygments/lexer.py +963 -0
  905. package/python/lib/python3.12/site-packages/pip/_vendor/pygments/lexers/__init__.py +362 -0
  906. package/python/lib/python3.12/site-packages/pip/_vendor/pygments/lexers/_mapping.py +602 -0
  907. package/python/lib/python3.12/site-packages/pip/_vendor/pygments/lexers/python.py +1201 -0
  908. package/python/lib/python3.12/site-packages/pip/_vendor/pygments/modeline.py +43 -0
  909. package/python/lib/python3.12/site-packages/pip/_vendor/pygments/plugin.py +72 -0
  910. package/python/lib/python3.12/site-packages/pip/_vendor/pygments/regexopt.py +91 -0
  911. package/python/lib/python3.12/site-packages/pip/_vendor/pygments/scanner.py +104 -0
  912. package/python/lib/python3.12/site-packages/pip/_vendor/pygments/sphinxext.py +247 -0
  913. package/python/lib/python3.12/site-packages/pip/_vendor/pygments/style.py +203 -0
  914. package/python/lib/python3.12/site-packages/pip/_vendor/pygments/styles/__init__.py +61 -0
  915. package/python/lib/python3.12/site-packages/pip/_vendor/pygments/styles/_mapping.py +54 -0
  916. package/python/lib/python3.12/site-packages/pip/_vendor/pygments/token.py +214 -0
  917. package/python/lib/python3.12/site-packages/pip/_vendor/pygments/unistring.py +153 -0
  918. package/python/lib/python3.12/site-packages/pip/_vendor/pygments/util.py +324 -0
  919. package/python/lib/python3.12/site-packages/pip/_vendor/pyproject_hooks/LICENSE +21 -0
  920. package/python/lib/python3.12/site-packages/pip/_vendor/pyproject_hooks/__init__.py +31 -0
  921. package/python/lib/python3.12/site-packages/pip/_vendor/pyproject_hooks/_impl.py +410 -0
  922. package/python/lib/python3.12/site-packages/pip/_vendor/pyproject_hooks/_in_process/__init__.py +21 -0
  923. package/python/lib/python3.12/site-packages/pip/_vendor/pyproject_hooks/_in_process/_in_process.py +389 -0
  924. package/python/lib/python3.12/site-packages/pip/_vendor/pyproject_hooks/py.typed +0 -0
  925. package/python/lib/python3.12/site-packages/pip/_vendor/requests/LICENSE +175 -0
  926. package/python/lib/python3.12/site-packages/pip/_vendor/requests/__init__.py +178 -0
  927. package/python/lib/python3.12/site-packages/pip/_vendor/requests/__version__.py +14 -0
  928. package/python/lib/python3.12/site-packages/pip/_vendor/requests/_internal_utils.py +51 -0
  929. package/python/lib/python3.12/site-packages/pip/_vendor/requests/adapters.py +697 -0
  930. package/python/lib/python3.12/site-packages/pip/_vendor/requests/api.py +157 -0
  931. package/python/lib/python3.12/site-packages/pip/_vendor/requests/auth.py +314 -0
  932. package/python/lib/python3.12/site-packages/pip/_vendor/requests/certs.py +18 -0
  933. package/python/lib/python3.12/site-packages/pip/_vendor/requests/compat.py +90 -0
  934. package/python/lib/python3.12/site-packages/pip/_vendor/requests/cookies.py +561 -0
  935. package/python/lib/python3.12/site-packages/pip/_vendor/requests/exceptions.py +152 -0
  936. package/python/lib/python3.12/site-packages/pip/_vendor/requests/help.py +124 -0
  937. package/python/lib/python3.12/site-packages/pip/_vendor/requests/hooks.py +34 -0
  938. package/python/lib/python3.12/site-packages/pip/_vendor/requests/models.py +1041 -0
  939. package/python/lib/python3.12/site-packages/pip/_vendor/requests/packages.py +25 -0
  940. package/python/lib/python3.12/site-packages/pip/_vendor/requests/sessions.py +834 -0
  941. package/python/lib/python3.12/site-packages/pip/_vendor/requests/status_codes.py +128 -0
  942. package/python/lib/python3.12/site-packages/pip/_vendor/requests/structures.py +99 -0
  943. package/python/lib/python3.12/site-packages/pip/_vendor/requests/utils.py +1083 -0
  944. package/python/lib/python3.12/site-packages/pip/_vendor/resolvelib/LICENSE +13 -0
  945. package/python/lib/python3.12/site-packages/pip/_vendor/resolvelib/__init__.py +27 -0
  946. package/python/lib/python3.12/site-packages/pip/_vendor/resolvelib/providers.py +196 -0
  947. package/python/lib/python3.12/site-packages/pip/_vendor/resolvelib/py.typed +0 -0
  948. package/python/lib/python3.12/site-packages/pip/_vendor/resolvelib/reporters.py +55 -0
  949. package/python/lib/python3.12/site-packages/pip/_vendor/resolvelib/resolvers/__init__.py +27 -0
  950. package/python/lib/python3.12/site-packages/pip/_vendor/resolvelib/resolvers/abstract.py +47 -0
  951. package/python/lib/python3.12/site-packages/pip/_vendor/resolvelib/resolvers/criterion.py +48 -0
  952. package/python/lib/python3.12/site-packages/pip/_vendor/resolvelib/resolvers/exceptions.py +57 -0
  953. package/python/lib/python3.12/site-packages/pip/_vendor/resolvelib/resolvers/resolution.py +627 -0
  954. package/python/lib/python3.12/site-packages/pip/_vendor/resolvelib/structs.py +209 -0
  955. package/python/lib/python3.12/site-packages/pip/_vendor/rich/LICENSE +19 -0
  956. package/python/lib/python3.12/site-packages/pip/_vendor/rich/__init__.py +177 -0
  957. package/python/lib/python3.12/site-packages/pip/_vendor/rich/__main__.py +245 -0
  958. package/python/lib/python3.12/site-packages/pip/_vendor/rich/_cell_widths.py +454 -0
  959. package/python/lib/python3.12/site-packages/pip/_vendor/rich/_emoji_codes.py +3610 -0
  960. package/python/lib/python3.12/site-packages/pip/_vendor/rich/_emoji_replace.py +32 -0
  961. package/python/lib/python3.12/site-packages/pip/_vendor/rich/_export_format.py +76 -0
  962. package/python/lib/python3.12/site-packages/pip/_vendor/rich/_extension.py +10 -0
  963. package/python/lib/python3.12/site-packages/pip/_vendor/rich/_fileno.py +24 -0
  964. package/python/lib/python3.12/site-packages/pip/_vendor/rich/_inspect.py +268 -0
  965. package/python/lib/python3.12/site-packages/pip/_vendor/rich/_log_render.py +94 -0
  966. package/python/lib/python3.12/site-packages/pip/_vendor/rich/_loop.py +43 -0
  967. package/python/lib/python3.12/site-packages/pip/_vendor/rich/_null_file.py +69 -0
  968. package/python/lib/python3.12/site-packages/pip/_vendor/rich/_palettes.py +309 -0
  969. package/python/lib/python3.12/site-packages/pip/_vendor/rich/_pick.py +17 -0
  970. package/python/lib/python3.12/site-packages/pip/_vendor/rich/_ratio.py +153 -0
  971. package/python/lib/python3.12/site-packages/pip/_vendor/rich/_spinners.py +482 -0
  972. package/python/lib/python3.12/site-packages/pip/_vendor/rich/_stack.py +16 -0
  973. package/python/lib/python3.12/site-packages/pip/_vendor/rich/_timer.py +19 -0
  974. package/python/lib/python3.12/site-packages/pip/_vendor/rich/_win32_console.py +661 -0
  975. package/python/lib/python3.12/site-packages/pip/_vendor/rich/_windows.py +71 -0
  976. package/python/lib/python3.12/site-packages/pip/_vendor/rich/_windows_renderer.py +56 -0
  977. package/python/lib/python3.12/site-packages/pip/_vendor/rich/_wrap.py +93 -0
  978. package/python/lib/python3.12/site-packages/pip/_vendor/rich/abc.py +33 -0
  979. package/python/lib/python3.12/site-packages/pip/_vendor/rich/align.py +306 -0
  980. package/python/lib/python3.12/site-packages/pip/_vendor/rich/ansi.py +241 -0
  981. package/python/lib/python3.12/site-packages/pip/_vendor/rich/bar.py +93 -0
  982. package/python/lib/python3.12/site-packages/pip/_vendor/rich/box.py +474 -0
  983. package/python/lib/python3.12/site-packages/pip/_vendor/rich/cells.py +174 -0
  984. package/python/lib/python3.12/site-packages/pip/_vendor/rich/color.py +621 -0
  985. package/python/lib/python3.12/site-packages/pip/_vendor/rich/color_triplet.py +38 -0
  986. package/python/lib/python3.12/site-packages/pip/_vendor/rich/columns.py +187 -0
  987. package/python/lib/python3.12/site-packages/pip/_vendor/rich/console.py +2680 -0
  988. package/python/lib/python3.12/site-packages/pip/_vendor/rich/constrain.py +37 -0
  989. package/python/lib/python3.12/site-packages/pip/_vendor/rich/containers.py +167 -0
  990. package/python/lib/python3.12/site-packages/pip/_vendor/rich/control.py +219 -0
  991. package/python/lib/python3.12/site-packages/pip/_vendor/rich/default_styles.py +193 -0
  992. package/python/lib/python3.12/site-packages/pip/_vendor/rich/diagnose.py +39 -0
  993. package/python/lib/python3.12/site-packages/pip/_vendor/rich/emoji.py +91 -0
  994. package/python/lib/python3.12/site-packages/pip/_vendor/rich/errors.py +34 -0
  995. package/python/lib/python3.12/site-packages/pip/_vendor/rich/file_proxy.py +57 -0
  996. package/python/lib/python3.12/site-packages/pip/_vendor/rich/filesize.py +88 -0
  997. package/python/lib/python3.12/site-packages/pip/_vendor/rich/highlighter.py +232 -0
  998. package/python/lib/python3.12/site-packages/pip/_vendor/rich/json.py +139 -0
  999. package/python/lib/python3.12/site-packages/pip/_vendor/rich/jupyter.py +101 -0
  1000. package/python/lib/python3.12/site-packages/pip/_vendor/rich/layout.py +442 -0
  1001. package/python/lib/python3.12/site-packages/pip/_vendor/rich/live.py +400 -0
  1002. package/python/lib/python3.12/site-packages/pip/_vendor/rich/live_render.py +106 -0
  1003. package/python/lib/python3.12/site-packages/pip/_vendor/rich/logging.py +297 -0
  1004. package/python/lib/python3.12/site-packages/pip/_vendor/rich/markup.py +251 -0
  1005. package/python/lib/python3.12/site-packages/pip/_vendor/rich/measure.py +151 -0
  1006. package/python/lib/python3.12/site-packages/pip/_vendor/rich/padding.py +141 -0
  1007. package/python/lib/python3.12/site-packages/pip/_vendor/rich/pager.py +34 -0
  1008. package/python/lib/python3.12/site-packages/pip/_vendor/rich/palette.py +100 -0
  1009. package/python/lib/python3.12/site-packages/pip/_vendor/rich/panel.py +317 -0
  1010. package/python/lib/python3.12/site-packages/pip/_vendor/rich/pretty.py +1016 -0
  1011. package/python/lib/python3.12/site-packages/pip/_vendor/rich/progress.py +1715 -0
  1012. package/python/lib/python3.12/site-packages/pip/_vendor/rich/progress_bar.py +223 -0
  1013. package/python/lib/python3.12/site-packages/pip/_vendor/rich/prompt.py +400 -0
  1014. package/python/lib/python3.12/site-packages/pip/_vendor/rich/protocol.py +42 -0
  1015. package/python/lib/python3.12/site-packages/pip/_vendor/rich/py.typed +0 -0
  1016. package/python/lib/python3.12/site-packages/pip/_vendor/rich/region.py +10 -0
  1017. package/python/lib/python3.12/site-packages/pip/_vendor/rich/repr.py +149 -0
  1018. package/python/lib/python3.12/site-packages/pip/_vendor/rich/rule.py +130 -0
  1019. package/python/lib/python3.12/site-packages/pip/_vendor/rich/scope.py +86 -0
  1020. package/python/lib/python3.12/site-packages/pip/_vendor/rich/screen.py +54 -0
  1021. package/python/lib/python3.12/site-packages/pip/_vendor/rich/segment.py +752 -0
  1022. package/python/lib/python3.12/site-packages/pip/_vendor/rich/spinner.py +132 -0
  1023. package/python/lib/python3.12/site-packages/pip/_vendor/rich/status.py +131 -0
  1024. package/python/lib/python3.12/site-packages/pip/_vendor/rich/style.py +792 -0
  1025. package/python/lib/python3.12/site-packages/pip/_vendor/rich/styled.py +42 -0
  1026. package/python/lib/python3.12/site-packages/pip/_vendor/rich/syntax.py +985 -0
  1027. package/python/lib/python3.12/site-packages/pip/_vendor/rich/table.py +1006 -0
  1028. package/python/lib/python3.12/site-packages/pip/_vendor/rich/terminal_theme.py +153 -0
  1029. package/python/lib/python3.12/site-packages/pip/_vendor/rich/text.py +1361 -0
  1030. package/python/lib/python3.12/site-packages/pip/_vendor/rich/theme.py +115 -0
  1031. package/python/lib/python3.12/site-packages/pip/_vendor/rich/themes.py +5 -0
  1032. package/python/lib/python3.12/site-packages/pip/_vendor/rich/traceback.py +899 -0
  1033. package/python/lib/python3.12/site-packages/pip/_vendor/rich/tree.py +257 -0
  1034. package/python/lib/python3.12/site-packages/pip/_vendor/tomli/LICENSE +21 -0
  1035. package/python/lib/python3.12/site-packages/pip/_vendor/tomli/__init__.py +8 -0
  1036. package/python/lib/python3.12/site-packages/pip/_vendor/tomli/_parser.py +788 -0
  1037. package/python/lib/python3.12/site-packages/pip/_vendor/tomli/_re.py +115 -0
  1038. package/python/lib/python3.12/site-packages/pip/_vendor/tomli/_types.py +10 -0
  1039. package/python/lib/python3.12/site-packages/pip/_vendor/tomli/py.typed +1 -0
  1040. package/python/lib/python3.12/site-packages/pip/_vendor/tomli_w/LICENSE +21 -0
  1041. package/python/lib/python3.12/site-packages/pip/_vendor/tomli_w/__init__.py +4 -0
  1042. package/python/lib/python3.12/site-packages/pip/_vendor/tomli_w/_writer.py +229 -0
  1043. package/python/lib/python3.12/site-packages/pip/_vendor/tomli_w/py.typed +1 -0
  1044. package/python/lib/python3.12/site-packages/pip/_vendor/truststore/LICENSE +21 -0
  1045. package/python/lib/python3.12/site-packages/pip/_vendor/truststore/__init__.py +36 -0
  1046. package/python/lib/python3.12/site-packages/pip/_vendor/truststore/_api.py +341 -0
  1047. package/python/lib/python3.12/site-packages/pip/_vendor/truststore/_macos.py +571 -0
  1048. package/python/lib/python3.12/site-packages/pip/_vendor/truststore/_openssl.py +68 -0
  1049. package/python/lib/python3.12/site-packages/pip/_vendor/truststore/_ssl_constants.py +31 -0
  1050. package/python/lib/python3.12/site-packages/pip/_vendor/truststore/_windows.py +567 -0
  1051. package/python/lib/python3.12/site-packages/pip/_vendor/truststore/py.typed +0 -0
  1052. package/python/lib/python3.12/site-packages/pip/_vendor/urllib3/LICENSE.txt +21 -0
  1053. package/python/lib/python3.12/site-packages/pip/_vendor/urllib3/__init__.py +211 -0
  1054. package/python/lib/python3.12/site-packages/pip/_vendor/urllib3/_base_connection.py +165 -0
  1055. package/python/lib/python3.12/site-packages/pip/_vendor/urllib3/_collections.py +487 -0
  1056. package/python/lib/python3.12/site-packages/pip/_vendor/urllib3/_request_methods.py +278 -0
  1057. package/python/lib/python3.12/site-packages/pip/_vendor/urllib3/_version.py +34 -0
  1058. package/python/lib/python3.12/site-packages/pip/_vendor/urllib3/connection.py +1099 -0
  1059. package/python/lib/python3.12/site-packages/pip/_vendor/urllib3/connectionpool.py +1178 -0
  1060. package/python/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/__init__.py +0 -0
  1061. package/python/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/emscripten/__init__.py +17 -0
  1062. package/python/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/emscripten/connection.py +260 -0
  1063. package/python/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/emscripten/emscripten_fetch_worker.js +110 -0
  1064. package/python/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/emscripten/fetch.py +726 -0
  1065. package/python/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/emscripten/request.py +22 -0
  1066. package/python/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/emscripten/response.py +277 -0
  1067. package/python/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/pyopenssl.py +564 -0
  1068. package/python/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/socks.py +228 -0
  1069. package/python/lib/python3.12/site-packages/pip/_vendor/urllib3/exceptions.py +335 -0
  1070. package/python/lib/python3.12/site-packages/pip/_vendor/urllib3/fields.py +341 -0
  1071. package/python/lib/python3.12/site-packages/pip/_vendor/urllib3/filepost.py +89 -0
  1072. package/python/lib/python3.12/site-packages/pip/_vendor/urllib3/http2/__init__.py +53 -0
  1073. package/python/lib/python3.12/site-packages/pip/_vendor/urllib3/http2/connection.py +356 -0
  1074. package/python/lib/python3.12/site-packages/pip/_vendor/urllib3/http2/probe.py +87 -0
  1075. package/python/lib/python3.12/site-packages/pip/_vendor/urllib3/poolmanager.py +651 -0
  1076. package/python/lib/python3.12/site-packages/pip/_vendor/urllib3/py.typed +2 -0
  1077. package/python/lib/python3.12/site-packages/pip/_vendor/urllib3/response.py +1474 -0
  1078. package/python/lib/python3.12/site-packages/pip/_vendor/urllib3/util/__init__.py +42 -0
  1079. package/python/lib/python3.12/site-packages/pip/_vendor/urllib3/util/connection.py +137 -0
  1080. package/python/lib/python3.12/site-packages/pip/_vendor/urllib3/util/proxy.py +43 -0
  1081. package/python/lib/python3.12/site-packages/pip/_vendor/urllib3/util/request.py +254 -0
  1082. package/python/lib/python3.12/site-packages/pip/_vendor/urllib3/util/response.py +101 -0
  1083. package/python/lib/python3.12/site-packages/pip/_vendor/urllib3/util/retry.py +549 -0
  1084. package/python/lib/python3.12/site-packages/pip/_vendor/urllib3/util/ssl_.py +527 -0
  1085. package/python/lib/python3.12/site-packages/pip/_vendor/urllib3/util/ssl_match_hostname.py +159 -0
  1086. package/python/lib/python3.12/site-packages/pip/_vendor/urllib3/util/ssltransport.py +271 -0
  1087. package/python/lib/python3.12/site-packages/pip/_vendor/urllib3/util/timeout.py +275 -0
  1088. package/python/lib/python3.12/site-packages/pip/_vendor/urllib3/util/url.py +469 -0
  1089. package/python/lib/python3.12/site-packages/pip/_vendor/urllib3/util/util.py +42 -0
  1090. package/python/lib/python3.12/site-packages/pip/_vendor/urllib3/util/wait.py +124 -0
  1091. package/python/lib/python3.12/site-packages/pip/_vendor/vendor.txt +18 -0
  1092. package/python/lib/python3.12/site-packages/pip/py.typed +4 -0
  1093. package/python/lib/python3.12/site-packages/pip-26.1.2.dist-info/INSTALLER +1 -0
  1094. package/python/lib/python3.12/site-packages/pip-26.1.2.dist-info/METADATA +109 -0
  1095. package/python/lib/python3.12/site-packages/pip-26.1.2.dist-info/RECORD +866 -0
  1096. package/python/lib/python3.12/site-packages/pip-26.1.2.dist-info/REQUESTED +0 -0
  1097. package/python/lib/python3.12/site-packages/pip-26.1.2.dist-info/WHEEL +4 -0
  1098. package/python/lib/python3.12/site-packages/pip-26.1.2.dist-info/direct_url.json +1 -0
  1099. package/python/lib/python3.12/site-packages/pip-26.1.2.dist-info/entry_points.txt +4 -0
  1100. package/python/lib/python3.12/site-packages/pip-26.1.2.dist-info/licenses/AUTHORS.txt +868 -0
  1101. package/python/lib/python3.12/site-packages/pip-26.1.2.dist-info/licenses/LICENSE.txt +20 -0
  1102. package/python/lib/python3.12/site-packages/pip-26.1.2.dist-info/licenses/src/pip/_vendor/cachecontrol/LICENSE.txt +13 -0
  1103. package/python/lib/python3.12/site-packages/pip-26.1.2.dist-info/licenses/src/pip/_vendor/certifi/LICENSE +20 -0
  1104. package/python/lib/python3.12/site-packages/pip-26.1.2.dist-info/licenses/src/pip/_vendor/distlib/LICENSE.txt +284 -0
  1105. package/python/lib/python3.12/site-packages/pip-26.1.2.dist-info/licenses/src/pip/_vendor/distro/LICENSE +202 -0
  1106. package/python/lib/python3.12/site-packages/pip-26.1.2.dist-info/licenses/src/pip/_vendor/idna/LICENSE.md +31 -0
  1107. package/python/lib/python3.12/site-packages/pip-26.1.2.dist-info/licenses/src/pip/_vendor/msgpack/COPYING +14 -0
  1108. package/python/lib/python3.12/site-packages/pip-26.1.2.dist-info/licenses/src/pip/_vendor/packaging/LICENSE +3 -0
  1109. package/python/lib/python3.12/site-packages/pip-26.1.2.dist-info/licenses/src/pip/_vendor/packaging/LICENSE.APACHE +177 -0
  1110. package/python/lib/python3.12/site-packages/pip-26.1.2.dist-info/licenses/src/pip/_vendor/packaging/LICENSE.BSD +23 -0
  1111. package/python/lib/python3.12/site-packages/pip-26.1.2.dist-info/licenses/src/pip/_vendor/pkg_resources/LICENSE +17 -0
  1112. package/python/lib/python3.12/site-packages/pip-26.1.2.dist-info/licenses/src/pip/_vendor/platformdirs/LICENSE +21 -0
  1113. package/python/lib/python3.12/site-packages/pip-26.1.2.dist-info/licenses/src/pip/_vendor/pygments/LICENSE +25 -0
  1114. package/python/lib/python3.12/site-packages/pip-26.1.2.dist-info/licenses/src/pip/_vendor/pyproject_hooks/LICENSE +21 -0
  1115. package/python/lib/python3.12/site-packages/pip-26.1.2.dist-info/licenses/src/pip/_vendor/requests/LICENSE +175 -0
  1116. package/python/lib/python3.12/site-packages/pip-26.1.2.dist-info/licenses/src/pip/_vendor/resolvelib/LICENSE +13 -0
  1117. package/python/lib/python3.12/site-packages/pip-26.1.2.dist-info/licenses/src/pip/_vendor/rich/LICENSE +19 -0
  1118. package/python/lib/python3.12/site-packages/pip-26.1.2.dist-info/licenses/src/pip/_vendor/tomli/LICENSE +21 -0
  1119. package/python/lib/python3.12/site-packages/pip-26.1.2.dist-info/licenses/src/pip/_vendor/tomli_w/LICENSE +21 -0
  1120. package/python/lib/python3.12/site-packages/pip-26.1.2.dist-info/licenses/src/pip/_vendor/truststore/LICENSE +21 -0
  1121. package/python/lib/python3.12/site-packages/pip-26.1.2.dist-info/licenses/src/pip/_vendor/urllib3/LICENSE.txt +21 -0
  1122. package/python/lib/python3.12/site.py +693 -0
  1123. package/python/lib/python3.12/smtplib.py +1109 -0
  1124. package/python/lib/python3.12/sndhdr.py +271 -0
  1125. package/python/lib/python3.12/socket.py +983 -0
  1126. package/python/lib/python3.12/socketserver.py +863 -0
  1127. package/python/lib/python3.12/sqlite3/__init__.py +70 -0
  1128. package/python/lib/python3.12/sqlite3/__main__.py +127 -0
  1129. package/python/lib/python3.12/sqlite3/dbapi2.py +108 -0
  1130. package/python/lib/python3.12/sqlite3/dump.py +89 -0
  1131. package/python/lib/python3.12/sre_compile.py +7 -0
  1132. package/python/lib/python3.12/sre_constants.py +7 -0
  1133. package/python/lib/python3.12/sre_parse.py +7 -0
  1134. package/python/lib/python3.12/ssl.py +1488 -0
  1135. package/python/lib/python3.12/stat.py +195 -0
  1136. package/python/lib/python3.12/statistics.py +1454 -0
  1137. package/python/lib/python3.12/string.py +309 -0
  1138. package/python/lib/python3.12/stringprep.py +272 -0
  1139. package/python/lib/python3.12/struct.py +15 -0
  1140. package/python/lib/python3.12/subprocess.py +2216 -0
  1141. package/python/lib/python3.12/sunau.py +533 -0
  1142. package/python/lib/python3.12/symtable.py +362 -0
  1143. package/python/lib/python3.12/sysconfig.py +894 -0
  1144. package/python/lib/python3.12/tabnanny.py +340 -0
  1145. package/python/lib/python3.12/tarfile.py +3031 -0
  1146. package/python/lib/python3.12/telnetlib.py +680 -0
  1147. package/python/lib/python3.12/tempfile.py +956 -0
  1148. package/python/lib/python3.12/textwrap.py +491 -0
  1149. package/python/lib/python3.12/this.py +28 -0
  1150. package/python/lib/python3.12/threading.py +1708 -0
  1151. package/python/lib/python3.12/timeit.py +381 -0
  1152. package/python/lib/python3.12/token.py +143 -0
  1153. package/python/lib/python3.12/tokenize.py +594 -0
  1154. package/python/lib/python3.12/tomllib/__init__.py +10 -0
  1155. package/python/lib/python3.12/tomllib/_parser.py +691 -0
  1156. package/python/lib/python3.12/tomllib/_re.py +107 -0
  1157. package/python/lib/python3.12/tomllib/_types.py +10 -0
  1158. package/python/lib/python3.12/trace.py +748 -0
  1159. package/python/lib/python3.12/traceback.py +1187 -0
  1160. package/python/lib/python3.12/tracemalloc.py +560 -0
  1161. package/python/lib/python3.12/tty.py +73 -0
  1162. package/python/lib/python3.12/turtle.py +4207 -0
  1163. package/python/lib/python3.12/types.py +333 -0
  1164. package/python/lib/python3.12/typing.py +3494 -0
  1165. package/python/lib/python3.12/unittest/__init__.py +85 -0
  1166. package/python/lib/python3.12/unittest/__main__.py +18 -0
  1167. package/python/lib/python3.12/unittest/_log.py +86 -0
  1168. package/python/lib/python3.12/unittest/async_case.py +143 -0
  1169. package/python/lib/python3.12/unittest/case.py +1456 -0
  1170. package/python/lib/python3.12/unittest/loader.py +497 -0
  1171. package/python/lib/python3.12/unittest/main.py +291 -0
  1172. package/python/lib/python3.12/unittest/mock.py +3054 -0
  1173. package/python/lib/python3.12/unittest/result.py +256 -0
  1174. package/python/lib/python3.12/unittest/runner.py +292 -0
  1175. package/python/lib/python3.12/unittest/signals.py +71 -0
  1176. package/python/lib/python3.12/unittest/suite.py +379 -0
  1177. package/python/lib/python3.12/unittest/util.py +170 -0
  1178. package/python/lib/python3.12/urllib/__init__.py +0 -0
  1179. package/python/lib/python3.12/urllib/error.py +74 -0
  1180. package/python/lib/python3.12/urllib/parse.py +1262 -0
  1181. package/python/lib/python3.12/urllib/request.py +2816 -0
  1182. package/python/lib/python3.12/urllib/response.py +84 -0
  1183. package/python/lib/python3.12/urllib/robotparser.py +275 -0
  1184. package/python/lib/python3.12/uu.py +216 -0
  1185. package/python/lib/python3.12/uuid.py +793 -0
  1186. package/python/lib/python3.12/venv/__init__.py +608 -0
  1187. package/python/lib/python3.12/venv/__main__.py +10 -0
  1188. package/python/lib/python3.12/venv/scripts/common/Activate.ps1 +247 -0
  1189. package/python/lib/python3.12/venv/scripts/common/activate +76 -0
  1190. package/python/lib/python3.12/venv/scripts/posix/activate.csh +27 -0
  1191. package/python/lib/python3.12/venv/scripts/posix/activate.fish +69 -0
  1192. package/python/lib/python3.12/warnings.py +598 -0
  1193. package/python/lib/python3.12/wave.py +653 -0
  1194. package/python/lib/python3.12/weakref.py +674 -0
  1195. package/python/lib/python3.12/webbrowser.py +689 -0
  1196. package/python/lib/python3.12/wsgiref/__init__.py +25 -0
  1197. package/python/lib/python3.12/wsgiref/handlers.py +573 -0
  1198. package/python/lib/python3.12/wsgiref/headers.py +192 -0
  1199. package/python/lib/python3.12/wsgiref/simple_server.py +165 -0
  1200. package/python/lib/python3.12/wsgiref/types.py +54 -0
  1201. package/python/lib/python3.12/wsgiref/util.py +159 -0
  1202. package/python/lib/python3.12/wsgiref/validate.py +438 -0
  1203. package/python/lib/python3.12/xdrlib.py +242 -0
  1204. package/python/lib/python3.12/xml/__init__.py +20 -0
  1205. package/python/lib/python3.12/xml/dom/NodeFilter.py +27 -0
  1206. package/python/lib/python3.12/xml/dom/__init__.py +140 -0
  1207. package/python/lib/python3.12/xml/dom/domreg.py +99 -0
  1208. package/python/lib/python3.12/xml/dom/expatbuilder.py +962 -0
  1209. package/python/lib/python3.12/xml/dom/minicompat.py +109 -0
  1210. package/python/lib/python3.12/xml/dom/minidom.py +2008 -0
  1211. package/python/lib/python3.12/xml/dom/pulldom.py +336 -0
  1212. package/python/lib/python3.12/xml/dom/xmlbuilder.py +389 -0
  1213. package/python/lib/python3.12/xml/etree/ElementInclude.py +186 -0
  1214. package/python/lib/python3.12/xml/etree/ElementPath.py +423 -0
  1215. package/python/lib/python3.12/xml/etree/ElementTree.py +2085 -0
  1216. package/python/lib/python3.12/xml/etree/__init__.py +33 -0
  1217. package/python/lib/python3.12/xml/etree/cElementTree.py +3 -0
  1218. package/python/lib/python3.12/xml/parsers/__init__.py +8 -0
  1219. package/python/lib/python3.12/xml/parsers/expat.py +8 -0
  1220. package/python/lib/python3.12/xml/sax/__init__.py +94 -0
  1221. package/python/lib/python3.12/xml/sax/_exceptions.py +127 -0
  1222. package/python/lib/python3.12/xml/sax/expatreader.py +454 -0
  1223. package/python/lib/python3.12/xml/sax/handler.py +387 -0
  1224. package/python/lib/python3.12/xml/sax/saxutils.py +369 -0
  1225. package/python/lib/python3.12/xml/sax/xmlreader.py +378 -0
  1226. package/python/lib/python3.12/xmlrpc/__init__.py +1 -0
  1227. package/python/lib/python3.12/xmlrpc/client.py +1529 -0
  1228. package/python/lib/python3.12/xmlrpc/server.py +1002 -0
  1229. package/python/lib/python3.12/zipapp.py +206 -0
  1230. package/python/lib/python3.12/zipfile/__init__.py +2340 -0
  1231. package/python/lib/python3.12/zipfile/__main__.py +4 -0
  1232. package/python/lib/python3.12/zipfile/_path/__init__.py +412 -0
  1233. package/python/lib/python3.12/zipfile/_path/glob.py +53 -0
  1234. package/python/lib/python3.12/zipimport.py +712 -0
  1235. package/python/lib/python3.12/zoneinfo/__init__.py +31 -0
  1236. package/python/lib/python3.12/zoneinfo/_common.py +164 -0
  1237. package/python/lib/python3.12/zoneinfo/_tzpath.py +181 -0
  1238. package/python/lib/python3.12/zoneinfo/_zoneinfo.py +772 -0
@@ -0,0 +1,2816 @@
1
+ """An extensible library for opening URLs using a variety of protocols
2
+
3
+ The simplest way to use this module is to call the urlopen function,
4
+ which accepts a string containing a URL or a Request object (described
5
+ below). It opens the URL and returns the results as file-like
6
+ object; the returned object has some extra methods described below.
7
+
8
+ The OpenerDirector manages a collection of Handler objects that do
9
+ all the actual work. Each Handler implements a particular protocol or
10
+ option. The OpenerDirector is a composite object that invokes the
11
+ Handlers needed to open the requested URL. For example, the
12
+ HTTPHandler performs HTTP GET and POST requests and deals with
13
+ non-error returns. The HTTPRedirectHandler automatically deals with
14
+ HTTP 301, 302, 303, 307, and 308 redirect errors, and the
15
+ HTTPDigestAuthHandler deals with digest authentication.
16
+
17
+ urlopen(url, data=None) -- Basic usage is the same as original
18
+ urllib. pass the url and optionally data to post to an HTTP URL, and
19
+ get a file-like object back. One difference is that you can also pass
20
+ a Request instance instead of URL. Raises a URLError (subclass of
21
+ OSError); for HTTP errors, raises an HTTPError, which can also be
22
+ treated as a valid response.
23
+
24
+ build_opener -- Function that creates a new OpenerDirector instance.
25
+ Will install the default handlers. Accepts one or more Handlers as
26
+ arguments, either instances or Handler classes that it will
27
+ instantiate. If one of the argument is a subclass of the default
28
+ handler, the argument will be installed instead of the default.
29
+
30
+ install_opener -- Installs a new opener as the default opener.
31
+
32
+ objects of interest:
33
+
34
+ OpenerDirector -- Sets up the User Agent as the Python-urllib client and manages
35
+ the Handler classes, while dealing with requests and responses.
36
+
37
+ Request -- An object that encapsulates the state of a request. The
38
+ state can be as simple as the URL. It can also include extra HTTP
39
+ headers, e.g. a User-Agent.
40
+
41
+ BaseHandler --
42
+
43
+ internals:
44
+ BaseHandler and parent
45
+ _call_chain conventions
46
+
47
+ Example usage:
48
+
49
+ import urllib.request
50
+
51
+ # set up authentication info
52
+ authinfo = urllib.request.HTTPBasicAuthHandler()
53
+ authinfo.add_password(realm='PDQ Application',
54
+ uri='https://mahler:8092/site-updates.py',
55
+ user='klem',
56
+ passwd='geheim$parole')
57
+
58
+ proxy_support = urllib.request.ProxyHandler({"http" : "http://ahad-haam:3128"})
59
+
60
+ # build a new opener that adds authentication and caching FTP handlers
61
+ opener = urllib.request.build_opener(proxy_support, authinfo,
62
+ urllib.request.CacheFTPHandler)
63
+
64
+ # install it
65
+ urllib.request.install_opener(opener)
66
+
67
+ f = urllib.request.urlopen('https://www.python.org/')
68
+ """
69
+
70
+ # XXX issues:
71
+ # If an authentication error handler that tries to perform
72
+ # authentication for some reason but fails, how should the error be
73
+ # signalled? The client needs to know the HTTP error code. But if
74
+ # the handler knows that the problem was, e.g., that it didn't know
75
+ # that hash algo that requested in the challenge, it would be good to
76
+ # pass that information along to the client, too.
77
+ # ftp errors aren't handled cleanly
78
+ # check digest against correct (i.e. non-apache) implementation
79
+
80
+ # Possible extensions:
81
+ # complex proxies XXX not sure what exactly was meant by this
82
+ # abstract factory for opener
83
+
84
+ import base64
85
+ import bisect
86
+ import email
87
+ import hashlib
88
+ import http.client
89
+ import io
90
+ import os
91
+ import re
92
+ import socket
93
+ import string
94
+ import sys
95
+ import time
96
+ import tempfile
97
+ import contextlib
98
+ import warnings
99
+
100
+
101
+ from urllib.error import URLError, HTTPError, ContentTooShortError
102
+ from urllib.parse import (
103
+ urlparse, urlsplit, urljoin, unwrap, quote, unquote,
104
+ _splittype, _splithost, _splitport, _splituser, _splitpasswd,
105
+ _splitattr, _splitquery, _splitvalue, _splittag, _to_bytes,
106
+ unquote_to_bytes, urlunparse)
107
+ from urllib.response import addinfourl, addclosehook
108
+
109
+ # check for SSL
110
+ try:
111
+ import ssl
112
+ except ImportError:
113
+ _have_ssl = False
114
+ else:
115
+ _have_ssl = True
116
+
117
+ __all__ = [
118
+ # Classes
119
+ 'Request', 'OpenerDirector', 'BaseHandler', 'HTTPDefaultErrorHandler',
120
+ 'HTTPRedirectHandler', 'HTTPCookieProcessor', 'ProxyHandler',
121
+ 'HTTPPasswordMgr', 'HTTPPasswordMgrWithDefaultRealm',
122
+ 'HTTPPasswordMgrWithPriorAuth', 'AbstractBasicAuthHandler',
123
+ 'HTTPBasicAuthHandler', 'ProxyBasicAuthHandler', 'AbstractDigestAuthHandler',
124
+ 'HTTPDigestAuthHandler', 'ProxyDigestAuthHandler', 'HTTPHandler',
125
+ 'FileHandler', 'FTPHandler', 'CacheFTPHandler', 'DataHandler',
126
+ 'UnknownHandler', 'HTTPErrorProcessor',
127
+ # Functions
128
+ 'urlopen', 'install_opener', 'build_opener',
129
+ 'pathname2url', 'url2pathname', 'getproxies',
130
+ # Legacy interface
131
+ 'urlretrieve', 'urlcleanup', 'URLopener', 'FancyURLopener',
132
+ ]
133
+
134
+ # used in User-Agent header sent
135
+ __version__ = '%d.%d' % sys.version_info[:2]
136
+
137
+ _opener = None
138
+ def urlopen(url, data=None, timeout=socket._GLOBAL_DEFAULT_TIMEOUT,
139
+ *, cafile=None, capath=None, cadefault=False, context=None):
140
+ '''Open the URL url, which can be either a string or a Request object.
141
+
142
+ *data* must be an object specifying additional data to be sent to
143
+ the server, or None if no such data is needed. See Request for
144
+ details.
145
+
146
+ urllib.request module uses HTTP/1.1 and includes a "Connection:close"
147
+ header in its HTTP requests.
148
+
149
+ The optional *timeout* parameter specifies a timeout in seconds for
150
+ blocking operations like the connection attempt (if not specified, the
151
+ global default timeout setting will be used). This only works for HTTP,
152
+ HTTPS and FTP connections.
153
+
154
+ If *context* is specified, it must be a ssl.SSLContext instance describing
155
+ the various SSL options. See HTTPSConnection for more details.
156
+
157
+ The optional *cafile* and *capath* parameters specify a set of trusted CA
158
+ certificates for HTTPS requests. cafile should point to a single file
159
+ containing a bundle of CA certificates, whereas capath should point to a
160
+ directory of hashed certificate files. More information can be found in
161
+ ssl.SSLContext.load_verify_locations().
162
+
163
+ The *cadefault* parameter is ignored.
164
+
165
+
166
+ This function always returns an object which can work as a
167
+ context manager and has the properties url, headers, and status.
168
+ See urllib.response.addinfourl for more detail on these properties.
169
+
170
+ For HTTP and HTTPS URLs, this function returns a http.client.HTTPResponse
171
+ object slightly modified. In addition to the three new methods above, the
172
+ msg attribute contains the same information as the reason attribute ---
173
+ the reason phrase returned by the server --- instead of the response
174
+ headers as it is specified in the documentation for HTTPResponse.
175
+
176
+ For FTP, file, and data URLs and requests explicitly handled by legacy
177
+ URLopener and FancyURLopener classes, this function returns a
178
+ urllib.response.addinfourl object.
179
+
180
+ Note that None may be returned if no handler handles the request (though
181
+ the default installed global OpenerDirector uses UnknownHandler to ensure
182
+ this never happens).
183
+
184
+ In addition, if proxy settings are detected (for example, when a *_proxy
185
+ environment variable like http_proxy is set), ProxyHandler is default
186
+ installed and makes sure the requests are handled through the proxy.
187
+
188
+ '''
189
+ global _opener
190
+ if cafile or capath or cadefault:
191
+ import warnings
192
+ warnings.warn("cafile, capath and cadefault are deprecated, use a "
193
+ "custom context instead.", DeprecationWarning, 2)
194
+ if context is not None:
195
+ raise ValueError(
196
+ "You can't pass both context and any of cafile, capath, and "
197
+ "cadefault"
198
+ )
199
+ if not _have_ssl:
200
+ raise ValueError('SSL support not available')
201
+ context = ssl.create_default_context(ssl.Purpose.SERVER_AUTH,
202
+ cafile=cafile,
203
+ capath=capath)
204
+ # send ALPN extension to indicate HTTP/1.1 protocol
205
+ context.set_alpn_protocols(['http/1.1'])
206
+ https_handler = HTTPSHandler(context=context)
207
+ opener = build_opener(https_handler)
208
+ elif context:
209
+ https_handler = HTTPSHandler(context=context)
210
+ opener = build_opener(https_handler)
211
+ elif _opener is None:
212
+ _opener = opener = build_opener()
213
+ else:
214
+ opener = _opener
215
+ return opener.open(url, data, timeout)
216
+
217
+ def install_opener(opener):
218
+ global _opener
219
+ _opener = opener
220
+
221
+ _url_tempfiles = []
222
+ def urlretrieve(url, filename=None, reporthook=None, data=None):
223
+ """
224
+ Retrieve a URL into a temporary location on disk.
225
+
226
+ Requires a URL argument. If a filename is passed, it is used as
227
+ the temporary file location. The reporthook argument should be
228
+ a callable that accepts a block number, a read size, and the
229
+ total file size of the URL target. The data argument should be
230
+ valid URL encoded data.
231
+
232
+ If a filename is passed and the URL points to a local resource,
233
+ the result is a copy from local file to new file.
234
+
235
+ Returns a tuple containing the path to the newly created
236
+ data file as well as the resulting HTTPMessage object.
237
+ """
238
+ url_type, path = _splittype(url)
239
+
240
+ with contextlib.closing(urlopen(url, data)) as fp:
241
+ headers = fp.info()
242
+
243
+ # Just return the local path and the "headers" for file://
244
+ # URLs. No sense in performing a copy unless requested.
245
+ if url_type == "file" and not filename:
246
+ return os.path.normpath(path), headers
247
+
248
+ # Handle temporary file setup.
249
+ if filename:
250
+ tfp = open(filename, 'wb')
251
+ else:
252
+ tfp = tempfile.NamedTemporaryFile(delete=False)
253
+ filename = tfp.name
254
+ _url_tempfiles.append(filename)
255
+
256
+ with tfp:
257
+ result = filename, headers
258
+ bs = 1024*8
259
+ size = -1
260
+ read = 0
261
+ blocknum = 0
262
+ if "content-length" in headers:
263
+ size = int(headers["Content-Length"])
264
+
265
+ if reporthook:
266
+ reporthook(blocknum, bs, size)
267
+
268
+ while block := fp.read(bs):
269
+ read += len(block)
270
+ tfp.write(block)
271
+ blocknum += 1
272
+ if reporthook:
273
+ reporthook(blocknum, bs, size)
274
+
275
+ if size >= 0 and read < size:
276
+ raise ContentTooShortError(
277
+ "retrieval incomplete: got only %i out of %i bytes"
278
+ % (read, size), result)
279
+
280
+ return result
281
+
282
+ def urlcleanup():
283
+ """Clean up temporary files from urlretrieve calls."""
284
+ for temp_file in _url_tempfiles:
285
+ try:
286
+ os.unlink(temp_file)
287
+ except OSError:
288
+ pass
289
+
290
+ del _url_tempfiles[:]
291
+ global _opener
292
+ if _opener:
293
+ _opener = None
294
+
295
+ # copied from cookielib.py
296
+ _cut_port_re = re.compile(r":\d+$", re.ASCII)
297
+ def request_host(request):
298
+ """Return request-host, as defined by RFC 2965.
299
+
300
+ Variation from RFC: returned value is lowercased, for convenient
301
+ comparison.
302
+
303
+ """
304
+ url = request.full_url
305
+ host = urlparse(url)[1]
306
+ if host == "":
307
+ host = request.get_header("Host", "")
308
+
309
+ # remove port, if present
310
+ host = _cut_port_re.sub("", host, 1)
311
+ return host.lower()
312
+
313
+ class Request:
314
+
315
+ def __init__(self, url, data=None, headers={},
316
+ origin_req_host=None, unverifiable=False,
317
+ method=None):
318
+ self.full_url = url
319
+ self.headers = {}
320
+ self.unredirected_hdrs = {}
321
+ self._data = None
322
+ self.data = data
323
+ self._tunnel_host = None
324
+ for key, value in headers.items():
325
+ self.add_header(key, value)
326
+ if origin_req_host is None:
327
+ origin_req_host = request_host(self)
328
+ self.origin_req_host = origin_req_host
329
+ self.unverifiable = unverifiable
330
+ if method:
331
+ self.method = method
332
+
333
+ @property
334
+ def full_url(self):
335
+ if self.fragment:
336
+ return '{}#{}'.format(self._full_url, self.fragment)
337
+ return self._full_url
338
+
339
+ @full_url.setter
340
+ def full_url(self, url):
341
+ # unwrap('<URL:type://host/path>') --> 'type://host/path'
342
+ self._full_url = unwrap(url)
343
+ self._full_url, self.fragment = _splittag(self._full_url)
344
+ self._parse()
345
+
346
+ @full_url.deleter
347
+ def full_url(self):
348
+ self._full_url = None
349
+ self.fragment = None
350
+ self.selector = ''
351
+
352
+ @property
353
+ def data(self):
354
+ return self._data
355
+
356
+ @data.setter
357
+ def data(self, data):
358
+ if data != self._data:
359
+ self._data = data
360
+ # issue 16464
361
+ # if we change data we need to remove content-length header
362
+ # (cause it's most probably calculated for previous value)
363
+ if self.has_header("Content-length"):
364
+ self.remove_header("Content-length")
365
+
366
+ @data.deleter
367
+ def data(self):
368
+ self.data = None
369
+
370
+ def _parse(self):
371
+ self.type, rest = _splittype(self._full_url)
372
+ if self.type is None:
373
+ raise ValueError("unknown url type: %r" % self.full_url)
374
+ self.host, self.selector = _splithost(rest)
375
+ if self.host:
376
+ self.host = unquote(self.host)
377
+
378
+ def get_method(self):
379
+ """Return a string indicating the HTTP request method."""
380
+ default_method = "POST" if self.data is not None else "GET"
381
+ return getattr(self, 'method', default_method)
382
+
383
+ def get_full_url(self):
384
+ return self.full_url
385
+
386
+ def set_proxy(self, host, type):
387
+ if self.type == 'https' and not self._tunnel_host:
388
+ self._tunnel_host = self.host
389
+ else:
390
+ self.type= type
391
+ self.selector = self.full_url
392
+ self.host = host
393
+
394
+ def has_proxy(self):
395
+ return self.selector == self.full_url
396
+
397
+ def add_header(self, key, val):
398
+ # useful for something like authentication
399
+ self.headers[key.capitalize()] = val
400
+
401
+ def add_unredirected_header(self, key, val):
402
+ # will not be added to a redirected request
403
+ self.unredirected_hdrs[key.capitalize()] = val
404
+
405
+ def has_header(self, header_name):
406
+ return (header_name in self.headers or
407
+ header_name in self.unredirected_hdrs)
408
+
409
+ def get_header(self, header_name, default=None):
410
+ return self.headers.get(
411
+ header_name,
412
+ self.unredirected_hdrs.get(header_name, default))
413
+
414
+ def remove_header(self, header_name):
415
+ self.headers.pop(header_name, None)
416
+ self.unredirected_hdrs.pop(header_name, None)
417
+
418
+ def header_items(self):
419
+ hdrs = {**self.unredirected_hdrs, **self.headers}
420
+ return list(hdrs.items())
421
+
422
+ class OpenerDirector:
423
+ def __init__(self):
424
+ client_version = "Python-urllib/%s" % __version__
425
+ self.addheaders = [('User-agent', client_version)]
426
+ # self.handlers is retained only for backward compatibility
427
+ self.handlers = []
428
+ # manage the individual handlers
429
+ self.handle_open = {}
430
+ self.handle_error = {}
431
+ self.process_response = {}
432
+ self.process_request = {}
433
+
434
+ def add_handler(self, handler):
435
+ if not hasattr(handler, "add_parent"):
436
+ raise TypeError("expected BaseHandler instance, got %r" %
437
+ type(handler))
438
+
439
+ added = False
440
+ for meth in dir(handler):
441
+ if meth in ["redirect_request", "do_open", "proxy_open"]:
442
+ # oops, coincidental match
443
+ continue
444
+
445
+ i = meth.find("_")
446
+ protocol = meth[:i]
447
+ condition = meth[i+1:]
448
+
449
+ if condition.startswith("error"):
450
+ j = condition.find("_") + i + 1
451
+ kind = meth[j+1:]
452
+ try:
453
+ kind = int(kind)
454
+ except ValueError:
455
+ pass
456
+ lookup = self.handle_error.get(protocol, {})
457
+ self.handle_error[protocol] = lookup
458
+ elif condition == "open":
459
+ kind = protocol
460
+ lookup = self.handle_open
461
+ elif condition == "response":
462
+ kind = protocol
463
+ lookup = self.process_response
464
+ elif condition == "request":
465
+ kind = protocol
466
+ lookup = self.process_request
467
+ else:
468
+ continue
469
+
470
+ handlers = lookup.setdefault(kind, [])
471
+ if handlers:
472
+ bisect.insort(handlers, handler)
473
+ else:
474
+ handlers.append(handler)
475
+ added = True
476
+
477
+ if added:
478
+ bisect.insort(self.handlers, handler)
479
+ handler.add_parent(self)
480
+
481
+ def close(self):
482
+ # Only exists for backwards compatibility.
483
+ pass
484
+
485
+ def _call_chain(self, chain, kind, meth_name, *args):
486
+ # Handlers raise an exception if no one else should try to handle
487
+ # the request, or return None if they can't but another handler
488
+ # could. Otherwise, they return the response.
489
+ handlers = chain.get(kind, ())
490
+ for handler in handlers:
491
+ func = getattr(handler, meth_name)
492
+ result = func(*args)
493
+ if result is not None:
494
+ return result
495
+
496
+ def open(self, fullurl, data=None, timeout=socket._GLOBAL_DEFAULT_TIMEOUT):
497
+ # accept a URL or a Request object
498
+ if isinstance(fullurl, str):
499
+ req = Request(fullurl, data)
500
+ else:
501
+ req = fullurl
502
+ if data is not None:
503
+ req.data = data
504
+
505
+ req.timeout = timeout
506
+ protocol = req.type
507
+
508
+ # pre-process request
509
+ meth_name = protocol+"_request"
510
+ for processor in self.process_request.get(protocol, []):
511
+ meth = getattr(processor, meth_name)
512
+ req = meth(req)
513
+
514
+ sys.audit('urllib.Request', req.full_url, req.data, req.headers, req.get_method())
515
+ response = self._open(req, data)
516
+
517
+ # post-process response
518
+ meth_name = protocol+"_response"
519
+ for processor in self.process_response.get(protocol, []):
520
+ meth = getattr(processor, meth_name)
521
+ response = meth(req, response)
522
+
523
+ return response
524
+
525
+ def _open(self, req, data=None):
526
+ result = self._call_chain(self.handle_open, 'default',
527
+ 'default_open', req)
528
+ if result:
529
+ return result
530
+
531
+ protocol = req.type
532
+ result = self._call_chain(self.handle_open, protocol, protocol +
533
+ '_open', req)
534
+ if result:
535
+ return result
536
+
537
+ return self._call_chain(self.handle_open, 'unknown',
538
+ 'unknown_open', req)
539
+
540
+ def error(self, proto, *args):
541
+ if proto in ('http', 'https'):
542
+ # XXX http[s] protocols are special-cased
543
+ dict = self.handle_error['http'] # https is not different than http
544
+ proto = args[2] # YUCK!
545
+ meth_name = 'http_error_%s' % proto
546
+ http_err = 1
547
+ orig_args = args
548
+ else:
549
+ dict = self.handle_error
550
+ meth_name = proto + '_error'
551
+ http_err = 0
552
+ args = (dict, proto, meth_name) + args
553
+ result = self._call_chain(*args)
554
+ if result:
555
+ return result
556
+
557
+ if http_err:
558
+ args = (dict, 'default', 'http_error_default') + orig_args
559
+ return self._call_chain(*args)
560
+
561
+ # XXX probably also want an abstract factory that knows when it makes
562
+ # sense to skip a superclass in favor of a subclass and when it might
563
+ # make sense to include both
564
+
565
+ def build_opener(*handlers):
566
+ """Create an opener object from a list of handlers.
567
+
568
+ The opener will use several default handlers, including support
569
+ for HTTP, FTP and when applicable HTTPS.
570
+
571
+ If any of the handlers passed as arguments are subclasses of the
572
+ default handlers, the default handlers will not be used.
573
+ """
574
+ opener = OpenerDirector()
575
+ default_classes = [ProxyHandler, UnknownHandler, HTTPHandler,
576
+ HTTPDefaultErrorHandler, HTTPRedirectHandler,
577
+ FTPHandler, FileHandler, HTTPErrorProcessor,
578
+ DataHandler]
579
+ if hasattr(http.client, "HTTPSConnection"):
580
+ default_classes.append(HTTPSHandler)
581
+ skip = set()
582
+ for klass in default_classes:
583
+ for check in handlers:
584
+ if isinstance(check, type):
585
+ if issubclass(check, klass):
586
+ skip.add(klass)
587
+ elif isinstance(check, klass):
588
+ skip.add(klass)
589
+ for klass in skip:
590
+ default_classes.remove(klass)
591
+
592
+ for klass in default_classes:
593
+ opener.add_handler(klass())
594
+
595
+ for h in handlers:
596
+ if isinstance(h, type):
597
+ h = h()
598
+ opener.add_handler(h)
599
+ return opener
600
+
601
+ class BaseHandler:
602
+ handler_order = 500
603
+
604
+ def add_parent(self, parent):
605
+ self.parent = parent
606
+
607
+ def close(self):
608
+ # Only exists for backwards compatibility
609
+ pass
610
+
611
+ def __lt__(self, other):
612
+ if not hasattr(other, "handler_order"):
613
+ # Try to preserve the old behavior of having custom classes
614
+ # inserted after default ones (works only for custom user
615
+ # classes which are not aware of handler_order).
616
+ return True
617
+ return self.handler_order < other.handler_order
618
+
619
+
620
+ class HTTPErrorProcessor(BaseHandler):
621
+ """Process HTTP error responses."""
622
+ handler_order = 1000 # after all other processing
623
+
624
+ def http_response(self, request, response):
625
+ code, msg, hdrs = response.code, response.msg, response.info()
626
+
627
+ # According to RFC 2616, "2xx" code indicates that the client's
628
+ # request was successfully received, understood, and accepted.
629
+ if not (200 <= code < 300):
630
+ response = self.parent.error(
631
+ 'http', request, response, code, msg, hdrs)
632
+
633
+ return response
634
+
635
+ https_response = http_response
636
+
637
+ class HTTPDefaultErrorHandler(BaseHandler):
638
+ def http_error_default(self, req, fp, code, msg, hdrs):
639
+ raise HTTPError(req.full_url, code, msg, hdrs, fp)
640
+
641
+ class HTTPRedirectHandler(BaseHandler):
642
+ # maximum number of redirections to any single URL
643
+ # this is needed because of the state that cookies introduce
644
+ max_repeats = 4
645
+ # maximum total number of redirections (regardless of URL) before
646
+ # assuming we're in a loop
647
+ max_redirections = 10
648
+
649
+ def redirect_request(self, req, fp, code, msg, headers, newurl):
650
+ """Return a Request or None in response to a redirect.
651
+
652
+ This is called by the http_error_30x methods when a
653
+ redirection response is received. If a redirection should
654
+ take place, return a new Request to allow http_error_30x to
655
+ perform the redirect. Otherwise, raise HTTPError if no-one
656
+ else should try to handle this url. Return None if you can't
657
+ but another Handler might.
658
+ """
659
+ m = req.get_method()
660
+ if (not (code in (301, 302, 303, 307, 308) and m in ("GET", "HEAD")
661
+ or code in (301, 302, 303) and m == "POST")):
662
+ raise HTTPError(req.full_url, code, msg, headers, fp)
663
+
664
+ # Strictly (according to RFC 2616), 301 or 302 in response to
665
+ # a POST MUST NOT cause a redirection without confirmation
666
+ # from the user (of urllib.request, in this case). In practice,
667
+ # essentially all clients do redirect in this case, so we do
668
+ # the same.
669
+
670
+ # Be conciliant with URIs containing a space. This is mainly
671
+ # redundant with the more complete encoding done in http_error_302(),
672
+ # but it is kept for compatibility with other callers.
673
+ newurl = newurl.replace(' ', '%20')
674
+
675
+ CONTENT_HEADERS = ("content-length", "content-type")
676
+ newheaders = {k: v for k, v in req.headers.items()
677
+ if k.lower() not in CONTENT_HEADERS}
678
+ return Request(newurl,
679
+ headers=newheaders,
680
+ origin_req_host=req.origin_req_host,
681
+ unverifiable=True)
682
+
683
+ # Implementation note: To avoid the server sending us into an
684
+ # infinite loop, the request object needs to track what URLs we
685
+ # have already seen. Do this by adding a handler-specific
686
+ # attribute to the Request object.
687
+ def http_error_302(self, req, fp, code, msg, headers):
688
+ # Some servers (incorrectly) return multiple Location headers
689
+ # (so probably same goes for URI). Use first header.
690
+ if "location" in headers:
691
+ newurl = headers["location"]
692
+ elif "uri" in headers:
693
+ newurl = headers["uri"]
694
+ else:
695
+ return
696
+
697
+ # fix a possible malformed URL
698
+ urlparts = urlparse(newurl)
699
+
700
+ # For security reasons we don't allow redirection to anything other
701
+ # than http, https or ftp.
702
+
703
+ if urlparts.scheme not in ('http', 'https', 'ftp', ''):
704
+ raise HTTPError(
705
+ newurl, code,
706
+ "%s - Redirection to url '%s' is not allowed" % (msg, newurl),
707
+ headers, fp)
708
+
709
+ if not urlparts.path and urlparts.netloc:
710
+ urlparts = list(urlparts)
711
+ urlparts[2] = "/"
712
+ newurl = urlunparse(urlparts)
713
+
714
+ # http.client.parse_headers() decodes as ISO-8859-1. Recover the
715
+ # original bytes and percent-encode non-ASCII bytes, and any special
716
+ # characters such as the space.
717
+ newurl = quote(
718
+ newurl, encoding="iso-8859-1", safe=string.punctuation)
719
+ newurl = urljoin(req.full_url, newurl)
720
+
721
+ # XXX Probably want to forget about the state of the current
722
+ # request, although that might interact poorly with other
723
+ # handlers that also use handler-specific request attributes
724
+ new = self.redirect_request(req, fp, code, msg, headers, newurl)
725
+ if new is None:
726
+ return
727
+
728
+ # loop detection
729
+ # .redirect_dict has a key url if url was previously visited.
730
+ if hasattr(req, 'redirect_dict'):
731
+ visited = new.redirect_dict = req.redirect_dict
732
+ if (visited.get(newurl, 0) >= self.max_repeats or
733
+ len(visited) >= self.max_redirections):
734
+ raise HTTPError(req.full_url, code,
735
+ self.inf_msg + msg, headers, fp)
736
+ else:
737
+ visited = new.redirect_dict = req.redirect_dict = {}
738
+ visited[newurl] = visited.get(newurl, 0) + 1
739
+
740
+ # Don't close the fp until we are sure that we won't use it
741
+ # with HTTPError.
742
+ fp.read()
743
+ fp.close()
744
+
745
+ return self.parent.open(new, timeout=req.timeout)
746
+
747
+ http_error_301 = http_error_303 = http_error_307 = http_error_308 = http_error_302
748
+
749
+ inf_msg = "The HTTP server returned a redirect error that would " \
750
+ "lead to an infinite loop.\n" \
751
+ "The last 30x error message was:\n"
752
+
753
+
754
+ def _parse_proxy(proxy):
755
+ """Return (scheme, user, password, host/port) given a URL or an authority.
756
+
757
+ If a URL is supplied, it must have an authority (host:port) component.
758
+ According to RFC 3986, having an authority component means the URL must
759
+ have two slashes after the scheme.
760
+ """
761
+ scheme, r_scheme = _splittype(proxy)
762
+ if not r_scheme.startswith("/"):
763
+ # authority
764
+ scheme = None
765
+ authority = proxy
766
+ else:
767
+ # URL
768
+ if not r_scheme.startswith("//"):
769
+ raise ValueError("proxy URL with no authority: %r" % proxy)
770
+ # We have an authority, so for RFC 3986-compliant URLs (by ss 3.
771
+ # and 3.3.), path is empty or starts with '/'
772
+ if '@' in r_scheme:
773
+ host_separator = r_scheme.find('@')
774
+ end = r_scheme.find("/", host_separator)
775
+ else:
776
+ end = r_scheme.find("/", 2)
777
+ if end == -1:
778
+ end = None
779
+ authority = r_scheme[2:end]
780
+ userinfo, hostport = _splituser(authority)
781
+ if userinfo is not None:
782
+ user, password = _splitpasswd(userinfo)
783
+ else:
784
+ user = password = None
785
+ return scheme, user, password, hostport
786
+
787
+ class ProxyHandler(BaseHandler):
788
+ # Proxies must be in front
789
+ handler_order = 100
790
+
791
+ def __init__(self, proxies=None):
792
+ if proxies is None:
793
+ proxies = getproxies()
794
+ assert hasattr(proxies, 'keys'), "proxies must be a mapping"
795
+ self.proxies = proxies
796
+ for type, url in proxies.items():
797
+ type = type.lower()
798
+ setattr(self, '%s_open' % type,
799
+ lambda r, proxy=url, type=type, meth=self.proxy_open:
800
+ meth(r, proxy, type))
801
+
802
+ def proxy_open(self, req, proxy, type):
803
+ orig_type = req.type
804
+ proxy_type, user, password, hostport = _parse_proxy(proxy)
805
+ if proxy_type is None:
806
+ proxy_type = orig_type
807
+
808
+ if req.host and proxy_bypass(req.host):
809
+ return None
810
+
811
+ if user and password:
812
+ user_pass = '%s:%s' % (unquote(user),
813
+ unquote(password))
814
+ creds = base64.b64encode(user_pass.encode()).decode("ascii")
815
+ req.add_header('Proxy-authorization', 'Basic ' + creds)
816
+ hostport = unquote(hostport)
817
+ req.set_proxy(hostport, proxy_type)
818
+ if orig_type == proxy_type or orig_type == 'https':
819
+ # let other handlers take care of it
820
+ return None
821
+ else:
822
+ # need to start over, because the other handlers don't
823
+ # grok the proxy's URL type
824
+ # e.g. if we have a constructor arg proxies like so:
825
+ # {'http': 'ftp://proxy.example.com'}, we may end up turning
826
+ # a request for http://acme.example.com/a into one for
827
+ # ftp://proxy.example.com/a
828
+ return self.parent.open(req, timeout=req.timeout)
829
+
830
+ class HTTPPasswordMgr:
831
+
832
+ def __init__(self):
833
+ self.passwd = {}
834
+
835
+ def add_password(self, realm, uri, user, passwd):
836
+ # uri could be a single URI or a sequence
837
+ if isinstance(uri, str):
838
+ uri = [uri]
839
+ if realm not in self.passwd:
840
+ self.passwd[realm] = {}
841
+ for default_port in True, False:
842
+ reduced_uri = tuple(
843
+ self.reduce_uri(u, default_port) for u in uri)
844
+ self.passwd[realm][reduced_uri] = (user, passwd)
845
+
846
+ def find_user_password(self, realm, authuri):
847
+ domains = self.passwd.get(realm, {})
848
+ for default_port in True, False:
849
+ reduced_authuri = self.reduce_uri(authuri, default_port)
850
+ for uris, authinfo in domains.items():
851
+ for uri in uris:
852
+ if self.is_suburi(uri, reduced_authuri):
853
+ return authinfo
854
+ return None, None
855
+
856
+ def reduce_uri(self, uri, default_port=True):
857
+ """Accept authority or URI and extract only the authority and path."""
858
+ # note HTTP URLs do not have a userinfo component
859
+ parts = urlsplit(uri)
860
+ if parts[1]:
861
+ # URI
862
+ scheme = parts[0]
863
+ authority = parts[1]
864
+ path = parts[2] or '/'
865
+ else:
866
+ # host or host:port
867
+ scheme = None
868
+ authority = uri
869
+ path = '/'
870
+ host, port = _splitport(authority)
871
+ if default_port and port is None and scheme is not None:
872
+ dport = {"http": 80,
873
+ "https": 443,
874
+ }.get(scheme)
875
+ if dport is not None:
876
+ authority = "%s:%d" % (host, dport)
877
+ return authority, path
878
+
879
+ def is_suburi(self, base, test):
880
+ """Check if test is below base in a URI tree
881
+
882
+ Both args must be URIs in reduced form.
883
+ """
884
+ if base == test:
885
+ return True
886
+ if base[0] != test[0]:
887
+ return False
888
+ prefix = base[1]
889
+ if prefix[-1:] != '/':
890
+ prefix += '/'
891
+ return test[1].startswith(prefix)
892
+
893
+
894
+ class HTTPPasswordMgrWithDefaultRealm(HTTPPasswordMgr):
895
+
896
+ def find_user_password(self, realm, authuri):
897
+ user, password = HTTPPasswordMgr.find_user_password(self, realm,
898
+ authuri)
899
+ if user is not None:
900
+ return user, password
901
+ return HTTPPasswordMgr.find_user_password(self, None, authuri)
902
+
903
+
904
+ class HTTPPasswordMgrWithPriorAuth(HTTPPasswordMgrWithDefaultRealm):
905
+
906
+ def __init__(self):
907
+ self.authenticated = {}
908
+ super().__init__()
909
+
910
+ def add_password(self, realm, uri, user, passwd, is_authenticated=False):
911
+ self.update_authenticated(uri, is_authenticated)
912
+ # Add a default for prior auth requests
913
+ if realm is not None:
914
+ super().add_password(None, uri, user, passwd)
915
+ super().add_password(realm, uri, user, passwd)
916
+
917
+ def update_authenticated(self, uri, is_authenticated=False):
918
+ # uri could be a single URI or a sequence
919
+ if isinstance(uri, str):
920
+ uri = [uri]
921
+
922
+ for default_port in True, False:
923
+ for u in uri:
924
+ reduced_uri = self.reduce_uri(u, default_port)
925
+ self.authenticated[reduced_uri] = is_authenticated
926
+
927
+ def is_authenticated(self, authuri):
928
+ for default_port in True, False:
929
+ reduced_authuri = self.reduce_uri(authuri, default_port)
930
+ for uri in self.authenticated:
931
+ if self.is_suburi(uri, reduced_authuri):
932
+ return self.authenticated[uri]
933
+
934
+
935
+ class AbstractBasicAuthHandler:
936
+
937
+ # XXX this allows for multiple auth-schemes, but will stupidly pick
938
+ # the last one with a realm specified.
939
+
940
+ # allow for double- and single-quoted realm values
941
+ # (single quotes are a violation of the RFC, but appear in the wild)
942
+ rx = re.compile('(?:^|,)' # start of the string or ','
943
+ '[ \t]*' # optional whitespaces
944
+ '([^ \t,]+)' # scheme like "Basic"
945
+ '[ \t]+' # mandatory whitespaces
946
+ # realm=xxx
947
+ # realm='xxx'
948
+ # realm="xxx"
949
+ 'realm=(["\']?)([^"\']*)\\2',
950
+ re.I)
951
+
952
+ # XXX could pre-emptively send auth info already accepted (RFC 2617,
953
+ # end of section 2, and section 1.2 immediately after "credentials"
954
+ # production).
955
+
956
+ def __init__(self, password_mgr=None):
957
+ if password_mgr is None:
958
+ password_mgr = HTTPPasswordMgr()
959
+ self.passwd = password_mgr
960
+ self.add_password = self.passwd.add_password
961
+
962
+ def _parse_realm(self, header):
963
+ # parse WWW-Authenticate header: accept multiple challenges per header
964
+ found_challenge = False
965
+ for mo in AbstractBasicAuthHandler.rx.finditer(header):
966
+ scheme, quote, realm = mo.groups()
967
+ if quote not in ['"', "'"]:
968
+ warnings.warn("Basic Auth Realm was unquoted",
969
+ UserWarning, 3)
970
+
971
+ yield (scheme, realm)
972
+
973
+ found_challenge = True
974
+
975
+ if not found_challenge:
976
+ if header:
977
+ scheme = header.split()[0]
978
+ else:
979
+ scheme = ''
980
+ yield (scheme, None)
981
+
982
+ def http_error_auth_reqed(self, authreq, host, req, headers):
983
+ # host may be an authority (without userinfo) or a URL with an
984
+ # authority
985
+ headers = headers.get_all(authreq)
986
+ if not headers:
987
+ # no header found
988
+ return
989
+
990
+ unsupported = None
991
+ for header in headers:
992
+ for scheme, realm in self._parse_realm(header):
993
+ if scheme.lower() != 'basic':
994
+ unsupported = scheme
995
+ continue
996
+
997
+ if realm is not None:
998
+ # Use the first matching Basic challenge.
999
+ # Ignore following challenges even if they use the Basic
1000
+ # scheme.
1001
+ return self.retry_http_basic_auth(host, req, realm)
1002
+
1003
+ if unsupported is not None:
1004
+ raise ValueError("AbstractBasicAuthHandler does not "
1005
+ "support the following scheme: %r"
1006
+ % (scheme,))
1007
+
1008
+ def retry_http_basic_auth(self, host, req, realm):
1009
+ user, pw = self.passwd.find_user_password(realm, host)
1010
+ if pw is not None:
1011
+ raw = "%s:%s" % (user, pw)
1012
+ auth = "Basic " + base64.b64encode(raw.encode()).decode("ascii")
1013
+ if req.get_header(self.auth_header, None) == auth:
1014
+ return None
1015
+ req.add_unredirected_header(self.auth_header, auth)
1016
+ return self.parent.open(req, timeout=req.timeout)
1017
+ else:
1018
+ return None
1019
+
1020
+ def http_request(self, req):
1021
+ if (not hasattr(self.passwd, 'is_authenticated') or
1022
+ not self.passwd.is_authenticated(req.full_url)):
1023
+ return req
1024
+
1025
+ if not req.has_header('Authorization'):
1026
+ user, passwd = self.passwd.find_user_password(None, req.full_url)
1027
+ credentials = '{0}:{1}'.format(user, passwd).encode()
1028
+ auth_str = base64.standard_b64encode(credentials).decode()
1029
+ req.add_unredirected_header('Authorization',
1030
+ 'Basic {}'.format(auth_str.strip()))
1031
+ return req
1032
+
1033
+ def http_response(self, req, response):
1034
+ if hasattr(self.passwd, 'is_authenticated'):
1035
+ if 200 <= response.code < 300:
1036
+ self.passwd.update_authenticated(req.full_url, True)
1037
+ else:
1038
+ self.passwd.update_authenticated(req.full_url, False)
1039
+ return response
1040
+
1041
+ https_request = http_request
1042
+ https_response = http_response
1043
+
1044
+
1045
+
1046
+ class HTTPBasicAuthHandler(AbstractBasicAuthHandler, BaseHandler):
1047
+
1048
+ auth_header = 'Authorization'
1049
+
1050
+ def http_error_401(self, req, fp, code, msg, headers):
1051
+ url = req.full_url
1052
+ response = self.http_error_auth_reqed('www-authenticate',
1053
+ url, req, headers)
1054
+ return response
1055
+
1056
+
1057
+ class ProxyBasicAuthHandler(AbstractBasicAuthHandler, BaseHandler):
1058
+
1059
+ auth_header = 'Proxy-authorization'
1060
+
1061
+ def http_error_407(self, req, fp, code, msg, headers):
1062
+ # http_error_auth_reqed requires that there is no userinfo component in
1063
+ # authority. Assume there isn't one, since urllib.request does not (and
1064
+ # should not, RFC 3986 s. 3.2.1) support requests for URLs containing
1065
+ # userinfo.
1066
+ authority = req.host
1067
+ response = self.http_error_auth_reqed('proxy-authenticate',
1068
+ authority, req, headers)
1069
+ return response
1070
+
1071
+
1072
+ # Return n random bytes.
1073
+ _randombytes = os.urandom
1074
+
1075
+
1076
+ class AbstractDigestAuthHandler:
1077
+ # Digest authentication is specified in RFC 2617.
1078
+
1079
+ # XXX The client does not inspect the Authentication-Info header
1080
+ # in a successful response.
1081
+
1082
+ # XXX It should be possible to test this implementation against
1083
+ # a mock server that just generates a static set of challenges.
1084
+
1085
+ # XXX qop="auth-int" supports is shaky
1086
+
1087
+ def __init__(self, passwd=None):
1088
+ if passwd is None:
1089
+ passwd = HTTPPasswordMgr()
1090
+ self.passwd = passwd
1091
+ self.add_password = self.passwd.add_password
1092
+ self.retried = 0
1093
+ self.nonce_count = 0
1094
+ self.last_nonce = None
1095
+
1096
+ def reset_retry_count(self):
1097
+ self.retried = 0
1098
+
1099
+ def http_error_auth_reqed(self, auth_header, host, req, headers):
1100
+ authreq = headers.get(auth_header, None)
1101
+ if self.retried > 5:
1102
+ # Don't fail endlessly - if we failed once, we'll probably
1103
+ # fail a second time. Hm. Unless the Password Manager is
1104
+ # prompting for the information. Crap. This isn't great
1105
+ # but it's better than the current 'repeat until recursion
1106
+ # depth exceeded' approach <wink>
1107
+ raise HTTPError(req.full_url, 401, "digest auth failed",
1108
+ headers, None)
1109
+ else:
1110
+ self.retried += 1
1111
+ if authreq:
1112
+ scheme = authreq.split()[0]
1113
+ if scheme.lower() == 'digest':
1114
+ return self.retry_http_digest_auth(req, authreq)
1115
+ elif scheme.lower() != 'basic':
1116
+ raise ValueError("AbstractDigestAuthHandler does not support"
1117
+ " the following scheme: '%s'" % scheme)
1118
+
1119
+ def retry_http_digest_auth(self, req, auth):
1120
+ token, challenge = auth.split(' ', 1)
1121
+ chal = parse_keqv_list(filter(None, parse_http_list(challenge)))
1122
+ auth = self.get_authorization(req, chal)
1123
+ if auth:
1124
+ auth_val = 'Digest %s' % auth
1125
+ if req.headers.get(self.auth_header, None) == auth_val:
1126
+ return None
1127
+ req.add_unredirected_header(self.auth_header, auth_val)
1128
+ resp = self.parent.open(req, timeout=req.timeout)
1129
+ return resp
1130
+
1131
+ def get_cnonce(self, nonce):
1132
+ # The cnonce-value is an opaque
1133
+ # quoted string value provided by the client and used by both client
1134
+ # and server to avoid chosen plaintext attacks, to provide mutual
1135
+ # authentication, and to provide some message integrity protection.
1136
+ # This isn't a fabulous effort, but it's probably Good Enough.
1137
+ s = "%s:%s:%s:" % (self.nonce_count, nonce, time.ctime())
1138
+ b = s.encode("ascii") + _randombytes(8)
1139
+ dig = hashlib.sha1(b).hexdigest()
1140
+ return dig[:16]
1141
+
1142
+ def get_authorization(self, req, chal):
1143
+ try:
1144
+ realm = chal['realm']
1145
+ nonce = chal['nonce']
1146
+ qop = chal.get('qop')
1147
+ algorithm = chal.get('algorithm', 'MD5')
1148
+ # mod_digest doesn't send an opaque, even though it isn't
1149
+ # supposed to be optional
1150
+ opaque = chal.get('opaque', None)
1151
+ except KeyError:
1152
+ return None
1153
+
1154
+ H, KD = self.get_algorithm_impls(algorithm)
1155
+ if H is None:
1156
+ return None
1157
+
1158
+ user, pw = self.passwd.find_user_password(realm, req.full_url)
1159
+ if user is None:
1160
+ return None
1161
+
1162
+ # XXX not implemented yet
1163
+ if req.data is not None:
1164
+ entdig = self.get_entity_digest(req.data, chal)
1165
+ else:
1166
+ entdig = None
1167
+
1168
+ A1 = "%s:%s:%s" % (user, realm, pw)
1169
+ A2 = "%s:%s" % (req.get_method(),
1170
+ # XXX selector: what about proxies and full urls
1171
+ req.selector)
1172
+ # NOTE: As per RFC 2617, when server sends "auth,auth-int", the client could use either `auth`
1173
+ # or `auth-int` to the response back. we use `auth` to send the response back.
1174
+ if qop is None:
1175
+ respdig = KD(H(A1), "%s:%s" % (nonce, H(A2)))
1176
+ elif 'auth' in qop.split(','):
1177
+ if nonce == self.last_nonce:
1178
+ self.nonce_count += 1
1179
+ else:
1180
+ self.nonce_count = 1
1181
+ self.last_nonce = nonce
1182
+ ncvalue = '%08x' % self.nonce_count
1183
+ cnonce = self.get_cnonce(nonce)
1184
+ noncebit = "%s:%s:%s:%s:%s" % (nonce, ncvalue, cnonce, 'auth', H(A2))
1185
+ respdig = KD(H(A1), noncebit)
1186
+ else:
1187
+ # XXX handle auth-int.
1188
+ raise URLError("qop '%s' is not supported." % qop)
1189
+
1190
+ # XXX should the partial digests be encoded too?
1191
+
1192
+ base = 'username="%s", realm="%s", nonce="%s", uri="%s", ' \
1193
+ 'response="%s"' % (user, realm, nonce, req.selector,
1194
+ respdig)
1195
+ if opaque:
1196
+ base += ', opaque="%s"' % opaque
1197
+ if entdig:
1198
+ base += ', digest="%s"' % entdig
1199
+ base += ', algorithm="%s"' % algorithm
1200
+ if qop:
1201
+ base += ', qop=auth, nc=%s, cnonce="%s"' % (ncvalue, cnonce)
1202
+ return base
1203
+
1204
+ def get_algorithm_impls(self, algorithm):
1205
+ # lambdas assume digest modules are imported at the top level
1206
+ if algorithm == 'MD5':
1207
+ H = lambda x: hashlib.md5(x.encode("ascii")).hexdigest()
1208
+ elif algorithm == 'SHA':
1209
+ H = lambda x: hashlib.sha1(x.encode("ascii")).hexdigest()
1210
+ # XXX MD5-sess
1211
+ else:
1212
+ raise ValueError("Unsupported digest authentication "
1213
+ "algorithm %r" % algorithm)
1214
+ KD = lambda s, d: H("%s:%s" % (s, d))
1215
+ return H, KD
1216
+
1217
+ def get_entity_digest(self, data, chal):
1218
+ # XXX not implemented yet
1219
+ return None
1220
+
1221
+
1222
+ class HTTPDigestAuthHandler(BaseHandler, AbstractDigestAuthHandler):
1223
+ """An authentication protocol defined by RFC 2069
1224
+
1225
+ Digest authentication improves on basic authentication because it
1226
+ does not transmit passwords in the clear.
1227
+ """
1228
+
1229
+ auth_header = 'Authorization'
1230
+ handler_order = 490 # before Basic auth
1231
+
1232
+ def http_error_401(self, req, fp, code, msg, headers):
1233
+ host = urlparse(req.full_url)[1]
1234
+ retry = self.http_error_auth_reqed('www-authenticate',
1235
+ host, req, headers)
1236
+ self.reset_retry_count()
1237
+ return retry
1238
+
1239
+
1240
+ class ProxyDigestAuthHandler(BaseHandler, AbstractDigestAuthHandler):
1241
+
1242
+ auth_header = 'Proxy-Authorization'
1243
+ handler_order = 490 # before Basic auth
1244
+
1245
+ def http_error_407(self, req, fp, code, msg, headers):
1246
+ host = req.host
1247
+ retry = self.http_error_auth_reqed('proxy-authenticate',
1248
+ host, req, headers)
1249
+ self.reset_retry_count()
1250
+ return retry
1251
+
1252
+ class AbstractHTTPHandler(BaseHandler):
1253
+
1254
+ def __init__(self, debuglevel=None):
1255
+ self._debuglevel = debuglevel if debuglevel is not None else http.client.HTTPConnection.debuglevel
1256
+
1257
+ def set_http_debuglevel(self, level):
1258
+ self._debuglevel = level
1259
+
1260
+ def _get_content_length(self, request):
1261
+ return http.client.HTTPConnection._get_content_length(
1262
+ request.data,
1263
+ request.get_method())
1264
+
1265
+ def do_request_(self, request):
1266
+ host = request.host
1267
+ if not host:
1268
+ raise URLError('no host given')
1269
+
1270
+ if request.data is not None: # POST
1271
+ data = request.data
1272
+ if isinstance(data, str):
1273
+ msg = "POST data should be bytes, an iterable of bytes, " \
1274
+ "or a file object. It cannot be of type str."
1275
+ raise TypeError(msg)
1276
+ if not request.has_header('Content-type'):
1277
+ request.add_unredirected_header(
1278
+ 'Content-type',
1279
+ 'application/x-www-form-urlencoded')
1280
+ if (not request.has_header('Content-length')
1281
+ and not request.has_header('Transfer-encoding')):
1282
+ content_length = self._get_content_length(request)
1283
+ if content_length is not None:
1284
+ request.add_unredirected_header(
1285
+ 'Content-length', str(content_length))
1286
+ else:
1287
+ request.add_unredirected_header(
1288
+ 'Transfer-encoding', 'chunked')
1289
+
1290
+ sel_host = host
1291
+ if request.has_proxy():
1292
+ scheme, sel = _splittype(request.selector)
1293
+ sel_host, sel_path = _splithost(sel)
1294
+ if not request.has_header('Host'):
1295
+ request.add_unredirected_header('Host', sel_host)
1296
+ for name, value in self.parent.addheaders:
1297
+ name = name.capitalize()
1298
+ if not request.has_header(name):
1299
+ request.add_unredirected_header(name, value)
1300
+
1301
+ return request
1302
+
1303
+ def do_open(self, http_class, req, **http_conn_args):
1304
+ """Return an HTTPResponse object for the request, using http_class.
1305
+
1306
+ http_class must implement the HTTPConnection API from http.client.
1307
+ """
1308
+ host = req.host
1309
+ if not host:
1310
+ raise URLError('no host given')
1311
+
1312
+ # will parse host:port
1313
+ h = http_class(host, timeout=req.timeout, **http_conn_args)
1314
+ h.set_debuglevel(self._debuglevel)
1315
+
1316
+ headers = dict(req.unredirected_hdrs)
1317
+ headers.update({k: v for k, v in req.headers.items()
1318
+ if k not in headers})
1319
+
1320
+ # TODO(jhylton): Should this be redesigned to handle
1321
+ # persistent connections?
1322
+
1323
+ # We want to make an HTTP/1.1 request, but the addinfourl
1324
+ # class isn't prepared to deal with a persistent connection.
1325
+ # It will try to read all remaining data from the socket,
1326
+ # which will block while the server waits for the next request.
1327
+ # So make sure the connection gets closed after the (only)
1328
+ # request.
1329
+ headers["Connection"] = "close"
1330
+ headers = {name.title(): val for name, val in headers.items()}
1331
+
1332
+ if req._tunnel_host:
1333
+ tunnel_headers = {}
1334
+ proxy_auth_hdr = "Proxy-Authorization"
1335
+ if proxy_auth_hdr in headers:
1336
+ tunnel_headers[proxy_auth_hdr] = headers[proxy_auth_hdr]
1337
+ # Proxy-Authorization should not be sent to origin
1338
+ # server.
1339
+ del headers[proxy_auth_hdr]
1340
+ h.set_tunnel(req._tunnel_host, headers=tunnel_headers)
1341
+
1342
+ try:
1343
+ try:
1344
+ h.request(req.get_method(), req.selector, req.data, headers,
1345
+ encode_chunked=req.has_header('Transfer-encoding'))
1346
+ except OSError as err: # timeout error
1347
+ raise URLError(err)
1348
+ r = h.getresponse()
1349
+ except:
1350
+ h.close()
1351
+ raise
1352
+
1353
+ # If the server does not send us a 'Connection: close' header,
1354
+ # HTTPConnection assumes the socket should be left open. Manually
1355
+ # mark the socket to be closed when this response object goes away.
1356
+ if h.sock:
1357
+ h.sock.close()
1358
+ h.sock = None
1359
+
1360
+ r.url = req.get_full_url()
1361
+ # This line replaces the .msg attribute of the HTTPResponse
1362
+ # with .headers, because urllib clients expect the response to
1363
+ # have the reason in .msg. It would be good to mark this
1364
+ # attribute is deprecated and get then to use info() or
1365
+ # .headers.
1366
+ r.msg = r.reason
1367
+ return r
1368
+
1369
+
1370
+ class HTTPHandler(AbstractHTTPHandler):
1371
+
1372
+ def http_open(self, req):
1373
+ return self.do_open(http.client.HTTPConnection, req)
1374
+
1375
+ http_request = AbstractHTTPHandler.do_request_
1376
+
1377
+ if hasattr(http.client, 'HTTPSConnection'):
1378
+
1379
+ class HTTPSHandler(AbstractHTTPHandler):
1380
+
1381
+ def __init__(self, debuglevel=None, context=None, check_hostname=None):
1382
+ debuglevel = debuglevel if debuglevel is not None else http.client.HTTPSConnection.debuglevel
1383
+ AbstractHTTPHandler.__init__(self, debuglevel)
1384
+ if context is None:
1385
+ http_version = http.client.HTTPSConnection._http_vsn
1386
+ context = http.client._create_https_context(http_version)
1387
+ if check_hostname is not None:
1388
+ context.check_hostname = check_hostname
1389
+ self._context = context
1390
+
1391
+ def https_open(self, req):
1392
+ return self.do_open(http.client.HTTPSConnection, req,
1393
+ context=self._context)
1394
+
1395
+ https_request = AbstractHTTPHandler.do_request_
1396
+
1397
+ __all__.append('HTTPSHandler')
1398
+
1399
+ class HTTPCookieProcessor(BaseHandler):
1400
+ def __init__(self, cookiejar=None):
1401
+ import http.cookiejar
1402
+ if cookiejar is None:
1403
+ cookiejar = http.cookiejar.CookieJar()
1404
+ self.cookiejar = cookiejar
1405
+
1406
+ def http_request(self, request):
1407
+ self.cookiejar.add_cookie_header(request)
1408
+ return request
1409
+
1410
+ def http_response(self, request, response):
1411
+ self.cookiejar.extract_cookies(response, request)
1412
+ return response
1413
+
1414
+ https_request = http_request
1415
+ https_response = http_response
1416
+
1417
+ class UnknownHandler(BaseHandler):
1418
+ def unknown_open(self, req):
1419
+ type = req.type
1420
+ raise URLError('unknown url type: %s' % type)
1421
+
1422
+ def parse_keqv_list(l):
1423
+ """Parse list of key=value strings where keys are not duplicated."""
1424
+ parsed = {}
1425
+ for elt in l:
1426
+ k, v = elt.split('=', 1)
1427
+ if v[0] == '"' and v[-1] == '"':
1428
+ v = v[1:-1]
1429
+ parsed[k] = v
1430
+ return parsed
1431
+
1432
+ def parse_http_list(s):
1433
+ """Parse lists as described by RFC 2068 Section 2.
1434
+
1435
+ In particular, parse comma-separated lists where the elements of
1436
+ the list may include quoted-strings. A quoted-string could
1437
+ contain a comma. A non-quoted string could have quotes in the
1438
+ middle. Neither commas nor quotes count if they are escaped.
1439
+ Only double-quotes count, not single-quotes.
1440
+ """
1441
+ res = []
1442
+ part = ''
1443
+
1444
+ escape = quote = False
1445
+ for cur in s:
1446
+ if escape:
1447
+ part += cur
1448
+ escape = False
1449
+ continue
1450
+ if quote:
1451
+ if cur == '\\':
1452
+ escape = True
1453
+ continue
1454
+ elif cur == '"':
1455
+ quote = False
1456
+ part += cur
1457
+ continue
1458
+
1459
+ if cur == ',':
1460
+ res.append(part)
1461
+ part = ''
1462
+ continue
1463
+
1464
+ if cur == '"':
1465
+ quote = True
1466
+
1467
+ part += cur
1468
+
1469
+ # append last part
1470
+ if part:
1471
+ res.append(part)
1472
+
1473
+ return [part.strip() for part in res]
1474
+
1475
+ class FileHandler(BaseHandler):
1476
+ # Use local file or FTP depending on form of URL
1477
+ def file_open(self, req):
1478
+ url = req.selector
1479
+ if url[:2] == '//' and url[2:3] != '/' and (req.host and
1480
+ req.host != 'localhost'):
1481
+ if not req.host in self.get_names():
1482
+ raise URLError("file:// scheme is supported only on localhost")
1483
+ else:
1484
+ return self.open_local_file(req)
1485
+
1486
+ # names for the localhost
1487
+ names = None
1488
+ def get_names(self):
1489
+ if FileHandler.names is None:
1490
+ try:
1491
+ FileHandler.names = tuple(
1492
+ socket.gethostbyname_ex('localhost')[2] +
1493
+ socket.gethostbyname_ex(socket.gethostname())[2])
1494
+ except socket.gaierror:
1495
+ FileHandler.names = (socket.gethostbyname('localhost'),)
1496
+ return FileHandler.names
1497
+
1498
+ # not entirely sure what the rules are here
1499
+ def open_local_file(self, req):
1500
+ import email.utils
1501
+ import mimetypes
1502
+ host = req.host
1503
+ filename = req.selector
1504
+ localfile = url2pathname(filename)
1505
+ try:
1506
+ stats = os.stat(localfile)
1507
+ size = stats.st_size
1508
+ modified = email.utils.formatdate(stats.st_mtime, usegmt=True)
1509
+ mtype = mimetypes.guess_type(filename)[0]
1510
+ headers = email.message_from_string(
1511
+ 'Content-type: %s\nContent-length: %d\nLast-modified: %s\n' %
1512
+ (mtype or 'text/plain', size, modified))
1513
+ if host:
1514
+ host, port = _splitport(host)
1515
+ if not host or \
1516
+ (not port and _safe_gethostbyname(host) in self.get_names()):
1517
+ if host:
1518
+ origurl = 'file://' + host + filename
1519
+ else:
1520
+ origurl = 'file://' + filename
1521
+ return addinfourl(open(localfile, 'rb'), headers, origurl)
1522
+ except OSError as exp:
1523
+ raise URLError(exp)
1524
+ raise URLError('file not on local host')
1525
+
1526
+ def _safe_gethostbyname(host):
1527
+ try:
1528
+ return socket.gethostbyname(host)
1529
+ except socket.gaierror:
1530
+ return None
1531
+
1532
+ class FTPHandler(BaseHandler):
1533
+ def ftp_open(self, req):
1534
+ import ftplib
1535
+ import mimetypes
1536
+ host = req.host
1537
+ if not host:
1538
+ raise URLError('ftp error: no host given')
1539
+ host, port = _splitport(host)
1540
+ if port is None:
1541
+ port = ftplib.FTP_PORT
1542
+ else:
1543
+ port = int(port)
1544
+
1545
+ # username/password handling
1546
+ user, host = _splituser(host)
1547
+ if user:
1548
+ user, passwd = _splitpasswd(user)
1549
+ else:
1550
+ passwd = None
1551
+ host = unquote(host)
1552
+ user = user or ''
1553
+ passwd = passwd or ''
1554
+
1555
+ try:
1556
+ host = socket.gethostbyname(host)
1557
+ except OSError as msg:
1558
+ raise URLError(msg)
1559
+ path, attrs = _splitattr(req.selector)
1560
+ dirs = path.split('/')
1561
+ dirs = list(map(unquote, dirs))
1562
+ dirs, file = dirs[:-1], dirs[-1]
1563
+ if dirs and not dirs[0]:
1564
+ dirs = dirs[1:]
1565
+ try:
1566
+ fw = self.connect_ftp(user, passwd, host, port, dirs, req.timeout)
1567
+ type = file and 'I' or 'D'
1568
+ for attr in attrs:
1569
+ attr, value = _splitvalue(attr)
1570
+ if attr.lower() == 'type' and \
1571
+ value in ('a', 'A', 'i', 'I', 'd', 'D'):
1572
+ type = value.upper()
1573
+ fp, retrlen = fw.retrfile(file, type)
1574
+ headers = ""
1575
+ mtype = mimetypes.guess_type(req.full_url)[0]
1576
+ if mtype:
1577
+ headers += "Content-type: %s\n" % mtype
1578
+ if retrlen is not None and retrlen >= 0:
1579
+ headers += "Content-length: %d\n" % retrlen
1580
+ headers = email.message_from_string(headers)
1581
+ return addinfourl(fp, headers, req.full_url)
1582
+ except ftplib.all_errors as exp:
1583
+ raise URLError(exp) from exp
1584
+
1585
+ def connect_ftp(self, user, passwd, host, port, dirs, timeout):
1586
+ return ftpwrapper(user, passwd, host, port, dirs, timeout,
1587
+ persistent=False)
1588
+
1589
+ class CacheFTPHandler(FTPHandler):
1590
+ # XXX would be nice to have pluggable cache strategies
1591
+ # XXX this stuff is definitely not thread safe
1592
+ def __init__(self):
1593
+ self.cache = {}
1594
+ self.timeout = {}
1595
+ self.soonest = 0
1596
+ self.delay = 60
1597
+ self.max_conns = 16
1598
+
1599
+ def setTimeout(self, t):
1600
+ self.delay = t
1601
+
1602
+ def setMaxConns(self, m):
1603
+ self.max_conns = m
1604
+
1605
+ def connect_ftp(self, user, passwd, host, port, dirs, timeout):
1606
+ key = user, host, port, '/'.join(dirs), timeout
1607
+ if key in self.cache:
1608
+ self.timeout[key] = time.time() + self.delay
1609
+ else:
1610
+ self.cache[key] = ftpwrapper(user, passwd, host, port,
1611
+ dirs, timeout)
1612
+ self.timeout[key] = time.time() + self.delay
1613
+ self.check_cache()
1614
+ return self.cache[key]
1615
+
1616
+ def check_cache(self):
1617
+ # first check for old ones
1618
+ t = time.time()
1619
+ if self.soonest <= t:
1620
+ for k, v in list(self.timeout.items()):
1621
+ if v < t:
1622
+ self.cache[k].close()
1623
+ del self.cache[k]
1624
+ del self.timeout[k]
1625
+ self.soonest = min(list(self.timeout.values()))
1626
+
1627
+ # then check the size
1628
+ if len(self.cache) == self.max_conns:
1629
+ for k, v in list(self.timeout.items()):
1630
+ if v == self.soonest:
1631
+ del self.cache[k]
1632
+ del self.timeout[k]
1633
+ break
1634
+ self.soonest = min(list(self.timeout.values()))
1635
+
1636
+ def clear_cache(self):
1637
+ for conn in self.cache.values():
1638
+ conn.close()
1639
+ self.cache.clear()
1640
+ self.timeout.clear()
1641
+
1642
+ class DataHandler(BaseHandler):
1643
+ def data_open(self, req):
1644
+ # data URLs as specified in RFC 2397.
1645
+ #
1646
+ # ignores POSTed data
1647
+ #
1648
+ # syntax:
1649
+ # dataurl := "data:" [ mediatype ] [ ";base64" ] "," data
1650
+ # mediatype := [ type "/" subtype ] *( ";" parameter )
1651
+ # data := *urlchar
1652
+ # parameter := attribute "=" value
1653
+ url = req.full_url
1654
+
1655
+ scheme, data = url.split(":",1)
1656
+ mediatype, data = data.split(",",1)
1657
+
1658
+ # Disallow control characters within mediatype.
1659
+ if re.search(r"[\x00-\x1F\x7F]", mediatype):
1660
+ raise ValueError(
1661
+ "Control characters not allowed in data: mediatype")
1662
+
1663
+ # even base64 encoded data URLs might be quoted so unquote in any case:
1664
+ data = unquote_to_bytes(data)
1665
+ if mediatype.endswith(";base64"):
1666
+ data = base64.decodebytes(data)
1667
+ mediatype = mediatype[:-7]
1668
+
1669
+ if not mediatype:
1670
+ mediatype = "text/plain;charset=US-ASCII"
1671
+
1672
+ headers = email.message_from_string("Content-type: %s\nContent-length: %d\n" %
1673
+ (mediatype, len(data)))
1674
+
1675
+ return addinfourl(io.BytesIO(data), headers, url)
1676
+
1677
+
1678
+ # Code move from the old urllib module
1679
+
1680
+ MAXFTPCACHE = 10 # Trim the ftp cache beyond this size
1681
+
1682
+ # Helper for non-unix systems
1683
+ if os.name == 'nt':
1684
+ from nturl2path import url2pathname, pathname2url
1685
+ else:
1686
+ def url2pathname(pathname):
1687
+ """OS-specific conversion from a relative URL of the 'file' scheme
1688
+ to a file system path; not recommended for general use."""
1689
+ if pathname[:3] == '///':
1690
+ # URL has an empty authority section, so the path begins on the
1691
+ # third character.
1692
+ pathname = pathname[2:]
1693
+ elif pathname[:12] == '//localhost/':
1694
+ # Skip past 'localhost' authority.
1695
+ pathname = pathname[11:]
1696
+ encoding = sys.getfilesystemencoding()
1697
+ errors = sys.getfilesystemencodeerrors()
1698
+ return unquote(pathname, encoding=encoding, errors=errors)
1699
+
1700
+ def pathname2url(pathname):
1701
+ """OS-specific conversion from a file system path to a relative URL
1702
+ of the 'file' scheme; not recommended for general use."""
1703
+ if pathname[:2] == '//':
1704
+ # Add explicitly empty authority to avoid interpreting the path
1705
+ # as authority.
1706
+ pathname = '//' + pathname
1707
+ encoding = sys.getfilesystemencoding()
1708
+ errors = sys.getfilesystemencodeerrors()
1709
+ return quote(pathname, encoding=encoding, errors=errors)
1710
+
1711
+
1712
+ ftpcache = {}
1713
+
1714
+
1715
+ class URLopener:
1716
+ """Class to open URLs.
1717
+ This is a class rather than just a subroutine because we may need
1718
+ more than one set of global protocol-specific options.
1719
+ Note -- this is a base class for those who don't want the
1720
+ automatic handling of errors type 302 (relocated) and 401
1721
+ (authorization needed)."""
1722
+
1723
+ __tempfiles = None
1724
+
1725
+ version = "Python-urllib/%s" % __version__
1726
+
1727
+ # Constructor
1728
+ def __init__(self, proxies=None, **x509):
1729
+ msg = "%(class)s style of invoking requests is deprecated. " \
1730
+ "Use newer urlopen functions/methods" % {'class': self.__class__.__name__}
1731
+ warnings.warn(msg, DeprecationWarning, stacklevel=3)
1732
+ if proxies is None:
1733
+ proxies = getproxies()
1734
+ assert hasattr(proxies, 'keys'), "proxies must be a mapping"
1735
+ self.proxies = proxies
1736
+ self.key_file = x509.get('key_file')
1737
+ self.cert_file = x509.get('cert_file')
1738
+ self.addheaders = [('User-Agent', self.version), ('Accept', '*/*')]
1739
+ self.__tempfiles = []
1740
+ self.__unlink = os.unlink # See cleanup()
1741
+ self.tempcache = None
1742
+ # Undocumented feature: if you assign {} to tempcache,
1743
+ # it is used to cache files retrieved with
1744
+ # self.retrieve(). This is not enabled by default
1745
+ # since it does not work for changing documents (and I
1746
+ # haven't got the logic to check expiration headers
1747
+ # yet).
1748
+ self.ftpcache = ftpcache
1749
+ # Undocumented feature: you can use a different
1750
+ # ftp cache by assigning to the .ftpcache member;
1751
+ # in case you want logically independent URL openers
1752
+ # XXX This is not threadsafe. Bah.
1753
+
1754
+ def __del__(self):
1755
+ self.close()
1756
+
1757
+ def close(self):
1758
+ self.cleanup()
1759
+
1760
+ def cleanup(self):
1761
+ # This code sometimes runs when the rest of this module
1762
+ # has already been deleted, so it can't use any globals
1763
+ # or import anything.
1764
+ if self.__tempfiles:
1765
+ for file in self.__tempfiles:
1766
+ try:
1767
+ self.__unlink(file)
1768
+ except OSError:
1769
+ pass
1770
+ del self.__tempfiles[:]
1771
+ if self.tempcache:
1772
+ self.tempcache.clear()
1773
+
1774
+ def addheader(self, *args):
1775
+ """Add a header to be used by the HTTP interface only
1776
+ e.g. u.addheader('Accept', 'sound/basic')"""
1777
+ self.addheaders.append(args)
1778
+
1779
+ # External interface
1780
+ def open(self, fullurl, data=None):
1781
+ """Use URLopener().open(file) instead of open(file, 'r')."""
1782
+ fullurl = unwrap(_to_bytes(fullurl))
1783
+ fullurl = quote(fullurl, safe="%/:=&?~#+!$,;'@()*[]|")
1784
+ if self.tempcache and fullurl in self.tempcache:
1785
+ filename, headers = self.tempcache[fullurl]
1786
+ fp = open(filename, 'rb')
1787
+ return addinfourl(fp, headers, fullurl)
1788
+ urltype, url = _splittype(fullurl)
1789
+ if not urltype:
1790
+ urltype = 'file'
1791
+ if urltype in self.proxies:
1792
+ proxy = self.proxies[urltype]
1793
+ urltype, proxyhost = _splittype(proxy)
1794
+ host, selector = _splithost(proxyhost)
1795
+ url = (host, fullurl) # Signal special case to open_*()
1796
+ else:
1797
+ proxy = None
1798
+ name = 'open_' + urltype
1799
+ self.type = urltype
1800
+ name = name.replace('-', '_')
1801
+ if not hasattr(self, name) or name == 'open_local_file':
1802
+ if proxy:
1803
+ return self.open_unknown_proxy(proxy, fullurl, data)
1804
+ else:
1805
+ return self.open_unknown(fullurl, data)
1806
+ try:
1807
+ if data is None:
1808
+ return getattr(self, name)(url)
1809
+ else:
1810
+ return getattr(self, name)(url, data)
1811
+ except (HTTPError, URLError):
1812
+ raise
1813
+ except OSError as msg:
1814
+ raise OSError('socket error', msg) from msg
1815
+
1816
+ def open_unknown(self, fullurl, data=None):
1817
+ """Overridable interface to open unknown URL type."""
1818
+ type, url = _splittype(fullurl)
1819
+ raise OSError('url error', 'unknown url type', type)
1820
+
1821
+ def open_unknown_proxy(self, proxy, fullurl, data=None):
1822
+ """Overridable interface to open unknown URL type."""
1823
+ type, url = _splittype(fullurl)
1824
+ raise OSError('url error', 'invalid proxy for %s' % type, proxy)
1825
+
1826
+ # External interface
1827
+ def retrieve(self, url, filename=None, reporthook=None, data=None):
1828
+ """retrieve(url) returns (filename, headers) for a local object
1829
+ or (tempfilename, headers) for a remote object."""
1830
+ url = unwrap(_to_bytes(url))
1831
+ if self.tempcache and url in self.tempcache:
1832
+ return self.tempcache[url]
1833
+ type, url1 = _splittype(url)
1834
+ if filename is None and (not type or type == 'file'):
1835
+ try:
1836
+ fp = self.open_local_file(url1)
1837
+ hdrs = fp.info()
1838
+ fp.close()
1839
+ return url2pathname(_splithost(url1)[1]), hdrs
1840
+ except OSError:
1841
+ pass
1842
+ fp = self.open(url, data)
1843
+ try:
1844
+ headers = fp.info()
1845
+ if filename:
1846
+ tfp = open(filename, 'wb')
1847
+ else:
1848
+ garbage, path = _splittype(url)
1849
+ garbage, path = _splithost(path or "")
1850
+ path, garbage = _splitquery(path or "")
1851
+ path, garbage = _splitattr(path or "")
1852
+ suffix = os.path.splitext(path)[1]
1853
+ (fd, filename) = tempfile.mkstemp(suffix)
1854
+ self.__tempfiles.append(filename)
1855
+ tfp = os.fdopen(fd, 'wb')
1856
+ try:
1857
+ result = filename, headers
1858
+ if self.tempcache is not None:
1859
+ self.tempcache[url] = result
1860
+ bs = 1024*8
1861
+ size = -1
1862
+ read = 0
1863
+ blocknum = 0
1864
+ if "content-length" in headers:
1865
+ size = int(headers["Content-Length"])
1866
+ if reporthook:
1867
+ reporthook(blocknum, bs, size)
1868
+ while block := fp.read(bs):
1869
+ read += len(block)
1870
+ tfp.write(block)
1871
+ blocknum += 1
1872
+ if reporthook:
1873
+ reporthook(blocknum, bs, size)
1874
+ finally:
1875
+ tfp.close()
1876
+ finally:
1877
+ fp.close()
1878
+
1879
+ # raise exception if actual size does not match content-length header
1880
+ if size >= 0 and read < size:
1881
+ raise ContentTooShortError(
1882
+ "retrieval incomplete: got only %i out of %i bytes"
1883
+ % (read, size), result)
1884
+
1885
+ return result
1886
+
1887
+ # Each method named open_<type> knows how to open that type of URL
1888
+
1889
+ def _open_generic_http(self, connection_factory, url, data):
1890
+ """Make an HTTP connection using connection_class.
1891
+
1892
+ This is an internal method that should be called from
1893
+ open_http() or open_https().
1894
+
1895
+ Arguments:
1896
+ - connection_factory should take a host name and return an
1897
+ HTTPConnection instance.
1898
+ - url is the url to retrieval or a host, relative-path pair.
1899
+ - data is payload for a POST request or None.
1900
+ """
1901
+
1902
+ user_passwd = None
1903
+ proxy_passwd= None
1904
+ if isinstance(url, str):
1905
+ host, selector = _splithost(url)
1906
+ if host:
1907
+ user_passwd, host = _splituser(host)
1908
+ host = unquote(host)
1909
+ realhost = host
1910
+ else:
1911
+ host, selector = url
1912
+ # check whether the proxy contains authorization information
1913
+ proxy_passwd, host = _splituser(host)
1914
+ # now we proceed with the url we want to obtain
1915
+ urltype, rest = _splittype(selector)
1916
+ url = rest
1917
+ user_passwd = None
1918
+ if urltype.lower() != 'http':
1919
+ realhost = None
1920
+ else:
1921
+ realhost, rest = _splithost(rest)
1922
+ if realhost:
1923
+ user_passwd, realhost = _splituser(realhost)
1924
+ if user_passwd:
1925
+ selector = "%s://%s%s" % (urltype, realhost, rest)
1926
+ if proxy_bypass(realhost):
1927
+ host = realhost
1928
+
1929
+ if not host: raise OSError('http error', 'no host given')
1930
+
1931
+ if proxy_passwd:
1932
+ proxy_passwd = unquote(proxy_passwd)
1933
+ proxy_auth = base64.b64encode(proxy_passwd.encode()).decode('ascii')
1934
+ else:
1935
+ proxy_auth = None
1936
+
1937
+ if user_passwd:
1938
+ user_passwd = unquote(user_passwd)
1939
+ auth = base64.b64encode(user_passwd.encode()).decode('ascii')
1940
+ else:
1941
+ auth = None
1942
+ http_conn = connection_factory(host)
1943
+ headers = {}
1944
+ if proxy_auth:
1945
+ headers["Proxy-Authorization"] = "Basic %s" % proxy_auth
1946
+ if auth:
1947
+ headers["Authorization"] = "Basic %s" % auth
1948
+ if realhost:
1949
+ headers["Host"] = realhost
1950
+
1951
+ # Add Connection:close as we don't support persistent connections yet.
1952
+ # This helps in closing the socket and avoiding ResourceWarning
1953
+
1954
+ headers["Connection"] = "close"
1955
+
1956
+ for header, value in self.addheaders:
1957
+ headers[header] = value
1958
+
1959
+ if data is not None:
1960
+ headers["Content-Type"] = "application/x-www-form-urlencoded"
1961
+ http_conn.request("POST", selector, data, headers)
1962
+ else:
1963
+ http_conn.request("GET", selector, headers=headers)
1964
+
1965
+ try:
1966
+ response = http_conn.getresponse()
1967
+ except http.client.BadStatusLine:
1968
+ # something went wrong with the HTTP status line
1969
+ raise URLError("http protocol error: bad status line")
1970
+
1971
+ # According to RFC 2616, "2xx" code indicates that the client's
1972
+ # request was successfully received, understood, and accepted.
1973
+ if 200 <= response.status < 300:
1974
+ return addinfourl(response, response.msg, "http:" + url,
1975
+ response.status)
1976
+ else:
1977
+ return self.http_error(
1978
+ url, response.fp,
1979
+ response.status, response.reason, response.msg, data)
1980
+
1981
+ def open_http(self, url, data=None):
1982
+ """Use HTTP protocol."""
1983
+ return self._open_generic_http(http.client.HTTPConnection, url, data)
1984
+
1985
+ def http_error(self, url, fp, errcode, errmsg, headers, data=None):
1986
+ """Handle http errors.
1987
+
1988
+ Derived class can override this, or provide specific handlers
1989
+ named http_error_DDD where DDD is the 3-digit error code."""
1990
+ # First check if there's a specific handler for this error
1991
+ name = 'http_error_%d' % errcode
1992
+ if hasattr(self, name):
1993
+ method = getattr(self, name)
1994
+ if data is None:
1995
+ result = method(url, fp, errcode, errmsg, headers)
1996
+ else:
1997
+ result = method(url, fp, errcode, errmsg, headers, data)
1998
+ if result: return result
1999
+ return self.http_error_default(url, fp, errcode, errmsg, headers)
2000
+
2001
+ def http_error_default(self, url, fp, errcode, errmsg, headers):
2002
+ """Default error handler: close the connection and raise OSError."""
2003
+ fp.close()
2004
+ raise HTTPError(url, errcode, errmsg, headers, None)
2005
+
2006
+ if _have_ssl:
2007
+ def _https_connection(self, host):
2008
+ if self.key_file or self.cert_file:
2009
+ http_version = http.client.HTTPSConnection._http_vsn
2010
+ context = http.client._create_https_context(http_version)
2011
+ context.load_cert_chain(self.cert_file, self.key_file)
2012
+ # cert and key file means the user wants to authenticate.
2013
+ # enable TLS 1.3 PHA implicitly even for custom contexts.
2014
+ if context.post_handshake_auth is not None:
2015
+ context.post_handshake_auth = True
2016
+ else:
2017
+ context = None
2018
+ return http.client.HTTPSConnection(host, context=context)
2019
+
2020
+ def open_https(self, url, data=None):
2021
+ """Use HTTPS protocol."""
2022
+ return self._open_generic_http(self._https_connection, url, data)
2023
+
2024
+ def open_file(self, url):
2025
+ """Use local file or FTP depending on form of URL."""
2026
+ if not isinstance(url, str):
2027
+ raise URLError('file error: proxy support for file protocol currently not implemented')
2028
+ if url[:2] == '//' and url[2:3] != '/' and url[2:12].lower() != 'localhost/':
2029
+ raise ValueError("file:// scheme is supported only on localhost")
2030
+ else:
2031
+ return self.open_local_file(url)
2032
+
2033
+ def open_local_file(self, url):
2034
+ """Use local file."""
2035
+ import email.utils
2036
+ import mimetypes
2037
+ host, file = _splithost(url)
2038
+ localname = url2pathname(file)
2039
+ try:
2040
+ stats = os.stat(localname)
2041
+ except OSError as e:
2042
+ raise URLError(e.strerror, e.filename)
2043
+ size = stats.st_size
2044
+ modified = email.utils.formatdate(stats.st_mtime, usegmt=True)
2045
+ mtype = mimetypes.guess_type(url)[0]
2046
+ headers = email.message_from_string(
2047
+ 'Content-Type: %s\nContent-Length: %d\nLast-modified: %s\n' %
2048
+ (mtype or 'text/plain', size, modified))
2049
+ if not host:
2050
+ urlfile = file
2051
+ if file[:1] == '/':
2052
+ urlfile = 'file://' + file
2053
+ return addinfourl(open(localname, 'rb'), headers, urlfile)
2054
+ host, port = _splitport(host)
2055
+ if (not port
2056
+ and socket.gethostbyname(host) in ((localhost(),) + thishost())):
2057
+ urlfile = file
2058
+ if file[:1] == '/':
2059
+ urlfile = 'file://' + file
2060
+ elif file[:2] == './':
2061
+ raise ValueError("local file url may start with / or file:. Unknown url of type: %s" % url)
2062
+ return addinfourl(open(localname, 'rb'), headers, urlfile)
2063
+ raise URLError('local file error: not on local host')
2064
+
2065
+ def open_ftp(self, url):
2066
+ """Use FTP protocol."""
2067
+ if not isinstance(url, str):
2068
+ raise URLError('ftp error: proxy support for ftp protocol currently not implemented')
2069
+ import mimetypes
2070
+ host, path = _splithost(url)
2071
+ if not host: raise URLError('ftp error: no host given')
2072
+ host, port = _splitport(host)
2073
+ user, host = _splituser(host)
2074
+ if user: user, passwd = _splitpasswd(user)
2075
+ else: passwd = None
2076
+ host = unquote(host)
2077
+ user = unquote(user or '')
2078
+ passwd = unquote(passwd or '')
2079
+ host = socket.gethostbyname(host)
2080
+ if not port:
2081
+ import ftplib
2082
+ port = ftplib.FTP_PORT
2083
+ else:
2084
+ port = int(port)
2085
+ path, attrs = _splitattr(path)
2086
+ path = unquote(path)
2087
+ dirs = path.split('/')
2088
+ dirs, file = dirs[:-1], dirs[-1]
2089
+ if dirs and not dirs[0]: dirs = dirs[1:]
2090
+ if dirs and not dirs[0]: dirs[0] = '/'
2091
+ key = user, host, port, '/'.join(dirs)
2092
+ # XXX thread unsafe!
2093
+ if len(self.ftpcache) > MAXFTPCACHE:
2094
+ # Prune the cache, rather arbitrarily
2095
+ for k in list(self.ftpcache):
2096
+ if k != key:
2097
+ v = self.ftpcache[k]
2098
+ del self.ftpcache[k]
2099
+ v.close()
2100
+ try:
2101
+ if key not in self.ftpcache:
2102
+ self.ftpcache[key] = \
2103
+ ftpwrapper(user, passwd, host, port, dirs)
2104
+ if not file: type = 'D'
2105
+ else: type = 'I'
2106
+ for attr in attrs:
2107
+ attr, value = _splitvalue(attr)
2108
+ if attr.lower() == 'type' and \
2109
+ value in ('a', 'A', 'i', 'I', 'd', 'D'):
2110
+ type = value.upper()
2111
+ (fp, retrlen) = self.ftpcache[key].retrfile(file, type)
2112
+ mtype = mimetypes.guess_type("ftp:" + url)[0]
2113
+ headers = ""
2114
+ if mtype:
2115
+ headers += "Content-Type: %s\n" % mtype
2116
+ if retrlen is not None and retrlen >= 0:
2117
+ headers += "Content-Length: %d\n" % retrlen
2118
+ headers = email.message_from_string(headers)
2119
+ return addinfourl(fp, headers, "ftp:" + url)
2120
+ except ftperrors() as exp:
2121
+ raise URLError(f'ftp error: {exp}') from exp
2122
+
2123
+ def open_data(self, url, data=None):
2124
+ """Use "data" URL."""
2125
+ if not isinstance(url, str):
2126
+ raise URLError('data error: proxy support for data protocol currently not implemented')
2127
+ # ignore POSTed data
2128
+ #
2129
+ # syntax of data URLs:
2130
+ # dataurl := "data:" [ mediatype ] [ ";base64" ] "," data
2131
+ # mediatype := [ type "/" subtype ] *( ";" parameter )
2132
+ # data := *urlchar
2133
+ # parameter := attribute "=" value
2134
+ try:
2135
+ [type, data] = url.split(',', 1)
2136
+ except ValueError:
2137
+ raise OSError('data error', 'bad data URL')
2138
+ if not type:
2139
+ type = 'text/plain;charset=US-ASCII'
2140
+ semi = type.rfind(';')
2141
+ if semi >= 0 and '=' not in type[semi:]:
2142
+ encoding = type[semi+1:]
2143
+ type = type[:semi]
2144
+ else:
2145
+ encoding = ''
2146
+ msg = []
2147
+ msg.append('Date: %s'%time.strftime('%a, %d %b %Y %H:%M:%S GMT',
2148
+ time.gmtime(time.time())))
2149
+ msg.append('Content-type: %s' % type)
2150
+ if encoding == 'base64':
2151
+ # XXX is this encoding/decoding ok?
2152
+ data = base64.decodebytes(data.encode('ascii')).decode('latin-1')
2153
+ else:
2154
+ data = unquote(data)
2155
+ msg.append('Content-Length: %d' % len(data))
2156
+ msg.append('')
2157
+ msg.append(data)
2158
+ msg = '\n'.join(msg)
2159
+ headers = email.message_from_string(msg)
2160
+ f = io.StringIO(msg)
2161
+ #f.fileno = None # needed for addinfourl
2162
+ return addinfourl(f, headers, url)
2163
+
2164
+
2165
+ class FancyURLopener(URLopener):
2166
+ """Derived class with handlers for errors we can handle (perhaps)."""
2167
+
2168
+ def __init__(self, *args, **kwargs):
2169
+ URLopener.__init__(self, *args, **kwargs)
2170
+ self.auth_cache = {}
2171
+ self.tries = 0
2172
+ self.maxtries = 10
2173
+
2174
+ def http_error_default(self, url, fp, errcode, errmsg, headers):
2175
+ """Default error handling -- don't raise an exception."""
2176
+ return addinfourl(fp, headers, "http:" + url, errcode)
2177
+
2178
+ def http_error_302(self, url, fp, errcode, errmsg, headers, data=None):
2179
+ """Error 302 -- relocated (temporarily)."""
2180
+ self.tries += 1
2181
+ try:
2182
+ if self.maxtries and self.tries >= self.maxtries:
2183
+ if hasattr(self, "http_error_500"):
2184
+ meth = self.http_error_500
2185
+ else:
2186
+ meth = self.http_error_default
2187
+ return meth(url, fp, 500,
2188
+ "Internal Server Error: Redirect Recursion",
2189
+ headers)
2190
+ result = self.redirect_internal(url, fp, errcode, errmsg,
2191
+ headers, data)
2192
+ return result
2193
+ finally:
2194
+ self.tries = 0
2195
+
2196
+ def redirect_internal(self, url, fp, errcode, errmsg, headers, data):
2197
+ if 'location' in headers:
2198
+ newurl = headers['location']
2199
+ elif 'uri' in headers:
2200
+ newurl = headers['uri']
2201
+ else:
2202
+ return
2203
+ fp.close()
2204
+
2205
+ # In case the server sent a relative URL, join with original:
2206
+ newurl = urljoin(self.type + ":" + url, newurl)
2207
+
2208
+ urlparts = urlparse(newurl)
2209
+
2210
+ # For security reasons, we don't allow redirection to anything other
2211
+ # than http, https and ftp.
2212
+
2213
+ # We are using newer HTTPError with older redirect_internal method
2214
+ # This older method will get deprecated in 3.3
2215
+
2216
+ if urlparts.scheme not in ('http', 'https', 'ftp', ''):
2217
+ raise HTTPError(newurl, errcode,
2218
+ errmsg +
2219
+ " Redirection to url '%s' is not allowed." % newurl,
2220
+ headers, fp)
2221
+
2222
+ return self.open(newurl)
2223
+
2224
+ def http_error_301(self, url, fp, errcode, errmsg, headers, data=None):
2225
+ """Error 301 -- also relocated (permanently)."""
2226
+ return self.http_error_302(url, fp, errcode, errmsg, headers, data)
2227
+
2228
+ def http_error_303(self, url, fp, errcode, errmsg, headers, data=None):
2229
+ """Error 303 -- also relocated (essentially identical to 302)."""
2230
+ return self.http_error_302(url, fp, errcode, errmsg, headers, data)
2231
+
2232
+ def http_error_307(self, url, fp, errcode, errmsg, headers, data=None):
2233
+ """Error 307 -- relocated, but turn POST into error."""
2234
+ if data is None:
2235
+ return self.http_error_302(url, fp, errcode, errmsg, headers, data)
2236
+ else:
2237
+ return self.http_error_default(url, fp, errcode, errmsg, headers)
2238
+
2239
+ def http_error_308(self, url, fp, errcode, errmsg, headers, data=None):
2240
+ """Error 308 -- relocated, but turn POST into error."""
2241
+ if data is None:
2242
+ return self.http_error_301(url, fp, errcode, errmsg, headers, data)
2243
+ else:
2244
+ return self.http_error_default(url, fp, errcode, errmsg, headers)
2245
+
2246
+ def http_error_401(self, url, fp, errcode, errmsg, headers, data=None,
2247
+ retry=False):
2248
+ """Error 401 -- authentication required.
2249
+ This function supports Basic authentication only."""
2250
+ if 'www-authenticate' not in headers:
2251
+ URLopener.http_error_default(self, url, fp,
2252
+ errcode, errmsg, headers)
2253
+ stuff = headers['www-authenticate']
2254
+ match = re.match('[ \t]*([^ \t]+)[ \t]+realm="([^"]*)"', stuff)
2255
+ if not match:
2256
+ URLopener.http_error_default(self, url, fp,
2257
+ errcode, errmsg, headers)
2258
+ scheme, realm = match.groups()
2259
+ if scheme.lower() != 'basic':
2260
+ URLopener.http_error_default(self, url, fp,
2261
+ errcode, errmsg, headers)
2262
+ if not retry:
2263
+ URLopener.http_error_default(self, url, fp, errcode, errmsg,
2264
+ headers)
2265
+ name = 'retry_' + self.type + '_basic_auth'
2266
+ if data is None:
2267
+ return getattr(self,name)(url, realm)
2268
+ else:
2269
+ return getattr(self,name)(url, realm, data)
2270
+
2271
+ def http_error_407(self, url, fp, errcode, errmsg, headers, data=None,
2272
+ retry=False):
2273
+ """Error 407 -- proxy authentication required.
2274
+ This function supports Basic authentication only."""
2275
+ if 'proxy-authenticate' not in headers:
2276
+ URLopener.http_error_default(self, url, fp,
2277
+ errcode, errmsg, headers)
2278
+ stuff = headers['proxy-authenticate']
2279
+ match = re.match('[ \t]*([^ \t]+)[ \t]+realm="([^"]*)"', stuff)
2280
+ if not match:
2281
+ URLopener.http_error_default(self, url, fp,
2282
+ errcode, errmsg, headers)
2283
+ scheme, realm = match.groups()
2284
+ if scheme.lower() != 'basic':
2285
+ URLopener.http_error_default(self, url, fp,
2286
+ errcode, errmsg, headers)
2287
+ if not retry:
2288
+ URLopener.http_error_default(self, url, fp, errcode, errmsg,
2289
+ headers)
2290
+ name = 'retry_proxy_' + self.type + '_basic_auth'
2291
+ if data is None:
2292
+ return getattr(self,name)(url, realm)
2293
+ else:
2294
+ return getattr(self,name)(url, realm, data)
2295
+
2296
+ def retry_proxy_http_basic_auth(self, url, realm, data=None):
2297
+ host, selector = _splithost(url)
2298
+ newurl = 'http://' + host + selector
2299
+ proxy = self.proxies['http']
2300
+ urltype, proxyhost = _splittype(proxy)
2301
+ proxyhost, proxyselector = _splithost(proxyhost)
2302
+ i = proxyhost.find('@') + 1
2303
+ proxyhost = proxyhost[i:]
2304
+ user, passwd = self.get_user_passwd(proxyhost, realm, i)
2305
+ if not (user or passwd): return None
2306
+ proxyhost = "%s:%s@%s" % (quote(user, safe=''),
2307
+ quote(passwd, safe=''), proxyhost)
2308
+ self.proxies['http'] = 'http://' + proxyhost + proxyselector
2309
+ if data is None:
2310
+ return self.open(newurl)
2311
+ else:
2312
+ return self.open(newurl, data)
2313
+
2314
+ def retry_proxy_https_basic_auth(self, url, realm, data=None):
2315
+ host, selector = _splithost(url)
2316
+ newurl = 'https://' + host + selector
2317
+ proxy = self.proxies['https']
2318
+ urltype, proxyhost = _splittype(proxy)
2319
+ proxyhost, proxyselector = _splithost(proxyhost)
2320
+ i = proxyhost.find('@') + 1
2321
+ proxyhost = proxyhost[i:]
2322
+ user, passwd = self.get_user_passwd(proxyhost, realm, i)
2323
+ if not (user or passwd): return None
2324
+ proxyhost = "%s:%s@%s" % (quote(user, safe=''),
2325
+ quote(passwd, safe=''), proxyhost)
2326
+ self.proxies['https'] = 'https://' + proxyhost + proxyselector
2327
+ if data is None:
2328
+ return self.open(newurl)
2329
+ else:
2330
+ return self.open(newurl, data)
2331
+
2332
+ def retry_http_basic_auth(self, url, realm, data=None):
2333
+ host, selector = _splithost(url)
2334
+ i = host.find('@') + 1
2335
+ host = host[i:]
2336
+ user, passwd = self.get_user_passwd(host, realm, i)
2337
+ if not (user or passwd): return None
2338
+ host = "%s:%s@%s" % (quote(user, safe=''),
2339
+ quote(passwd, safe=''), host)
2340
+ newurl = 'http://' + host + selector
2341
+ if data is None:
2342
+ return self.open(newurl)
2343
+ else:
2344
+ return self.open(newurl, data)
2345
+
2346
+ def retry_https_basic_auth(self, url, realm, data=None):
2347
+ host, selector = _splithost(url)
2348
+ i = host.find('@') + 1
2349
+ host = host[i:]
2350
+ user, passwd = self.get_user_passwd(host, realm, i)
2351
+ if not (user or passwd): return None
2352
+ host = "%s:%s@%s" % (quote(user, safe=''),
2353
+ quote(passwd, safe=''), host)
2354
+ newurl = 'https://' + host + selector
2355
+ if data is None:
2356
+ return self.open(newurl)
2357
+ else:
2358
+ return self.open(newurl, data)
2359
+
2360
+ def get_user_passwd(self, host, realm, clear_cache=0):
2361
+ key = realm + '@' + host.lower()
2362
+ if key in self.auth_cache:
2363
+ if clear_cache:
2364
+ del self.auth_cache[key]
2365
+ else:
2366
+ return self.auth_cache[key]
2367
+ user, passwd = self.prompt_user_passwd(host, realm)
2368
+ if user or passwd: self.auth_cache[key] = (user, passwd)
2369
+ return user, passwd
2370
+
2371
+ def prompt_user_passwd(self, host, realm):
2372
+ """Override this in a GUI environment!"""
2373
+ import getpass
2374
+ try:
2375
+ user = input("Enter username for %s at %s: " % (realm, host))
2376
+ passwd = getpass.getpass("Enter password for %s in %s at %s: " %
2377
+ (user, realm, host))
2378
+ return user, passwd
2379
+ except KeyboardInterrupt:
2380
+ print()
2381
+ return None, None
2382
+
2383
+
2384
+ # Utility functions
2385
+
2386
+ _localhost = None
2387
+ def localhost():
2388
+ """Return the IP address of the magic hostname 'localhost'."""
2389
+ global _localhost
2390
+ if _localhost is None:
2391
+ _localhost = socket.gethostbyname('localhost')
2392
+ return _localhost
2393
+
2394
+ _thishost = None
2395
+ def thishost():
2396
+ """Return the IP addresses of the current host."""
2397
+ global _thishost
2398
+ if _thishost is None:
2399
+ try:
2400
+ _thishost = tuple(socket.gethostbyname_ex(socket.gethostname())[2])
2401
+ except socket.gaierror:
2402
+ _thishost = tuple(socket.gethostbyname_ex('localhost')[2])
2403
+ return _thishost
2404
+
2405
+ _ftperrors = None
2406
+ def ftperrors():
2407
+ """Return the set of errors raised by the FTP class."""
2408
+ global _ftperrors
2409
+ if _ftperrors is None:
2410
+ import ftplib
2411
+ _ftperrors = ftplib.all_errors
2412
+ return _ftperrors
2413
+
2414
+ _noheaders = None
2415
+ def noheaders():
2416
+ """Return an empty email Message object."""
2417
+ global _noheaders
2418
+ if _noheaders is None:
2419
+ _noheaders = email.message_from_string("")
2420
+ return _noheaders
2421
+
2422
+
2423
+ # Utility classes
2424
+
2425
+ class ftpwrapper:
2426
+ """Class used by open_ftp() for cache of open FTP connections."""
2427
+
2428
+ def __init__(self, user, passwd, host, port, dirs, timeout=None,
2429
+ persistent=True):
2430
+ self.user = user
2431
+ self.passwd = passwd
2432
+ self.host = host
2433
+ self.port = port
2434
+ self.dirs = dirs
2435
+ self.timeout = timeout
2436
+ self.refcount = 0
2437
+ self.keepalive = persistent
2438
+ try:
2439
+ self.init()
2440
+ except:
2441
+ self.close()
2442
+ raise
2443
+
2444
+ def init(self):
2445
+ import ftplib
2446
+ self.busy = 0
2447
+ self.ftp = ftplib.FTP()
2448
+ self.ftp.connect(self.host, self.port, self.timeout)
2449
+ self.ftp.login(self.user, self.passwd)
2450
+ _target = '/'.join(self.dirs)
2451
+ self.ftp.cwd(_target)
2452
+
2453
+ def retrfile(self, file, type):
2454
+ import ftplib
2455
+ self.endtransfer()
2456
+ if type in ('d', 'D'): cmd = 'TYPE A'; isdir = 1
2457
+ else: cmd = 'TYPE ' + type; isdir = 0
2458
+ try:
2459
+ self.ftp.voidcmd(cmd)
2460
+ except ftplib.all_errors:
2461
+ self.init()
2462
+ self.ftp.voidcmd(cmd)
2463
+ conn = None
2464
+ if file and not isdir:
2465
+ # Try to retrieve as a file
2466
+ try:
2467
+ cmd = 'RETR ' + file
2468
+ conn, retrlen = self.ftp.ntransfercmd(cmd)
2469
+ except ftplib.error_perm as reason:
2470
+ if str(reason)[:3] != '550':
2471
+ raise URLError(f'ftp error: {reason}') from reason
2472
+ if not conn:
2473
+ # Set transfer mode to ASCII!
2474
+ self.ftp.voidcmd('TYPE A')
2475
+ # Try a directory listing. Verify that directory exists.
2476
+ if file:
2477
+ pwd = self.ftp.pwd()
2478
+ try:
2479
+ try:
2480
+ self.ftp.cwd(file)
2481
+ except ftplib.error_perm as reason:
2482
+ raise URLError('ftp error: %r' % reason) from reason
2483
+ finally:
2484
+ self.ftp.cwd(pwd)
2485
+ cmd = 'LIST ' + file
2486
+ else:
2487
+ cmd = 'LIST'
2488
+ conn, retrlen = self.ftp.ntransfercmd(cmd)
2489
+ self.busy = 1
2490
+
2491
+ ftpobj = addclosehook(conn.makefile('rb'), self.file_close)
2492
+ self.refcount += 1
2493
+ conn.close()
2494
+ # Pass back both a suitably decorated object and a retrieval length
2495
+ return (ftpobj, retrlen)
2496
+
2497
+ def endtransfer(self):
2498
+ if not self.busy:
2499
+ return
2500
+ self.busy = 0
2501
+ try:
2502
+ self.ftp.voidresp()
2503
+ except ftperrors():
2504
+ pass
2505
+
2506
+ def close(self):
2507
+ self.keepalive = False
2508
+ if self.refcount <= 0:
2509
+ self.real_close()
2510
+
2511
+ def file_close(self):
2512
+ self.endtransfer()
2513
+ self.refcount -= 1
2514
+ if self.refcount <= 0 and not self.keepalive:
2515
+ self.real_close()
2516
+
2517
+ def real_close(self):
2518
+ self.endtransfer()
2519
+ try:
2520
+ self.ftp.close()
2521
+ except ftperrors():
2522
+ pass
2523
+
2524
+ # Proxy handling
2525
+ def getproxies_environment():
2526
+ """Return a dictionary of scheme -> proxy server URL mappings.
2527
+
2528
+ Scan the environment for variables named <scheme>_proxy;
2529
+ this seems to be the standard convention. If you need a
2530
+ different way, you can pass a proxies dictionary to the
2531
+ [Fancy]URLopener constructor.
2532
+ """
2533
+ # in order to prefer lowercase variables, process environment in
2534
+ # two passes: first matches any, second pass matches lowercase only
2535
+
2536
+ # select only environment variables which end in (after making lowercase) _proxy
2537
+ proxies = {}
2538
+ environment = []
2539
+ for name in os.environ.keys():
2540
+ # fast screen underscore position before more expensive case-folding
2541
+ if len(name) > 5 and name[-6] == "_" and name[-5:].lower() == "proxy":
2542
+ value = os.environ[name]
2543
+ proxy_name = name[:-6].lower()
2544
+ environment.append((name, value, proxy_name))
2545
+ if value:
2546
+ proxies[proxy_name] = value
2547
+ # CVE-2016-1000110 - If we are running as CGI script, forget HTTP_PROXY
2548
+ # (non-all-lowercase) as it may be set from the web server by a "Proxy:"
2549
+ # header from the client
2550
+ # If "proxy" is lowercase, it will still be used thanks to the next block
2551
+ if 'REQUEST_METHOD' in os.environ:
2552
+ proxies.pop('http', None)
2553
+ for name, value, proxy_name in environment:
2554
+ # not case-folded, checking here for lower-case env vars only
2555
+ if name[-6:] == '_proxy':
2556
+ if value:
2557
+ proxies[proxy_name] = value
2558
+ else:
2559
+ proxies.pop(proxy_name, None)
2560
+ return proxies
2561
+
2562
+ def proxy_bypass_environment(host, proxies=None):
2563
+ """Test if proxies should not be used for a particular host.
2564
+
2565
+ Checks the proxy dict for the value of no_proxy, which should
2566
+ be a list of comma separated DNS suffixes, or '*' for all hosts.
2567
+
2568
+ """
2569
+ if proxies is None:
2570
+ proxies = getproxies_environment()
2571
+ # don't bypass, if no_proxy isn't specified
2572
+ try:
2573
+ no_proxy = proxies['no']
2574
+ except KeyError:
2575
+ return False
2576
+ # '*' is special case for always bypass
2577
+ if no_proxy == '*':
2578
+ return True
2579
+ host = host.lower()
2580
+ # strip port off host
2581
+ hostonly, port = _splitport(host)
2582
+ # check if the host ends with any of the DNS suffixes
2583
+ for name in no_proxy.split(','):
2584
+ name = name.strip()
2585
+ if name:
2586
+ name = name.lstrip('.') # ignore leading dots
2587
+ name = name.lower()
2588
+ if hostonly == name or host == name:
2589
+ return True
2590
+ name = '.' + name
2591
+ if hostonly.endswith(name) or host.endswith(name):
2592
+ return True
2593
+ # otherwise, don't bypass
2594
+ return False
2595
+
2596
+
2597
+ # This code tests an OSX specific data structure but is testable on all
2598
+ # platforms
2599
+ def _proxy_bypass_macosx_sysconf(host, proxy_settings):
2600
+ """
2601
+ Return True iff this host shouldn't be accessed using a proxy
2602
+
2603
+ This function uses the MacOSX framework SystemConfiguration
2604
+ to fetch the proxy information.
2605
+
2606
+ proxy_settings come from _scproxy._get_proxy_settings or get mocked ie:
2607
+ { 'exclude_simple': bool,
2608
+ 'exceptions': ['foo.bar', '*.bar.com', '127.0.0.1', '10.1', '10.0/16']
2609
+ }
2610
+ """
2611
+ from fnmatch import fnmatch
2612
+ from ipaddress import AddressValueError, IPv4Address
2613
+
2614
+ hostonly, port = _splitport(host)
2615
+
2616
+ def ip2num(ipAddr):
2617
+ parts = ipAddr.split('.')
2618
+ parts = list(map(int, parts))
2619
+ if len(parts) != 4:
2620
+ parts = (parts + [0, 0, 0, 0])[:4]
2621
+ return (parts[0] << 24) | (parts[1] << 16) | (parts[2] << 8) | parts[3]
2622
+
2623
+ # Check for simple host names:
2624
+ if '.' not in host:
2625
+ if proxy_settings['exclude_simple']:
2626
+ return True
2627
+
2628
+ hostIP = None
2629
+ try:
2630
+ hostIP = int(IPv4Address(hostonly))
2631
+ except AddressValueError:
2632
+ pass
2633
+
2634
+ for value in proxy_settings.get('exceptions', ()):
2635
+ # Items in the list are strings like these: *.local, 169.254/16
2636
+ if not value: continue
2637
+
2638
+ m = re.match(r"(\d+(?:\.\d+)*)(/\d+)?", value)
2639
+ if m is not None and hostIP is not None:
2640
+ base = ip2num(m.group(1))
2641
+ mask = m.group(2)
2642
+ if mask is None:
2643
+ mask = 8 * (m.group(1).count('.') + 1)
2644
+ else:
2645
+ mask = int(mask[1:])
2646
+
2647
+ if mask < 0 or mask > 32:
2648
+ # System libraries ignore invalid prefix lengths
2649
+ continue
2650
+
2651
+ mask = 32 - mask
2652
+
2653
+ if (hostIP >> mask) == (base >> mask):
2654
+ return True
2655
+
2656
+ elif fnmatch(host, value):
2657
+ return True
2658
+
2659
+ return False
2660
+
2661
+
2662
+ # Same as _proxy_bypass_macosx_sysconf, testable on all platforms
2663
+ def _proxy_bypass_winreg_override(host, override):
2664
+ """Return True if the host should bypass the proxy server.
2665
+
2666
+ The proxy override list is obtained from the Windows
2667
+ Internet settings proxy override registry value.
2668
+
2669
+ An example of a proxy override value is:
2670
+ "www.example.com;*.example.net; 192.168.0.1"
2671
+ """
2672
+ from fnmatch import fnmatch
2673
+
2674
+ host, _ = _splitport(host)
2675
+ proxy_override = override.split(';')
2676
+ for test in proxy_override:
2677
+ test = test.strip()
2678
+ # "<local>" should bypass the proxy server for all intranet addresses
2679
+ if test == '<local>':
2680
+ if '.' not in host:
2681
+ return True
2682
+ elif fnmatch(host, test):
2683
+ return True
2684
+ return False
2685
+
2686
+
2687
+ if sys.platform == 'darwin':
2688
+ from _scproxy import _get_proxy_settings, _get_proxies
2689
+
2690
+ def proxy_bypass_macosx_sysconf(host):
2691
+ proxy_settings = _get_proxy_settings()
2692
+ return _proxy_bypass_macosx_sysconf(host, proxy_settings)
2693
+
2694
+ def getproxies_macosx_sysconf():
2695
+ """Return a dictionary of scheme -> proxy server URL mappings.
2696
+
2697
+ This function uses the MacOSX framework SystemConfiguration
2698
+ to fetch the proxy information.
2699
+ """
2700
+ return _get_proxies()
2701
+
2702
+
2703
+
2704
+ def proxy_bypass(host):
2705
+ """Return True, if host should be bypassed.
2706
+
2707
+ Checks proxy settings gathered from the environment, if specified,
2708
+ or from the MacOSX framework SystemConfiguration.
2709
+
2710
+ """
2711
+ proxies = getproxies_environment()
2712
+ if proxies:
2713
+ return proxy_bypass_environment(host, proxies)
2714
+ else:
2715
+ return proxy_bypass_macosx_sysconf(host)
2716
+
2717
+ def getproxies():
2718
+ return getproxies_environment() or getproxies_macosx_sysconf()
2719
+
2720
+
2721
+ elif os.name == 'nt':
2722
+ def getproxies_registry():
2723
+ """Return a dictionary of scheme -> proxy server URL mappings.
2724
+
2725
+ Win32 uses the registry to store proxies.
2726
+
2727
+ """
2728
+ proxies = {}
2729
+ try:
2730
+ import winreg
2731
+ except ImportError:
2732
+ # Std module, so should be around - but you never know!
2733
+ return proxies
2734
+ try:
2735
+ internetSettings = winreg.OpenKey(winreg.HKEY_CURRENT_USER,
2736
+ r'Software\Microsoft\Windows\CurrentVersion\Internet Settings')
2737
+ proxyEnable = winreg.QueryValueEx(internetSettings,
2738
+ 'ProxyEnable')[0]
2739
+ if proxyEnable:
2740
+ # Returned as Unicode but problems if not converted to ASCII
2741
+ proxyServer = str(winreg.QueryValueEx(internetSettings,
2742
+ 'ProxyServer')[0])
2743
+ if '=' not in proxyServer and ';' not in proxyServer:
2744
+ # Use one setting for all protocols.
2745
+ proxyServer = 'http={0};https={0};ftp={0}'.format(proxyServer)
2746
+ for p in proxyServer.split(';'):
2747
+ protocol, address = p.split('=', 1)
2748
+ # See if address has a type:// prefix
2749
+ if not re.match('(?:[^/:]+)://', address):
2750
+ # Add type:// prefix to address without specifying type
2751
+ if protocol in ('http', 'https', 'ftp'):
2752
+ # The default proxy type of Windows is HTTP
2753
+ address = 'http://' + address
2754
+ elif protocol == 'socks':
2755
+ address = 'socks://' + address
2756
+ proxies[protocol] = address
2757
+ # Use SOCKS proxy for HTTP(S) protocols
2758
+ if proxies.get('socks'):
2759
+ # The default SOCKS proxy type of Windows is SOCKS4
2760
+ address = re.sub(r'^socks://', 'socks4://', proxies['socks'])
2761
+ proxies['http'] = proxies.get('http') or address
2762
+ proxies['https'] = proxies.get('https') or address
2763
+ internetSettings.Close()
2764
+ except (OSError, ValueError, TypeError):
2765
+ # Either registry key not found etc, or the value in an
2766
+ # unexpected format.
2767
+ # proxies already set up to be empty so nothing to do
2768
+ pass
2769
+ return proxies
2770
+
2771
+ def getproxies():
2772
+ """Return a dictionary of scheme -> proxy server URL mappings.
2773
+
2774
+ Returns settings gathered from the environment, if specified,
2775
+ or the registry.
2776
+
2777
+ """
2778
+ return getproxies_environment() or getproxies_registry()
2779
+
2780
+ def proxy_bypass_registry(host):
2781
+ try:
2782
+ import winreg
2783
+ except ImportError:
2784
+ # Std modules, so should be around - but you never know!
2785
+ return False
2786
+ try:
2787
+ internetSettings = winreg.OpenKey(winreg.HKEY_CURRENT_USER,
2788
+ r'Software\Microsoft\Windows\CurrentVersion\Internet Settings')
2789
+ proxyEnable = winreg.QueryValueEx(internetSettings,
2790
+ 'ProxyEnable')[0]
2791
+ proxyOverride = str(winreg.QueryValueEx(internetSettings,
2792
+ 'ProxyOverride')[0])
2793
+ # ^^^^ Returned as Unicode but problems if not converted to ASCII
2794
+ except OSError:
2795
+ return False
2796
+ if not proxyEnable or not proxyOverride:
2797
+ return False
2798
+ return _proxy_bypass_winreg_override(host, proxyOverride)
2799
+
2800
+ def proxy_bypass(host):
2801
+ """Return True, if host should be bypassed.
2802
+
2803
+ Checks proxy settings gathered from the environment, if specified,
2804
+ or the registry.
2805
+
2806
+ """
2807
+ proxies = getproxies_environment()
2808
+ if proxies:
2809
+ return proxy_bypass_environment(host, proxies)
2810
+ else:
2811
+ return proxy_bypass_registry(host)
2812
+
2813
+ else:
2814
+ # By default use environment variables
2815
+ getproxies = getproxies_environment
2816
+ proxy_bypass = proxy_bypass_environment