pytron-kit 0.3.12__py3-none-win_amd64.whl

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 (419) hide show
  1. pytron/__init__.py +112 -0
  2. pytron/application.py +562 -0
  3. pytron/apputils/__init__.py +0 -0
  4. pytron/apputils/chrome_ipc.py +203 -0
  5. pytron/apputils/codegen.py +261 -0
  6. pytron/apputils/config.py +303 -0
  7. pytron/apputils/deadmansswitch.py +47 -0
  8. pytron/apputils/extras.py +76 -0
  9. pytron/apputils/native.py +148 -0
  10. pytron/apputils/shell.py +73 -0
  11. pytron/apputils/windows.py +286 -0
  12. pytron/cli.py +384 -0
  13. pytron/commands/__init__.py +0 -0
  14. pytron/commands/android.py +28 -0
  15. pytron/commands/build.py +26 -0
  16. pytron/commands/doctor.py +221 -0
  17. pytron/commands/engine.py +23 -0
  18. pytron/commands/frontend.py +60 -0
  19. pytron/commands/harvest.py +112 -0
  20. pytron/commands/helpers.py +239 -0
  21. pytron/commands/info.py +50 -0
  22. pytron/commands/init.py +521 -0
  23. pytron/commands/install.py +294 -0
  24. pytron/commands/login.py +130 -0
  25. pytron/commands/package.py +228 -0
  26. pytron/commands/plugin.py +442 -0
  27. pytron/commands/run.py +312 -0
  28. pytron/commands/scan.py +210 -0
  29. pytron/commands/show.py +23 -0
  30. pytron/commands/uninstall.py +150 -0
  31. pytron/commands/utils.py +42 -0
  32. pytron/commands/workflow.py +95 -0
  33. pytron/console.py +133 -0
  34. pytron/core.py +18 -0
  35. pytron/dependencies/WebView2Loader.dll +0 -0
  36. pytron/dependencies/__init__.py +1 -0
  37. pytron/dependencies/pytron_native.pyd +0 -0
  38. pytron/engines/chrome/adapter.py +445 -0
  39. pytron/engines/chrome/engine.py +576 -0
  40. pytron/engines/chrome/forge.py +147 -0
  41. pytron/engines/chrome/shell/package.json +8 -0
  42. pytron/engines/chrome/shell/preload.js +12 -0
  43. pytron/engines/chrome/shell/shell.js +534 -0
  44. pytron/exceptions.py +36 -0
  45. pytron/inspector.py +201 -0
  46. pytron/inspector_ui.py +512 -0
  47. pytron/installer/Installation.nsi +236 -0
  48. pytron/installer/header.bmp +0 -0
  49. pytron/installer/pytron.ico +0 -0
  50. pytron/installer/sidebar.bmp +0 -0
  51. pytron/llms.md +98 -0
  52. pytron/manifests/README.md +29 -0
  53. pytron/manifests/windows-utf8.manifest +44 -0
  54. pytron/menu.py +128 -0
  55. pytron/nsis-setup.exe +0 -0
  56. pytron/pack/__init__.py +0 -0
  57. pytron/pack/assets.py +131 -0
  58. pytron/pack/compilers.py +289 -0
  59. pytron/pack/crystal.py +297 -0
  60. pytron/pack/graph.py +377 -0
  61. pytron/pack/inference.py +157 -0
  62. pytron/pack/installers.py +402 -0
  63. pytron/pack/introspect.py +357 -0
  64. pytron/pack/metadata.py +213 -0
  65. pytron/pack/modules.py +618 -0
  66. pytron/pack/nuitka.py +108 -0
  67. pytron/pack/pipeline.py +107 -0
  68. pytron/pack/pyinstaller.py +176 -0
  69. pytron/pack/rust_engine.py +273 -0
  70. pytron/pack/secure.py +309 -0
  71. pytron/pack/secure_loader/bin/pytron_rust_bootloader.exe +0 -0
  72. pytron/pack/secure_loader/icon.ico +0 -0
  73. pytron/pack/utils.py +110 -0
  74. pytron/pack/virtual_root.py +124 -0
  75. pytron/platforms/__init__.py +0 -0
  76. pytron/platforms/android/__init__.py +3 -0
  77. pytron/platforms/android/android.py +103 -0
  78. pytron/platforms/android/builder.py +736 -0
  79. pytron/platforms/android/ops/build.py +79 -0
  80. pytron/platforms/android/ops/init.py +63 -0
  81. pytron/platforms/android/ops/run.py +79 -0
  82. pytron/platforms/android/ops/sync.py +770 -0
  83. pytron/platforms/android/ops/utils.py +8 -0
  84. pytron/platforms/android/shell/README.md +30 -0
  85. pytron/platforms/android/shell/app/build.gradle +64 -0
  86. pytron/platforms/android/shell/app/src/main/AndroidManifest.xml +29 -0
  87. pytron/platforms/android/shell/app/src/main/assets/python/main.py +86 -0
  88. pytron/platforms/android/shell/app/src/main/assets/python/python314.zip +0 -0
  89. pytron/platforms/android/shell/app/src/main/cpp/CMakeLists.txt +25 -0
  90. pytron/platforms/android/shell/app/src/main/cpp/include/Python.h +155 -0
  91. pytron/platforms/android/shell/app/src/main/cpp/include/abstract.h +915 -0
  92. pytron/platforms/android/shell/app/src/main/cpp/include/audit.h +30 -0
  93. pytron/platforms/android/shell/app/src/main/cpp/include/bltinmodule.h +14 -0
  94. pytron/platforms/android/shell/app/src/main/cpp/include/boolobject.h +54 -0
  95. pytron/platforms/android/shell/app/src/main/cpp/include/bytearrayobject.h +44 -0
  96. pytron/platforms/android/shell/app/src/main/cpp/include/bytesobject.h +66 -0
  97. pytron/platforms/android/shell/app/src/main/cpp/include/ceval.h +145 -0
  98. pytron/platforms/android/shell/app/src/main/cpp/include/codecs.h +176 -0
  99. pytron/platforms/android/shell/app/src/main/cpp/include/compile.h +22 -0
  100. pytron/platforms/android/shell/app/src/main/cpp/include/complexobject.h +30 -0
  101. pytron/platforms/android/shell/app/src/main/cpp/include/cpython/abstract.h +104 -0
  102. pytron/platforms/android/shell/app/src/main/cpp/include/cpython/audit.h +8 -0
  103. pytron/platforms/android/shell/app/src/main/cpp/include/cpython/bytearrayobject.h +38 -0
  104. pytron/platforms/android/shell/app/src/main/cpp/include/cpython/bytesobject.h +42 -0
  105. pytron/platforms/android/shell/app/src/main/cpp/include/cpython/cellobject.h +50 -0
  106. pytron/platforms/android/shell/app/src/main/cpp/include/cpython/ceval.h +43 -0
  107. pytron/platforms/android/shell/app/src/main/cpp/include/cpython/classobject.h +71 -0
  108. pytron/platforms/android/shell/app/src/main/cpp/include/cpython/code.h +340 -0
  109. pytron/platforms/android/shell/app/src/main/cpp/include/cpython/compile.h +50 -0
  110. pytron/platforms/android/shell/app/src/main/cpp/include/cpython/complexobject.h +33 -0
  111. pytron/platforms/android/shell/app/src/main/cpp/include/cpython/context.h +107 -0
  112. pytron/platforms/android/shell/app/src/main/cpp/include/cpython/critical_section.h +154 -0
  113. pytron/platforms/android/shell/app/src/main/cpp/include/cpython/descrobject.h +62 -0
  114. pytron/platforms/android/shell/app/src/main/cpp/include/cpython/dictobject.h +105 -0
  115. pytron/platforms/android/shell/app/src/main/cpp/include/cpython/fileobject.h +16 -0
  116. pytron/platforms/android/shell/app/src/main/cpp/include/cpython/fileutils.h +16 -0
  117. pytron/platforms/android/shell/app/src/main/cpp/include/cpython/floatobject.h +27 -0
  118. pytron/platforms/android/shell/app/src/main/cpp/include/cpython/frameobject.h +35 -0
  119. pytron/platforms/android/shell/app/src/main/cpp/include/cpython/funcobject.h +185 -0
  120. pytron/platforms/android/shell/app/src/main/cpp/include/cpython/genobject.h +56 -0
  121. pytron/platforms/android/shell/app/src/main/cpp/include/cpython/import.h +30 -0
  122. pytron/platforms/android/shell/app/src/main/cpp/include/cpython/initconfig.h +334 -0
  123. pytron/platforms/android/shell/app/src/main/cpp/include/cpython/listobject.h +53 -0
  124. pytron/platforms/android/shell/app/src/main/cpp/include/cpython/lock.h +74 -0
  125. pytron/platforms/android/shell/app/src/main/cpp/include/cpython/longintrepr.h +184 -0
  126. pytron/platforms/android/shell/app/src/main/cpp/include/cpython/longobject.h +89 -0
  127. pytron/platforms/android/shell/app/src/main/cpp/include/cpython/memoryobject.h +50 -0
  128. pytron/platforms/android/shell/app/src/main/cpp/include/cpython/methodobject.h +66 -0
  129. pytron/platforms/android/shell/app/src/main/cpp/include/cpython/modsupport.h +26 -0
  130. pytron/platforms/android/shell/app/src/main/cpp/include/cpython/monitoring.h +269 -0
  131. pytron/platforms/android/shell/app/src/main/cpp/include/cpython/object.h +493 -0
  132. pytron/platforms/android/shell/app/src/main/cpp/include/cpython/objimpl.h +104 -0
  133. pytron/platforms/android/shell/app/src/main/cpp/include/cpython/odictobject.h +43 -0
  134. pytron/platforms/android/shell/app/src/main/cpp/include/cpython/picklebufobject.h +31 -0
  135. pytron/platforms/android/shell/app/src/main/cpp/include/cpython/pthread_stubs.h +105 -0
  136. pytron/platforms/android/shell/app/src/main/cpp/include/cpython/pyatomic.h +614 -0
  137. pytron/platforms/android/shell/app/src/main/cpp/include/cpython/pyatomic_gcc.h +615 -0
  138. pytron/platforms/android/shell/app/src/main/cpp/include/cpython/pyatomic_msc.h +1197 -0
  139. pytron/platforms/android/shell/app/src/main/cpp/include/cpython/pyatomic_std.h +1112 -0
  140. pytron/platforms/android/shell/app/src/main/cpp/include/cpython/pyctype.h +39 -0
  141. pytron/platforms/android/shell/app/src/main/cpp/include/cpython/pydebug.h +38 -0
  142. pytron/platforms/android/shell/app/src/main/cpp/include/cpython/pyerrors.h +132 -0
  143. pytron/platforms/android/shell/app/src/main/cpp/include/cpython/pyfpe.h +15 -0
  144. pytron/platforms/android/shell/app/src/main/cpp/include/cpython/pyframe.h +45 -0
  145. pytron/platforms/android/shell/app/src/main/cpp/include/cpython/pyhash.h +54 -0
  146. pytron/platforms/android/shell/app/src/main/cpp/include/cpython/pylifecycle.h +89 -0
  147. pytron/platforms/android/shell/app/src/main/cpp/include/cpython/pymem.h +84 -0
  148. pytron/platforms/android/shell/app/src/main/cpp/include/cpython/pystate.h +275 -0
  149. pytron/platforms/android/shell/app/src/main/cpp/include/cpython/pystats.h +194 -0
  150. pytron/platforms/android/shell/app/src/main/cpp/include/cpython/pythonrun.h +96 -0
  151. pytron/platforms/android/shell/app/src/main/cpp/include/cpython/pythread.h +43 -0
  152. pytron/platforms/android/shell/app/src/main/cpp/include/cpython/pytime.h +27 -0
  153. pytron/platforms/android/shell/app/src/main/cpp/include/cpython/setobject.h +71 -0
  154. pytron/platforms/android/shell/app/src/main/cpp/include/cpython/traceback.h +13 -0
  155. pytron/platforms/android/shell/app/src/main/cpp/include/cpython/tracemalloc.h +32 -0
  156. pytron/platforms/android/shell/app/src/main/cpp/include/cpython/tupleobject.h +40 -0
  157. pytron/platforms/android/shell/app/src/main/cpp/include/cpython/unicodeobject.h +773 -0
  158. pytron/platforms/android/shell/app/src/main/cpp/include/cpython/warnings.h +20 -0
  159. pytron/platforms/android/shell/app/src/main/cpp/include/cpython/weakrefobject.h +66 -0
  160. pytron/platforms/android/shell/app/src/main/cpp/include/critical_section.h +16 -0
  161. pytron/platforms/android/shell/app/src/main/cpp/include/datetime.h +267 -0
  162. pytron/platforms/android/shell/app/src/main/cpp/include/descrobject.h +100 -0
  163. pytron/platforms/android/shell/app/src/main/cpp/include/dictobject.h +108 -0
  164. pytron/platforms/android/shell/app/src/main/cpp/include/dynamic_annotations.h +499 -0
  165. pytron/platforms/android/shell/app/src/main/cpp/include/enumobject.h +17 -0
  166. pytron/platforms/android/shell/app/src/main/cpp/include/errcode.h +45 -0
  167. pytron/platforms/android/shell/app/src/main/cpp/include/exports.h +105 -0
  168. pytron/platforms/android/shell/app/src/main/cpp/include/fileobject.h +41 -0
  169. pytron/platforms/android/shell/app/src/main/cpp/include/fileutils.h +62 -0
  170. pytron/platforms/android/shell/app/src/main/cpp/include/floatobject.h +54 -0
  171. pytron/platforms/android/shell/app/src/main/cpp/include/frameobject.h +20 -0
  172. pytron/platforms/android/shell/app/src/main/cpp/include/genericaliasobject.h +14 -0
  173. pytron/platforms/android/shell/app/src/main/cpp/include/import.h +103 -0
  174. pytron/platforms/android/shell/app/src/main/cpp/include/internal/mimalloc/mimalloc/atomic.h +392 -0
  175. pytron/platforms/android/shell/app/src/main/cpp/include/internal/mimalloc/mimalloc/internal.h +969 -0
  176. pytron/platforms/android/shell/app/src/main/cpp/include/internal/mimalloc/mimalloc/prim.h +329 -0
  177. pytron/platforms/android/shell/app/src/main/cpp/include/internal/mimalloc/mimalloc/track.h +147 -0
  178. pytron/platforms/android/shell/app/src/main/cpp/include/internal/mimalloc/mimalloc/types.h +721 -0
  179. pytron/platforms/android/shell/app/src/main/cpp/include/internal/mimalloc/mimalloc.h +565 -0
  180. pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_abstract.h +61 -0
  181. pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_asdl.h +112 -0
  182. pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_ast.h +945 -0
  183. pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_ast_state.h +271 -0
  184. pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_atexit.h +31 -0
  185. pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_audit.h +35 -0
  186. pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_backoff.h +133 -0
  187. pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_bitutils.h +186 -0
  188. pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_blocks_output_buffer.h +321 -0
  189. pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_brc.h +73 -0
  190. pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_bytes_methods.h +82 -0
  191. pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_bytesobject.h +149 -0
  192. pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_c_array.h +39 -0
  193. pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_call.h +206 -0
  194. pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_capsule.h +17 -0
  195. pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_cell.h +75 -0
  196. pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_ceval.h +390 -0
  197. pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_ceval_state.h +48 -0
  198. pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_code.h +671 -0
  199. pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_codecs.h +76 -0
  200. pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_compile.h +230 -0
  201. pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_complexobject.h +34 -0
  202. pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_condvar.h +93 -0
  203. pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_context.h +59 -0
  204. pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_critical_section.h +237 -0
  205. pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_crossinterp.h +406 -0
  206. pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_crossinterp_data_registry.h +41 -0
  207. pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_debug_offsets.h +379 -0
  208. pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_descrobject.h +28 -0
  209. pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_dict.h +410 -0
  210. pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_dict_state.h +28 -0
  211. pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_dtoa.h +40 -0
  212. pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_emscripten_signal.h +30 -0
  213. pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_emscripten_trampoline.h +70 -0
  214. pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_exceptions.h +40 -0
  215. pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_faulthandler.h +100 -0
  216. pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_fileutils.h +320 -0
  217. pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_fileutils_windows.h +98 -0
  218. pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_floatobject.h +49 -0
  219. pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_flowgraph.h +47 -0
  220. pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_format.h +27 -0
  221. pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_frame.h +61 -0
  222. pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_freelist.h +111 -0
  223. pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_freelist_state.h +70 -0
  224. pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_function.h +53 -0
  225. pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_gc.h +378 -0
  226. pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_genobject.h +43 -0
  227. pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_getopt.h +22 -0
  228. pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_gil.h +66 -0
  229. pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_global_objects.h +34 -0
  230. pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_global_objects_fini_generated.h +1592 -0
  231. pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_global_strings.h +854 -0
  232. pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_hamt.h +113 -0
  233. pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_hashtable.h +150 -0
  234. pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_import.h +141 -0
  235. pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_importdl.h +139 -0
  236. pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_index_pool.h +36 -0
  237. pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_initconfig.h +197 -0
  238. pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_instruction_sequence.h +83 -0
  239. pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_instruments.h +127 -0
  240. pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_interp.h +109 -0
  241. pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_interp_structs.h +977 -0
  242. pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_interpframe.h +401 -0
  243. pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_interpframe_structs.h +95 -0
  244. pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_interpolation.h +26 -0
  245. pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_intrinsics.h +51 -0
  246. pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_jit.h +29 -0
  247. pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_list.h +81 -0
  248. pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_llist.h +106 -0
  249. pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_lock.h +236 -0
  250. pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_long.h +319 -0
  251. pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_magic_number.h +305 -0
  252. pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_memoryobject.h +20 -0
  253. pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_mimalloc.h +69 -0
  254. pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_modsupport.h +99 -0
  255. pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_moduleobject.h +62 -0
  256. pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_namespace.h +21 -0
  257. pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_object.h +1029 -0
  258. pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_object_alloc.h +71 -0
  259. pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_object_deferred.h +32 -0
  260. pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_object_stack.h +95 -0
  261. pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_object_state.h +49 -0
  262. pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_obmalloc.h +702 -0
  263. pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_obmalloc_init.h +66 -0
  264. pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_opcode_metadata.h +2117 -0
  265. pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_opcode_utils.h +90 -0
  266. pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_optimizer.h +318 -0
  267. pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_parking_lot.h +97 -0
  268. pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_parser.h +78 -0
  269. pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_pathconfig.h +26 -0
  270. pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_pyarena.h +68 -0
  271. pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_pyatomic_ft_wrappers.h +174 -0
  272. pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_pybuffer.h +21 -0
  273. pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_pyerrors.h +213 -0
  274. pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_pyhash.h +91 -0
  275. pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_pylifecycle.h +136 -0
  276. pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_pymath.h +205 -0
  277. pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_pymem.h +145 -0
  278. pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_pymem_init.h +103 -0
  279. pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_pystate.h +339 -0
  280. pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_pystats.h +21 -0
  281. pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_pythonrun.h +68 -0
  282. pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_pythread.h +172 -0
  283. pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_qsbr.h +172 -0
  284. pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_range.h +21 -0
  285. pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_runtime.h +63 -0
  286. pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_runtime_init.h +239 -0
  287. pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_runtime_init_generated.h +1589 -0
  288. pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_runtime_structs.h +310 -0
  289. pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_semaphore.h +67 -0
  290. pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_setobject.h +41 -0
  291. pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_signal.h +108 -0
  292. pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_sliceobject.h +20 -0
  293. pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_stackref.h +791 -0
  294. pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_stats.h +97 -0
  295. pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_strhex.h +39 -0
  296. pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_structs.h +88 -0
  297. pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_structseq.h +40 -0
  298. pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_symtable.h +201 -0
  299. pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_sysmodule.h +32 -0
  300. pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_template.h +26 -0
  301. pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_time.h +334 -0
  302. pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_token.h +110 -0
  303. pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_traceback.h +111 -0
  304. pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_tracemalloc.h +164 -0
  305. pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_tstate.h +88 -0
  306. pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_tuple.h +75 -0
  307. pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_typedefs.h +18 -0
  308. pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_typeobject.h +155 -0
  309. pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_typevarobject.h +28 -0
  310. pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_ucnhash.h +36 -0
  311. pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_unicodeobject.h +308 -0
  312. pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_unicodeobject_generated.h +3132 -0
  313. pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_unionobject.h +26 -0
  314. pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_uniqueid.h +57 -0
  315. pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_uop_ids.h +335 -0
  316. pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_uop_metadata.h +1204 -0
  317. pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_warnings.h +21 -0
  318. pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_weakref.h +133 -0
  319. pytron/platforms/android/shell/app/src/main/cpp/include/intrcheck.h +23 -0
  320. pytron/platforms/android/shell/app/src/main/cpp/include/iterobject.h +24 -0
  321. pytron/platforms/android/shell/app/src/main/cpp/include/listobject.h +55 -0
  322. pytron/platforms/android/shell/app/src/main/cpp/include/lock.h +16 -0
  323. pytron/platforms/android/shell/app/src/main/cpp/include/longobject.h +178 -0
  324. pytron/platforms/android/shell/app/src/main/cpp/include/marshal.h +31 -0
  325. pytron/platforms/android/shell/app/src/main/cpp/include/memoryobject.h +34 -0
  326. pytron/platforms/android/shell/app/src/main/cpp/include/methodobject.h +146 -0
  327. pytron/platforms/android/shell/app/src/main/cpp/include/modsupport.h +146 -0
  328. pytron/platforms/android/shell/app/src/main/cpp/include/moduleobject.h +122 -0
  329. pytron/platforms/android/shell/app/src/main/cpp/include/monitoring.h +18 -0
  330. pytron/platforms/android/shell/app/src/main/cpp/include/object.h +828 -0
  331. pytron/platforms/android/shell/app/src/main/cpp/include/objimpl.h +211 -0
  332. pytron/platforms/android/shell/app/src/main/cpp/include/opcode.h +43 -0
  333. pytron/platforms/android/shell/app/src/main/cpp/include/opcode_ids.h +259 -0
  334. pytron/platforms/android/shell/app/src/main/cpp/include/osdefs.h +57 -0
  335. pytron/platforms/android/shell/app/src/main/cpp/include/osmodule.h +17 -0
  336. pytron/platforms/android/shell/app/src/main/cpp/include/patchlevel.h +49 -0
  337. pytron/platforms/android/shell/app/src/main/cpp/include/py_curses.h +117 -0
  338. pytron/platforms/android/shell/app/src/main/cpp/include/pyatomic.h +16 -0
  339. pytron/platforms/android/shell/app/src/main/cpp/include/pybuffer.h +145 -0
  340. pytron/platforms/android/shell/app/src/main/cpp/include/pycapsule.h +58 -0
  341. pytron/platforms/android/shell/app/src/main/cpp/include/pyconfig.h +2088 -0
  342. pytron/platforms/android/shell/app/src/main/cpp/include/pydtrace.h +59 -0
  343. pytron/platforms/android/shell/app/src/main/cpp/include/pyerrors.h +335 -0
  344. pytron/platforms/android/shell/app/src/main/cpp/include/pyexpat.h +62 -0
  345. pytron/platforms/android/shell/app/src/main/cpp/include/pyframe.h +26 -0
  346. pytron/platforms/android/shell/app/src/main/cpp/include/pyhash.h +59 -0
  347. pytron/platforms/android/shell/app/src/main/cpp/include/pylifecycle.h +80 -0
  348. pytron/platforms/android/shell/app/src/main/cpp/include/pymacconfig.h +91 -0
  349. pytron/platforms/android/shell/app/src/main/cpp/include/pymacro.h +243 -0
  350. pytron/platforms/android/shell/app/src/main/cpp/include/pymath.h +65 -0
  351. pytron/platforms/android/shell/app/src/main/cpp/include/pymem.h +110 -0
  352. pytron/platforms/android/shell/app/src/main/cpp/include/pyport.h +710 -0
  353. pytron/platforms/android/shell/app/src/main/cpp/include/pystate.h +132 -0
  354. pytron/platforms/android/shell/app/src/main/cpp/include/pystats.h +28 -0
  355. pytron/platforms/android/shell/app/src/main/cpp/include/pystrcmp.h +23 -0
  356. pytron/platforms/android/shell/app/src/main/cpp/include/pystrtod.h +37 -0
  357. pytron/platforms/android/shell/app/src/main/cpp/include/pythonrun.h +42 -0
  358. pytron/platforms/android/shell/app/src/main/cpp/include/pythread.h +131 -0
  359. pytron/platforms/android/shell/app/src/main/cpp/include/pytypedefs.h +30 -0
  360. pytron/platforms/android/shell/app/src/main/cpp/include/rangeobject.h +27 -0
  361. pytron/platforms/android/shell/app/src/main/cpp/include/refcount.h +555 -0
  362. pytron/platforms/android/shell/app/src/main/cpp/include/setobject.h +49 -0
  363. pytron/platforms/android/shell/app/src/main/cpp/include/sliceobject.h +69 -0
  364. pytron/platforms/android/shell/app/src/main/cpp/include/structmember.h +56 -0
  365. pytron/platforms/android/shell/app/src/main/cpp/include/structseq.h +46 -0
  366. pytron/platforms/android/shell/app/src/main/cpp/include/sysmodule.h +27 -0
  367. pytron/platforms/android/shell/app/src/main/cpp/include/traceback.h +26 -0
  368. pytron/platforms/android/shell/app/src/main/cpp/include/tupleobject.h +46 -0
  369. pytron/platforms/android/shell/app/src/main/cpp/include/typeslots.h +96 -0
  370. pytron/platforms/android/shell/app/src/main/cpp/include/unicodeobject.h +1029 -0
  371. pytron/platforms/android/shell/app/src/main/cpp/include/warnings.h +45 -0
  372. pytron/platforms/android/shell/app/src/main/cpp/include/weakrefobject.h +46 -0
  373. pytron/platforms/android/shell/app/src/main/cpp/pytron_bridge.cpp +224 -0
  374. pytron/platforms/android/shell/app/src/main/java/com/pytron/shell/MainActivity.kt +208 -0
  375. pytron/platforms/android/shell/app/src/main/res/mipmap-xxhdpi/ic_launcher.png +0 -0
  376. pytron/platforms/android/shell/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png +0 -0
  377. pytron/platforms/android/shell/build.gradle +11 -0
  378. pytron/platforms/android/shell/gradle/wrapper/gradle-wrapper.jar +0 -0
  379. pytron/platforms/android/shell/gradle/wrapper/gradle-wrapper.properties +5 -0
  380. pytron/platforms/android/shell/gradle.properties +2 -0
  381. pytron/platforms/android/shell/gradlew.bat +85 -0
  382. pytron/platforms/android/shell/settings.gradle +16 -0
  383. pytron/platforms/darwin.py +82 -0
  384. pytron/platforms/darwin_ops/libs.py +31 -0
  385. pytron/platforms/darwin_ops/system.py +182 -0
  386. pytron/platforms/darwin_ops/utils.py +85 -0
  387. pytron/platforms/darwin_ops/webview.py +5 -0
  388. pytron/platforms/darwin_ops/window.py +102 -0
  389. pytron/platforms/interface.py +152 -0
  390. pytron/platforms/linux.py +82 -0
  391. pytron/platforms/linux_ops/libs.py +49 -0
  392. pytron/platforms/linux_ops/system.py +316 -0
  393. pytron/platforms/linux_ops/utils.py +19 -0
  394. pytron/platforms/linux_ops/webview.py +5 -0
  395. pytron/platforms/linux_ops/window.py +115 -0
  396. pytron/platforms/windows.py +136 -0
  397. pytron/platforms/windows_ops/__init__.py +0 -0
  398. pytron/platforms/windows_ops/constants.py +126 -0
  399. pytron/platforms/windows_ops/system.py +518 -0
  400. pytron/platforms/windows_ops/utils.py +3 -0
  401. pytron/platforms/windows_ops/webview.py +5 -0
  402. pytron/platforms/windows_ops/window.py +361 -0
  403. pytron/plugin.py +467 -0
  404. pytron/rcedit-x64.exe +0 -0
  405. pytron/router.py +146 -0
  406. pytron/serializer.py +240 -0
  407. pytron/shortcuts.py +279 -0
  408. pytron/state.py +76 -0
  409. pytron/tray.py +399 -0
  410. pytron/updater.py +181 -0
  411. pytron/utf8_hook.py +112 -0
  412. pytron/utils.py +44 -0
  413. pytron/webview.py +722 -0
  414. pytron_kit-0.3.12.dist-info/METADATA +131 -0
  415. pytron_kit-0.3.12.dist-info/RECORD +419 -0
  416. pytron_kit-0.3.12.dist-info/WHEEL +5 -0
  417. pytron_kit-0.3.12.dist-info/entry_points.txt +2 -0
  418. pytron_kit-0.3.12.dist-info/licenses/LICENSE +201 -0
  419. pytron_kit-0.3.12.dist-info/top_level.txt +1 -0
