pytron-kit 0.3.12__py3-none-macosx_11_0_universal2.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.so +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 +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=2NNuIkf3bsjWWGAL2AxkswlJf5LDBpI-ndoO3u1_zgg,3238
2
+ pytron/application.py,sha256=N7pkfzPimz8cQu6-0spWIt3nDcPUL5NIwu-EOMbX4n0,21525
3
+ pytron/cli.py,sha256=5wJ42NccQzJxUUNYZ_82iSPQt7fAGBgKhAoN9twid-s,12382
4
+ pytron/console.py,sha256=Ovp7LCQ9VEwIQofbaUDk6QcuG0WTyl8pmSrB5TWdLAQ,4069
5
+ pytron/core.py,sha256=3fcj0uU3fq6OEKuaOopyMLs8wa_gvsYaLIYWB8cYUvw,441
6
+ pytron/exceptions.py,sha256=OPSHxxP1SjZhVLMQks-rynSz6OtlSqxJRDc8svkV-j8,806
7
+ pytron/inspector.py,sha256=8AXjRqLkL5nmJuGX4gbTPA-iI7sN4Vhzr-tl4SBfSxs,7020
8
+ pytron/inspector_ui.py,sha256=HgUNCc5HV-NYcG5oLDemHgrvfCFP5OJ4rd3OjxtgRa4,20581
9
+ pytron/llms.md,sha256=a42qgk0yGeHKvwdduvAqiVnSSJJzluUCBkDZxfqyV3c,3362
10
+ pytron/menu.py,sha256=yHJhikHaanCyyTzpoU4bljLdI-AEYROPVzBZyukC4nk,3733
11
+ pytron/nsis-setup.exe,sha256=ONSfj-CbHDMrAdCUDle3JY9ER3M2Qyc6AcWZWa2dOwo,1564991
12
+ pytron/plugin.py,sha256=LtIHV8G08t5P5znEz_amRzudVTx1EMNpRlgPZjp9t78,18223
13
+ pytron/rcedit-x64.exe,sha256=PngB2xpe2-yRtJokoJSq13bLRRVIjqWkyiKJxADq3io,1360384
14
+ pytron/router.py,sha256=5yrZ3ez91W6FNPUEUYaAWy5ygOEzNHDgBeezuiEmeB8,4884
15
+ pytron/serializer.py,sha256=wiyoOI7Uy4FLfDCn6hI3hq8ncJarSHEBwQ8fTCfZYwE,8031
16
+ pytron/shortcuts.py,sha256=S9wfyKhjOkHo5Y7TZcmkxKHPVTzjsrKp9_UBVHjPzJw,8463
17
+ pytron/state.py,sha256=OJR1nzFK4hT56_Vm73m6MlGcv2cf4YqX2efNTkwb900,2841
18
+ pytron/tray.py,sha256=qwJco-IJaKZY8Yrt7Hm7I1HpVhO4UPJmKv7GZ_lf5C4,13820
19
+ pytron/updater.py,sha256=G-7zKM_yNIb3dh3Ig2HONRsYnS5ZZEEdDdfHoY_xOnE,6747
20
+ pytron/utf8_hook.py,sha256=TvlvCB2Lf5WKYsPNY9pvqSIQkrKzrHa-R_NOf0ZU_rs,3465
21
+ pytron/utils.py,sha256=zaTeIXpMnQfdUJoplgk2dz7can224tKyWelXfLxF32M,1634
22
+ pytron/webview.py,sha256=JqHZ9vdJn3c3tPllxbMnB1LxoDzVAMC3tRUWnwQvhrU,27352
23
+ pytron/apputils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
24
+ pytron/apputils/chrome_ipc.py,sha256=0feMOKfgb6Y4dQwKu5fgVF1Av8mNyl1B4afhZZBlUow,6259
25
+ pytron/apputils/codegen.py,sha256=IettkcxwHUoTOxrvwnzWOPXXSl6i7elf2SciT1kLTFY,9401
26
+ pytron/apputils/config.py,sha256=5A5RJHCwEjrHyOA8w2im6S957zVuqbEDhCsUQyd02Fk,12396
27
+ pytron/apputils/deadmansswitch.py,sha256=KSFxErixzBEncrlZltO1Sp3bCVajSFj0Z96s-lxZhSA,1581
28
+ pytron/apputils/extras.py,sha256=e9m8CGEZiv48x0shTC67ap_zfdckMEwQn4zp8aluNFk,3349
29
+ pytron/apputils/native.py,sha256=c3mP1WKTPYiIm8NaIT357G-ges16kXJd-qCiWdOOYoI,5405
30
+ pytron/apputils/shell.py,sha256=GlxFN09CMTYeOwL5UR9TXJYiGlEnrOmxUX2WGJWlYeU,2174
31
+ pytron/apputils/windows.py,sha256=FCdLM8aRV5lBdNbd5uHADVhQbSZLH-nTLf8t2ljoVFo,11072
32
+ pytron/commands/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
33
+ pytron/commands/android.py,sha256=ZItEYT419xBTu9YoONIV6V0tJIvFdQICxMxY2QSsHZI,1096
34
+ pytron/commands/build.py,sha256=Pu0XhZn3D6-Sp2cUHDz7fOx1sGVMbWFznwGATPAuGs0,687
35
+ pytron/commands/doctor.py,sha256=nnXoLGBlHOlKWNvWrBYlgPvWSM21_bdsUiihKoSTL48,7505
36
+ pytron/commands/engine.py,sha256=lWliOgHzzJWMY8s4fOIsnjWyHeh2nfNz96g4_c_Zg30,783
37
+ pytron/commands/frontend.py,sha256=SMBBYLgtyJ0xMlnXNy6vJa-qXHRI9WeUzV-3seRZoVk,2081
38
+ pytron/commands/harvest.py,sha256=Pmelo_Pm11sEXXsQQpQ8DabGNlGwm-3m8F6E860WOUs,3689
39
+ pytron/commands/helpers.py,sha256=jnXx12_qeh6ZyHp71L2eabkhdNlLEe6BGLVuJO3IDZU,9385
40
+ pytron/commands/info.py,sha256=dSyFFymtTtvs-XqOVg0VOVNdF47BfnyHstT0Oc58akM,1634
41
+ pytron/commands/init.py,sha256=-4wNAgMBBFz1tQl-56Q5dRbPREDCJ6LMHMoI9nrqEqY,18010
42
+ pytron/commands/install.py,sha256=F4ujmuCTPeEUWyfPZerIaSgtfIbUb52C-m9_K02G3C4,11223
43
+ pytron/commands/login.py,sha256=LP4Nf7pY4JjpLmy4WClt51tg6jZ_68o7SIEVbDrVD_8,4404
44
+ pytron/commands/package.py,sha256=uMZPbheUKkCaY7SIvqCu-KW__6y_0rizCyFp2GLlqvM,7881
45
+ pytron/commands/plugin.py,sha256=Fm_T_lblnufjdBl6HOzKcOPo1U90O60BxFeNoHL8X0A,14714
46
+ pytron/commands/run.py,sha256=uT4qUGMGz5vyvXGKTY0CBOyIcg2jBSqOGTTqxHZLl1U,11113
47
+ pytron/commands/scan.py,sha256=F1kOWHHCWO4h87SNWsjGK9GP_x1o-qsE452Z7jBO86k,7214
48
+ pytron/commands/show.py,sha256=AqBaKboSAuqNMWoIkNnfl3YtsN7MREhfTY6bcBCBPl4,667
49
+ pytron/commands/uninstall.py,sha256=i--95qYas3t5UY1pfT2JZXT_quiNx0a88Hd7iERsmJE,4779
50
+ pytron/commands/utils.py,sha256=PYHLnQMRfsD6RIw2y4zK5TcD54kPC9VC6k2ZKfYX2RQ,1228
51
+ pytron/commands/workflow.py,sha256=y0jOV2iTuGlgZHEwD5_yerL-ByjGa_QGHB7zSnWc1mk,2762
52
+ pytron/dependencies/WebView2Loader.dll,sha256=KLiY5EMykclpzU87xGN3sZVSetkTjfL6VyQ862cXprk,162264
53
+ pytron/dependencies/__init__.py,sha256=c2yFremIpF3fiKYRRpXXztJtaPBp5f-8kdH0cGEOj5Y,29
54
+ pytron/dependencies/pytron_native.so,sha256=aTs8Dr51xOku2AGLYejkqOx4xDU2fOSAgq4TTMf-W3I,4299856
55
+ pytron/engines/chrome/adapter.py,sha256=BTsUpYxVc7y5WFuz5O3iAvSngQwFs4YbrrGl_D_AW8Q,15365
56
+ pytron/engines/chrome/engine.py,sha256=Njxg_AU_BUhkCs8Qrz6RrBfHejKXIyrSPliLgQKurlg,21649
57
+ pytron/engines/chrome/forge.py,sha256=ZhGPFXL9hIyr_KpOZ5bVeFHJ0Rx1jwri0JTuLp6KUb8,4617
58
+ pytron/engines/chrome/shell/package.json,sha256=tfPet-lfNrZhXPsFCT6zXtbQl-dsW0fRU-8Zzv_mFGM,199
59
+ pytron/engines/chrome/shell/preload.js,sha256=iM0hWaQ1B3RlgfN58npIvX83vMbATpF-eNkPHKC-xJk,404
60
+ pytron/engines/chrome/shell/shell.js,sha256=ZURc_7_xokM3PWSz9m0Tu1eCDTB_cC46OdYf8QcKY_8,20032
61
+ pytron/installer/Installation.nsi,sha256=Di62NWhIKmtdUXdXY0GyFVO_XzcjqOhOrvzFLZc1O_0,7489
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=IYZXkqLBVJ4RLdBjb0zkuqzcAawzf373qXRyHZbD8Rc,1416
66
+ pytron/manifests/windows-utf8.manifest,sha256=OtPi2fM3aGD8pVV149qDpkShDDSCc87R75ckHzBq9fA,1725
67
+ pytron/pack/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
68
+ pytron/pack/assets.py,sha256=VYOdTI603PK1HsgBRNeNTPZlIyCPNTKUyCNp7tehWYs,4194
69
+ pytron/pack/compilers.py,sha256=dBbKDJd5KOnudHmRXtQ4Xce5VgUqZwrG4ychiBI6Ing,8894
70
+ pytron/pack/crystal.py,sha256=J4hOOgLySgxvFTpQNJtSsdSE-YKAhUdImlWFr8QlDJc,10327
71
+ pytron/pack/graph.py,sha256=zT6EuXmuegFlupAuZFL7r3pLl7dAgRIgy4UBsW8vm38,13125
72
+ pytron/pack/inference.py,sha256=OyOz1Sc3UrSNvzp_KI6xvVrTHUdqEqiEEbAL8N0m98U,5064
73
+ pytron/pack/installers.py,sha256=cp-VJj7bLrwPBTafe_jYCSyqth2Mi6-jLyTTkm5auIo,14426
74
+ pytron/pack/introspect.py,sha256=koVbFigpo9r9cSEOyG8nPXN3zFoTUPm3KuctGKNRyFA,13551
75
+ pytron/pack/metadata.py,sha256=9JftcMI2gWLwkWspwF60TPY3wcNX42nmEo5_FE1Kues,7795
76
+ pytron/pack/modules.py,sha256=97mTjKNRIRyBtPbMQIji3GT1UWf0Vk1XUD0cahhMh9g,25523
77
+ pytron/pack/nuitka.py,sha256=5fMjW3yTKkPzZmWrZZ0H9J_98IvZyWxeYszs887x_MQ,3266
78
+ pytron/pack/pipeline.py,sha256=rRn21tHFI1U-W2jQt9Rmrb92ZzJHWr9zCH7Y-4fMepk,3184
79
+ pytron/pack/pyinstaller.py,sha256=_-d5lVfLpdNk0VX3KYG85_jJhalWikqP4iArxB3gnlY,6249
80
+ pytron/pack/rust_engine.py,sha256=xlsAbaHngF-7vfq-oHzL3W5qzT6hEWnpGtCiFPjn0E0,9304
81
+ pytron/pack/secure.py,sha256=tsFPL8PTLbSEcjjC4m-DKhrecdCKQ4T0zB_XWx8j9So,10289
82
+ pytron/pack/utils.py,sha256=69bvnvKpNtUUtQz5eDvCJT0lUTKyIOS7T_4Vyp_uNoQ,3254
83
+ pytron/pack/virtual_root.py,sha256=0W1nkT4wIfrNBoOO72N3XVDo_G7-HqCVODISYItDEWw,4655
84
+ pytron/pack/secure_loader/icon.ico,sha256=SmYxciNY5hWa3b-x2wOYJZPYl1RXwf7-7hcBB087UR8,88071
85
+ pytron/pack/secure_loader/bin/pytron_rust_bootloader,sha256=ZXWYMFZM-dnDSEo4tWQOMdgOoDzuEtzftZ6p7bOz9Wo,618928
86
+ pytron/platforms/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
87
+ pytron/platforms/darwin.py,sha256=yPIHBGjfuTv-A1YvbeAQShN6WAH8IiW2W0jNRHuKMGY,2520
88
+ pytron/platforms/interface.py,sha256=1ZCxqeHYZoGxJflN9hkIg8v0GJr2YCRx2xKxhkIIELk,4022
89
+ pytron/platforms/linux.py,sha256=xHCvMTgBp9tfR3UdwcaDmChzjtJlOI2l8n-3a5W6BrA,2544
90
+ pytron/platforms/windows.py,sha256=a6yYoQZ5NMwShgnn2p3cdmFvbVXOVP0_GX4qdjPZYdM,4102
91
+ pytron/platforms/android/__init__.py,sha256=fol6LV_dr0osLmkq1o80i1GgpIVwQZmFelZA3CtewE8,80
92
+ pytron/platforms/android/android.py,sha256=kzgcAFgIK6V7rQahM_ls3NKyQC346qsvyjZ1nwFefi0,3363
93
+ pytron/platforms/android/builder.py,sha256=tQjtItCOGFq5fXHYWtbNtdEJ0_U5AspeScwak-Lwjzc,27740
94
+ pytron/platforms/android/ops/build.py,sha256=MHgL-rNqtWPGoNNskErpeD3K95axaEh2aVQngUysHbc,2416
95
+ pytron/platforms/android/ops/init.py,sha256=QVhEPLEKo6rbhqQHeH6SXfAx1Y2RCA7thtm94WhEgtc,2137
96
+ pytron/platforms/android/ops/run.py,sha256=XVUyDdqrEieDIbNdtcIToiBk_jlRPXoe44J21a3RRTc,1973
97
+ pytron/platforms/android/ops/sync.py,sha256=GlGVt7U_RBD8ZGDL54N8y5rRY35kor6JIBwAnfETwAM,30407
98
+ pytron/platforms/android/ops/utils.py,sha256=6KiqIrt__mewcf7VQQq81AVOzVq7dYYQGFwKwu4l2cM,367
99
+ pytron/platforms/android/shell/README.md,sha256=62Bf4bJOV5BvPaTTv5FbT5qkmnmnNySkKZf-ExTyi2k,1431
100
+ pytron/platforms/android/shell/build.gradle,sha256=5uPyFmGfsWPHOunudVWCKdF2aPCbcn2scsb9hdeYy8M,362
101
+ pytron/platforms/android/shell/gradle.properties,sha256=TUyCImhlhEvchTkdkHo4PaSjXTo_U0iYXV7DmXq5Mv4,76
102
+ pytron/platforms/android/shell/gradlew.bat,sha256=7R9zciNqFarF2ofc3_B4RTKcu26TVDM3q0CPkVpqic4,2537
103
+ pytron/platforms/android/shell/settings.gradle,sha256=phmbazRrIBmmOhrIIp8bb3y38kClTV3P_JPEdlQ_yVg,328
104
+ pytron/platforms/android/shell/app/build.gradle,sha256=ObiXPm3CJWvNtljXhxaZkGKLM2SUS5vnuj4IvHrT_0M,1608
105
+ pytron/platforms/android/shell/app/src/main/AndroidManifest.xml,sha256=3YcJN7ItrliLzRXa9nPAi94odM71wh0LOIlGneGcDZw,1136
106
+ pytron/platforms/android/shell/app/src/main/assets/python/main.py,sha256=R7YTrsRI8LBmAA_sHQDkiSS8JeXOVLJdhkoBzolE2ZI,2814
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=alBvdtY29IdDahL9bqJqg3yf0bDcDB7sya1MgBEbRdo,638
109
+ pytron/platforms/android/shell/app/src/main/cpp/pytron_bridge.cpp,sha256=IS3DfxAfrGrar-5gfz49PwJPIdm6sMLyLC_auaJ9cqw,8221
110
+ pytron/platforms/android/shell/app/src/main/cpp/include/Python.h,sha256=45qtk9cMPqGmO3fsV5X_WaXBd3Ra7azm-Du_QnWiDZ8,4399
111
+ pytron/platforms/android/shell/app/src/main/cpp/include/abstract.h,sha256=NUPVSjST3y5y8sYHpq0x6hnMR_Gchi96a0zRrFeLOHM,32385
112
+ pytron/platforms/android/shell/app/src/main/cpp/include/audit.h,sha256=CqRTk22GkHnEmfHusvHYehGBUY2KbwDJv56PmrekB2o,495
113
+ pytron/platforms/android/shell/app/src/main/cpp/include/bltinmodule.h,sha256=G1EBtLhUCf2RADJxOQaAC7uDWAUDA2RpwqYKyOgLj3I,264
114
+ pytron/platforms/android/shell/app/src/main/cpp/include/boolobject.h,sha256=_MqKc6VusTXqxSa3ZybGznFufNK-uSnt6OsKf69EVXQ,1605
115
+ pytron/platforms/android/shell/app/src/main/cpp/include/bytearrayobject.h,sha256=DpOWPK9DoFf7KTrlGD0bi7Rcn1eSbOgwj2eg9FKEPoU,1466
116
+ pytron/platforms/android/shell/app/src/main/cpp/include/bytesobject.h,sha256=43vJqSyP0xfBNmd7t82SqsZBgEj6w4uFgF16IWMGqYU,2569
117
+ pytron/platforms/android/shell/app/src/main/cpp/include/ceval.h,sha256=QMu7CVo8RioAhTrVEpzF7EdthiqD7n-MwZBCnhCQjCI,5118
118
+ pytron/platforms/android/shell/app/src/main/cpp/include/codecs.h,sha256=MvoxK4Q9pH7wbzqlODfBumUr0e4F0an6Ol5iHs12cZs,5435
119
+ pytron/platforms/android/shell/app/src/main/cpp/include/compile.h,sha256=HxDIGLKQB-akRGUFoRQN13ymYYrYHoe1AvTiL0snRAY,448
120
+ pytron/platforms/android/shell/app/src/main/cpp/include/complexobject.h,sha256=k1aAWiRQMlbNiRTXt3ADV-AfRxwhH5JByBmB2J1sOvg,728
121
+ pytron/platforms/android/shell/app/src/main/cpp/include/critical_section.h,sha256=wrIj-0q5h8HWaf_bRd59ptY6ZE5b0ur59nE9suTiktQ,314
122
+ pytron/platforms/android/shell/app/src/main/cpp/include/datetime.h,sha256=89gZLK2g9JCmcjPmFeWXTwYlAbKHYUcRjdsELuSn-Yg,9769
123
+ pytron/platforms/android/shell/app/src/main/cpp/include/descrobject.h,sha256=KVakiPTExhNB42HayUnPpKIX4PvQCXiSUTsCNjyVcKc,3080
124
+ pytron/platforms/android/shell/app/src/main/cpp/include/dictobject.h,sha256=By6aKu4p2tm0sARrhaaD1gc5Ap2Y4aXIaNp1ptYoiCo,4381
125
+ pytron/platforms/android/shell/app/src/main/cpp/include/dynamic_annotations.h,sha256=PkNm99CCg1BJcwNY0nelrXpg4W0WAfViLwoEWjfBUqw,22471
126
+ pytron/platforms/android/shell/app/src/main/cpp/include/enumobject.h,sha256=IkT-JQ25mVBo_nTc4OI_1wwSsD_ZR1HZi3c76PZIlrY,253
127
+ pytron/platforms/android/shell/app/src/main/cpp/include/errcode.h,sha256=1yrF45KTwVCvZlx5ZQB400EJsiMyRXpY6GA4_J0_rXo,1974
128
+ pytron/platforms/android/shell/app/src/main/cpp/include/exports.h,sha256=wlsIVAEoTwPYDL5u19lGF9ZpayupENQ73rYEUSnJ1yo,4480
129
+ pytron/platforms/android/shell/app/src/main/cpp/include/fileobject.h,sha256=77OL62ApeDP8CAuQVdHZ7FzEjblBpAG67GZ5tEPON0I,1357
130
+ pytron/platforms/android/shell/app/src/main/cpp/include/fileutils.h,sha256=qNPH7_8v-jGUbZ33St6Zq7XJN_Scw09MSMKU4aS1kmQ,1419
131
+ pytron/platforms/android/shell/app/src/main/cpp/include/floatobject.h,sha256=ecxNfR9a9l5-64nZDKcTd3AE76nb4_jBN-sjMAc988M,1532
132
+ pytron/platforms/android/shell/app/src/main/cpp/include/frameobject.h,sha256=lpzZMGXOebgbvGemXTG3QuI_ML951uRKMGlj1VLtDDU,336
133
+ pytron/platforms/android/shell/app/src/main/cpp/include/genericaliasobject.h,sha256=DlOgsYwRS-aOzOqf_R3Vd-IEsfCtpNOu3I5-4MgPx_g,334
134
+ pytron/platforms/android/shell/app/src/main/cpp/include/import.h,sha256=ALfLTW5_AFXiW-q86nvuV2_5kb2DtP-7NpEiAcwNk0I,3235
135
+ pytron/platforms/android/shell/app/src/main/cpp/include/intrcheck.h,sha256=GDrhGGgTSugU_jVzzLm-rRl55GIdWT0ymkHpx9iMUv4,535
136
+ pytron/platforms/android/shell/app/src/main/cpp/include/iterobject.h,sha256=88hfW-n0KJKFDLWsMxgQXbHEokf_yn1e7ZQCiIlEFsk,525
137
+ pytron/platforms/android/shell/app/src/main/cpp/include/listobject.h,sha256=xxoWQJSON2urTmyiMZqiA4GtpgseMb-QHf4uetFX8EM,1918
138
+ pytron/platforms/android/shell/app/src/main/cpp/include/lock.h,sha256=ZSG7d9z3POP9Y0pRt2OJWZ4b6yrHmKCWqAYpMvJrmYQ,242
139
+ pytron/platforms/android/shell/app/src/main/cpp/include/longobject.h,sha256=O96tRg6yAVxt4nuSvE33QZn8W5KlNHhR36TUoLo4wIc,6949
140
+ pytron/platforms/android/shell/app/src/main/cpp/include/marshal.h,sha256=u6WdeOIsmBaFG85NCMEClJzyr1WpVNVRURaq2j9Yqhw,827
141
+ pytron/platforms/android/shell/app/src/main/cpp/include/memoryobject.h,sha256=77c0hFoTZtd_Y1HLuVTAhoHUrP5qU-Qegt1F-ogeAJA,1081
142
+ pytron/platforms/android/shell/app/src/main/cpp/include/methodobject.h,sha256=Qi0gJRuOXOlPGpaBcF0tSf_GpZZolrYNpj-kOCo48TU,5878
143
+ pytron/platforms/android/shell/app/src/main/cpp/include/modsupport.h,sha256=7dlVxvIfXVphqV0IdysaGXFy9h3MQfxbmAJLycaWsGU,5636
144
+ pytron/platforms/android/shell/app/src/main/cpp/include/moduleobject.h,sha256=Iik1lPmWlKExr3WTttXbFcWH68pUZy_Db-VClKKf6B4,3679
145
+ pytron/platforms/android/shell/app/src/main/cpp/include/monitoring.h,sha256=OiTSH9ick_bXOb65O-oRjpTpc_N-NO67KE19TG_Dhxw,331
146
+ pytron/platforms/android/shell/app/src/main/cpp/include/object.h,sha256=nniobcyqQdOM2b0PsWAom_KDrrA6LKSXquHYLwrK280,31231
147
+ pytron/platforms/android/shell/app/src/main/cpp/include/objimpl.h,sha256=35i-mMYs5TY9WdCHNj663XEIjDM98HLKSf0AAW9aU4Q,8380
148
+ pytron/platforms/android/shell/app/src/main/cpp/include/opcode.h,sha256=5zW6NdsZeqvS3C4ZBm9ORXTCOgXYG2G9K0vCenioenE,1590
149
+ pytron/platforms/android/shell/app/src/main/cpp/include/opcode_ids.h,sha256=ehrqZWedj_7zqY4HqfVvvHDuSQhLxgYjf96RDXYKCe4,12610
150
+ pytron/platforms/android/shell/app/src/main/cpp/include/osdefs.h,sha256=Wx3hwxREj8J_DGsqz-8GBQbcz5Jvqoipp9d9J7fVTMM,848
151
+ pytron/platforms/android/shell/app/src/main/cpp/include/osmodule.h,sha256=wBOTW0j0jKjOJJpNSCxV4_tvHP54bFoypXlpu3Snedk,291
152
+ pytron/platforms/android/shell/app/src/main/cpp/include/patchlevel.h,sha256=UeigWIpH6gGFS9-MdoXAkS9tRnaeibHYtpWix6f7FN8,1773
153
+ pytron/platforms/android/shell/app/src/main/cpp/include/py_curses.h,sha256=hYu5eR8iQcjODyY3sG6PLNIf-2xf3E7BRidwDnp3f6k,3513
154
+ pytron/platforms/android/shell/app/src/main/cpp/include/pyatomic.h,sha256=a5DSEhnVow-9mFYNIQT-QrB7ZFRQ2vwXBLUvR_El8eU,257
155
+ pytron/platforms/android/shell/app/src/main/cpp/include/pybuffer.h,sha256=yV7dgwdy6SL2D5dqwNmEcLSKRDuhmLCGakCWADwHQKQ,5282
156
+ pytron/platforms/android/shell/app/src/main/cpp/include/pycapsule.h,sha256=IgXHVn-EcrVaaoKVRPbF0nCDIhBQ7sxqZANnCdCFjPw,1726
157
+ pytron/platforms/android/shell/app/src/main/cpp/include/pyconfig.h,sha256=NwnGt3fvy0Zih2l1fo54KpSK4OFN8yjf0qrpym7cDxM,60704
158
+ pytron/platforms/android/shell/app/src/main/cpp/include/pydtrace.h,sha256=esWR5W4Sk2oy47C4Xa6AP48AvckavgF5nKLkzmlUhVU,2404
159
+ pytron/platforms/android/shell/app/src/main/cpp/include/pyerrors.h,sha256=15R63tJw3itFqc36Lj1SPUZlXw2O2tPOadQF4Nn1HR8,12968
160
+ pytron/platforms/android/shell/app/src/main/cpp/include/pyexpat.h,sha256=kbO08ZmgdKRFBL-RTJbVocUl7v_RcmwhjzgZWXm_Q_s,2850
161
+ pytron/platforms/android/shell/app/src/main/cpp/include/pyframe.h,sha256=WFE-cBeAXuXEmjKaVS9ypr5tiM4rz6NE9RMFgvp17LY,551
162
+ pytron/platforms/android/shell/app/src/main/cpp/include/pyhash.h,sha256=1PJmtuNv1DZLeUWZT50gRiBujsZg435Vf30deamAapQ,1656
163
+ pytron/platforms/android/shell/app/src/main/cpp/include/pylifecycle.h,sha256=KgUjmy5X7-_jL60yjF9WekcS20zoYQydOboN8lzlHNs,2412
164
+ pytron/platforms/android/shell/app/src/main/cpp/include/pymacconfig.h,sha256=X_LWlFaxeHrk7ChreHVThoWGoIiIGA-nid-HZcFqtCQ,2497
165
+ pytron/platforms/android/shell/app/src/main/cpp/include/pymacro.h,sha256=Jy68nOjRe-7j1wnG0ZMiPYSxFl9Q4Ld4GW0qPwJ2rfU,9547
166
+ pytron/platforms/android/shell/app/src/main/cpp/include/pymath.h,sha256=EavQEQlXmuBTc5UbpaXX4szt6-z4lQ78G3oVb3AQOdE,1906
167
+ pytron/platforms/android/shell/app/src/main/cpp/include/pymem.h,sha256=C--2A-iGag_7t2Z0tH4CsIqyPtIP620JjhYzONGBcOY,4438
168
+ pytron/platforms/android/shell/app/src/main/cpp/include/pyport.h,sha256=doJujYyY_YLk6eg-RUXaMhmhBSrKBWdy5OXPBvvdSYM,23249
169
+ pytron/platforms/android/shell/app/src/main/cpp/include/pystate.h,sha256=YYKJNqASXtenFGVmZzdKEol9iR4tT_VoATGJJ3bGp10,4634
170
+ pytron/platforms/android/shell/app/src/main/cpp/include/pystats.h,sha256=l1QNbgrhkRnXCsraMSBGSBOAevj4oS8h4_Mhj4bKPu0,698
171
+ pytron/platforms/android/shell/app/src/main/cpp/include/pystrcmp.h,sha256=9AHYM4-27PXxJ2julc0JwmL4gLLuUiyjRLiQ29zeTIg,436
172
+ pytron/platforms/android/shell/app/src/main/cpp/include/pystrtod.h,sha256=FJ52as6_8akJM9U7zLYuEtEo2CpAtcFWuBsYR8yaejo,1247
173
+ pytron/platforms/android/shell/app/src/main/cpp/include/pythonrun.h,sha256=OCpRtJh-wCdB2vdXsrpLBw8dgUPruPhOFKGmkt-Tt10,926
174
+ pytron/platforms/android/shell/app/src/main/cpp/include/pythread.h,sha256=LKheHdNc4BoejSDVXGaeDAd8_FYSe2NFoF61jAScCC4,4841
175
+ pytron/platforms/android/shell/app/src/main/cpp/include/pytypedefs.h,sha256=JtCaeMRJmOjAp07S0U5TRuS5Iokut5KIBJt6xbah51E,851
176
+ pytron/platforms/android/shell/app/src/main/cpp/include/rangeobject.h,sha256=NlR6tYYugrCcvte3hqTPyGrx3sWjd4xQgluyZsmmrsk,630
177
+ pytron/platforms/android/shell/app/src/main/cpp/include/refcount.h,sha256=js0o7X0Xcixr8M77puxUptDLnn1cI9gSPva0JvXkMyM,20001
178
+ pytron/platforms/android/shell/app/src/main/cpp/include/setobject.h,sha256=f_G5hGR1mLGf9ZOw-kDUTPXXvDfTht2frAWeVg9KMco,1557
179
+ pytron/platforms/android/shell/app/src/main/cpp/include/sliceobject.h,sha256=yY_EqtQoulStLIqqlSMOSw96yFzOmWRIsEucPX_uFKs,2662
180
+ pytron/platforms/android/shell/app/src/main/cpp/include/structmember.h,sha256=_zqIvanV7AxFk3NHkNusad3csWngfKciCmkfjUKGERY,1646
181
+ pytron/platforms/android/shell/app/src/main/cpp/include/structseq.h,sha256=pZ9mbNDGovnxWTD6Ca4LvmlSwi6NFvw-rpstql6ZfRg,1308
182
+ pytron/platforms/android/shell/app/src/main/cpp/include/sysmodule.h,sha256=DdGe1LzyP22vF5VQYtNpUH-FD7FKC4gIesgtGYAMbU0,883
183
+ pytron/platforms/android/shell/app/src/main/cpp/include/traceback.h,sha256=6lnVEWh_f4ZDx7iwmW4m8skrzJVGOcb5jQj2Vkth0G0,585
184
+ pytron/platforms/android/shell/app/src/main/cpp/include/tupleobject.h,sha256=2N6NZOS1xGbDvdBPVmTw66ZKkZizC1opQJ10pbXx3vc,1615
185
+ pytron/platforms/android/shell/app/src/main/cpp/include/typeslots.h,sha256=-M1X68FgyDhddnXIv93UQ4amRoC4aGhnjz6rRpJvclE,2569
186
+ pytron/platforms/android/shell/app/src/main/cpp/include/unicodeobject.h,sha256=Y8268umXRLOCW4gJ3D1VsUBxAV05QpPEYu3ydLbSf7Y,35679
187
+ pytron/platforms/android/shell/app/src/main/cpp/include/warnings.h,sha256=GP3jSxIkdGDegF_CWep_FDBfzkd50kTAp73HxzuPa1E,1129
188
+ pytron/platforms/android/shell/app/src/main/cpp/include/weakrefobject.h,sha256=PQFjM16kORd1x0VjBr2f8tEL2LPkiJrYN051PypLjXw,1391
189
+ pytron/platforms/android/shell/app/src/main/cpp/include/cpython/abstract.h,sha256=2-_SgRvOK9_9lDCsEEeuWB46W0U5gxrPz3GP4HLqEZw,4122
190
+ pytron/platforms/android/shell/app/src/main/cpp/include/cpython/audit.h,sha256=sYkzHrmWVqUAVyWlayfzCWJuN4Iyr5fKXll4lgF4UCo,231
191
+ pytron/platforms/android/shell/app/src/main/cpp/include/cpython/bytearrayobject.h,sha256=lZOzHYZqH0MrorVKJrqueDyz7-fSKRSrKLgKqEAeR4A,1278
192
+ pytron/platforms/android/shell/app/src/main/cpp/include/cpython/bytesobject.h,sha256=77c_8D39AnFE3upmmfYAqTd5dNCjG0yFDmDsmkSllx8,1265
193
+ pytron/platforms/android/shell/app/src/main/cpp/include/cpython/cellobject.h,sha256=wUJ5TRxhHMGDIxLGdmiDKkvtgcVFiRg26WZ-yF2_bjY,1246
194
+ pytron/platforms/android/shell/app/src/main/cpp/include/cpython/ceval.h,sha256=UnlgTplwMp_nApyum7OpJnPe4LTaU1Pm1rOZSBsuk28,1677
195
+ pytron/platforms/android/shell/app/src/main/cpp/include/cpython/classobject.h,sha256=s4oOzevq4qTSjf6KXygz9nbTi-lWHKS9_fUIe74vkzI,2245
196
+ pytron/platforms/android/shell/app/src/main/cpp/include/cpython/code.h,sha256=6a9uAeFxUrv2QJLacnuaSBolhksa0-cHOrNVQw2k4Gg,14368
197
+ pytron/platforms/android/shell/app/src/main/cpp/include/cpython/compile.h,sha256=zLhDL1j1ZwxIj9NJq8gYnAN4BfxPMnGgOnQ3jogctMo,2121
198
+ pytron/platforms/android/shell/app/src/main/cpp/include/cpython/complexobject.h,sha256=n44x1P2gQKW2fzZwhIqS_0cAqEFOFdC3OGLSIjYWI8c,909
199
+ pytron/platforms/android/shell/app/src/main/cpp/include/cpython/context.h,sha256=t8Ylf0zTqYtQSmMgSjd9RPt2h0Hb0zhAl4c1ATJKB4c,2950
200
+ pytron/platforms/android/shell/app/src/main/cpp/include/cpython/critical_section.h,sha256=cYs2_FJamIquirzP-H7f5IEy7R2aQE_c4caoPhlIcjU,6441
201
+ pytron/platforms/android/shell/app/src/main/cpp/include/cpython/descrobject.h,sha256=M9BEIpqj5p6C4TcaiQYT1AzC4ZN6FCBfT4RbAjAcj2I,1593
202
+ pytron/platforms/android/shell/app/src/main/cpp/include/cpython/dictobject.h,sha256=WCi_2mJLW_flwdlslklbONz6IOWZYNM2yqI5nyIXVgM,3952
203
+ pytron/platforms/android/shell/app/src/main/cpp/include/cpython/fileobject.h,sha256=Oi2H1vIfCof9BUzxKFcc-BMDFsEzhL2T4do85N1LPBI,652
204
+ pytron/platforms/android/shell/app/src/main/cpp/include/cpython/fileutils.h,sha256=Vsqv3DjS9RkLQ-DLZPQ3klckSdahJuDN78wodz6dqtM,386
205
+ pytron/platforms/android/shell/app/src/main/cpp/include/cpython/floatobject.h,sha256=8cU_W4fyIdtmAEuDaqL8lGKqRsL75GtBeo3cgDzi9YU,900
206
+ pytron/platforms/android/shell/app/src/main/cpp/include/cpython/frameobject.h,sha256=QODmnhyKuVClGu0gmFO1NMT3XXwQwYWe23gZfBWqiIs,1199
207
+ pytron/platforms/android/shell/app/src/main/cpp/include/cpython/funcobject.h,sha256=k3TcCIOEpnLL2UVZU85Sx2yBk5gUosD26tX-Tm6vfks,7131
208
+ pytron/platforms/android/shell/app/src/main/cpp/include/cpython/genobject.h,sha256=WBlCMCXjs2kfgupiOUvJ-XrFACks_8LkByUVKd359xQ,1541
209
+ pytron/platforms/android/shell/app/src/main/cpp/include/cpython/import.h,sha256=WVkPe4G9lNeNJNssaARsJkVk1ykwmvSQtgPhjJ0GLy0,899
210
+ pytron/platforms/android/shell/app/src/main/cpp/include/cpython/initconfig.h,sha256=DOQ9maFJBsrABB2FdXg9h7RBuN_QhYX0RF89DXuSAEQ,10060
211
+ pytron/platforms/android/shell/app/src/main/cpp/include/cpython/listobject.h,sha256=AdsIMEOjPmS5no2Kx9oYYgQqDlbiiZtYVmYuIID6_-k,1801
212
+ pytron/platforms/android/shell/app/src/main/cpp/include/cpython/lock.h,sha256=UtL-QrcZxFamLLZ1-6GLb8x-BuC8v95bxKAwFvDc1Lw,2072
213
+ pytron/platforms/android/shell/app/src/main/cpp/include/cpython/longintrepr.h,sha256=uj5cHi40zl7E9Gydpsf6UZ1HxzkvuY1h4yvG24z4zvw,6161
214
+ pytron/platforms/android/shell/app/src/main/cpp/include/cpython/longobject.h,sha256=BcF5A9nOqBgOR766LBnbmxV6H117r6JGDw5DZbzMtlI,3961
215
+ pytron/platforms/android/shell/app/src/main/cpp/include/cpython/memoryobject.h,sha256=95hMD-6AT_b3DkIYs8aTt5nISCh03ZLVBqzfnBE-Oj8,2223
216
+ pytron/platforms/android/shell/app/src/main/cpp/include/cpython/methodobject.h,sha256=W-ufO2iscu_kA6Gwo_u7FKVgakmihAucfp_yQ9gtebk,2276
217
+ pytron/platforms/android/shell/app/src/main/cpp/include/cpython/modsupport.h,sha256=DKJ-oy_ZUsdfhU6BThmDi43Njs-kyftyLCMbGFn3jFY,1042
218
+ pytron/platforms/android/shell/app/src/main/cpp/include/cpython/monitoring.h,sha256=PhattJx2EK_eX-my8nZHRGjOFRigvupXiqf0z4IxUqQ,8460
219
+ pytron/platforms/android/shell/app/src/main/cpp/include/cpython/object.h,sha256=sZ-pZfioH-vuNU2iUb6Lb2e_xxbXHtHQxfeSj1RCbAg,17381
220
+ pytron/platforms/android/shell/app/src/main/cpp/include/cpython/objimpl.h,sha256=ZZiePQfBMjvG6GupnydO5DeA6G4sEmykAs2tfORRcfs,3820
221
+ pytron/platforms/android/shell/app/src/main/cpp/include/cpython/odictobject.h,sha256=l9xiluiQRj_GmUJH6IXfZc1AJNwbBfrP3JhMN9ZGuRk,1311
222
+ pytron/platforms/android/shell/app/src/main/cpp/include/cpython/picklebufobject.h,sha256=cED7SEYilskD8vDSTStU4N5jz3US3PjTBIoMrffZT9A,848
223
+ pytron/platforms/android/shell/app/src/main/cpp/include/cpython/pthread_stubs.h,sha256=2rTd8Ml-g9swrOPm2jP6v-rpVFCDqCDvCw33r468N5I,3926
224
+ pytron/platforms/android/shell/app/src/main/cpp/include/cpython/pyatomic.h,sha256=usc4bXw1CJ9-dL7vdkcvMgu-FDR2UTlZ_ET-0qZt2Y8,17692
225
+ pytron/platforms/android/shell/app/src/main/cpp/include/cpython/pyatomic_gcc.h,sha256=VNOSwC_AbqxAhiBUaKS2acLXi2GNKmQ256pj-MK8TNc,21234
226
+ pytron/platforms/android/shell/app/src/main/cpp/include/cpython/pyatomic_msc.h,sha256=n4B0FBJ85IBy8hXf0UrBWLjtnWAJlf8dTFMql19zL8E,31289
227
+ pytron/platforms/android/shell/app/src/main/cpp/include/cpython/pyatomic_std.h,sha256=aikJKqjoYKWO1R9tOIpXzOnWHuNx0qv2uyXOFKftv4o,27959
228
+ pytron/platforms/android/shell/app/src/main/cpp/include/cpython/pyctype.h,sha256=ELXMvCEP0oMunDSEmjlS6Nt18AFq3YkYg1ix2mqPPbs,1387
229
+ pytron/platforms/android/shell/app/src/main/cpp/include/cpython/pydebug.h,sha256=g9cuhntPyayH79_LQcPTDsIPojn-anTRuFqpLh-NlQY,1413
230
+ pytron/platforms/android/shell/app/src/main/cpp/include/cpython/pyerrors.h,sha256=FvOPfoTjlhbBlHHNJ_db_URHpUsJrO5t2Loc-5vbQy8,2932
231
+ pytron/platforms/android/shell/app/src/main/cpp/include/cpython/pyfpe.h,sha256=6nv6fYkaC1Ny2LQKV9G0ZreCQpblw_jVCxp83ghEKbc,444
232
+ pytron/platforms/android/shell/app/src/main/cpp/include/cpython/pyframe.h,sha256=6qW-r-3cdPi2u0vs1GOYQlNL-7NOpdMNZ776MgvrNME,1947
233
+ pytron/platforms/android/shell/app/src/main/cpp/include/cpython/pyhash.h,sha256=DrgUPZCa9QvWucFFjH8Op4F65QuPti7WNiTcPgVzBWw,1545
234
+ pytron/platforms/android/shell/app/src/main/cpp/include/cpython/pylifecycle.h,sha256=kbbl7w2AS8eCNgyKgXwVhtJEknAlEsZ383puSgGXZRI,2729
235
+ pytron/platforms/android/shell/app/src/main/cpp/include/cpython/pymem.h,sha256=onwEjsnJBzP7oOJwOwleDFH2MbA6LFqoNwwUlKC5pcA,2843
236
+ pytron/platforms/android/shell/app/src/main/cpp/include/cpython/pystate.h,sha256=eeLPS9sEsm7MOTw7NiJw6paCBOYqK9u6Ml5QpvrpkfM,9400
237
+ pytron/platforms/android/shell/app/src/main/cpp/include/cpython/pystats.h,sha256=SaDgAR7tILmCwCOF2LpB_IkMJPHr4oweFdHn3TLsj_A,6472
238
+ pytron/platforms/android/shell/app/src/main/cpp/include/cpython/pythonrun.h,sha256=t3eOik3LnufsytPYyoKU8GjEnLSVtZQTvPy5Oi9ztQg,4327
239
+ pytron/platforms/android/shell/app/src/main/cpp/include/cpython/pythread.h,sha256=nXkpXfSofHGI7Ttx-FXAMSEOO0TsGgaAqHRY6UhJvz0,1510
240
+ pytron/platforms/android/shell/app/src/main/cpp/include/cpython/pytime.h,sha256=6p-v28stAnALrqKTxJM1ioViTSMy5Aw0NKTvqPcuF44,707
241
+ pytron/platforms/android/shell/app/src/main/cpp/include/cpython/setobject.h,sha256=3p7raQuVq-k6VhAN5QCqv7DCb0fsWu8cQFqsfpafXtQ,2046
242
+ pytron/platforms/android/shell/app/src/main/cpp/include/cpython/traceback.h,sha256=d8TjFGz09TNv_orKdSxHyYlG0ULkChZqBu3a8HoHJ7A,282
243
+ pytron/platforms/android/shell/app/src/main/cpp/include/cpython/tracemalloc.h,sha256=eR-c3xWQBYT2dmG_CKSnTUxQTm6UjJtJX8VP_05xhSQ,823
244
+ pytron/platforms/android/shell/app/src/main/cpp/include/cpython/tupleobject.h,sha256=yaMYIcZMGD8mX5mnRUdp-a2XMWFL0FFaM0oTZQG6k_4,1397
245
+ pytron/platforms/android/shell/app/src/main/cpp/include/cpython/unicodeobject.h,sha256=o_Xnw_Z5X7HweU_U5B3y_II8GnhE6C_pbMxCyU9jFGs,27627
246
+ pytron/platforms/android/shell/app/src/main/cpp/include/cpython/warnings.h,sha256=t1ii5CsMSX6oEUZPV5YD0U_DC1C9br4GTY0qfffivXY,564
247
+ pytron/platforms/android/shell/app/src/main/cpp/include/cpython/weakrefobject.h,sha256=LKD1XbB2MWSrAEOZluChV9z-U3jNVxfSrVaWYEiLq54,2368
248
+ pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_abstract.h,sha256=eygKD4UHr_nEMHk1f6be5elzZATXqqODaLsUQhPNmgc,1915
249
+ pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_asdl.h,sha256=sp2s4PhIScSiS8N0VSOjaRHNGSutfsb7SKuo-s_1HT4,3035
250
+ pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_ast.h,sha256=DRP4ORhFvzKp2oL_yRmYBiGUC6uWnCMxvTK5YikK13U,32283
251
+ pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_ast_state.h,sha256=Y_RILal1NkTz2heyLjdBL3udCSunP6TqP9ruIT_yod4,6870
252
+ pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_atexit.h,sha256=sLAZilzGkWfJWyZrQ-JlCaLPqeUHDsIvKdTJWHBbpbo,697
253
+ pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_audit.h,sha256=9bMgY6B9mKRitsH0uRxPqDGo2pR8f5E468_COhDHc3s,738
254
+ pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_backoff.h,sha256=VhrGRIZWenKlDx_XVFOzZhdnJyh5CGnuIEaOHrW7pog,3861
255
+ pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_bitutils.h,sha256=IoiO_u-jadKyNoer6JclVP9Rug2uIxLEGnKAKr9BEK0,6026
256
+ pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_blocks_output_buffer.h,sha256=2BzIbQ_baLf6aTQwKtqcQAMU2Ov_bZqsVw3mJmeggM4,8772
257
+ pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_brc.h,sha256=P2AZB6UoHYJ76D3vegOs6MNplFzO9_snedjL_DQ_1OU,2055
258
+ pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_bytes_methods.h,sha256=_F6_GO-3nFylasz3JaR2gBoyhe9QeJVCkkRP9gd_OyI,3933
259
+ pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_bytesobject.h,sha256=18Qm81RoUirtPb7Jxve6TOB7TzMOhmvfBebNhsDXjSU,4919
260
+ pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_c_array.h,sha256=4YJk22vDqnp6ennJ74auBDc9KVjTmKroBeIPNrcpSOw,971
261
+ pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_call.h,sha256=epw3W9lYkKJ6wM3ubvLyGZPq94wS5whFTMEiUIBkeiA,6179
262
+ pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_capsule.h,sha256=OOWZRoe6ZjkpzNedEK15081Yp0IiD-3PFQik2EU9iu0,397
263
+ pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_cell.h,sha256=TWJmSjcw2c8taVUjTs3Zbsie1TxnMpD53Ix75hiZ6vU,1714
264
+ pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_ceval.h,sha256=tUBvCKXYMg_calMNKEl3_KV1rite6Jf-xFWokgSRWk8,14902
265
+ pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_ceval_state.h,sha256=_OUrgwd1pN5j8rL6NV9h_iKojiFsOkhwsDvMEkjD4AU,1291
266
+ pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_code.h,sha256=i0ckhihfVf9d5-PpVI9zuxMp-TZiPxmPEpQT7XKhkqs,21055
267
+ pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_codecs.h,sha256=l4g-2GIQrWf8N2aNk0g7LMJeHAUJSU3JTRE8T5-RChk,2356
268
+ pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_compile.h,sha256=WL-n9Egi7ZZh6vC5BSMXB4Nsw3rN_73TRh6sT-AVWLY,8613
269
+ pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_complexobject.h,sha256=JRq6Xta54HZkIESbXesWTbAS5NqYRB9uLMhoeAazkAY,959
270
+ pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_condvar.h,sha256=aQ3o4cHTvMSvBmPtWeUM_7TVB0Yb4MWp3eVLOaYeFj4,2704
271
+ pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_context.h,sha256=TJ7hsX-A5XzI_SrD4uvxQdXaXpUgyLW5qAcWCXZLTp4,1105
272
+ pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_critical_section.h,sha256=y0nLtpcIuynzoMba0wWKUzNjgvtx2d8agkTQ1Qfo77Q,8039
273
+ pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_crossinterp.h,sha256=BIvIz9Qn8_F4QgGUloHZCQOH-xdko6a_EzxWRg1AsMg,13099
274
+ pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_crossinterp_data_registry.h,sha256=d3a_Ix0wMMhnAwqdzBHghd5Pcnqz-s_J66rapZbUlcw,1109
275
+ pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_debug_offsets.h,sha256=fI9sTwU7yw_XJcSQ1H5FOjVRwoBbnHKM42ChlOwNDfo,12616
276
+ pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_descrobject.h,sha256=f_OUw6AMjJZQBTVKNuruKNCxase2_anhmTptvomBqRY,543
277
+ pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_dict.h,sha256=CKBrHocQ2HqbutQHUyCxr7JEEpzi06VbP6KpBEYFnyw,14279
278
+ pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_dict_state.h,sha256=fj3bJHfrwEX19RSlDnBfvvIeIekge7FAC64jdLyKogE,515
279
+ pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_dtoa.h,sha256=evgz7n06N2GESoQwnjCvPCKFKwp43B8p1lmwq2qztPQ,865
280
+ pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_emscripten_signal.h,sha256=BaRFMQ_6WKoAgLFyb1xTnYarBqzTI7hqopJiaTRmvFQ,685
281
+ pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_emscripten_trampoline.h,sha256=VtNeISV1ay09MnltpO3Nh_yS0AxUkuJxmwOG3_LkhrA,2648
282
+ pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_exceptions.h,sha256=nO8sS_n5A7J5QuaQWA0nBFYhHKe6LpkthgBrxwwp098,900
283
+ pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_faulthandler.h,sha256=heJZQMV1vE1mdhAemHC5eA6rDDvI2p4BlnZFIvqGDBY,2266
284
+ pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_fileutils.h,sha256=jiF1LCCP-mnRQ4XyMSlh59gWZOSCa8A6g06DeMIGF5M,9199
285
+ pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_fileutils_windows.h,sha256=LOM2Uv8KlVA3rqz8-ncbas3OwP4I0wwqC6B8gqa7EfE,2713
286
+ pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_floatobject.h,sha256=OvSKGTX6-kUBJkesMC6oxvb8b1jOA_VepHeJuazpdrM,1219
287
+ pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_flowgraph.h,sha256=cfgVIdYFY-cPqcQx_ZSCrVo-NLo9NL4jJT-hW2xskeg,1750
288
+ pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_format.h,sha256=JTzHfm0RuiDSl4E-BkZQ-pZbNlPxUL2F-AW5TbXzqY0,480
289
+ pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_frame.h,sha256=Z0L2xqmJuRUMLznBUmOou-r3WMiPpQ5erWT-i4s7MWw,2084
290
+ pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_freelist.h,sha256=ANiu9gHegM8au3pFXd3BFLLZRcRwECl03kjOGoSJOBA,3086
291
+ pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_freelist_state.h,sha256=9rn83NLt60zJA9wp5pv4GHSkbmkNnivSWAE4u2xNqAw,2328
292
+ pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_function.h,sha256=VNH7yJwB-Zrgit9EuKJNz4rs2QYizyLLbJtOshvs3FA,1450
293
+ pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_gc.h,sha256=aYBvk4DZpdDmfQ9s9yT8x4yRO_FSfc0xIqmMJSR3O0c,13412
294
+ pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_genobject.h,sha256=pmW5nrjQscqDDY4Hy2lvNEK1OQmBqHKU4i8KADHG3tE,1201
295
+ pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_getopt.h,sha256=6TOTBntmtVewMA4FwQ7pBNS-VMrfshTFMoqSJa0ZlFI,490
296
+ pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_gil.h,sha256=IqUYQtkTbsPcooMXfmXDnpCAd9QRJm83p_eOotIEcTM,2196
297
+ pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_global_objects.h,sha256=yyUpEVBk9c4ooLd2cnhoECNaKPO0YQuv_-Q1cZMvtc8,781
298
+ pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_global_objects_fini_generated.h,sha256=VODiqz8zB4cBDUIRH98X--Fi9I0as9ysVgNeI1QWieA,120319
299
+ pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_global_strings.h,sha256=HKDgdN3XIk752pTH1Py4Vb581sMGwf8SwZX6X8nQ7us,28093
300
+ pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_hamt.h,sha256=VmcAHBUS1uZ5lURl2mK7pTVzuvjOCEJ9RCMvJe73oA0,3428
301
+ pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_hashtable.h,sha256=3pcQrCeYyTtXE3mIlmAsqj8ROd1qNttvSj2sD_zioOc,4361
302
+ pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_import.h,sha256=P8zAdEWqPOer6XvVMU_sr_W5llSE6Fw9tXDyvlu-oOE,4648
303
+ pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_importdl.h,sha256=v5u6sd-xhjLYSzyalFNq62m_qxKw4rR4MOyC8chieJ4,4055
304
+ pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_index_pool.h,sha256=D1zC-P3v3cICUgy66NqTvZ_FaHPlkEvxucGvWFb_AhQ,865
305
+ pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_initconfig.h,sha256=t6iBjhbiA9t8QAcRUzjrun60GhZ4CmlODGxIN_OYayc,6402
306
+ pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_instruction_sequence.h,sha256=504-X6lS30RZcK2PVe-Dhz_fnI3yTPRcqrS8pTx2Xyo,2639
307
+ pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_instruments.h,sha256=Nr_BYcumF3zFQ1aFsj1hSSEobvPp0NzEFO84oL2wS18,4367
308
+ pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_interp.h,sha256=qMYfH3X0EEj-khz6SdsYS_wwNmMASA-bdYLWBMKZ000,3426
309
+ pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_interp_structs.h,sha256=ioi85uWUfuUwfh6Ddvoxhvaq2PG6XA9hywujN0HxgJE,31825
310
+ pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_interpframe.h,sha256=5-TfI5mEVGtsjQQwNp_N6I4YvChKFEi_OwetNfe25pg,13210
311
+ pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_interpframe_structs.h,sha256=16znLB2hNGrKGfT6D7VaTgNWIX-N8lqDTnVA4kZy9PI,3466
312
+ pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_interpolation.h,sha256=QjfH60Q6WR45_jAcIjj1fmhsEjVsKBh87BuOZa43M04,668
313
+ pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_intrinsics.h,sha256=HIDkZGUw09drtmvJ83UwZy8h3aS5QEofN_-0rCW1Pas,1756
314
+ pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_jit.h,sha256=dWirqJFkwOmw8I4-orN_tO6wOuEWNJDYWMWE3Wkh1jw,616
315
+ pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_list.h,sha256=XRcmqdMl7IbVikTAWz6XdDaxNEhQlmeQkFWG4vKXjsI,2456
316
+ pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_llist.h,sha256=RMLzIhRtCb6QixkWCm6RtLmw0iZEgqXLcPJOKMcGum0,2420
317
+ pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_lock.h,sha256=xk8godmr6GjEd8g_HZC56wzN0Z0XTvrE23lbPE7x3nM,8609
318
+ pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_long.h,sha256=7kUXdCHNqKYC22s4ivH2SooS2lGp2sXkX2Ry3Q818uA,10339
319
+ pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_magic_number.h,sha256=u2LvYP-BUe8mnWFFXYbI8NDUAtMA4X3yJjgKdboqemY,17166
320
+ pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_memoryobject.h,sha256=qgF0K1xO05hwybFZJjKhlnciM3_-vUZeaWoZCkGjnaY,427
321
+ pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_mimalloc.h,sha256=It3bF89LzTSUm0Tuq_k8qL-0NbnVqg2hsvIS710OPK4,1637
322
+ pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_modsupport.h,sha256=2GtwpEFIjxK4btUU2vRUmWtuRVP3ANPQUcLf0LrpDjI,3041
323
+ pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_moduleobject.h,sha256=9mNvhGa_cCkZv4_xncaYct3HJzSPvXlzYQBRKwELcMs,1747
324
+ pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_namespace.h,sha256=9cCnCDW7J_zPg4y0QzEGjDeS4VNpJ_kFWyXSnzkegQA,435
325
+ pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_object.h,sha256=IjUy0KYOcKiNJQfs8QJ2ryaPfgUpAwmmWIkWYIGuWcQ,33098
326
+ pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_object_alloc.h,sha256=DmyOH3UfilsyNs6Jkb5ydoj1S7soxUfN5yHWyviE6qk,2176
327
+ pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_object_deferred.h,sha256=oStT9bDhtxRyv3AQ642xvJvtcP8bw5k2KXXwDZ3P1WE,756
328
+ pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_object_stack.h,sha256=mqicv3OZOA5EtE3ceQwadsqVcwFwOsZNdBG12j9OwOM,2327
329
+ pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_object_state.h,sha256=tgTtxAL4-8O4MynX215ezRHpYXC7uGqU9uXciBmXhCM,1054
330
+ pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_obmalloc.h,sha256=K06EotTLECQZfUes0MLSi5Dl9FLGj5OLzAFvNrC5C-Y,27418
331
+ pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_obmalloc_init.h,sha256=82b0PbQsb_yDxXdHGr9e6G57RRUraMMOeQ9ljZY2XaY,1935
332
+ pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_opcode_metadata.h,sha256=ZK7U3nZVILkD7p8GOdAEVz1ULyuks3LvvSQpWAXDstY,99887
333
+ pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_opcode_utils.h,sha256=Bkv1-LAk9L_jfNIWc40k1ppOCgl7ntGsgggGwYKwPMY,2730
334
+ pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_optimizer.h,sha256=fE7-8ylxKgXsVBo6-RDUFWK8dGmVIy5h4k3Ii5Iyvyo,9706
335
+ pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_parking_lot.h,sha256=D-gfDMOBN76f2vXX8qY4jtWVBiJUemimG5oW6-XeDTI,3351
336
+ pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_parser.h,sha256=Pyn5O7jzG49vB4ONiP3NWW8h4fphLE9WbHoj2dDu3kE,1821
337
+ pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_pathconfig.h,sha256=Kgq-T6cNli94kiaMm_FSyiFmk-O9HWf2OQxJ7s96HTA,658
338
+ pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_pyarena.h,sha256=jeyNAaum3rNz0tms5Q7sK6_Go3T66vhlkwNx6Mx3m7M,2862
339
+ pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_pyatomic_ft_wrappers.h,sha256=yUgaH4gIEcyxwEJOHRw_rvs8mZ_qL3ffxud8M4pQ6WE,8491
340
+ pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_pybuffer.h,sha256=E7KDsfdFR6y2USaYJKdK-lYJ44EPDE3yTjw7LdhmdeE,510
341
+ pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_pyerrors.h,sha256=bREOcVRE6eaTwH7wuw2_D_VgZ2PGadXBpYfqx0KNP90,5819
342
+ pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_pyhash.h,sha256=6h_RXJ2KQylHf_HFH-GRwFMdyUvoPr_B2fpgO2ndmuQ,2461
343
+ pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_pylifecycle.h,sha256=H-PBL_-ffRrcvmvQNuAnCS43c8In2CoBWYrqvPi4PZs,4529
344
+ pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_pymath.h,sha256=rdbpx6uju1GVIs7ws2gTUu5KBcLvXVBsRBxBg5vXq4U,8600
345
+ pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_pymem.h,sha256=PsB37iPWif5ufCMA0YoL8s4daMyddP-T_FQSiYe79qQ,5105
346
+ pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_pymem_init.h,sha256=SuELAhnzREiaJlKa84IxOHfKaGjmeJSAsI2F8Jtt0Kw,3520
347
+ pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_pystate.h,sha256=WOLtlkpSu5iV7RRdcrYnMJ3NnxwnZeTl-F-GIQtSgyQ,11951
348
+ pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_pystats.h,sha256=ETw1oub6Y-fYaihVdHzHgJjRT0iLNOvzLLHyxkv_vL4,420
349
+ pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_pythonrun.h,sha256=m1FXwYv6GwyQkbvYDDDmTtZe7_tyOYa76KHM4SECO7U,1742
350
+ pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_pythread.h,sha256=ZsZYw5BVfZMJo9qs-AZxrdd-6BYDV4K7KTprcM6vZ58,6099
351
+ pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_qsbr.h,sha256=5isLXjz1NuZinFn1PS8RDCPjey8qyv0pm6mUR_u_Sg8,5481
352
+ pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_range.h,sha256=gkxQI6hanBwt1Q_s9ELRLHspZuDnGi0pH28X9_2MKbw,346
353
+ pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_runtime.h,sha256=ff7e8UXRdihr92bpSwRnMFN9w4HhF1ekOnai2hymYmc,1838
354
+ pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_runtime_init.h,sha256=9x0FaHJrqFzeKGytkG2vMls5cmCnr22qjfll_LTGDDY,8251
355
+ pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_runtime_init_generated.h,sha256=dCd7ssg_-DBrBrTidBHNVl5whFMv1wzZEW3aMBGEFug,47880
356
+ pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_runtime_structs.h,sha256=fPTRj6AdlpiC1qVqbzErmt1DnJJCJuZQeXv7j9wVbTU,10027
357
+ pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_semaphore.h,sha256=PSP1rzUfe5DUEjMi6yk5CnnfYc874FW6Grb-mckCdmw,1731
358
+ pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_setobject.h,sha256=u0p6RzEgIqN2JMnf3yMqRt2Ggoe1YPkfNNgMO4zo1Yg,1019
359
+ pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_signal.h,sha256=BB3NkVFPYNNeCF8nSFEuPQJg7qBRjY48gz_moIYI8zs,2931
360
+ pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_sliceobject.h,sha256=n410KjAfZw1K0A_8ejRv7pz7J-Zoz_5dTB4PI3Tpbj8,369
361
+ pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_stackref.h,sha256=1TCNmC-NtxbJ9p65fWJfhludJKnE4bKBzA1iyP7huXk,23409
362
+ pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_stats.h,sha256=_H3gSveO_mtmu7BFDnxz6SeUtT5RbcHGzir98hPH0Jo,4525
363
+ pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_strhex.h,sha256=36QfGmlU4Y4DC24X1hsq2K1Uu05-uXJsv89ZqXlDbhM,1013
364
+ pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_structs.h,sha256=tZJFi7gn0z3eyrupPtMATT0LKR3XVqtmbXNj84V06C0,2186
365
+ pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_structseq.h,sha256=JWiMgDPhqvr_CBJvywupx9peMLSchQR8TiJPigJtg3c,963
366
+ pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_symtable.h,sha256=XwTrxf1zVVtrPQyVbhAE9oF4SppJWR8Qj2IV1Fpsh6o,8854
367
+ pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_sysmodule.h,sha256=tkHGPM045kMVTuGAcdlqnz630OmJDGF1YcgoUN7nWXw,1003
368
+ pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_template.h,sha256=GMVVwqaPeJR98sq-PPC97w7aFZz1Hbfx5R9E0hwD3M0,613
369
+ pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_time.h,sha256=mkZAhmCfFQ9hWYX0ERUks5FDGrSMV6qIHOR5IcChmeU,11840
370
+ pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_token.h,sha256=EmDvEoDQ8oOG3tZIh1kLsK19CuFFMsxAbZBkUxx1h5w,3144
371
+ pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_traceback.h,sha256=1bRMKFNrNhvlgFrkWp-Gw6MttmTDRH-GnHx8jxuz3XU,3711
372
+ pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_tracemalloc.h,sha256=2wJaKWfv2CNtr8K5xjNK4bjWxP91Ms-o3sSqPWc0QV0,4444
373
+ pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_tstate.h,sha256=dO1f4tcF6tXhak0Yx2NwsjJnuFFZPipnNJLKkfIfl2I,2735
374
+ pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_tuple.h,sha256=Em46Wb1YdjiX07sQbzaIgI-vPuASZMVyYJ-4278fc0s,2555
375
+ pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_typedefs.h,sha256=GdHVhgN4ctHxQKwpeH_2IDi1O0e94c49aCNlAILmA_s,353
376
+ pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_typeobject.h,sha256=dnBsF7-t3GZB_A2NlqGwm7YkGsgY1Kt15IkUgw7p9f8,5323
377
+ pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_typevarobject.h,sha256=U_VhChW-0w8SgziZHKgUeL9xwoy-efRW7YS1B7nSEhs,988
378
+ pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_ucnhash.h,sha256=TmEBipBSo124qn53XQjmSiTrf2qUhM0yWH69HIfDPQ0,958
379
+ pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_unicodeobject.h,sha256=2KWowQuh7cO23UEx_9_z3w4C3PJDsaEmW3uuisVuqeg,11759
380
+ pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_unicodeobject_generated.h,sha256=cZvIHAbwipoNDmmcHeRivJi_iGkcYHjTRCx7QigFHKM,138965
381
+ pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_unionobject.h,sha256=OHnBBNQD5MYZuko992vGQzy-rY38WsfRoHZWG9eJrxo,797
382
+ pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_uniqueid.h,sha256=ElP-P7CUufH4vuHuZQKYpJux9l0rutEfiiP4K7M2ewI,1992
383
+ pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_uop_ids.h,sha256=YPvVlzQljodModfS9ldScC3A6-y0U8iTmgWaF0GM_dY,11180
384
+ pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_uop_metadata.h,sha256=7WuhcHr8YOr7tMd5ptziawbCsLmY3GH9mm27C-4uSy8,48450
385
+ pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_warnings.h,sha256=DAGK2gjs6XEW4GanK5oo5oziZgV_XTxQ7s6LpSlvDsk,501
386
+ pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_weakref.h,sha256=zhEpvJwtBnhRmd0G7GhsOYgVUDUVGmcIBAeGpy0k5Go,3924
387
+ pytron/platforms/android/shell/app/src/main/cpp/include/internal/mimalloc/mimalloc.h,sha256=fE4vxVVyT-Z077ss_mQ0T6-ob4xD0i5IJjwz3QesfYE,36071
388
+ pytron/platforms/android/shell/app/src/main/cpp/include/internal/mimalloc/mimalloc/atomic.h,sha256=4bNo7daMHiPo_nTKdwXssp4eWa9MvpG5-p_8QEMhHIg,16798
389
+ pytron/platforms/android/shell/app/src/main/cpp/include/internal/mimalloc/mimalloc/internal.h,sha256=JwTj94MIp4dv4gRoU8BrFF3N_Atz3QB6B4xQ7Rn_3Gc,36856
390
+ pytron/platforms/android/shell/app/src/main/cpp/include/internal/mimalloc/mimalloc/prim.h,sha256=0lkHWCDpB0kR8kEziRP1dWtymh_ybupfUpG3CtYMuj8,14437
391
+ pytron/platforms/android/shell/app/src/main/cpp/include/internal/mimalloc/mimalloc/track.h,sha256=BzBh07DpRUmzxZuCwL-vnTKHFAkhfSA8y8r33AHar2s,5453
392
+ pytron/platforms/android/shell/app/src/main/cpp/include/internal/mimalloc/mimalloc/types.h,sha256=zdgLnWBAJFDnulIdCRweOXPxQhiR-BeRitMBgHUdey8,29886
393
+ pytron/platforms/android/shell/app/src/main/java/com/pytron/shell/MainActivity.kt,sha256=v0a8n7YPHagN73fnfToMeWbuT4puFurgbGRkXma4rk0,7829
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=4NTQ0KwHIUFcZmHpcTq0qw750LaHsAZXSgidzaWoHsI,201
398
+ pytron/platforms/darwin_ops/libs.py,sha256=A5sxobc80yxl_U944et5T5psn-9qyaXRGOUsb67MV4s,795
399
+ pytron/platforms/darwin_ops/system.py,sha256=d0KLuGF_yHS-gkJF4Nh7rEbCzGzdQ5dCnS64BD-_wn4,6061
400
+ pytron/platforms/darwin_ops/utils.py,sha256=PI33gkxeKaGmALwiBH_mN2I3bTIiGEeUGQLx2FgGHlg,2752
401
+ pytron/platforms/darwin_ops/webview.py,sha256=oS9i_IuB2BZpCqDhFB3u3JeKFDCOXPVAVfAT_Tp5a4E,161
402
+ pytron/platforms/darwin_ops/window.py,sha256=lwcDwbkQGsF2Pht8zhe-7LW81koRkWdJPOmF6-SREXs,2541
403
+ pytron/platforms/linux_ops/libs.py,sha256=2gOcDMjVUOpmAVxiqp9_6_YnD6MwtseVgCqSORt85v4,1006
404
+ pytron/platforms/linux_ops/system.py,sha256=0fbSbsQhTMFwKjtetECd_FGVdfxYZ6P0V2brt1ZyKac,10672
405
+ pytron/platforms/linux_ops/utils.py,sha256=sCtB3tWE9_uN7bAJ618vQ0W9RMn_nEz2v3GwK73-vlU,412
406
+ pytron/platforms/linux_ops/webview.py,sha256=oS9i_IuB2BZpCqDhFB3u3JeKFDCOXPVAVfAT_Tp5a4E,161
407
+ pytron/platforms/linux_ops/window.py,sha256=hfbL1f4Wc_dk6_g965l8qTtl9QGDvvnt7IEF2WnqZCM,2653
408
+ pytron/platforms/windows_ops/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
409
+ pytron/platforms/windows_ops/constants.py,sha256=wAuNwbghWeGqFdXNOTTM7I6SDM4jdpUTApWUOH8tZaI,3269
410
+ pytron/platforms/windows_ops/system.py,sha256=PxrVaeH9CbmbGQC9H2QCnrgtBuYvQLZxFkC7H-gJGaU,16600
411
+ pytron/platforms/windows_ops/utils.py,sha256=61mVrdWalqF8wru59RW_yTaL_hbO8vkugfVK-rfOv5Y,111
412
+ pytron/platforms/windows_ops/webview.py,sha256=oS9i_IuB2BZpCqDhFB3u3JeKFDCOXPVAVfAT_Tp5a4E,161
413
+ pytron/platforms/windows_ops/window.py,sha256=8Un4yD7zSCuJthUvCVAa1KS5PGWb3TEiEJ4MNnym-to,9980
414
+ pytron_kit-0.3.12.dist-info/licenses/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
415
+ pytron_kit-0.3.12.dist-info/METADATA,sha256=sWp813s2v4sftQmYfH3TN7beaGXaGUlGG-VvUTr3uxc,5089
416
+ pytron_kit-0.3.12.dist-info/WHEEL,sha256=dz0DxDMYV-j3z1-iVtMdkG5dB6mBMZtpEVs4n_jNV_s,112
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-macosx_11_0_universal2
5
+
@@ -0,0 +1,2 @@
1
+ [console_scripts]
2
+ pytron = pytron.cli:main