@@ -0,0 +1,131 @@
1
+ Metadata-Version: 2.4
2
+ Name: pytron-kit
3
+ Version: 0.3.12
4
+ Summary: An Electron-like library for Python to build Cross Platform Apps
5
+ Author: Ghua8088
6
+ License: Apache-2.0
7
+ Project-URL: Homepage, https://pytron-kit.github.io/
8
+ Project-URL: Repository, https://github.com/Ghua8088/pytron-kit
9
+ Keywords: electron,app,desktop,android,webview
10
+ Classifier: Programming Language :: Python :: 3
11
+ Classifier: License :: OSI Approved :: Apache Software License
12
+ Classifier: Operating System :: Microsoft :: Windows
13
+ Classifier: Operating System :: POSIX :: Linux
14
+ Classifier: Operating System :: MacOS :: MacOS X
15
+ Classifier: Intended Audience :: Developers
16
+ Requires-Python: >=3.7
17
+ Description-Content-Type: text/markdown
18
+ License-File: LICENSE
19
+ Requires-Dist: watchfiles
20
+ Requires-Dist: pydantic
21
+ Requires-Dist: importlib-metadata; python_version < "3.8"
22
+ Requires-Dist: pyinstaller
23
+ Requires-Dist: Pillow
24
+ Requires-Dist: pyobjc-framework-Cocoa; sys_platform == "darwin"
25
+ Requires-Dist: pyobjc-framework-WebKit; sys_platform == "darwin"
26
+ Requires-Dist: PyGObject==3.54.5; sys_platform == "linux"
27
+ Requires-Dist: rich
28
+ Requires-Dist: lief
29
+ Requires-Dist: nuitka
30
+ Requires-Dist: zstandard
31
+ Requires-Dist: comtypes; sys_platform == "win32"
32
+ Requires-Dist: cryptography
33
+ Requires-Dist: keyring
34
+ Requires-Dist: requests
35
+ Requires-Dist: Cython
36
+ Dynamic: license-file
37
+
38
+ ![Pytron](https://raw.githubusercontent.com/Ghua8088/pytron/main/pytron-banner.png)
39
+
40
+ # Pytron Kit
41
+
42
+ [![PyPI Version](https://img.shields.io/pypi/v/pytron-kit.svg)](https://pypi.org/project/pytron-kit/)
43
+ [![Downloads](https://img.shields.io/pypi/dm/pytron-kit.svg)](https://pypi.org/project/pytron-kit/)
44
+ [![License](https://img.shields.io/pypi/l/pytron-kit.svg)](https://pypi.org/project/pytron-kit/)
45
+ [![GitHub](https://img.shields.io/badge/github-repo-000000?logo=github)](https://github.com/Ghua8088/pytron)
46
+ [![Website](https://img.shields.io/badge/official-website-blue)](https://pytron-kit.github.io/)
47
+
48
+
49
+ **Pytron-kit** is a high-performance framework for building native ("parasitic") desktop apps using Python and Web Technologies (React, Vite). It combines the computational depth of Python (AI/ML) with the UI flexibility of the web, achieving a **~5MB footprint** by utilizing the OS-native webview.
50
+
51
+ ## Linux Requirements
52
+ On **Ubuntu/Debian**, you must install the WebKitGTK headers and glib bindings before installing Pytron:
53
+
54
+ ```bash
55
+ sudo apt-get install -y libcairo2-dev libgirepository-2.0-dev libglib2.0-dev pkg-config python3-dev libwebkit2gtk-4.1-dev gir1.2-gtk-4.0
56
+ ```
57
+
58
+ ## Quick Start
59
+
60
+ ```bash
61
+ # 1. Install
62
+ pip install pytron-kit
63
+
64
+ # 2. Create Project (React + Vite)
65
+ pytron init my_app
66
+
67
+ # 3. Run (Hot-Reloading)
68
+ pytron run --dev
69
+ ```
70
+
71
+ ## Hello World
72
+
73
+ **Python Backend** (`main.py`)
74
+ ```python
75
+ from pytron import App
76
+
77
+ app = App()
78
+
79
+ @app.expose
80
+ def greet(name: str):
81
+ return f"Hello, {name} from Python!"
82
+
83
+ app.run()
84
+ ```
85
+
86
+ **Frontend** (`App.jsx`)
87
+ ```javascript
88
+ import pytron from 'pytron-client';
89
+
90
+ const msg = await pytron.greet("User");
91
+ console.log(msg); // "Hello, User from Python!"
92
+ ```
93
+
94
+ ## Key Features
95
+ * **Agentic Shield (God Mode)**: The world's first **Runtime-Audited Compiler**. Pytron executes your app to map 100% of dynamic dependencies (Crystal Mode), tree-shakes the code into a **Virtual Entry Point**, and compiles it to a **Native Extension** using Rust & Zig.
96
+ * **Adaptive Runtime**: Use the **Native Webview** (~5MB) for efficiency or switch to the **Chrome Engine** (Electron) for 100% rendering parity.
97
+ * **Zero-Copy Bridge**: Stream raw binary data (video/tensors) from Python to JS at 60FPS via `pytron://`, bypassing Base64 overhead.
98
+ * **Type-Safe**: Automatically generates TypeScript definitions (`.d.ts`) from your Python type hints.
99
+ * **Native Integration**: Global shortcuts, Taskbar progress, System Tray, and Native File Dialogs.
100
+
101
+ ## The Agentic Shield
102
+
103
+ Pytron redefines Python distribution with a 3-stage security and optimization pipeline known as the **Agentic Shield**.
104
+
105
+ 1. **Crystal Audit (💎)**: Uses `sys.addaudithook` (PEP 578) to execute your application and strictly record every module implementation used. No more "Missing Import" errors.
106
+ 2. **Virtual Entry Point**: Automatically generates a synthesized entry file (`_virtual_root.py`) containing only the Python APIs you explicitly exposed.
107
+ 3. **Rust Engine (🦀)**: Compiles the virtual root into a native CPylib (`app.pyd` or `app.so`) using **Zig**, and bundles it with a custom **Rust Bootloader**.
108
+
109
+ ## Packaging
110
+
111
+ ```bash
112
+ # Standard Build (PyInstaller + Intelligent Hooks)
113
+ pytron package
114
+
115
+ # Crystal Build (Runtime Audit + Tree Shaking)
116
+ # *Requires user consent to execute code*
117
+ pytron package --crystal
118
+
119
+ # God Mode (Crystal Audit + Rust Compilation + Native Bootloader)
120
+ pytron package --engine rust --crystal
121
+ ```
122
+
123
+ ## Documentation
124
+
125
+ * **[User Guide](USAGE.md)**: Configuration, advanced APIs, and UI components.
126
+ * **[Architecture](ARCHITECTURE.md)**: Deep dive into the internal engineering and philosophy.
127
+ * **[Roadmap](ROADMAP.md)**: Upcoming features.
128
+ * **[Contributing](CONTRIBUTING.md)**: How to help.
129
+
130
+ ## License
131
+ Apache License 2.0
@@ -0,0 +1,419 @@
1
+ pytron/__init__.py,sha256=uPsH4mWQRkahi_nsQxVrORiV7CFBwKGhdx3vpl83ok0,3350
2
+ pytron/application.py,sha256=ocfcZzU83YqXIKQxxPXxBY8p90UyRfnvYknN9MX9PNU,22087
3
+ pytron/cli.py,sha256=N1plFzFayAte5op3bW0N8vjzouYYB6e1W7EvDGxf8HQ,12766
4
+ pytron/console.py,sha256=0bJKQUdHM-LLUh2gBL6_7q_2L_4n8iZvxUQvPH7RCyo,4202
5
+ pytron/core.py,sha256=pTgoOuDgJKilvnFwKmKwQLApGYhr1TAVEMjZsCdO1NM,459
6
+ pytron/exceptions.py,sha256=nOSybeQJO1520kAIoRK3zDCvx1oxEDgeNWd1fMZO4sc,842
7
+ pytron/inspector.py,sha256=x8XL3RV0tfBxn2USNg96chWrr_-nGor_rBXJhfjT7C0,7221
8
+ pytron/inspector_ui.py,sha256=5rguwEqEwNcO1Mckz8sQ_gJuHK73GvUhF5gKUulrMnk,21093
9
+ pytron/llms.md,sha256=4zHZTJqIIJ7YqewJBkFDpoHxLItAjthiKXGH3owopZQ,3460
10
+ pytron/menu.py,sha256=Tomdrob_5_p8WKLqg9kvTGdJb0vW_Xr9ScOhN37H6iU,3861
11
+ pytron/nsis-setup.exe,sha256=ONSfj-CbHDMrAdCUDle3JY9ER3M2Qyc6AcWZWa2dOwo,1564991
12
+ pytron/plugin.py,sha256=RZb02a0nsTJmwgSLnxQc8QLKkt7IP1edZr7bXpbyyN0,18690
13
+ pytron/rcedit-x64.exe,sha256=PngB2xpe2-yRtJokoJSq13bLRRVIjqWkyiKJxADq3io,1360384
14
+ pytron/router.py,sha256=keskIqyAWuTgLqiRm2lbimKU7XrTCDuk7KNbkyUhNT4,5030
15
+ pytron/serializer.py,sha256=X964Lyu-lY-imhZ78GTvl_1QGhweBUPZ2L-H7Pa2lKU,8271
16
+ pytron/shortcuts.py,sha256=8tdTAfeG_tIJapEvJQ5hy_MaE6wxzYMlGOvif4LixEw,8742
17
+ pytron/state.py,sha256=hFMK2a3mVfhreBxes6xRcUwuGxr8PU0L_o-GoeY85Cs,2917
18
+ pytron/tray.py,sha256=4DWeyaD7kjicDmuNynfXJMaXHB18RKo07yc1EpNmYQc,14219
19
+ pytron/updater.py,sha256=ZcZmlXdjsR32aM2I-vJjAiLZOzwOLYsUfk-9F5AIQXA,6928
20
+ pytron/utf8_hook.py,sha256=lwLzee_Kwlw5GU9myOSj7i4JUPUEiUGZdiiHlKUzjok,3577
21
+ pytron/utils.py,sha256=hqSNVSeokOS2cUiML0pX2YVTI8GBT5rykOn175Ux6CY,1678
22
+ pytron/webview.py,sha256=IvU0XkwYPL7bxQ3NisavqG229KpSwIIOdN73gjmQskM,28074
23
+ pytron/apputils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
24
+ pytron/apputils/chrome_ipc.py,sha256=z5JxVy580N4-aXvmkyDjtkwsUjZxHUwyVERhRpclzak,6462
25
+ pytron/apputils/codegen.py,sha256=Qy6oblzL9XpWwUnemEjyPPCLuwZCFeXTFq6oXtL-dzo,9662
26
+ pytron/apputils/config.py,sha256=PhSiI0YVBqYBP8d18uA3OkdAOf15K1VTBJVQya_73gk,12699
27
+ pytron/apputils/deadmansswitch.py,sha256=u27FttaSV4ml40gMUsc3DR9R9iPs4oGT40Ctz-XN374,1628
28
+ pytron/apputils/extras.py,sha256=1-Z69FzsFWW9q2WOIDoS90aqh0DoU7umn6JcGhoy4zo,3425
29
+ pytron/apputils/native.py,sha256=NGmmfmWhB_Q-r4Fr8dHOkSPLsW_Sdm958Cft2C5bwP8,5553
30
+ pytron/apputils/shell.py,sha256=nPtkrY5jUMvqVwLNAc20RaqJCEi650MAbnF5ephnKZ8,2247
31
+ pytron/apputils/windows.py,sha256=7E9UylqZ7hFnSlyvwIB-qbfLGIojYujVMFviFgx2Qzg,11358
32
+ pytron/commands/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
33
+ pytron/commands/android.py,sha256=jcgmRFjRYu0RE-mLOlfqCZhPHwNOSHeGMDa6l8DZgTk,1124
34
+ pytron/commands/build.py,sha256=T5k7Fl9pYlkMS50Cqy7EwlZs9_LfBuoe4ttENcO0DmE,713
35
+ pytron/commands/doctor.py,sha256=_mNH6ETmwbat11ljZhtkqdCwxvaig2K5xxSfi47IUto,7726
36
+ pytron/commands/engine.py,sha256=H4hgOIarO4Aw5owZ8wHe5v_mcMj9jQd050VpDIm6aSk,806
37
+ pytron/commands/frontend.py,sha256=NPoWgnY1NMagRqO46pS--u1pfrRM2fF8wGRWK3m2Blw,2141
38
+ pytron/commands/harvest.py,sha256=bl_sUjA1eRBDwLmKRnOz2ZMm9XbRVFBNJbmJlzLjJ04,3801
39
+ pytron/commands/helpers.py,sha256=18oQe1UBnlDh7BNh1oApkG9c7Q3FjxaM6yq-Lp6DBYU,9624
40
+ pytron/commands/info.py,sha256=VI79kVnXonU-zzDO63y-G4LVzXPDU5DJ95CZMybLXYM,1684
41
+ pytron/commands/init.py,sha256=4DAQ-WfKYgfMuuKVgyr8DCAF9laJkf5K5Lf2cButgYc,18531
42
+ pytron/commands/install.py,sha256=cwcgIppcSiM_jW9NnnbTYtVYg4ytKeMmxGi5Ibv_5HA,11517
43
+ pytron/commands/login.py,sha256=QpquJ0vDg0J3Qai60DUYqBKsu2Ti3cNxcjgveqaecvY,4534
44
+ pytron/commands/package.py,sha256=iLDV8oYbdlwy5nKW-W7nYtp-4FcXAmO984OabTMhiwA,8109
45
+ pytron/commands/plugin.py,sha256=VjXA9JGk2h3EdGR9TeQyIb97Yj8UIJFc6zIf8lxaIJg,15156
46
+ pytron/commands/run.py,sha256=b-I1F3GD7qxPwO_PcKmd4JjPevscTZpwfPVURpOJdgQ,11425
47
+ pytron/commands/scan.py,sha256=4GtV3_Sfbej12kGtq9lm7v0U3BgQWjt0JlOuUermoic,7424
48
+ pytron/commands/show.py,sha256=ZicFz6sqaxG2vf1i2FIIv3C124FZEVuvghESRpVfXD8,690
49
+ pytron/commands/uninstall.py,sha256=taheIcRYH_1twmfX2Ox-8ELpgS1hupsqT9tSqH9VdCs,4929
50
+ pytron/commands/utils.py,sha256=nsfLYGVndU2kTDG7ET3Xyx3tGJqVnCc-jfnCTOjKSNM,1270
51
+ pytron/commands/workflow.py,sha256=i6sQSEavm_K73h0mYGUKizxfsjYZhgbBvWdhTjKw9Aw,2857
52
+ pytron/dependencies/WebView2Loader.dll,sha256=KLiY5EMykclpzU87xGN3sZVSetkTjfL6VyQ862cXprk,162264
53
+ pytron/dependencies/__init__.py,sha256=J0Eu_c1GH16BUo0xYiRKxTitMB1CXj-BZmfxv0cAnzw,30
54
+ pytron/dependencies/pytron_native.pyd,sha256=onf-VhcYjHfC9BtS9roinfOUgkakTguyCwbIB-tBYyg,3448832
55
+ pytron/engines/chrome/adapter.py,sha256=830zPk5iMA8YZZPEtiqguWAYYmzDp9toeU0PjvTvXhk,15810
56
+ pytron/engines/chrome/engine.py,sha256=nxUcshn9JWqVY5OxYCYgRDeOya_xVxt_Ew5LbEGO-6o,22225
57
+ pytron/engines/chrome/forge.py,sha256=YBZk-t3xsOS6Tx3XzAHXlKXdRro_neaaBVELM0j3lb4,4764
58
+ pytron/engines/chrome/shell/package.json,sha256=AJjl1MRNq-_a_AzQBb7meRSw9qBO6cBnauBMD4CJmk4,206
59
+ pytron/engines/chrome/shell/preload.js,sha256=hCoRebLyaci1MHAcNySRdBrQzXFU4NG9HBPpSnXYwiU,416
60
+ pytron/engines/chrome/shell/shell.js,sha256=dg1KWtzw4yiU77m1Oh7a2nkRFGNX2n53spWWJup7Ow4,20566
61
+ pytron/installer/Installation.nsi,sha256=QCCrIxhQ60jaNtp6bnmiaT5127830zEGhNCrjgSatOQ,7724
62
+ pytron/installer/header.bmp,sha256=YDJzPvlfTbZu0iOYWnMcaL_OZQk2d5UfiO-twWgj4wg,25818
63
+ pytron/installer/pytron.ico,sha256=SmYxciNY5hWa3b-x2wOYJZPYl1RXwf7-7hcBB087UR8,88071
64
+ pytron/installer/sidebar.bmp,sha256=ZZdL6mlbRrTTEW60gsRgWp1vGhWGPQSmoayAeRtn51M,154542
65
+ pytron/manifests/README.md,sha256=cFn1QAAlKSr-0eYwsZ6HSAqtxs5MKZqEuI6BJmm3UFs,1445
66
+ pytron/manifests/windows-utf8.manifest,sha256=xd9Eu1R0afvG8eO9Sy9IiCJJpsN4X70APvefmOZPPM0,1768
67
+ pytron/pack/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
68
+ pytron/pack/assets.py,sha256=uW6sUkkesveZYz_C8gojDjqBpWGPZ2Hktod7M3MTxHY,4325
69
+ pytron/pack/compilers.py,sha256=ONWKILEjM5li2TKZ5zKv9mHmx7lbgoYWG59rqqaU2A0,9183
70
+ pytron/pack/crystal.py,sha256=PWXsYcm6unxiXWB2Rzj8JWbNynTqz1_TS4slFJeMwBs,10624
71
+ pytron/pack/graph.py,sha256=3vZAstCOPLoy6BTUquRHp4asR8O3vEoZAI2kaESUkJY,13502
72
+ pytron/pack/inference.py,sha256=PwW6KitCUYPb_OJFHS9LSMrNO0p3QPUXS2aA01eS0qk,5221
73
+ pytron/pack/installers.py,sha256=YJkn0U7NUa9qGeftlRZ-xNW_KQSMtcFY9We9iGlNmQI,14828
74
+ pytron/pack/introspect.py,sha256=no0BPelVoo4nwYJwYfDAZGkoTmcTST4K-V24MvBOFCM,13908
75
+ pytron/pack/metadata.py,sha256=C0pmyL2Xo6uqxBa4JZueWy0v5W7-57rTIallU0O1qDU,8008
76
+ pytron/pack/modules.py,sha256=9Wft2WKDt7JF1WpuFP9VQgt7SRvjY8DaKnxZYapfrDA,26141
77
+ pytron/pack/nuitka.py,sha256=RoH036xN9A-zNVge2Hrf5uxMGW3mDDaF2QDLoctHAEQ,3374
78
+ pytron/pack/pipeline.py,sha256=HSgGdDgxAWHFZfDiAOOw_N5UL7ZCBx2zo6y89J73pC8,3291
79
+ pytron/pack/pyinstaller.py,sha256=drXh0gOGzrw9AfB-M3_SaLvR04zgd0HmrK5QHug1g3Y,6425
80
+ pytron/pack/rust_engine.py,sha256=4aABE_VNIms-69TOMYjATg3HSMO-RLgqWpvfyOthrCY,9577
81
+ pytron/pack/secure.py,sha256=Sq0OSquOtU3AKbMjBQMp-M7n6wkUTJ5y1QAkFHL_IQc,10598
82
+ pytron/pack/utils.py,sha256=JGQeACZ6Trz5oBS1Vmk9l99ae1Gczg-kwKrzN0Pn4Ho,3364
83
+ pytron/pack/virtual_root.py,sha256=d_-Q6CRLcFnnStrk5q8wYDKstLFDaWkGEiUiqm2sE3s,4779
84
+ pytron/pack/secure_loader/icon.ico,sha256=SmYxciNY5hWa3b-x2wOYJZPYl1RXwf7-7hcBB087UR8,88071
85
+ pytron/pack/secure_loader/bin/pytron_rust_bootloader.exe,sha256=bPmcqX0KE6VH3qopln5KlxZTfbaijW8qa22R0L7YLok,432128
86
+ pytron/platforms/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
87
+ pytron/platforms/darwin.py,sha256=7gl_Eb-CLtzYg5Y0A6ZLMnxzCT6PtfCVwovHPNKqp5g,2602
88
+ pytron/platforms/interface.py,sha256=U08Dz0wwOOegpT_0Yyr5f8RYv4KRsYK2iVjmqoEwBas,4174
89
+ pytron/platforms/linux.py,sha256=a2Lsfnw7gwBG5Y7_Tkv9RNMTDG4KsCnOCR5RDCe5jOE,2626
90
+ pytron/platforms/windows.py,sha256=dZTd7Hr9-dTifsis91BfBmZ0zjSBAuT9-no3lEBveSk,4238
91
+ pytron/platforms/android/__init__.py,sha256=SFlxOtzGY35aOuiXvy4uxWT-RPJ7LBzyCVLd6zmXmLk,83
92
+ pytron/platforms/android/android.py,sha256=gtzkM0Ia-YZXBwqkBsg7BqC3UVjn3FiMGBqg6SPzwHA,3466
93
+ pytron/platforms/android/builder.py,sha256=x90ydPyczkBapC2Ts5lv-97t5aqN0oCmOoM3pEf5hpE,28476
94
+ pytron/platforms/android/ops/build.py,sha256=v8Ka6UIDZYt3TWcK13kCheMns3JtArAjvWzD5820vr4,2495
95
+ pytron/platforms/android/ops/init.py,sha256=EuhrLdTWMsT1J-E3V0zpE1762y8udD0XKKH8TNUgQ-0,2200
96
+ pytron/platforms/android/ops/run.py,sha256=SmDz_-ox2ut4lBJ3_QZNPBdw2Mq96pCvQHdKLBrVnhM,2052
97
+ pytron/platforms/android/ops/sync.py,sha256=SoD-Mtyz6SKcHTldvO1XMOTL7NewV_cKmUs_m3jtGxw,31177
98
+ pytron/platforms/android/ops/utils.py,sha256=ZRCLxNJOjkCxW2oLvyo6wm3DIikja7VA-8_5dMMRuls,375
99
+ pytron/platforms/android/shell/README.md,sha256=9GCnXi-YX5wPjRUUprDuSWQOmlM8p4UCFbSf5z2nJAc,1461
100
+ pytron/platforms/android/shell/build.gradle,sha256=Vmcb88c5CAEoDU3FihxoOZhEvL2CxUbu0qScEbgcSzE,373
101
+ pytron/platforms/android/shell/gradle.properties,sha256=bgiwqKvJmZ5FtHUJj7rk25fvx_G7eSpSE5DVimUSTP8,78
102
+ pytron/platforms/android/shell/gradlew.bat,sha256=DQ7l_8TUCgf4TjKyVCEtiLib34ndzl0k1cEbDTT5Tyc,2622
103
+ pytron/platforms/android/shell/settings.gradle,sha256=EwDiJFwNQSpKRgeLHgKdrAlYI4V1veYa_m8BkcdBCVo,344
104
+ pytron/platforms/android/shell/app/build.gradle,sha256=YdEuTHrUQeS6guvir7-WsNeUtrPaibEIHfj7YGXtXTQ,1672
105
+ pytron/platforms/android/shell/app/src/main/AndroidManifest.xml,sha256=4n4xyNM_lnuzIQ8Tp_MqEL4e8_taM0HzOBIQqjIPWeE,1165
106
+ pytron/platforms/android/shell/app/src/main/assets/python/main.py,sha256=JHYzVTvrAWaT2rmHncVyfR4U0zg0yLSam7dh3G3lHls,2900
107
+ pytron/platforms/android/shell/app/src/main/assets/python/python314.zip,sha256=2Z5ROQcCto0w1gIhUdhMXtVazGgG-CWZN6sgTy_nGZg,15532752
108
+ pytron/platforms/android/shell/app/src/main/cpp/CMakeLists.txt,sha256=NLehdvYwphuQ68Q8LpH58u097a9zjIiDX0iLS8zmGnM,663
109
+ pytron/platforms/android/shell/app/src/main/cpp/pytron_bridge.cpp,sha256=fDJ4Z1_CahDQ3ZR9eeKKy-PZdrPxkd3HFrow7-YFpIE,8444
110
+ pytron/platforms/android/shell/app/src/main/cpp/include/Python.h,sha256=78K8YMhQMeiAP6X1zxJvIpWLJ1Ano95s4XIw4daf0ig,4554
111
+ pytron/platforms/android/shell/app/src/main/cpp/include/abstract.h,sha256=DDYwxWr5Du49cro_O3MxSrSVmSq6drZnBnqZ0FrhWZ8,33300
112
+ pytron/platforms/android/shell/app/src/main/cpp/include/audit.h,sha256=BoHhUiIxNZsZUyHXYNJEABUyW6nbWQymdmvOvf-C8Xw,525
113
+ pytron/platforms/android/shell/app/src/main/cpp/include/bltinmodule.h,sha256=m8fU9lRq04cViAII6-AEYWzLdkEwCbZkvY_h0-ugb1k,278
114
+ pytron/platforms/android/shell/app/src/main/cpp/include/boolobject.h,sha256=bIEEAWLufa9ofvGE9SzGN5OB1MCzSGjlr_fgxT9c5Q8,1659
115
+ pytron/platforms/android/shell/app/src/main/cpp/include/bytearrayobject.h,sha256=zrzTFC9KifXY4WqRo1O0sPoe_RVsQfD3ZnsIUCNI28Q,1510
116
+ pytron/platforms/android/shell/app/src/main/cpp/include/bytesobject.h,sha256=HXDtNi55qBRXcH9YNwRZDpXz8u1wCo-LwlteZU7Jbpk,2635
117
+ pytron/platforms/android/shell/app/src/main/cpp/include/ceval.h,sha256=V2WBQFudhL8CIZLo8HXWBmrnfoczMr9w4M74nZW6qbg,5263
118
+ pytron/platforms/android/shell/app/src/main/cpp/include/codecs.h,sha256=8nZgpWVQxiFP7l9TBwUBrcyelvn64eyPiJYzDP1BwXY,5611
119
+ pytron/platforms/android/shell/app/src/main/cpp/include/compile.h,sha256=Iz5Gq8BLDO8BafAQhpUofc3gwxRo5zTUr6jSwijK12o,470
120
+ pytron/platforms/android/shell/app/src/main/cpp/include/complexobject.h,sha256=LD2yk6izkht8nCre5isMwP_tXX0dOICEYFt2lw0Cmls,758
121
+ pytron/platforms/android/shell/app/src/main/cpp/include/critical_section.h,sha256=xZrMSjJvkOIZcJ4OBO-E4xiBfmAK3faQdtq8d_3mlFw,330
122
+ pytron/platforms/android/shell/app/src/main/cpp/include/datetime.h,sha256=GcHqRJ-F4xe6VcI8lXMqaPYgPHd9jPF_hclNDBNuuaI,10036
123
+ pytron/platforms/android/shell/app/src/main/cpp/include/descrobject.h,sha256=Lk8JwkkEChHCZCjqqgYZlgpljf3cIO0009TPgY8qSGc,3180
124
+ pytron/platforms/android/shell/app/src/main/cpp/include/dictobject.h,sha256=dBRVlHxCrQVcYrnIKEaP4p7q7AUC_HruKaiz1FETAXo,4489
125
+ pytron/platforms/android/shell/app/src/main/cpp/include/dynamic_annotations.h,sha256=v4mgx79Az1yXvtY7uMnCXtk1RIM79M_0g_r6yCRcmw8,22970
126
+ pytron/platforms/android/shell/app/src/main/cpp/include/enumobject.h,sha256=RpyKe7yopn_Re8coodbUIlxMBWZHV3S13rZVRi8Fhlk,270
127
+ pytron/platforms/android/shell/app/src/main/cpp/include/errcode.h,sha256=Ocx27tLeQN1tYhtZGtmUtIAhxKO8ANwEUTkzA2zaRtI,2019
128
+ pytron/platforms/android/shell/app/src/main/cpp/include/exports.h,sha256=2RjccRynKkqA0xhUWXRnW1Xg-urUlDYQKBud-CGQpCg,4585
129
+ pytron/platforms/android/shell/app/src/main/cpp/include/fileobject.h,sha256=FpiZxoYB9LuweYvFP7xh02JT-VQPHw_VLz1ANTdvI34,1398
130
+ pytron/platforms/android/shell/app/src/main/cpp/include/fileutils.h,sha256=Kn7V0fkuuA8KR5oAxmfg6bJePZzSp2fcjxcrv-EHKsk,1481
131
+ pytron/platforms/android/shell/app/src/main/cpp/include/floatobject.h,sha256=bigWhhRo2d7iTZ_DpFWhe20ekQeaqVF0mObMfXGOd58,1586
132
+ pytron/platforms/android/shell/app/src/main/cpp/include/frameobject.h,sha256=Uuex9W2o9-eKJWf-mvmMb5clDwu7gZUd9CFci9HEaPc,356
133
+ pytron/platforms/android/shell/app/src/main/cpp/include/genericaliasobject.h,sha256=Pr1WP3Dz0xdVh3TnSRavHClIUv2UPgQaedxGyPvMRY4,348
134
+ pytron/platforms/android/shell/app/src/main/cpp/include/import.h,sha256=9u7wVL3fhtQfiwd9zHDg_uz5Pt7qdvNMDdy97KTOa3Y,3338
135
+ pytron/platforms/android/shell/app/src/main/cpp/include/intrcheck.h,sha256=YDtXYrEVHMSNGD8ztjKdbea_2O7Fxok_RiXEptXcvjQ,558
136
+ pytron/platforms/android/shell/app/src/main/cpp/include/iterobject.h,sha256=4132X00bD98L1E986lBr3BrPXcgXrcS_5ac1PYFadqs,549
137
+ pytron/platforms/android/shell/app/src/main/cpp/include/listobject.h,sha256=3XGXc9LuegjitbaOcaZIxx1XXE98E4XDs7G_EqC4Kvw,1973
138
+ pytron/platforms/android/shell/app/src/main/cpp/include/lock.h,sha256=S7kecksVgtWG2sbbDXss1wlrWzoShm0v-vZQtglER6U,258
139
+ pytron/platforms/android/shell/app/src/main/cpp/include/longobject.h,sha256=6zhxlGR1xjudohARdOX2eQkdQODfWS5KmzdvNYoTJV4,7127
140
+ pytron/platforms/android/shell/app/src/main/cpp/include/marshal.h,sha256=8RsozXFyN0PvZyQVxepT-5LEFpfWZLf7blSD8S-JydQ,858
141
+ pytron/platforms/android/shell/app/src/main/cpp/include/memoryobject.h,sha256=dqkDH6lMfZqGgfqwZfnO4LvZyR9DVbkbxAe_mSwQB5Y,1115
142
+ pytron/platforms/android/shell/app/src/main/cpp/include/methodobject.h,sha256=pW50w_uUR4sr89YbGF0w52r8Mnsae3rfk5eDmhTnrfM,6024
143
+ pytron/platforms/android/shell/app/src/main/cpp/include/modsupport.h,sha256=uqtWviMsCXcxdvllOttUqWblWLHRCBVf_LqKEGEmQA0,5782
144
+ pytron/platforms/android/shell/app/src/main/cpp/include/moduleobject.h,sha256=PTD4ns9q05XwDDUoV2ewi8cj5QL4EHO7SXyTTiskaPU,3801
145
+ pytron/platforms/android/shell/app/src/main/cpp/include/monitoring.h,sha256=RUSfUrFVFWdG0_4R-A_XpXj7zMZ8DBghKn95YHwm4h4,349
146
+ pytron/platforms/android/shell/app/src/main/cpp/include/object.h,sha256=8Qj_TiRTK2pM4v12RT3FtYIVgG8HndOOR6uzs6VcKfQ,32059
147
+ pytron/platforms/android/shell/app/src/main/cpp/include/objimpl.h,sha256=xHuphn-h_Ti6jcMIFc-GaPgiOVG_HiT70emQ5dwK1DI,8591
148
+ pytron/platforms/android/shell/app/src/main/cpp/include/opcode.h,sha256=vuBUe6SxgD6Fk-1oqHEr9Ugu3yUPCC0RT-S6Cb2tObs,1633
149
+ pytron/platforms/android/shell/app/src/main/cpp/include/opcode_ids.h,sha256=HhDvx8V0mpH3KknXG51gAuBJK882VVmmEBGOnW2p55o,12869
150
+ pytron/platforms/android/shell/app/src/main/cpp/include/osdefs.h,sha256=ZDJLiDK5Bkf6PdofahHhEfaM-Q7ReGDIQoS-GqouM-Q,905
151
+ pytron/platforms/android/shell/app/src/main/cpp/include/osmodule.h,sha256=w8-euNcJ-QMuhuns798qJv389fOgr7bDobRw6Ol9ags,308
152
+ pytron/platforms/android/shell/app/src/main/cpp/include/patchlevel.h,sha256=B9FwKKG1-uRXeDKnGp861ZG-0rA2hi9d7ffbpNU3W_E,1822
153
+ pytron/platforms/android/shell/app/src/main/cpp/include/py_curses.h,sha256=xZ38FY6xssl5FAUWxWqKUFbyne0MqFiTcPCVPx__44I,3630
154
+ pytron/platforms/android/shell/app/src/main/cpp/include/pyatomic.h,sha256=fjTxgYGsMvX_Xfod4eqKTy5Mcc0VeWIbj_oyZvTyRIQ,273
155
+ pytron/platforms/android/shell/app/src/main/cpp/include/pybuffer.h,sha256=DRR1dNe-6k-Vl2NSC7GqxHLxueM5Li3gfSMM4ho7ftI,5427
156
+ pytron/platforms/android/shell/app/src/main/cpp/include/pycapsule.h,sha256=03C80EXo1oEf-eJmw-U96ytrMKjMaHY9FyKB7uOUp_8,1784
157
+ pytron/platforms/android/shell/app/src/main/cpp/include/pyconfig.h,sha256=K4o5v3atumoBOCOb4VClDMJ_ADw3Ai3ux4xG1cifH78,62792
158
+ pytron/platforms/android/shell/app/src/main/cpp/include/pydtrace.h,sha256=q0MEVn1vFuBBWa2pc00Fs_PBLEjeOewThvOK2zxQEr0,2463
159
+ pytron/platforms/android/shell/app/src/main/cpp/include/pyerrors.h,sha256=Rc82nqoYF65SY0ACWPTnHTZBMBhTYDswiiSJV107oOs,13303
160
+ pytron/platforms/android/shell/app/src/main/cpp/include/pyexpat.h,sha256=0IQv8cWEarTWKSLna-C77aZfqi7A0t2IWssNs6UJovc,2912
161
+ pytron/platforms/android/shell/app/src/main/cpp/include/pyframe.h,sha256=-b-FUOeGghEcmA2-VWtzN_1sI8-ZwrYEGApZFhsazmo,577
162
+ pytron/platforms/android/shell/app/src/main/cpp/include/pyhash.h,sha256=6ddkZ8jh2oiQ_RUMvhaQkaWjgTo-tP1VutCnrssk6a0,1715
163
+ pytron/platforms/android/shell/app/src/main/cpp/include/pylifecycle.h,sha256=NeGwhvN9xcY9HRB-Javc5ogBIdosDPQTOkN8Bd15XLA,2492
164
+ pytron/platforms/android/shell/app/src/main/cpp/include/pymacconfig.h,sha256=FXDtv69hcpnqdZ0mVxV9TZw58K_9DAxLIi06IVWsp48,2588
165
+ pytron/platforms/android/shell/app/src/main/cpp/include/pymacro.h,sha256=k2Po8_h0_ig4nJQz8JKnKCqcR2xiZx2KotmQgI2dHcI,9790
166
+ pytron/platforms/android/shell/app/src/main/cpp/include/pymath.h,sha256=AYBdJiDnmiS9rhOOi8f_EduOk74gJ6__13_cCFoCOLs,1971
167
+ pytron/platforms/android/shell/app/src/main/cpp/include/pymem.h,sha256=H-nVW44LyV0PaxoVVxpKvo6j9riqppTo9sD6xcN4ydw,4548
168
+ pytron/platforms/android/shell/app/src/main/cpp/include/pyport.h,sha256=ywf-R-LLWM_druBGZ1nHkRtuFjry8QXoIgkdlsu_x90,23959
169
+ pytron/platforms/android/shell/app/src/main/cpp/include/pystate.h,sha256=bN5EQmHGI7zyxf_C01F4p36NEwIl2qgKNLNlvTXoe_g,4766
170
+ pytron/platforms/android/shell/app/src/main/cpp/include/pystats.h,sha256=T1VqJ22QquQEuY66GgU8UeNtH9ZtyH4LNhI9RjFCJJU,726
171
+ pytron/platforms/android/shell/app/src/main/cpp/include/pystrcmp.h,sha256=LdI7b7O3p_72KzMXCnIV8LaPLN1u26VUjQ1WPFsSQFU,459
172
+ pytron/platforms/android/shell/app/src/main/cpp/include/pystrtod.h,sha256=OHc9FHCbbT7gB3nN9-DWtCNZFVWiZAFcUOuZqam3aYE,1284
173
+ pytron/platforms/android/shell/app/src/main/cpp/include/pythonrun.h,sha256=tTl-5vQmy1MomabiULLPFagYnLgo69Vh8AOD6gjXjbk,968
174
+ pytron/platforms/android/shell/app/src/main/cpp/include/pythread.h,sha256=UOIuo5NYe_Bh3gI7ZBDeJHUBe6XOKv3GcCWe0tha4co,4972
175
+ pytron/platforms/android/shell/app/src/main/cpp/include/pytypedefs.h,sha256=z-huff9uhrHwyBmR24cNMf1eOOPH_cfomL2QiHazgCk,881
176
+ pytron/platforms/android/shell/app/src/main/cpp/include/rangeobject.h,sha256=uSPcbMCEYHZm2qdOsF1Yk73QqDsQI7R5R5T-33exDTQ,657
177
+ pytron/platforms/android/shell/app/src/main/cpp/include/refcount.h,sha256=b824p2XqbwQyFRrMFoK47Ei0qbfrmlW9N0MA5bXQwq4,20556
178
+ pytron/platforms/android/shell/app/src/main/cpp/include/setobject.h,sha256=Dsh0IW7sQPiPYdnkcymPmqD3udIdiXhYue9DnXMQpZw,1606
179
+ pytron/platforms/android/shell/app/src/main/cpp/include/sliceobject.h,sha256=V7MQGv6o9PNoiqcwopexw0ocPcRXkIIdccYpf-Kgu20,2731
180
+ pytron/platforms/android/shell/app/src/main/cpp/include/structmember.h,sha256=S404k6WFhIYSrsXesictM6P07_8pJ9wR2PDLR9ZsN5Y,1702
181
+ pytron/platforms/android/shell/app/src/main/cpp/include/structseq.h,sha256=L5JkaFuvYm8z_gm3JI0s4gS_X3vmzKBBnx9nTuUaFqI,1354
182
+ pytron/platforms/android/shell/app/src/main/cpp/include/sysmodule.h,sha256=htmwyo3h12TxUhPHuk9NZ2VSI2TwxLhPetcQziucO4M,910
183
+ pytron/platforms/android/shell/app/src/main/cpp/include/traceback.h,sha256=4E6Y9L5-qYttP_KZ3TRa5pwoCGKNASmdb0UeHJ0N4Ak,611
184
+ pytron/platforms/android/shell/app/src/main/cpp/include/tupleobject.h,sha256=i0T3yKLQuXoeHX0K9B0m9JEIeB80Jn4ix5u1q3AIVf8,1661
185
+ pytron/platforms/android/shell/app/src/main/cpp/include/typeslots.h,sha256=tPIcTSyC0UG582HtuRO8wZW6tkbt5R4ZWL4BiadklPo,2665
186
+ pytron/platforms/android/shell/app/src/main/cpp/include/unicodeobject.h,sha256=K1q9tEixMStNyQEE1fB0yEtG1sqVr_xsAfmi1NAh7x4,36708
187
+ pytron/platforms/android/shell/app/src/main/cpp/include/warnings.h,sha256=0L3BxFK_jNJdZMAjbOSmdpeT7OFPpcmNcQXkIiJI-sQ,1174
188
+ pytron/platforms/android/shell/app/src/main/cpp/include/weakrefobject.h,sha256=ILcR1XTaaZtvu6UKUAFWEJHF55kmPBHYeF2qfzD0sPQ,1437
189
+ pytron/platforms/android/shell/app/src/main/cpp/include/cpython/abstract.h,sha256=q4Bz-hqAptk8JKLpbZ54iZmkJXRbJwwpZyP6p0gpSG8,4226
190
+ pytron/platforms/android/shell/app/src/main/cpp/include/cpython/audit.h,sha256=dnKpBWQKiwHRguJ3BwwZGag98Q0LuWRwpGZL4xJgYp0,239
191
+ pytron/platforms/android/shell/app/src/main/cpp/include/cpython/bytearrayobject.h,sha256=51qu4MVmEMoJxAw79IZjPgNTajEBUU_Iahmd1lUyFZc,1316
192
+ pytron/platforms/android/shell/app/src/main/cpp/include/cpython/bytesobject.h,sha256=jELnpQm2Icf01VlVb85Ebf3oZQojKCZt3rdu18mJjVo,1307
193
+ pytron/platforms/android/shell/app/src/main/cpp/include/cpython/cellobject.h,sha256=zyJ1dgdojtthIVeYY--8nGBdDYPc5qntXqUL1447uFo,1296
194
+ pytron/platforms/android/shell/app/src/main/cpp/include/cpython/ceval.h,sha256=faQ9NlF7qpp7ujV3pP99qpp2VT5w5YYJ7JMVm_GKyyg,1720
195
+ pytron/platforms/android/shell/app/src/main/cpp/include/cpython/classobject.h,sha256=ZwNoB9OIRM4rsl17to132C7ifCVuh-bBLo6zCfjXtyY,2316
196
+ pytron/platforms/android/shell/app/src/main/cpp/include/cpython/code.h,sha256=Zf4pW9kKqwpTgMSzxABxORevf5BPuwrIbnb__y3hqxg,14708
197
+ pytron/platforms/android/shell/app/src/main/cpp/include/cpython/compile.h,sha256=niTfgnpnVGdreq5FgLa-iND2hrJZ9gzS6mB8O18QzIg,2171
198
+ pytron/platforms/android/shell/app/src/main/cpp/include/cpython/complexobject.h,sha256=CvDMmEzKUCiJWbLLIxQyef5H3WnQfo_C7Vt7MBTYzzU,942
199
+ pytron/platforms/android/shell/app/src/main/cpp/include/cpython/context.h,sha256=Xq8nw_zQXjVSNqKtFMLEzXhSp7XodAVcqA4ceRKmPNc,3057
200
+ pytron/platforms/android/shell/app/src/main/cpp/include/cpython/critical_section.h,sha256=LDhLCK33gTcbhRctpCq8VXafdRr3_Om_kgKt6jI7Ulg,6595
201
+ pytron/platforms/android/shell/app/src/main/cpp/include/cpython/descrobject.h,sha256=BSOzU-Wu3zdN-doOEmR2g2tkcvqZIb44vh8RS_3QYcE,1655
202
+ pytron/platforms/android/shell/app/src/main/cpp/include/cpython/dictobject.h,sha256=Wo0CvqT-sAPT8w26c0VaD-P9CAhAxHTav6DADa98ywA,4057
203
+ pytron/platforms/android/shell/app/src/main/cpp/include/cpython/fileobject.h,sha256=o7zOfpwe-JT4xXhbHXR70i0-Sq7BTlRST4DYniEIWEI,668
204
+ pytron/platforms/android/shell/app/src/main/cpp/include/cpython/fileutils.h,sha256=E4wAQ62zYOA2qDppINMUelS9UlSh3BMSOVOkaz7QNtI,402
205
+ pytron/platforms/android/shell/app/src/main/cpp/include/cpython/floatobject.h,sha256=3Ol4AW-p0yrZ82ecmxtuYUtyezI7JSfgKY8jMx2sgEs,927
206
+ pytron/platforms/android/shell/app/src/main/cpp/include/cpython/frameobject.h,sha256=x9OkPGGqDC1lFm48FVXsuJXB63WVo8UC_E0VHIkLCgw,1234
207
+ pytron/platforms/android/shell/app/src/main/cpp/include/cpython/funcobject.h,sha256=LajFJJYqeEgUoIQoIQSgHciPkZWbRNMu9yd8FNZi1Iw,7316
208
+ pytron/platforms/android/shell/app/src/main/cpp/include/cpython/genobject.h,sha256=xkoSsfCjGf-Cb8MFai4Gl1t2HgW66ZfiOHuMaG2AH58,1597
209
+ pytron/platforms/android/shell/app/src/main/cpp/include/cpython/import.h,sha256=ZfwDxAdLKDSg-qBqQ0fMobuLMg0t5I7rdd6VFXXNd4I,929
210
+ pytron/platforms/android/shell/app/src/main/cpp/include/cpython/initconfig.h,sha256=3g8iZUo9GL6xBGMDuYyYMz-Ja4k2Ozqof5GdYZj-tWk,10394
211
+ pytron/platforms/android/shell/app/src/main/cpp/include/cpython/listobject.h,sha256=jgdJzYHow9nuyVjMqRRdcpanBVWvIGdugIxFsNZqXt0,1854
212
+ pytron/platforms/android/shell/app/src/main/cpp/include/cpython/lock.h,sha256=fs7XV_unzauRq6IYNP21PmNSUQ7HIA3hTtC8xiq5JTk,2146
213
+ pytron/platforms/android/shell/app/src/main/cpp/include/cpython/longintrepr.h,sha256=AQFpYuvTzRa02b3ymscXU8iXt6k3724y_2AcbAy3Vew,6345
214
+ pytron/platforms/android/shell/app/src/main/cpp/include/cpython/longobject.h,sha256=K4u3uk-zkuqvdqL6WOQo3-5y-RRymuHeGW3a6N2dmdY,4050
215
+ pytron/platforms/android/shell/app/src/main/cpp/include/cpython/memoryobject.h,sha256=3uMIDXIHVr1gbvDoPAhrjyrAqIVScjos0kIae0YGlbs,2273
216
+ pytron/platforms/android/shell/app/src/main/cpp/include/cpython/methodobject.h,sha256=OCkzYcvf1F3xLhiTvwM8JfL_49na0TsP0_y8mMeZfEk,2342
217
+ pytron/platforms/android/shell/app/src/main/cpp/include/cpython/modsupport.h,sha256=BWlTP3jnl5mw7w6_qfichTgyP8yyS0nNVz5b_LNOan4,1068
218
+ pytron/platforms/android/shell/app/src/main/cpp/include/cpython/monitoring.h,sha256=59CEvF19G81D2siqUpm56eZf9fli1HnKTVpRB91Bgi0,8729
219
+ pytron/platforms/android/shell/app/src/main/cpp/include/cpython/object.h,sha256=ZBmjldaUxnkL7qMnL-dRbfLhZYGY_Cvm13C2XUI73_o,17874
220
+ pytron/platforms/android/shell/app/src/main/cpp/include/cpython/objimpl.h,sha256=oZd86OViKvoKk3lvuNCUNWzbEZpvhHGI3R8BJHSnpM8,3924
221
+ pytron/platforms/android/shell/app/src/main/cpp/include/cpython/odictobject.h,sha256=HFOwL85yYRohpAPONnkD3bIfUjllF5rlx30yge7B1pY,1354
222
+ pytron/platforms/android/shell/app/src/main/cpp/include/cpython/picklebufobject.h,sha256=7LBcgebsh6BELdAfqm3qf_EMgVVctDqNnVoKLqfjvpI,879
223
+ pytron/platforms/android/shell/app/src/main/cpp/include/cpython/pthread_stubs.h,sha256=e-7-h6VECmOs2ZgQOBeZQfSmuLXXwKP4gHd9bZBhSdw,4031
224
+ pytron/platforms/android/shell/app/src/main/cpp/include/cpython/pyatomic.h,sha256=vzTWOvnMSCTJgpsgxm8iuZ2BtpuGXYdUnWaIa4WzEYI,18306
225
+ pytron/platforms/android/shell/app/src/main/cpp/include/cpython/pyatomic_gcc.h,sha256=cYJpS6nysnts1qXPcjw6sLH1IyEMObGt5JbSFkCt250,21849
226
+ pytron/platforms/android/shell/app/src/main/cpp/include/cpython/pyatomic_msc.h,sha256=DCryUrkP4Nj-uzZcB7tPEH1B8afU8D9WTynfyYJi26M,32486
227
+ pytron/platforms/android/shell/app/src/main/cpp/include/cpython/pyatomic_std.h,sha256=TJZ8N4ZA-tbFrBEMhlGxY_YrA7jG8lCZCTxSfeWbDeo,29071
228
+ pytron/platforms/android/shell/app/src/main/cpp/include/cpython/pyctype.h,sha256=WwzyaX6G4FTQoHIWcNCo4DGO2aywXqDpPNVD4mPy-Xo,1426
229
+ pytron/platforms/android/shell/app/src/main/cpp/include/cpython/pydebug.h,sha256=OhJHH_9twmlXzEyKVA0pGx27TRyh4hgVOCclIMu8UHc,1451
230
+ pytron/platforms/android/shell/app/src/main/cpp/include/cpython/pyerrors.h,sha256=HyV2ic1O3M6Q_OWAGUk48xZjMwv16GM7UXQj4YLhMOc,3064
231
+ pytron/platforms/android/shell/app/src/main/cpp/include/cpython/pyfpe.h,sha256=uLQuTznbxfJn6OH_DEpStDGkIubLWMI4CCagxHgzQxY,459
232
+ pytron/platforms/android/shell/app/src/main/cpp/include/cpython/pyframe.h,sha256=EGHarPZciJ0D1FnbmhiFQUp2RC2-W1hmaxlahzTD60o,1992
233
+ pytron/platforms/android/shell/app/src/main/cpp/include/cpython/pyhash.h,sha256=XgZXXOrtUTWZ3r4EM7Q8Tkd9VEWIgKkRCxTilOSAMVI,1599
234
+ pytron/platforms/android/shell/app/src/main/cpp/include/cpython/pylifecycle.h,sha256=Z1WDsEWr0U-wMLOcZm0Wk6ziiP4UvOIFE54Zrq4FiMc,2818
235
+ pytron/platforms/android/shell/app/src/main/cpp/include/cpython/pymem.h,sha256=Yg-b3GAldZXbtFhRD9FOs7Ifc1fZFAYUcNeYJ-3l30g,2927
236
+ pytron/platforms/android/shell/app/src/main/cpp/include/cpython/pystate.h,sha256=OBETy40klYQuEwNwvf6WVLUvBVgNyHpkbX0tDSKsMm4,9675
237
+ pytron/platforms/android/shell/app/src/main/cpp/include/cpython/pystats.h,sha256=LGyIUHuaz4AsHYih1AwQoftiUeTJS2h2RWOLa2AyAxw,6666
238
+ pytron/platforms/android/shell/app/src/main/cpp/include/cpython/pythonrun.h,sha256=hAFsQylXlmK_znnTTXt21PcqHb-RYSbPFDHDfL__2qc,4423
239
+ pytron/platforms/android/shell/app/src/main/cpp/include/cpython/pythread.h,sha256=rp9fwP1HX3bDLtKW2Op5RvxTDsZr4tRV3rhwiHy6O2w,1553
240
+ pytron/platforms/android/shell/app/src/main/cpp/include/cpython/pytime.h,sha256=Y0WNPT74rUb2aRYjoIT9CxhMb8BGw_J7rcNPWMv_NlM,734
241
+ pytron/platforms/android/shell/app/src/main/cpp/include/cpython/setobject.h,sha256=G3v_JA2otaQq9t2dPqwjaZdzBQnEUVLYt2FsVpRCrH0,2117
242
+ pytron/platforms/android/shell/app/src/main/cpp/include/cpython/traceback.h,sha256=r38PKK5BYszbSLjZunhCyX7WlNW6r1RyeujT1Lnqp1o,295
243
+ pytron/platforms/android/shell/app/src/main/cpp/include/cpython/tracemalloc.h,sha256=Aosa-MIxG7enHj5-gOjNhLM-JHgF9N-cVQ-HxGEa2LM,855
244
+ pytron/platforms/android/shell/app/src/main/cpp/include/cpython/tupleobject.h,sha256=GaJ8_6ySc2ZuDNexiZgKBoxmNOIopZIqg2zUkB2ZIZk,1437
245
+ pytron/platforms/android/shell/app/src/main/cpp/include/cpython/unicodeobject.h,sha256=kKrmzxdt071-fr1mUgbUWdGk3d_TrCS8BHBXcNY6qSo,28400
246
+ pytron/platforms/android/shell/app/src/main/cpp/include/cpython/warnings.h,sha256=7YBPJ6Fr0xV09SPSU5pu_JcWSvMlidvoNj31VuBXVPI,584
247
+ pytron/platforms/android/shell/app/src/main/cpp/include/cpython/weakrefobject.h,sha256=nGkORQC_75Z9lGul6y4SBs3c8pR590OmXfIykkbi5j0,2434
248
+ pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_abstract.h,sha256=-TF4mYHXxdByYRZzkIZawzlPHIiPzM_YsAs5-l2FxAw,1976
249
+ pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_asdl.h,sha256=UoBi_Fm30EBUzyPQWZi7smVoHGwl8ZKnXzGpG5ycBh4,3147
250
+ pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_ast.h,sha256=EIeLrBYU138-da4HM-1w-ke5polXGCVEOsPBGVWe4zU,33228
251
+ pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_ast_state.h,sha256=FUEFNwsYneqs7Pm-QmwmxSraFj-DPKnBfYQ2iZIiUIM,7141
252
+ pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_atexit.h,sha256=tF3j4iY8xP2dEz1BjMnbDqy0iBB69mHolu5idMi30yg,728
253
+ pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_audit.h,sha256=z4J74GCeCBu3WXltLBJOZX68iAFZgYLQD5E_n9wN2NM,773
254
+ pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_backoff.h,sha256=UwQMXHHKFJn_safiPmnp-IyXwikgCGveBF9lE1G02DE,3994
255
+ pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_bitutils.h,sha256=thvu1z2DNftIaL9awAYowsaIxJQP9ATxUi9CeFmi3RA,6212
256
+ pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_blocks_output_buffer.h,sha256=vtQdttbaLDmByZA7MPq88vnokoyX3VbJR8yi5untq_o,9093
257
+ pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_brc.h,sha256=weLgvaTbz8_t6sv0nswvV4_F2T3iXnZyNTh8BEFKy3U,2128
258
+ pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_bytes_methods.h,sha256=g8fLRHY638RnrPYNToXrSRZgDugWRN_Dj2Thawf3czY,4015
259
+ pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_bytesobject.h,sha256=tyeBxE4ysqp2O612bTOBi5EQXFfaehBcoU6ZAtVH4Iw,5068
260
+ pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_c_array.h,sha256=gFVie9Q358BNyKLdbZ25nouYA_Co7x8Qjz8HKgnyUJs,1010
261
+ pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_call.h,sha256=G32mShyUV_KHsRHFG_3jGs5sUiZjjNceXDpimzXLHPI,6385
262
+ pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_capsule.h,sha256=pfxGNUHsxuGZIoR9I2eWMtNHhtZ8rJoNdpt9KcAiXzQ,414
263
+ pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_cell.h,sha256=XllLgIy5JTF2KDxHQzFKVCKVL0Bhtw7tfSGpTbx8ehc,1789
264
+ pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_ceval.h,sha256=woPHbByAe-RYBUOuZrgeeLAhmbgK3ltRvjgqTuoQSv4,15292
265
+ pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_ceval_state.h,sha256=nso6h76KittgXMrdM1_zxxFd9T3AkzaB-x793nElPro,1339
266
+ pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_code.h,sha256=kbdp5LO8KfCfAnkXG16x7I2NNioTLmcJDfiYIZ21OqE,21726
267
+ pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_codecs.h,sha256=2wC913Ugy7pfpz0IPCBDWIP7bO02cySY0CHZxKe-oJw,2432
268
+ pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_compile.h,sha256=COkbiI_Rg5z_vt85djNZO_Wa-we-M_D1_RsNFnU7gNA,8843
269
+ pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_complexobject.h,sha256=2nDwStHHpN5BRxz9MZrWAhi-AAZ9Wd7wdKWj4xk_s2w,993
270
+ pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_condvar.h,sha256=1kFUATEp6g6Rn69Xc5jcwgk6Pf2FZLIgB5C3nWSwmnU,2797
271
+ pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_context.h,sha256=ToJ4-Nqq7Gf4NngbDWyMZI1nCGJWnyjvC7wEp-8vNmQ,1164
272
+ pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_critical_section.h,sha256=KYim2N9Qznj2XJICIzE8OWpXQ3eoq2f5Ic7cxrpyHcM,8276
273
+ pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_crossinterp.h,sha256=26JZ-ZEeJH0SHZOKiWo3vMeTo3OlEInQgPn74NVXzHs,13505
274
+ pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_crossinterp_data_registry.h,sha256=SemUnfJqFFCu72hwGTbGzMeKyXEheJXTEb-z34W6fTE,1150
275
+ pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_debug_offsets.h,sha256=Mc8N4DtAArIjDytK8bFiY2TJ_oiX3slE_mWrmgPJAFQ,12995
276
+ pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_descrobject.h,sha256=eaTv2cHcUZm_zLDwTtK6vlWLbueR9ryWxAxLiwU_TWo,571
277
+ pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_dict.h,sha256=GBj9dQjCZqmmfowqrgBqCQwUXdMJ5lpwLNwZJLh3Nmw,14689
278
+ pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_dict_state.h,sha256=Tv_hXvn-BvqT0kjOR_t4kkvlW1y6esoW0PAkBsHrvMU,543
279
+ pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_dtoa.h,sha256=0do-GqBpBNKTIAF6kDAAhRaWVCQXfF6YUHU7aadZ0Ts,905
280
+ pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_emscripten_signal.h,sha256=N3sg9Rkd5sl5h8ltnTFP39s3gBonO-NwmwkL5jO_4wg,715
281
+ pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_emscripten_trampoline.h,sha256=BL3bE2jkzVUPM8ZS9HFu1j9tfZxTwqRqI6XuNJ6fE9M,2718
282
+ pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_exceptions.h,sha256=EocLfCc6ilIVu3xNYM1ddK-bizXOGD3hyFPmM3o3fZ4,940
283
+ pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_faulthandler.h,sha256=2X3C4iEcqhr670tbIWGnQLnB9aK3SSPl_4XxzrHZ_MI,2366
284
+ pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_fileutils.h,sha256=DS4rSOm0h8uoL3S1n_FP8ZMbhiYrZYqFBsm1NsPIu80,9519
285
+ pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_fileutils_windows.h,sha256=bhKhXf6jtBhPc5IWF3mnUttEdrdHKpUz1nGBH32E_zM,2811
286
+ pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_floatobject.h,sha256=v5M2F7_tsZFHNuc7Isv6UYphuQebqvNOwmiJWKrLHII,1268
287
+ pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_flowgraph.h,sha256=bA5CttbkGeGr9k-bEUCWbDFBV40XgL8Tg-m-qblGCvc,1797
288
+ pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_format.h,sha256=sOVth_LGP2CWMu4g0SCL7RPPDqRFEY67HZp3c3UBlcs,507
289
+ pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_frame.h,sha256=P81SJy0svBM4ApTiDrGYXNuHoxo5TY-6W-mX8tmmbIo,2145
290
+ pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_freelist.h,sha256=xGgMN-89VVooHTfDaxZpIs1q3RqSOHwMt_cG6YPffv8,3197
291
+ pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_freelist_state.h,sha256=Vjj_xZtdlsokl-gvBC2WWSXVj-CSyUMC41rGfGqtO8Y,2398
292
+ pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_function.h,sha256=6UO-6Hgzo3hB5OQYJ6DlSXRpH_GZuOYJzfFD809WtXE,1503
293
+ pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_gc.h,sha256=XstcdWAOLYG_nMznbStaaOUZSjzm7kyjOMOZ6gWmhBk,13790
294
+ pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_genobject.h,sha256=0kxWE1pcSe_Li_yENYOtouvfoNpXm1peG8ZkDzPw8_Q,1244
295
+ pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_getopt.h,sha256=RZLpf1NsKrI5IFer4IyqoODnVXUPKZjTFjfkJ-yVoFw,512
296
+ pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_gil.h,sha256=KHRBDESi1sF-FWvqKM7jt-H0Yi5eQFmqhAKbwmwMVy4,2262
297
+ pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_global_objects.h,sha256=43WWjj8ByHULbpMXXSFEAGnkknnoPSnFysdK0GQgbcs,815
298
+ pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_global_objects_fini_generated.h,sha256=k-yzAy2eyC1qcJRMG8XeTjX4h2B-Sa6HV_NW73hh8hg,121911
299
+ pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_global_strings.h,sha256=sB-NDdD5PIqpa0KvrZsv79IewFh3ZVsugxkRfe7DyGI,28947
300
+ pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_hamt.h,sha256=rSj7bDgFK1xT2k-Xy9g8U1BWqlL2u1F7K70DUAZccRw,3541
301
+ pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_hashtable.h,sha256=0IwU4r4go6oz-KPU2Y0qAUbcQ8nrDZtixtRxhbatQAs,4511
302
+ pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_import.h,sha256=qQ27BtEucy8qYTjkUh5riKi9ar-a01774bp-vYW7CAA,4789
303
+ pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_importdl.h,sha256=7AHPbIKIY68znQDa0vGbVRLFaU8VnCHChF1LBsdcyBg,4194
304
+ pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_index_pool.h,sha256=julCcEHJDXHBc5M_9gx9-d7shpccS8Y5-Zi-NZSrHRE,901
305
+ pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_initconfig.h,sha256=JAKwORbXyrK-eZVxRfUB0AnEU6koNxC-D74r2mQCA7c,6599
306
+ pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_instruction_sequence.h,sha256=jz9O8YVX6P2sA_j-V5IgbfKDjiOYfZGV_MTzBBwHAfU,2722
307
+ pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_instruments.h,sha256=NoeRzo7PvSfJTjWWoazglHxr-9zjmmMUA35qjs3G2v0,4494
308
+ pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_interp.h,sha256=DVfWoYJHdgFuG0Vyspp54MO_Iz5DMoUJ7ap_BbIqQck,3535
309
+ pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_interp_structs.h,sha256=BXJyirGgcEUxifmFSp7pYjScvgB6180VfJnybmCogQI,32802
310
+ pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_interpframe.h,sha256=8jpIKQOv_PdwQS8a9Zbm8ofvTfIKUERDLaNXXM9svOo,13611
311
+ pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_interpframe_structs.h,sha256=tujv2PoQKCJfuIDNPQ1UyPntMoni8sJl4sLqk1yixts,3561
312
+ pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_interpolation.h,sha256=Na5bnp4mMYy3a8Y5O7TK-Xnaq7P2n46nQ8SmnxRCnAE,694
313
+ pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_intrinsics.h,sha256=ja171UvSsGgVOgnqGb6lK2ojap2ndk85Ms9258VRJ0M,1807
314
+ pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_jit.h,sha256=9veSwXCJTewlixk6aUA7KZHC6NEqAFilsVBlZkJMk-c,645
315
+ pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_list.h,sha256=_ck8wGrlhUtL8u-F-Xp6DejTJDkfW8SUc7LAujrOsck,2537
316
+ pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_llist.h,sha256=LxDW6HLsmtYF0YSpwGlchaGuoUfE1QRXUX7d7IUv7SY,2526
317
+ pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_lock.h,sha256=hPRbawsEaW3D9daIs63imwDbgaqwtM-h30UGPLS-n5Y,8845
318
+ pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_long.h,sha256=rsyGEyMOrzP_zrkCjf9px41pTamvTmRH8MJhn1WS9-M,10658
319
+ pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_magic_number.h,sha256=7vMnXA4ZR-_OItybg28I4OBzPu1CLf2lnle3NTgxKG8,17471
320
+ pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_memoryobject.h,sha256=FEKBfoImilGbBp3DAUWTChn1gy0we5JX52_3k-0G_U4,447
321
+ pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_mimalloc.h,sha256=XRDskyL9GPv8CyoYItszKVRHkUoO3y5lxODXR_3LboE,1706
322
+ pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_modsupport.h,sha256=3rrqsS-xMf0Jja41XuR4id6-K-NOaGqwmIZuY5E-Vfw,3140
323
+ pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_moduleobject.h,sha256=74sCghnsP5TrHN4Ifn-P29gYGNnvXRiUBM8CWqXFD8c,1809
324
+ pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_namespace.h,sha256=7-il6giBgnj6XGOogzywN3Og90s94jHqJFzo0ElX7UM,456
325
+ pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_object.h,sha256=u76Lc3DzJ7O4ku0ESoTVrGLe4FiSPH4bZ3ZonGB1dNY,34127
326
+ pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_object_alloc.h,sha256=N9bvYigV2XVxSGgSdED_TkQa2AfgaGJO8yt-35mWeds,2247
327
+ pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_object_deferred.h,sha256=u7fty8GNWwupsZL-890n6qMTv8LW42P7OtPMIQRvFto,788
328
+ pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_object_stack.h,sha256=7O2F158IfOXfSAvAaC8aYjOrzC76qDewi1qtmHiOqFE,2422
329
+ pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_object_state.h,sha256=hzNNmUdfkM_-ZPSwKcw-l0G83LKj1eOIkyCgWukbggU,1103
330
+ pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_obmalloc.h,sha256=PQMMf6HVSQjP_d2ilNBfhySglUAk_me9royD3RxEYVk,28120
331
+ pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_obmalloc_init.h,sha256=lJZLrPAuRqxjjjUwWNFu4RLmeL_yhX-fLoztzjLWrrQ,2001
332
+ pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_opcode_metadata.h,sha256=evPWqm_qKcFe_aVYdnt1ghISHVgqc0aUOHKEhaiEMoQ,102004
333
+ pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_opcode_utils.h,sha256=Atz3PX6jRuWi1-W5dv_kcOWckXQw6wk-MhQA3pSt4hQ,2820
334
+ pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_optimizer.h,sha256=wzb03ERSVTc4DrdrVXfeyCllPI-BaAf8KKi7Futo1hw,10024
335
+ pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_parking_lot.h,sha256=8swXTMXYdg9VtcyrbaEirHoOGTbQR5sPeYvH0ONdjag,3448
336
+ pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_parser.h,sha256=0tiAx6S54Z9jseuttBm19YNzJLynY69ZAYMk2fqO92g,1899
337
+ pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_pathconfig.h,sha256=Sn1EHdxJmELLny7FMAZkf_9sdKBLt4jcKwd8pNpDs84,684
338
+ pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_pyarena.h,sha256=Q-zgkZBXENX5Gp0Z6J7U4fDHd6MfCdQy9KxpBtHe_Ds,2930
339
+ pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_pyatomic_ft_wrappers.h,sha256=kCyfXglrfIqCzY3PS2464jPsDDqpwpUxCWnJSYxm80A,8665
340
+ pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_pybuffer.h,sha256=_1G3bnyG3amlcwrhXx1sLW_lfNm7RA1LIIAouYH6U9g,531
341
+ pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_pyerrors.h,sha256=5YkwDp_dULYKjei_KISPmuapSWz9-nRh0h6KX--eyLM,6032
342
+ pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_pyhash.h,sha256=86_lIUIGxi_Lf2xTHX19Oc3z0vW-iYAsu5-sCWcV4cQ,2552
343
+ pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_pylifecycle.h,sha256=PHJRnUCUCX8uV35X5M401Ip-bTQXcQW9QqBp3aN_2lE,4665
344
+ pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_pymath.h,sha256=zJkVAIM9sk_fUbvy8bRkE87TDhaA2JS_dhRh6RT68ZY,8805
345
+ pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_pymem.h,sha256=oq53mhUJY3wdHdPQ8K-JUgS6gBYFCbSGOPucZOgf5Ck,5250
346
+ pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_pymem_init.h,sha256=RNpt1OpioqAVnuSJjmnjU_uFPDer1OsaIEkSL5nTKhg,3623
347
+ pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_pystate.h,sha256=NYGt63k7_-urFKKqdDdMBy-UGpq3h2NbVTfXXU7BDSw,12290
348
+ pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_pystats.h,sha256=0JIL1pfUvhwIZwZezolLww0DGYRNIJm34XCD6TkuEPs,441
349
+ pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_pythonrun.h,sha256=qCuUTepvSvX5iyXOGVeQIYcAiEXhBN5N2dK5BzAatGk,1810
350
+ pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_pythread.h,sha256=z1ieH92StvO9ay3LJR5aOx60GT3jOvcsg7BP9BY73cM,6271
351
+ pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_qsbr.h,sha256=0YPZ_rosBRjS8CafMaV1demIMAEPi1msQqZLz-W0Bh4,5653
352
+ pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_range.h,sha256=petrpfhpjHOix-0RZHP3DeQTc6_bAR3J79xPtMz5pGY,367
353
+ pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_runtime.h,sha256=qcx1UqgRV-dF81c_hUNm7_jd3TZx3U9iSh26RObm-9Q,1901
354
+ pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_runtime_init.h,sha256=5pgGWuIPCpulEqH0HDD45zGcd-Hf0i7C7zdTP0y2qtE,8490
355
+ pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_runtime_init_generated.h,sha256=HgALdj47mRpDRysRFj-xmUVi2sxs3gckh9Q_PfsMQII,49469
356
+ pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_runtime_structs.h,sha256=gx1BUtnqPmLEdKbpacZLnSZNwpw2Fp8bpEGMaQ2SmF8,10337
357
+ pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_semaphore.h,sha256=UvsG0uQMgFoMYe435t7Qn8AnQYFRyqxfQmeFHvpa2kQ,1798
358
+ pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_setobject.h,sha256=bod_7E9lpeFTxAZbhMDJpncIS9m8uAAsnUhBPmxPMfI,1060
359
+ pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_signal.h,sha256=0C6HNBMnD15-1Xb18QplRV4taDlW2uljA8rUNYTGTAw,3039
360
+ pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_sliceobject.h,sha256=UL3quG6zJjKGfMotsmqjztHwY0koq4u-vW9inycup9Y,389
361
+ pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_stackref.h,sha256=DcAB6kBfDmRauGnWhsNSsWI3pEGa-40gRvaTBugRVUM,24200
362
+ pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_stats.h,sha256=wnvf5eqtmQRutubNeo-DZlMjHpEB-KO4X2t5d28Hk-A,4622
363
+ pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_strhex.h,sha256=_QiM2G04p6PaLatw5D9fGtIE_IylF2YwOUm6mg3VSkg,1052
364
+ pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_structs.h,sha256=xAR8WHHuKu_ZUV4rwljv4BdA8OqA1ODIADySXpuEkmM,2274
365
+ pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_structseq.h,sha256=GkPZc7kajueQF1MEYHD4l_PuLmpCnjN7QuQP2kOSTj4,1003
366
+ pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_symtable.h,sha256=pfGPC-bHdbNnxlpkBpQuwYGhHIuPVOXIfvemXHbR9BQ,9055
367
+ pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_sysmodule.h,sha256=_9jbfN2msBfQ7YFylzuG5vzD17KrsgPne7RDQhGaP5o,1035
368
+ pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_template.h,sha256=auhUtLnX3-PjL3xtSRr9b-XI7goJN5yfPYhpYTtdRXM,639
369
+ pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_time.h,sha256=FqVv1yybyFbdR3mKykjmDaejHjPL_N4Q88X2J8-x-jc,12174
370
+ pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_token.h,sha256=ixIXFrmfCek1e6Zjv4bs9nKTYrcX5sFxZYJZ3neqyLc,3254
371
+ pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_traceback.h,sha256=TZzaw6SNA7gKHxXlctYcRwrSxaA0JL1mq8QaoWoDUqY,3822
372
+ pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_tracemalloc.h,sha256=OMctxWN06yphMJGPo28NPlwmfaKYqLkGTxmZFAYb_r8,4608
373
+ pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_tstate.h,sha256=hdyeGlBmlR0inyKFmh0aoMydCDf-37SGUOCYG4kfOO8,2823
374
+ pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_tuple.h,sha256=n-BLbcTuaeqoFFZajSO5HmhiVwGjmDbzq2pkjbD8q88,2630
375
+ pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_typedefs.h,sha256=HxOW0uPB0kM3C3MAWLbhDAosacRTKS-Mijt4qQOhT5k,371
376
+ pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_typeobject.h,sha256=k2i8m4XHX0VC8DvBzIcYwwhsCtWfPFgFbGKjXv4iWww,5478
377
+ pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_typevarobject.h,sha256=2ZN-hLvYLl6JyKO2oHEHa3E0AzpP35PbWPAFAzPJGo0,1016
378
+ pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_ucnhash.h,sha256=JgNmQTuacKh3F7CrO-2-0pAuCIRE4oIFMOGAKhEYc8s,994
379
+ pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_unicodeobject.h,sha256=_zQqEs_X12hWFGIjaUoG6bRTrcCtalmrdeIiDOH-9N8,12067
380
+ pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_unicodeobject_generated.h,sha256=C-0dzrafgL1Whdna40Q9cs9pOY9hC-rTUx1qXbX-tKE,142097
381
+ pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_unionobject.h,sha256=nuCfZzx0yRcdjobocwGKXHmHShlAfQ-seS9kSFR_y7k,823
382
+ pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_uniqueid.h,sha256=QLBoRTNJrcAUZUoVqoptVCZNEr0VGtT8z8v1l4ZLF4o,2049
383
+ pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_uop_ids.h,sha256=8PShKKVRizR4qYZ0kZlM9bFOOXstsJRQRocQAk35xEI,11515
384
+ pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_uop_metadata.h,sha256=iZgjeLKIzLWEdeM-B025rl8URkefW_zcTAvul_vp4B4,49654
385
+ pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_warnings.h,sha256=WyRgavizS8dTRRGRZDuOH7kuQI2MM8Kt0I6aWDo2Lyc,522
386
+ pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_weakref.h,sha256=t9m5hLreMn4HzJJOtG0lDpfZ-W0fqIzuHqYaXJ4QLVM,4057
387
+ pytron/platforms/android/shell/app/src/main/cpp/include/internal/mimalloc/mimalloc.h,sha256=SvvuFwLHYFy5g7Ie87TH3f_GvACq64x6iyi-GUkYZAo,36636
388
+ pytron/platforms/android/shell/app/src/main/cpp/include/internal/mimalloc/mimalloc/atomic.h,sha256=eGopzYfogmH_xGzsLYih44_Ea5wNL1U9_naKNMyBpPU,17190
389
+ pytron/platforms/android/shell/app/src/main/cpp/include/internal/mimalloc/mimalloc/internal.h,sha256=t0jeLbW6rUbtSSVxpKsb7Xd2nGD52eY63xWB5--1WgY,37825
390
+ pytron/platforms/android/shell/app/src/main/cpp/include/internal/mimalloc/mimalloc/prim.h,sha256=9B1tZtsBmaZcFyBnCUfvVI5Q4tC4W2QKYwyB5PFQLIE,14766
391
+ pytron/platforms/android/shell/app/src/main/cpp/include/internal/mimalloc/mimalloc/track.h,sha256=2Uk08OySTp2RWVgj--dAlo_seu1y9UQ3zYh-wZER_2A,5600
392
+ pytron/platforms/android/shell/app/src/main/cpp/include/internal/mimalloc/mimalloc/types.h,sha256=Bo3uNLA-yElDjAGQNRi60vGXD0FZQQwCYev0lAOgooA,30607
393
+ pytron/platforms/android/shell/app/src/main/java/com/pytron/shell/MainActivity.kt,sha256=liSAkDDyxa9kJKqOerFlTHx99Btn-KETg0yykIFgZFg,8037
394
+ pytron/platforms/android/shell/app/src/main/res/mipmap-xxhdpi/ic_launcher.png,sha256=70G2mxgTYCkx1_Es2uthpfuq72NTYe2sObvUGIFVHv8,137219
395
+ pytron/platforms/android/shell/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png,sha256=70G2mxgTYCkx1_Es2uthpfuq72NTYe2sObvUGIFVHv8,137219
396
+ pytron/platforms/android/shell/gradle/wrapper/gradle-wrapper.jar,sha256=gagqrqWrzI_2iz38tYs8PEKTeO_ZjnQzRgYQ_s165F8,43705
397
+ pytron/platforms/android/shell/gradle/wrapper/gradle-wrapper.properties,sha256=b7AcxtvIa4OVQrwfrBuJWgDzfyPX7M1GE903hSxAh4g,206
398
+ pytron/platforms/darwin_ops/libs.py,sha256=3bGKKlSO2VUeEEL3SzuECew-llZ21joStyz167UbZIg,826
399
+ pytron/platforms/darwin_ops/system.py,sha256=IUW7nxPH4vsdWNAsMSbL2mjYMXQG8JOekUvIT2al1wQ,6243
400
+ pytron/platforms/darwin_ops/utils.py,sha256=W2KLX4btwATlHfH1A0cvwmAOzO9KnNXjVnUWrB7xyz0,2837
401
+ pytron/platforms/darwin_ops/webview.py,sha256=0hqlbdH-6wzP8tdr7_OikBPtxEjPri0R5Nc6uSIPnPY,166
402
+ pytron/platforms/darwin_ops/window.py,sha256=kw-T7G6ZoUrJe0KWnnBo1ga6oGXlUvji_Q2x7nZKDlg,2643
403
+ pytron/platforms/linux_ops/libs.py,sha256=pNt5gAeYhMQuD2gpzI6haKujKxUlLdm2OBSqrTMBpZI,1055
404
+ pytron/platforms/linux_ops/system.py,sha256=b8dxr_cpS0qtAdX4-7BFoj-5EA0DBIruyp4C7HWwBfg,10988
405
+ pytron/platforms/linux_ops/utils.py,sha256=GEYqtbCbeULJ87LyLa8A_Gn6NqqdhFF1Hm7HLP4dYJI,431
406
+ pytron/platforms/linux_ops/webview.py,sha256=0hqlbdH-6wzP8tdr7_OikBPtxEjPri0R5Nc6uSIPnPY,166
407
+ pytron/platforms/linux_ops/window.py,sha256=ssTPOMwWCRAQfWqtchReXOolpmLDpdua7H9gBUhj9bA,2768
408
+ pytron/platforms/windows_ops/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
409
+ pytron/platforms/windows_ops/constants.py,sha256=FFwsJqlHFC8zrw_XWTaNWY-v58zYxPBDy3Rp5Pf4ltA,3395
410
+ pytron/platforms/windows_ops/system.py,sha256=z0KWVqZ1ScRQ-7RDoT0AyPXyODG58EVMblmUkVS6k1k,17118
411
+ pytron/platforms/windows_ops/utils.py,sha256=J2BSgo_A_inbeKjq8vJ72_WgAKk09_7SOaetcrHeQ6Y,114
412
+ pytron/platforms/windows_ops/webview.py,sha256=0hqlbdH-6wzP8tdr7_OikBPtxEjPri0R5Nc6uSIPnPY,166
413
+ pytron/platforms/windows_ops/window.py,sha256=7t4gXrBmMx0kKcvNrab_-4gRPNpET0OycBD-4dZo_XA,10341
414
+ pytron_kit-0.3.12.dist-info/licenses/LICENSE,sha256=HrhfyXIkWY2tGFK11kg7vPCqhgh5DcxleloqdhrpyMY,11558
415
+ pytron_kit-0.3.12.dist-info/METADATA,sha256=5d_yqjD4mpBitRlCYBjpnzw2RLKmUw4uOOwEWZJ5SmQ,5220
416
+ pytron_kit-0.3.12.dist-info/WHEEL,sha256=LjAapQgoyQU8mYdYkCsWm9jGy4p7twRAalwZQnPij5I,99
417
+ pytron_kit-0.3.12.dist-info/entry_points.txt,sha256=AMzguLAD6mIKSlNaPv18guUFRw2fj6YaItG97jbSTx0,43
418
+ pytron_kit-0.3.12.dist-info/top_level.txt,sha256=XOVBsMdRf30y1sfvEN6qE0RdB-A_Dhm-VuNw5ZXdnHY,7
419
+ pytron_kit-0.3.12.dist-info/RECORD,,
@@ -0,0 +1,5 @@
1
+ Wheel-Version: 1.0
2
+ Generator: setuptools (80.10.2)
3
+ Root-Is-Purelib: false
4
+ Tag: py3-none-win_amd64
5
+
@@ -0,0 +1,2 @@
1
+ [console_scripts]
2
+ pytron = pytron.cli:main