python-platform 0.1.1__py3-none-any.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 (344) hide show
  1. python_platform/__init__.py +445 -0
  2. python_platform/application/__init__.py +6 -0
  3. python_platform/application/build_spec.py +37 -0
  4. python_platform/application/builder.py +260 -0
  5. python_platform/application/composition.py +219 -0
  6. python_platform/application/runtime.py +546 -0
  7. python_platform/application/runtime_hooks.py +327 -0
  8. python_platform/application/state.py +216 -0
  9. python_platform/application_services/__init__.py +54 -0
  10. python_platform/application_services/catalog.py +500 -0
  11. python_platform/application_services/contracts.py +188 -0
  12. python_platform/application_services/dispatcher.py +423 -0
  13. python_platform/application_services/errors.py +89 -0
  14. python_platform/application_services/execution.py +199 -0
  15. python_platform/application_services/interceptors.py +44 -0
  16. python_platform/application_services/invocation.py +427 -0
  17. python_platform/application_services/policies.py +46 -0
  18. python_platform/application_services/seeding.py +72 -0
  19. python_platform/application_services/signature.py +49 -0
  20. python_platform/application_services/validation.py +84 -0
  21. python_platform/auditing/__init__.py +12 -0
  22. python_platform/auditing/contracts.py +39 -0
  23. python_platform/auditing/control.py +48 -0
  24. python_platform/auditing/sqlalchemy/__init__.py +6 -0
  25. python_platform/auditing/sqlalchemy/migrations/0001_platform_auditing.py +45 -0
  26. python_platform/auditing/sqlalchemy/migrations/__init__.py +1 -0
  27. python_platform/auditing/sqlalchemy/models.py +31 -0
  28. python_platform/auditing/sqlalchemy/module.py +32 -0
  29. python_platform/auditing/sqlalchemy/store.py +63 -0
  30. python_platform/authorization/__init__.py +38 -0
  31. python_platform/authorization/catalog.py +63 -0
  32. python_platform/authorization/contracts.py +241 -0
  33. python_platform/authorization/definition_discovery.py +81 -0
  34. python_platform/authorization/definitions.py +43 -0
  35. python_platform/authorization/errors.py +40 -0
  36. python_platform/background_execution/__init__.py +15 -0
  37. python_platform/background_execution/application.py +41 -0
  38. python_platform/background_execution/child.py +123 -0
  39. python_platform/background_execution/contracts.py +39 -0
  40. python_platform/background_execution/lifecycle.py +22 -0
  41. python_platform/background_execution/local.py +127 -0
  42. python_platform/background_execution/locks.py +31 -0
  43. python_platform/background_execution/management.py +17 -0
  44. python_platform/background_execution/module.py +10 -0
  45. python_platform/background_execution/permissions.py +14 -0
  46. python_platform/background_execution/processes.py +331 -0
  47. python_platform/background_jobs/__init__.py +31 -0
  48. python_platform/background_jobs/catalog.py +287 -0
  49. python_platform/background_jobs/contracts.py +202 -0
  50. python_platform/background_jobs/errors.py +28 -0
  51. python_platform/background_jobs/execution.py +201 -0
  52. python_platform/background_jobs/pgqueuer/UPSTREAM_LICENSE.txt +21 -0
  53. python_platform/background_jobs/pgqueuer/__init__.py +6 -0
  54. python_platform/background_jobs/pgqueuer/enqueue.py +82 -0
  55. python_platform/background_jobs/pgqueuer/migrations/0001_pgqueuer_1_3_2.py +63 -0
  56. python_platform/background_jobs/pgqueuer/migrations/__init__.py +1 -0
  57. python_platform/background_jobs/pgqueuer/module.py +102 -0
  58. python_platform/background_jobs/pgqueuer/options.py +70 -0
  59. python_platform/background_jobs/pgqueuer/runtime.py +479 -0
  60. python_platform/background_jobs/pgqueuer/sql/pgqueuer_1_3_2_install.sql +118 -0
  61. python_platform/background_jobs/pgqueuer/supervision.py +201 -0
  62. python_platform/background_workers/__init__.py +22 -0
  63. python_platform/background_workers/catalog.py +96 -0
  64. python_platform/background_workers/contracts.py +124 -0
  65. python_platform/background_workers/errors.py +20 -0
  66. python_platform/background_workers/execution.py +133 -0
  67. python_platform/background_workers/runtime.py +203 -0
  68. python_platform/caching/__init__.py +11 -0
  69. python_platform/caching/catalog.py +73 -0
  70. python_platform/caching/contracts.py +73 -0
  71. python_platform/caching/errors.py +20 -0
  72. python_platform/cli/__init__.py +87 -0
  73. python_platform/cli/errors.py +5 -0
  74. python_platform/cli/project.py +69 -0
  75. python_platform/cli/runtime.py +68 -0
  76. python_platform/configuration/__init__.py +21 -0
  77. python_platform/configuration/composition.py +65 -0
  78. python_platform/configuration/contracts.py +68 -0
  79. python_platform/configuration/dotenv_source.py +51 -0
  80. python_platform/configuration/environment_source.py +38 -0
  81. python_platform/configuration/immutability.py +124 -0
  82. python_platform/configuration/input_shape.py +58 -0
  83. python_platform/configuration/merge.py +103 -0
  84. python_platform/configuration/root.py +215 -0
  85. python_platform/configuration/sources.py +519 -0
  86. python_platform/configuration/values.py +427 -0
  87. python_platform/configuration/yaml_source.py +51 -0
  88. python_platform/developer_kit/__init__.py +1 -0
  89. python_platform/developer_kit/generation.py +182 -0
  90. python_platform/developer_kit/project_metadata.py +45 -0
  91. python_platform/developer_kit/source.py +53 -0
  92. python_platform/developer_kit/templates/module/cookiecutter.json +1 -0
  93. python_platform/developer_kit/templates/module/{{cookiecutter.module_name}}/__init__.py.jinja +1 -0
  94. python_platform/developer_kit/templates/module/{{cookiecutter.module_name}}/application/__init__.py.jinja +1 -0
  95. python_platform/developer_kit/templates/module/{{cookiecutter.module_name}}/application/cache.py.jinja +10 -0
  96. python_platform/developer_kit/templates/module/{{cookiecutter.module_name}}/application/events.py.jinja +24 -0
  97. python_platform/developer_kit/templates/module/{{cookiecutter.module_name}}/application/integration.py.jinja +46 -0
  98. python_platform/developer_kit/templates/module/{{cookiecutter.module_name}}/application/module.py.jinja +29 -0
  99. python_platform/developer_kit/templates/module/{{cookiecutter.module_name}}/application/options.py.jinja +8 -0
  100. python_platform/developer_kit/templates/module/{{cookiecutter.module_name}}/application/orders.py.jinja +81 -0
  101. python_platform/developer_kit/templates/module/{{cookiecutter.module_name}}/application/tasks.py.jinja +86 -0
  102. python_platform/developer_kit/templates/module/{{cookiecutter.module_name}}/application_contracts/__init__.py.jinja +1 -0
  103. python_platform/developer_kit/templates/module/{{cookiecutter.module_name}}/application_contracts/module.py.jinja +10 -0
  104. python_platform/developer_kit/templates/module/{{cookiecutter.module_name}}/application_contracts/orders.py.jinja +36 -0
  105. python_platform/developer_kit/templates/module/{{cookiecutter.module_name}}/domain/__init__.py.jinja +1 -0
  106. python_platform/developer_kit/templates/module/{{cookiecutter.module_name}}/domain/module.py.jinja +10 -0
  107. python_platform/developer_kit/templates/module/{{cookiecutter.module_name}}/domain/orders.py.jinja +57 -0
  108. python_platform/developer_kit/templates/module/{{cookiecutter.module_name}}/domain/repository.py.jinja +12 -0
  109. python_platform/developer_kit/templates/module/{{cookiecutter.module_name}}/domain/seeding.py.jinja +19 -0
  110. python_platform/developer_kit/templates/module/{{cookiecutter.module_name}}/domain/settings.py.jinja +16 -0
  111. python_platform/developer_kit/templates/module/{{cookiecutter.module_name}}/domain_shared/__init__.py.jinja +1 -0
  112. python_platform/developer_kit/templates/module/{{cookiecutter.module_name}}/domain_shared/definitions.py.jinja +24 -0
  113. python_platform/developer_kit/templates/module/{{cookiecutter.module_name}}/domain_shared/module.py.jinja +7 -0
  114. python_platform/developer_kit/templates/module/{{cookiecutter.module_name}}/domain_shared/permissions.py.jinja +15 -0
  115. python_platform/developer_kit/templates/module/{{cookiecutter.module_name}}/http_api/__init__.py.jinja +1 -0
  116. python_platform/developer_kit/templates/module/{{cookiecutter.module_name}}/http_api/files.py.jinja +74 -0
  117. python_platform/developer_kit/templates/module/{{cookiecutter.module_name}}/http_api/module.py.jinja +58 -0
  118. python_platform/developer_kit/templates/module/{{cookiecutter.module_name}}/http_api/realtime.py.jinja +37 -0
  119. python_platform/developer_kit/templates/module/{{cookiecutter.module_name}}/sqlalchemy/__init__.py.jinja +1 -0
  120. python_platform/developer_kit/templates/module/{{cookiecutter.module_name}}/sqlalchemy/migrations/__init__.py.jinja +1 -0
  121. python_platform/developer_kit/templates/module/{{cookiecutter.module_name}}/sqlalchemy/models.py.jinja +26 -0
  122. python_platform/developer_kit/templates/module/{{cookiecutter.module_name}}/sqlalchemy/module.py.jinja +32 -0
  123. python_platform/developer_kit/templates/module/{{cookiecutter.module_name}}/sqlalchemy/repository.py.jinja +49 -0
  124. python_platform/developer_kit/templates/module/{{cookiecutter.module_name}}/tests/test_domain.py.jinja +18 -0
  125. python_platform/developer_kit/templates/project/cookiecutter.json +6 -0
  126. python_platform/developer_kit/templates/project/{{cookiecutter.project_name}}/.dockerignore +8 -0
  127. python_platform/developer_kit/templates/project/{{cookiecutter.project_name}}/.env.jinja +13 -0
  128. python_platform/developer_kit/templates/project/{{cookiecutter.project_name}}/.gitignore +6 -0
  129. python_platform/developer_kit/templates/project/{{cookiecutter.project_name}}/.python-version +1 -0
  130. python_platform/developer_kit/templates/project/{{cookiecutter.project_name}}/Dockerfile +22 -0
  131. python_platform/developer_kit/templates/project/{{cookiecutter.project_name}}/README.md +86 -0
  132. python_platform/developer_kit/templates/project/{{cookiecutter.project_name}}/app.yaml.jinja +16 -0
  133. python_platform/developer_kit/templates/project/{{cookiecutter.project_name}}/compose.dev.yaml.jinja +24 -0
  134. python_platform/developer_kit/templates/project/{{cookiecutter.project_name}}/compose.production.yaml.jinja +13 -0
  135. python_platform/developer_kit/templates/project/{{cookiecutter.project_name}}/pyproject.toml.jinja +28 -0
  136. python_platform/developer_kit/templates/project/{{cookiecutter.project_name}}/src/host/__init__.py.jinja +1 -0
  137. python_platform/developer_kit/templates/project/{{cookiecutter.project_name}}/src/host/main.py.jinja +52 -0
  138. python_platform/developer_kit/templates/project/{{cookiecutter.project_name}}/src/host/module.py.jinja +38 -0
  139. python_platform/developer_kit/templates/project/{{cookiecutter.project_name}}/tests/conftest.py.jinja +8 -0
  140. python_platform/developer_kit/templates/project/{{cookiecutter.project_name}}/tests/host/test_http.py.jinja +101 -0
  141. python_platform/developer_kit/wiring.py +85 -0
  142. python_platform/diagnostics/__init__.py +23 -0
  143. python_platform/diagnostics/journal.py +174 -0
  144. python_platform/diagnostics/model.py +83 -0
  145. python_platform/diagnostics/source.py +25 -0
  146. python_platform/distributed_lock/__init__.py +6 -0
  147. python_platform/distributed_lock/contracts.py +20 -0
  148. python_platform/distributed_lock/options.py +19 -0
  149. python_platform/domain/__init__.py +13 -0
  150. python_platform/domain/aggregates.py +64 -0
  151. python_platform/domain/entities.py +33 -0
  152. python_platform/domain/errors.py +12 -0
  153. python_platform/domain/value_objects.py +31 -0
  154. python_platform/errors/__init__.py +75 -0
  155. python_platform/errors/base.py +13 -0
  156. python_platform/errors/business.py +53 -0
  157. python_platform/errors/configuration.py +119 -0
  158. python_platform/errors/diagnostics.py +12 -0
  159. python_platform/errors/lifecycle.py +164 -0
  160. python_platform/errors/modularity.py +100 -0
  161. python_platform/errors/services.py +100 -0
  162. python_platform/events/__init__.py +25 -0
  163. python_platform/events/aggregate.py +39 -0
  164. python_platform/events/catalog.py +136 -0
  165. python_platform/events/contracts.py +39 -0
  166. python_platform/events/contribution.py +128 -0
  167. python_platform/events/discovery.py +105 -0
  168. python_platform/events/errors.py +48 -0
  169. python_platform/events/runtime.py +192 -0
  170. python_platform/fastapi/__init__.py +49 -0
  171. python_platform/fastapi/action.py +175 -0
  172. python_platform/fastapi/adapter.py +381 -0
  173. python_platform/fastapi/application_services.py +647 -0
  174. python_platform/fastapi/background.py +42 -0
  175. python_platform/fastapi/contracts.py +278 -0
  176. python_platform/fastapi/errors.py +32 -0
  177. python_platform/fastapi/filters.py +111 -0
  178. python_platform/fastapi/health.py +44 -0
  179. python_platform/fastapi/http.py +55 -0
  180. python_platform/fastapi/http_router.py +212 -0
  181. python_platform/fastapi/manual_action.py +105 -0
  182. python_platform/fastapi/middleware.py +93 -0
  183. python_platform/fastapi/parameters.py +97 -0
  184. python_platform/fastapi/realtime/__init__.py +13 -0
  185. python_platform/fastapi/realtime/authentication.py +181 -0
  186. python_platform/fastapi/realtime/connection.py +166 -0
  187. python_platform/fastapi/realtime/module.py +41 -0
  188. python_platform/fastapi/realtime/options.py +50 -0
  189. python_platform/fastapi/realtime/runtime.py +423 -0
  190. python_platform/fastapi/request_context.py +244 -0
  191. python_platform/fastapi/route_integrity.py +88 -0
  192. python_platform/fastapi/routing.py +410 -0
  193. python_platform/fastapi/server.py +181 -0
  194. python_platform/fastapi/settings.py +40 -0
  195. python_platform/fastapi/tracing.py +62 -0
  196. python_platform/fastapi/transfer.py +128 -0
  197. python_platform/fastapi/upload_limits.py +63 -0
  198. python_platform/fastapi/uploads.py +94 -0
  199. python_platform/hosted_services/__init__.py +29 -0
  200. python_platform/hosted_services/bridge.py +420 -0
  201. python_platform/hosted_services/catalog.py +259 -0
  202. python_platform/hosted_services/contracts.py +55 -0
  203. python_platform/hosted_services/errors.py +53 -0
  204. python_platform/hosted_services/options.py +17 -0
  205. python_platform/hosted_services/runtime.py +267 -0
  206. python_platform/hosted_services/state.py +40 -0
  207. python_platform/hosting/__init__.py +4 -0
  208. python_platform/hosting/instance.py +40 -0
  209. python_platform/identity/__init__.py +73 -0
  210. python_platform/identity/application.py +287 -0
  211. python_platform/identity/contracts.py +283 -0
  212. python_platform/identity/errors.py +28 -0
  213. python_platform/identity/http_api.py +90 -0
  214. python_platform/identity/module.py +46 -0
  215. python_platform/identity/passwords.py +34 -0
  216. python_platform/identity/permissions.py +14 -0
  217. python_platform/identity/services.py +108 -0
  218. python_platform/identity/sqlalchemy/__init__.py +5 -0
  219. python_platform/identity/sqlalchemy/migrations/0001_platform_identity.py +151 -0
  220. python_platform/identity/sqlalchemy/migrations/0002_physical_delete.py +42 -0
  221. python_platform/identity/sqlalchemy/migrations/__init__.py +1 -0
  222. python_platform/identity/sqlalchemy/models.py +85 -0
  223. python_platform/identity/sqlalchemy/module.py +62 -0
  224. python_platform/identity/sqlalchemy/stores.py +526 -0
  225. python_platform/identity/tokens.py +106 -0
  226. python_platform/invocation/__init__.py +3 -0
  227. python_platform/invocation/callables.py +171 -0
  228. python_platform/invocation/contracts.py +33 -0
  229. python_platform/invocation/entries.py +54 -0
  230. python_platform/invocation/function_runtime.py +48 -0
  231. python_platform/invocation/interception.py +184 -0
  232. python_platform/lifecycle/__init__.py +25 -0
  233. python_platform/lifecycle/composition.py +35 -0
  234. python_platform/lifecycle/context.py +31 -0
  235. python_platform/lifecycle/runtime.py +43 -0
  236. python_platform/lifecycle/state.py +20 -0
  237. python_platform/modularity/__init__.py +15 -0
  238. python_platform/modularity/contracts.py +90 -0
  239. python_platform/modularity/discovery.py +143 -0
  240. python_platform/modularity/graph.py +334 -0
  241. python_platform/modularity/registry.py +100 -0
  242. python_platform/modularity/selection.py +16 -0
  243. python_platform/notifications/__init__.py +19 -0
  244. python_platform/notifications/catalog.py +46 -0
  245. python_platform/notifications/contracts.py +107 -0
  246. python_platform/observability/__init__.py +5 -0
  247. python_platform/observability/context.py +43 -0
  248. python_platform/observability/export.py +73 -0
  249. python_platform/observability/formatting.py +89 -0
  250. python_platform/observability/logging.py +118 -0
  251. python_platform/observability/options.py +45 -0
  252. python_platform/observability/tracing.py +80 -0
  253. python_platform/options/__init__.py +19 -0
  254. python_platform/options/aliases.py +331 -0
  255. python_platform/options/contribution.py +62 -0
  256. python_platform/options/immutability.py +48 -0
  257. python_platform/options/input_keys.py +214 -0
  258. python_platform/options/issues.py +335 -0
  259. python_platform/options/models.py +114 -0
  260. python_platform/options/registry.py +280 -0
  261. python_platform/options/schema.py +488 -0
  262. python_platform/options/validation.py +120 -0
  263. python_platform/py.typed +0 -0
  264. python_platform/realtime/__init__.py +12 -0
  265. python_platform/realtime/contracts.py +28 -0
  266. python_platform/realtime/diagnostics.py +37 -0
  267. python_platform/realtime/messages.py +113 -0
  268. python_platform/redis/__init__.py +6 -0
  269. python_platform/redis/distributed_lock.py +212 -0
  270. python_platform/redis/lease_lock.py +36 -0
  271. python_platform/redis/module.py +50 -0
  272. python_platform/redis/notification_runtime.py +182 -0
  273. python_platform/redis/notifications.py +25 -0
  274. python_platform/redis/options.py +35 -0
  275. python_platform/redis/runtime.py +116 -0
  276. python_platform/services/__init__.py +39 -0
  277. python_platform/services/application_bindings.py +221 -0
  278. python_platform/services/arbitration.py +381 -0
  279. python_platform/services/binding.py +102 -0
  280. python_platform/services/contribution.py +438 -0
  281. python_platform/services/convention.py +292 -0
  282. python_platform/services/convention_contracts.py +94 -0
  283. python_platform/services/exposure.py +23 -0
  284. python_platform/services/framework_provider.py +178 -0
  285. python_platform/services/native_graph.py +172 -0
  286. python_platform/services/provider.py +204 -0
  287. python_platform/services/registration.py +101 -0
  288. python_platform/services/runtime.py +298 -0
  289. python_platform/settings/__init__.py +30 -0
  290. python_platform/settings/application.py +95 -0
  291. python_platform/settings/binding.py +33 -0
  292. python_platform/settings/catalog.py +121 -0
  293. python_platform/settings/changes.py +14 -0
  294. python_platform/settings/contracts.py +115 -0
  295. python_platform/settings/definition_discovery.py +71 -0
  296. python_platform/settings/definitions.py +41 -0
  297. python_platform/settings/errors.py +22 -0
  298. python_platform/settings/handlers.py +43 -0
  299. python_platform/settings/management.py +57 -0
  300. python_platform/settings/manager.py +89 -0
  301. python_platform/settings/module.py +7 -0
  302. python_platform/settings/notifications.py +39 -0
  303. python_platform/settings/permissions.py +14 -0
  304. python_platform/settings/provider.py +74 -0
  305. python_platform/settings/refresh.py +140 -0
  306. python_platform/settings/refresh_module.py +45 -0
  307. python_platform/settings/sqlalchemy/__init__.py +5 -0
  308. python_platform/settings/sqlalchemy/migrations/0001_platform_settings.py +31 -0
  309. python_platform/settings/sqlalchemy/migrations/0002_physical_delete.py +32 -0
  310. python_platform/settings/sqlalchemy/migrations/0003_version_tokens.py +39 -0
  311. python_platform/settings/sqlalchemy/migrations/__init__.py +1 -0
  312. python_platform/settings/sqlalchemy/models.py +36 -0
  313. python_platform/settings/sqlalchemy/module.py +36 -0
  314. python_platform/settings/sqlalchemy/store.py +86 -0
  315. python_platform/settings/store.py +16 -0
  316. python_platform/settings/values.py +39 -0
  317. python_platform/sqlalchemy/__init__.py +51 -0
  318. python_platform/sqlalchemy/alembic_runtime/__init__.py +1 -0
  319. python_platform/sqlalchemy/alembic_runtime/env.py +27 -0
  320. python_platform/sqlalchemy/alembic_runtime/script.py.mako +14 -0
  321. python_platform/sqlalchemy/auditing.py +48 -0
  322. python_platform/sqlalchemy/errors.py +85 -0
  323. python_platform/sqlalchemy/metadata.py +538 -0
  324. python_platform/sqlalchemy/migration.py +346 -0
  325. python_platform/sqlalchemy/module.py +48 -0
  326. python_platform/sqlalchemy/module_migration.py +148 -0
  327. python_platform/sqlalchemy/options.py +66 -0
  328. python_platform/sqlalchemy/repository.py +33 -0
  329. python_platform/sqlalchemy/runtime.py +85 -0
  330. python_platform/sqlalchemy/session_provider.py +45 -0
  331. python_platform/sqlalchemy/unit_of_work.py +97 -0
  332. python_platform/testing/__init__.py +5 -0
  333. python_platform/testing/runtime.py +112 -0
  334. python_platform/unit_of_work/__init__.py +14 -0
  335. python_platform/unit_of_work/contracts.py +223 -0
  336. python_platform/unit_of_work/errors.py +27 -0
  337. python_platform/unit_of_work/manager.py +210 -0
  338. python_platform/unit_of_work/options.py +92 -0
  339. python_platform-0.1.1.dist-info/METADATA +122 -0
  340. python_platform-0.1.1.dist-info/RECORD +344 -0
  341. python_platform-0.1.1.dist-info/WHEEL +4 -0
  342. python_platform-0.1.1.dist-info/entry_points.txt +9 -0
  343. python_platform-0.1.1.dist-info/licenses/LICENSE +7 -0
  344. python_platform-0.1.1.dist-info/licenses/src/python_platform/background_jobs/pgqueuer/UPSTREAM_LICENSE.txt +21 -0
@@ -0,0 +1,344 @@
1
+ python_platform/__init__.py,sha256=7cCInVIwQntWuluAUZlGIWveEa_NcaVKFQqgP1sMYs8,11813
2
+ python_platform/application/__init__.py,sha256=RPe_lkegIRim7GcBnXyevOg5KM7bfUIO9YGsqcA0lXk,184
3
+ python_platform/application/build_spec.py,sha256=Udj1JIgP2oBMCUezmzWzOdjFYBCEE8OxwHSEaDqrMMo,1030
4
+ python_platform/application/builder.py,sha256=SFCupHc8KMFEBlGArnszmhmL5sUfOPxtmCm9g6lK9xE,11065
5
+ python_platform/application/composition.py,sha256=f8yu51Y8ccAMJl-mGqGyVy1XJHSnh451gTMc7R8RcXA,8567
6
+ python_platform/application/runtime.py,sha256=jVHQrOCAkNV_zVtfVAX_QLGVn7x2T3bmMTmYbHotCU8,21430
7
+ python_platform/application/runtime_hooks.py,sha256=RFlte6jMRmlla00ZGXqi4CBHJAJ7TI7GGZ_sv3V41dU,12240
8
+ python_platform/application/state.py,sha256=Ma64Rp0u3SpkzWJvad5G8StvFE_juXlzBRlFtmtVkIY,8575
9
+ python_platform/application_services/__init__.py,sha256=GP3gAjQv2bSn3oaSlTqUjOUgYwU0eMsk01mMBzY2xrA,1657
10
+ python_platform/application_services/catalog.py,sha256=C28vVisG1SNqEC7pL0yUug6OO8k8wMGJ2edQPsZ4dn4,20204
11
+ python_platform/application_services/contracts.py,sha256=TbN4O_IsFkLEleT5YzROJb-3tGorJLtTbG3DODmpyP8,7326
12
+ python_platform/application_services/dispatcher.py,sha256=Q50QbHSx_g_r7MRcHjS60AbrwwNjCYMfB_3MUKIoV2E,16613
13
+ python_platform/application_services/errors.py,sha256=jBR9zt8kRygNG7gUbZOe8dugCT3YR3iOV-DmuNX0znA,2970
14
+ python_platform/application_services/execution.py,sha256=hILpp8SL5yJbS7UAVc0pOoJtramtUrtuWpbTs4kVtFE,7264
15
+ python_platform/application_services/interceptors.py,sha256=ccKFVNg9lbnUHJpyJhjbPYAXIzLJYLJFjz0syE9R9hI,1133
16
+ python_platform/application_services/invocation.py,sha256=wc-J4HBMzguUFpSINGmmFrXFRxZ4zGvIQEBAzlaqdLk,15529
17
+ python_platform/application_services/policies.py,sha256=A6K-TgoMw8H6vz2un-kx11Zjnibjl7-yJh15uYCS0YQ,1641
18
+ python_platform/application_services/seeding.py,sha256=PwNdgTZJukWrBja5CPVtGzI86BsBkmqRWWyA3YtR3OI,2712
19
+ python_platform/application_services/signature.py,sha256=EfzIeOggbE25juu1j_cCpgGM-OouLHLtFxH8oIE8Xvs,2083
20
+ python_platform/application_services/validation.py,sha256=i4e6WIn6wbVOBgP4DgPxJJai2heCDYR7Td2g-Y_HqGU,2833
21
+ python_platform/auditing/__init__.py,sha256=299w-hyoCj50QNr-1FPq6G4NO8boiRDKTfcPcGLT5Ao,345
22
+ python_platform/auditing/contracts.py,sha256=QJbwm7MIcOPul7iU_zLx6Yi7UOkrfsYh-GqqBNpPgmw,978
23
+ python_platform/auditing/control.py,sha256=rl5riGb0nSwHDD4R0s0xWgx33mjgVbWuW22FU2toRP8,1312
24
+ python_platform/auditing/sqlalchemy/__init__.py,sha256=syQ0c6nOv9ToytGTPeDmWLhAG_E9O1KUNbDtks1yt8g,193
25
+ python_platform/auditing/sqlalchemy/migrations/0001_platform_auditing.py,sha256=XkgZcilns2HzJelwXZggPWsEpHDeDg1vvyKxtmo6tfA,1900
26
+ python_platform/auditing/sqlalchemy/migrations/__init__.py,sha256=cfiE5LRCJ70_i52h6q46ONcAu0oC_fpK5O8PwtoWhEk,42
27
+ python_platform/auditing/sqlalchemy/models.py,sha256=_B_1tIbjpklRgZaY-LwOy42mzWOD1o5RAhoADz9gWmg,1426
28
+ python_platform/auditing/sqlalchemy/module.py,sha256=I22jinCfx7jZRIDNf7kzjKbBG6tUi6yhGQMZYgXNYUE,1043
29
+ python_platform/auditing/sqlalchemy/store.py,sha256=RZn9N_kWG9oTyMa50FvSG6D_2lprIVj3kTrjAfCGMJ4,2278
30
+ python_platform/authorization/__init__.py,sha256=tato2XLKNVyvGagCHVo53CnhblSVJfiPb6n_UqsMqqU,982
31
+ python_platform/authorization/catalog.py,sha256=ul9iHLggH3uGXi3DwrzxVRqT9E_qXioQnarMpuhlcMc,2437
32
+ python_platform/authorization/contracts.py,sha256=WYfkBkUrfaDNxgsLwGi55UFCFmRLt_bNX9RAcCLx51w,9119
33
+ python_platform/authorization/definition_discovery.py,sha256=4NTEb4VGMuw573dmCOsWMxJWnhprl3YCJfTi6o0ZCVY,3337
34
+ python_platform/authorization/definitions.py,sha256=-vZM4ITjicnyOv5i6BCCTTiA3Bd0KFCXEocqxeokUAw,1488
35
+ python_platform/authorization/errors.py,sha256=P7HyqGtq6IFS917bs2YVZ2v0z8ZCkcs9jxQRYDyqvmE,1375
36
+ python_platform/background_execution/__init__.py,sha256=OzgTSMU6UxZBM8KJM2YzGqoeMLYHtZvpAjHLRsvcYuc,330
37
+ python_platform/background_execution/application.py,sha256=ShrvX-_bZO469GBX9Z4h237ilAXIcncebtnQs6DFA4k,1855
38
+ python_platform/background_execution/child.py,sha256=SZXPOpNvy83Byv5zznOmsjoWjUzphK6JF0S7nzatYh8,4656
39
+ python_platform/background_execution/contracts.py,sha256=1ZX9ukzEPNQQl5OFQl9T9Pbmrd6-QXGbUQvP_rfkc0c,895
40
+ python_platform/background_execution/lifecycle.py,sha256=b7J4nFY1WEeKgTL436BGwuhloHw2ktSwZNq3kIGF4uU,719
41
+ python_platform/background_execution/local.py,sha256=E01p23aWJ-xyYzTc2fSFW5sGgii4QdSynYDMquFAHBo,5235
42
+ python_platform/background_execution/locks.py,sha256=SkbODyTNGskb3UOuHNTJmMBVX_jtsHn7EJO3QlaJwwQ,1279
43
+ python_platform/background_execution/management.py,sha256=FmtuhU1glMXnQoYzn-w1F7GjUCVjhnW6ssACr4_tSeE,716
44
+ python_platform/background_execution/module.py,sha256=1MnypGEzfetnsfVwlCzVzB2CI7oCx5wqz13HoDjAQbk,307
45
+ python_platform/background_execution/permissions.py,sha256=63PomRO6Zb9z0ezn6ra6n8zVjbdFFsnzqpGJ_Xcm3AU,584
46
+ python_platform/background_execution/processes.py,sha256=q7fzwSgHDbTsSNWQvu4Rhz7Lb2AcnkNpbeYrhCU3TeE,13378
47
+ python_platform/background_jobs/__init__.py,sha256=DLPrkoSb7wXWmGZOAzFynmjvI7qtyKXpaCGTnU5FWBs,819
48
+ python_platform/background_jobs/catalog.py,sha256=KHNkJ3k-yGkP1eHEYSwq_nownKTWL097sYHwSZdWzXc,11402
49
+ python_platform/background_jobs/contracts.py,sha256=PzQUF8hhwkfttTzrzZQYLGMhkAfybnjgHBj0rK8ZHeQ,7418
50
+ python_platform/background_jobs/errors.py,sha256=DqxEYOjF6zePAajZDxWhCTA9TRMS0ZB0f5F0TMsGIMo,1002
51
+ python_platform/background_jobs/execution.py,sha256=AZvMv4fVUHeUPpenhyM34ZoLbD9llwINxvpKuHQPOVw,7080
52
+ python_platform/background_jobs/pgqueuer/UPSTREAM_LICENSE.txt,sha256=0lCGUd5Pke2Up1Kqn1kRnHcwLlBz60E8xvR7WL4k_kE,1066
53
+ python_platform/background_jobs/pgqueuer/__init__.py,sha256=n-JvhTn9cDVbJE553wD6GTSDZLF99nJ2766pBZRlrXk,246
54
+ python_platform/background_jobs/pgqueuer/enqueue.py,sha256=--PTvM48Iyyd0c1x76xoybgAwW5jHMLy4-c4_gJAJD8,3273
55
+ python_platform/background_jobs/pgqueuer/migrations/0001_pgqueuer_1_3_2.py,sha256=W5d9x_5Ub6fOxsWKyWwTc8Z89UDrUuVGIr-dUSPxqX4,2182
56
+ python_platform/background_jobs/pgqueuer/migrations/__init__.py,sha256=PIhnqwZXnEQ7msJi74mXM7Ej27Fy6J96Xaomu3h8yUo,52
57
+ python_platform/background_jobs/pgqueuer/module.py,sha256=vm3_WKCRbVqzsUnBF80JmcH_HXcIrovm1WGqMIeMpRs,4177
58
+ python_platform/background_jobs/pgqueuer/options.py,sha256=PU5ikwuhYg8zxtdzeOscWV4IE2Z4csNQvpejXsHRcTg,2857
59
+ python_platform/background_jobs/pgqueuer/runtime.py,sha256=DmqtVvK8oIE5gyg_KDEIml-VDYiROPWH0g6Hhbq7nEU,17504
60
+ python_platform/background_jobs/pgqueuer/sql/pgqueuer_1_3_2_install.sql,sha256=8IdufiXcsnwA91eOT1rE_iM7RdYt_jEGh6YaRcZ2O10,5305
61
+ python_platform/background_jobs/pgqueuer/supervision.py,sha256=cZO2XAudfiipPpcgNJLE41rneeqJQI7hZyl22ocnqCM,8063
62
+ python_platform/background_workers/__init__.py,sha256=tOMBBvihovf1NegDJx5H_yZ3x9SOO_DGaARdJ75X6Jk,647
63
+ python_platform/background_workers/catalog.py,sha256=vubVZefCGZhghsl5VdeO71xvdGsqo4ozz3hvBH7xA1E,3861
64
+ python_platform/background_workers/contracts.py,sha256=feVdBG9zk5yZPCrETIZ12C06QYFFYNuPlTWx1DdCBtA,4423
65
+ python_platform/background_workers/errors.py,sha256=sNPth84yM9fE77dr5V_SdAI8oqcPZu4eXqOhsDMqeaU,732
66
+ python_platform/background_workers/execution.py,sha256=wH0lJVclbgjYyewIG0oHboNBpQmcz9AMhNejp4TLhLQ,5495
67
+ python_platform/background_workers/runtime.py,sha256=una3Wqu9RS5fuonJSYFFeNZQkK4_4qNL1HbiRUVsnww,8658
68
+ python_platform/caching/__init__.py,sha256=SN6D6uEcekeIXZ1Ll7hwhggKNP-it1na2Ah5U3ZjIHM,294
69
+ python_platform/caching/catalog.py,sha256=IxNoW4p9ADm1l6kLu0etxWg_SZuUG5DBcu9uzoDCFSE,2820
70
+ python_platform/caching/contracts.py,sha256=GCsKPk-5oAIYUOnY3bfaKqdIwjHACg8NAor1RWHljZc,2574
71
+ python_platform/caching/errors.py,sha256=2FJkVqC_AUtzN9JEhXlHWR788phkvwbwOBMcRyNlBTA,698
72
+ python_platform/cli/__init__.py,sha256=I8Pl7KsIIMmxMwRicWwzDgFCEumDYAFct_gaQ4AWDgE,3172
73
+ python_platform/cli/errors.py,sha256=Kx0Vr029fWiIqP2sP-D41EXMOLB6RdVbgDvNIwOCwuw,131
74
+ python_platform/cli/project.py,sha256=skvCppG9JD-R_ccPxdX2Z35LVCKnllQ44fuAmcflguY,2551
75
+ python_platform/cli/runtime.py,sha256=t7mQX0LKyF1XPo0oJJpdLI9bcvtyGJ2nKEDtt8lVkQY,2406
76
+ python_platform/configuration/__init__.py,sha256=eSWGpeWl38hLZPWDo4zhpQ8YQsL0gvFQ9gHrOPv9Yfs,568
77
+ python_platform/configuration/composition.py,sha256=WAe3_KXbd3kj-m1gePW9eRxOcN8CBwBtq9HqKY64HyE,2230
78
+ python_platform/configuration/contracts.py,sha256=04vnMJ8j9NpFdfXEpIYcnO0iVLut8ZqWl45BbnkSCwQ,1625
79
+ python_platform/configuration/dotenv_source.py,sha256=X_H-N6u8DTBntWFKXGXD80LF6e6R2T6sNNMyQhNwk5w,2062
80
+ python_platform/configuration/environment_source.py,sha256=5DFYpLyOXpCkYT4WmNH-Hj-ehOjwQefx9ihHIlX3pj4,1570
81
+ python_platform/configuration/immutability.py,sha256=TRB2caTQtoDUA1bcQt9bPWBl-7u45f5vO30sRJQnKkc,5672
82
+ python_platform/configuration/input_shape.py,sha256=T97z95F2PQkvNN0PV5Iz1s19UvX1CZGvyV7Ojo7cRLY,2438
83
+ python_platform/configuration/merge.py,sha256=VE6vtvcyQu8rQaqGAQs23JQmhJFneq6cWd1SZCow1Bk,3702
84
+ python_platform/configuration/root.py,sha256=aF2ideF_Hz6N3cY_W1kvZDQRe1JGv8SeIC3-bxpYMrQ,7919
85
+ python_platform/configuration/sources.py,sha256=Xd7Sxk0umHS7h5SRq08NSWGhLmJ3lHVP6tyzmh1F7AA,19233
86
+ python_platform/configuration/values.py,sha256=4S8Ae2CRRekA9ge0ZxoMJcdJn3XqnF06E6DOaAZZuHc,14591
87
+ python_platform/configuration/yaml_source.py,sha256=hZhKftmip6rRQUwqQBfTi_d-UYthUqWPbL5dQUvb89Q,2016
88
+ python_platform/developer_kit/__init__.py,sha256=PWBBMijgV-eaks044Q9KoSkGJ6Nr1BGvyDJpEKLUMsw,76
89
+ python_platform/developer_kit/generation.py,sha256=WqgQKuBDJV6mMPGpXzDE-LbE-c4-qQN7KLaAD5GByTk,7474
90
+ python_platform/developer_kit/project_metadata.py,sha256=DkR_nwzIT8Gc2Q73ffDPbs-oJHfv-DyAFIwTnjFlWxs,2081
91
+ python_platform/developer_kit/source.py,sha256=JQOz4dYvtDNIuRoGmDObs9FoheDA5Sad3AZvMgCZmdQ,2047
92
+ python_platform/developer_kit/templates/module/cookiecutter.json,sha256=QD-atKc-M2SX40aznpd4yRxdVcokpG6B9CBuX3RkZFw,52
93
+ python_platform/developer_kit/templates/module/{{cookiecutter.module_name}}/__init__.py.jinja,sha256=byPOI4PKtQDi5IQa9tzZZEVYy5zGx9PJdBzPrgcxm64,89
94
+ python_platform/developer_kit/templates/module/{{cookiecutter.module_name}}/application/__init__.py.jinja,sha256=pm9_TqjN20deRELpopxK412O3mra0OZ6QdesPdcsaRU,90
95
+ python_platform/developer_kit/templates/module/{{cookiecutter.module_name}}/application/cache.py.jinja,sha256=yxYdqNICSkN7-NOtSlVHiIRbozYJ3tB_XuioG2w_LGY,349
96
+ python_platform/developer_kit/templates/module/{{cookiecutter.module_name}}/application/events.py.jinja,sha256=XKObIk2dc5KX4dkxxI-b-h7Z0zwC08Gpt4p_D37j-wI,1037
97
+ python_platform/developer_kit/templates/module/{{cookiecutter.module_name}}/application/integration.py.jinja,sha256=DkX1ElD4duyLzQJDZHVFej4X1gxLHE0Zc536Iz7H5zo,1650
98
+ python_platform/developer_kit/templates/module/{{cookiecutter.module_name}}/application/module.py.jinja,sha256=vVhV7C9-keESq3qKedCcLIvJ7wc2ETb4lDkBhWyhkUg,1479
99
+ python_platform/developer_kit/templates/module/{{cookiecutter.module_name}}/application/options.py.jinja,sha256=R-8_ljTl0NRLGPHHXeC3pDbU7sV_31b1Y3G9XgUFwNI,269
100
+ python_platform/developer_kit/templates/module/{{cookiecutter.module_name}}/application/orders.py.jinja,sha256=RNX6q680IXNQ-hmdlOixC9S4pH0vo3x4d4aMg9Aismo,3367
101
+ python_platform/developer_kit/templates/module/{{cookiecutter.module_name}}/application/tasks.py.jinja,sha256=Ri3OXL7wNg6UqCgL8o61T3-hSJyOYvDhzHllRtuiUmk,3022
102
+ python_platform/developer_kit/templates/module/{{cookiecutter.module_name}}/application_contracts/__init__.py.jinja,sha256=grSDmU4IKdRYZsqi56aEVvsgx92AYF2k3jlDzANqra4,51
103
+ python_platform/developer_kit/templates/module/{{cookiecutter.module_name}}/application_contracts/module.py.jinja,sha256=seOYG-mk9z-xh076BVICISR3671Vrlo1mLMEhTkObO4,380
104
+ python_platform/developer_kit/templates/module/{{cookiecutter.module_name}}/application_contracts/orders.py.jinja,sha256=zKUdMdgfdRknN8UJBh4mw9XBAIaSNHWIr0Pok5hVu0o,1178
105
+ python_platform/developer_kit/templates/module/{{cookiecutter.module_name}}/domain/__init__.py.jinja,sha256=m2rqZegGy5XHzGMUVk9vwVcjEF7TufveMAELuJLynnk,60
106
+ python_platform/developer_kit/templates/module/{{cookiecutter.module_name}}/domain/module.py.jinja,sha256=LMKYe3l1sIQrvxYNd_H5NERnuc5wJJ3RIn_DffsIuiA,415
107
+ python_platform/developer_kit/templates/module/{{cookiecutter.module_name}}/domain/orders.py.jinja,sha256=4PWk0EF9priQ8YY5mJPssqbaj5G-6e7cdEqnHNg4P38,1563
108
+ python_platform/developer_kit/templates/module/{{cookiecutter.module_name}}/domain/repository.py.jinja,sha256=FlZSDkxFQgLJeI08L7SpTu5mU0C5keSLQsFl_FbA4lI,348
109
+ python_platform/developer_kit/templates/module/{{cookiecutter.module_name}}/domain/seeding.py.jinja,sha256=fgIkp1CKaTw7ID0zUiRt_FkSp5Mkr4PThu37qcgKGho,736
110
+ python_platform/developer_kit/templates/module/{{cookiecutter.module_name}}/domain/settings.py.jinja,sha256=wYMpQyxjf2B81pT3Nxd9JF-0_aodRse9xGf6gpoRRSk,561
111
+ python_platform/developer_kit/templates/module/{{cookiecutter.module_name}}/domain_shared/__init__.py.jinja,sha256=LU6KHrXMq__7fxyg38mtvQcKT53lPyyZh5NdWOJco6I,64
112
+ python_platform/developer_kit/templates/module/{{cookiecutter.module_name}}/domain_shared/definitions.py.jinja,sha256=_OJCVO_sokd5bRQDBbI9y6Us304rsdqj0voxO7Ca78g,781
113
+ python_platform/developer_kit/templates/module/{{cookiecutter.module_name}}/domain_shared/module.py.jinja,sha256=HkGOLYTTIXnPfcfORaCcg4kW0nqgMA0I9Sg0nKE6ZTs,234
114
+ python_platform/developer_kit/templates/module/{{cookiecutter.module_name}}/domain_shared/permissions.py.jinja,sha256=GxjzvwJXpzW82KIX-l_4fuidYhrJ67b2PafPOyi68Zw,570
115
+ python_platform/developer_kit/templates/module/{{cookiecutter.module_name}}/http_api/__init__.py.jinja,sha256=0YILK1GtpKuf4icbuq3C9BhggZlv5MUD65FHMth6YG0,89
116
+ python_platform/developer_kit/templates/module/{{cookiecutter.module_name}}/http_api/files.py.jinja,sha256=aD1mgpF-ykD94HAVdkTfn1Oe7cIs3R6geoRbfBGNM3Y,2825
117
+ python_platform/developer_kit/templates/module/{{cookiecutter.module_name}}/http_api/module.py.jinja,sha256=MrWzDSmUAzlD8pwkUa_BVh6RN0PlKKS3YcqLt8DtfSQ,2442
118
+ python_platform/developer_kit/templates/module/{{cookiecutter.module_name}}/http_api/realtime.py.jinja,sha256=XMSS_5aFzOQkXoO3EmpZOhKHD_9-z2mekMLU6Bs4wZk,1309
119
+ python_platform/developer_kit/templates/module/{{cookiecutter.module_name}}/sqlalchemy/__init__.py.jinja,sha256=orK7ZIMzTjfc5ZcFnbqqAZwe3vc3LaB4_dCisIbuUZc,50
120
+ python_platform/developer_kit/templates/module/{{cookiecutter.module_name}}/sqlalchemy/migrations/__init__.py.jinja,sha256=0hZrMCuYxmIOnswE_bwvZNhraBFJacHvEA_SXFDOsDw,114
121
+ python_platform/developer_kit/templates/module/{{cookiecutter.module_name}}/sqlalchemy/models.py.jinja,sha256=5yEZa0PL8Yv7DKX4yWIF0W1gDjVcSLRh_PWNN_kVodo,1097
122
+ python_platform/developer_kit/templates/module/{{cookiecutter.module_name}}/sqlalchemy/module.py.jinja,sha256=iui_fSh0abYbvZ2jTCT8BQYMsCkDinydL170497uNwY,1249
123
+ python_platform/developer_kit/templates/module/{{cookiecutter.module_name}}/sqlalchemy/repository.py.jinja,sha256=EbnBOmTHmBMvZricSDhNLZa_sWk3jB8KiJ3KwJR5z9E,1913
124
+ python_platform/developer_kit/templates/module/{{cookiecutter.module_name}}/tests/test_domain.py.jinja,sha256=EOChz8ddGox0lU64laBFUMiSWXpOKb0gC51wXyOlUZs,635
125
+ python_platform/developer_kit/templates/project/cookiecutter.json,sha256=mG9LsUVZh-OiTJBdtqHM_buHxvURWLr3Ez5U1NyMZOI,291
126
+ python_platform/developer_kit/templates/project/{{cookiecutter.project_name}}/.dockerignore,sha256=4mTdPevEudegA5UucA_fKMh6QC_dm10xJRBDOHnKAEI,60
127
+ python_platform/developer_kit/templates/project/{{cookiecutter.project_name}}/.env.jinja,sha256=4BG8nYJwx9UNB7rMtc0AzuUO-e--P5nzP3p3KZspExA,717
128
+ python_platform/developer_kit/templates/project/{{cookiecutter.project_name}}/.gitignore,sha256=7YBurkcPEWqhIxnTgPJePU_5E7y1q0-EBHb5xSjU_LE,62
129
+ python_platform/developer_kit/templates/project/{{cookiecutter.project_name}}/.python-version,sha256=lN0hZ-3c-Wk_uFRrQasUfy9YJrXrdvSzYKhuHeXIXbY,34
130
+ python_platform/developer_kit/templates/project/{{cookiecutter.project_name}}/Dockerfile,sha256=2ODd4K4jJo6V24qN0Kx6-vS4YPFo2E-4sIZE5srYtA8,1168
131
+ python_platform/developer_kit/templates/project/{{cookiecutter.project_name}}/README.md,sha256=QmISR5JFzrU3_YizKyLyxpiRL6kwio-x7ej5fgH0x70,5285
132
+ python_platform/developer_kit/templates/project/{{cookiecutter.project_name}}/app.yaml.jinja,sha256=vqzF8WqJMLQMYEGdPAGbGcoCUETmWx1ZD3oxIS9APJ8,431
133
+ python_platform/developer_kit/templates/project/{{cookiecutter.project_name}}/compose.dev.yaml.jinja,sha256=SepkYTFmbbvjRT7G5kNf8h_JF_XN4Y179Hq0xhRQWaE,703
134
+ python_platform/developer_kit/templates/project/{{cookiecutter.project_name}}/compose.production.yaml.jinja,sha256=G6KSZkGdFqAFk-AlhXFuw8QzyYdHyPSRCUNcikVjE9I,580
135
+ python_platform/developer_kit/templates/project/{{cookiecutter.project_name}}/pyproject.toml.jinja,sha256=eD7HgaG2SWfXr3HFnViP1HTLMZN1MCUBUMhrDiuJjq8,980
136
+ python_platform/developer_kit/templates/project/{{cookiecutter.project_name}}/src/host/__init__.py.jinja,sha256=z1739XUOFBjw8CKMGcbcxXX3pPs8BEyRAaEC1-coU3U,72
137
+ python_platform/developer_kit/templates/project/{{cookiecutter.project_name}}/src/host/main.py.jinja,sha256=TQWjbF8LO-7EQgYi7TyP2REri-v7TrMmOvJafapQXvA,1800
138
+ python_platform/developer_kit/templates/project/{{cookiecutter.project_name}}/src/host/module.py.jinja,sha256=29x2czun2G3bsEhokTzKqe32VDgAR8DLrCZ4pYEsf8c,1775
139
+ python_platform/developer_kit/templates/project/{{cookiecutter.project_name}}/tests/conftest.py.jinja,sha256=I_SlSxioBsCFNJLM52iM-neYBJR71qOUn7C4dI9t-7I,149
140
+ python_platform/developer_kit/templates/project/{{cookiecutter.project_name}}/tests/host/test_http.py.jinja,sha256=AiZEFGFUUbCO04CWA1VQGOC9GjhVBuoNpB1fwJwcDX0,5080
141
+ python_platform/developer_kit/wiring.py,sha256=iaIEwzCS-qIP7O76Hf74rl6B9aZLac5KJxF3Qq4lDj0,3935
142
+ python_platform/diagnostics/__init__.py,sha256=HdgzjQqMJ_SUGKJc5EcQ5PL1rM4GcTeem-L0q1r7vjQ,455
143
+ python_platform/diagnostics/journal.py,sha256=Z_i3McKDmfl_WSn4DpxelEkSlP0CfOWUcT-rCDwhO84,5219
144
+ python_platform/diagnostics/model.py,sha256=sK_xvGGjJg4P4LbHSA1uzhzAAzHu_y_ok_MH18mNo_o,1895
145
+ python_platform/diagnostics/source.py,sha256=GEVjKJX35p-GAgBFmfqhjD2b-2V_oBLMcst0rCOSyPk,763
146
+ python_platform/distributed_lock/__init__.py,sha256=qsx7OVjeFJUMsfjL3vHwosoPV8F3hCqWkYXZlgSve0c,247
147
+ python_platform/distributed_lock/contracts.py,sha256=Tl7LUiSii__4GOnSdynWiiA7ed7GRrK2jzDgq7rGENU,742
148
+ python_platform/distributed_lock/options.py,sha256=nqoUPb_IG-aJOaYHfHjycQAq_8KCqVZML4wYEZwGuEk,757
149
+ python_platform/domain/__init__.py,sha256=Jj4cTLDIeurJVmXKOhC65tEKXcBNa_jpts_1WCEWGFc,322
150
+ python_platform/domain/aggregates.py,sha256=YQjjxws4hivk9cXykeYFnN21EVDWkloK-PfkuLwqKzQ,2326
151
+ python_platform/domain/entities.py,sha256=bNpc9GAX-ZnXvGkl_IE2BZAmUaYjA46KbcJYZOUU1bg,917
152
+ python_platform/domain/errors.py,sha256=wlOhSaCjFAc0-ZJytoSNt1Xhox20cVm3td_WgDRY3kc,378
153
+ python_platform/domain/value_objects.py,sha256=k3-CZPF759fJxn-Xoj3JsWvDtPMj_3IYfQRIQsYm6mA,1144
154
+ python_platform/errors/__init__.py,sha256=Nff_pgU5ioTRAS0MZXa74LrBx4-g-3Bpsr-6JK4WK7I,2238
155
+ python_platform/errors/base.py,sha256=5fGU5Z8gZWRqoYHPIP441fNrj84bOn09_Watuuoj4vA,392
156
+ python_platform/errors/business.py,sha256=gJ4P-A8mPrxkSD9fZu320rQ4MR8-mXPkJKpa5Ci3TQY,2039
157
+ python_platform/errors/configuration.py,sha256=SCsD4IjOSa_9-gBosLIRpU8DvIr8hPiua1Qpc1a0ztw,3882
158
+ python_platform/errors/diagnostics.py,sha256=2xv8fWqNenSVVMmZT8zEB91xb8Wi1O0qxFLFS29I71U,392
159
+ python_platform/errors/lifecycle.py,sha256=ofonZT7LwxfS7XejXMkFEwkrAeKyC0HBUz_yAL-u5m4,5501
160
+ python_platform/errors/modularity.py,sha256=JL243-yJ6OfHum1vkbq1CtP3Xrh2Mgv_qIaZxlVNIJg,2863
161
+ python_platform/errors/services.py,sha256=3Dbk51XflZ_r-nJWFi93siZ4vU2V9r9OtPOkce8RTZU,3137
162
+ python_platform/events/__init__.py,sha256=XnscrZjph2FwGSvei5ZjobchDnBI5u9ivhbsCi8xSTM,682
163
+ python_platform/events/aggregate.py,sha256=ZSdYx4FWklLm4HCBm9tbEz1y3988a6sfceA8HwfUeWI,1400
164
+ python_platform/events/catalog.py,sha256=jNpkxL8iCPin25oKU7ePz29jrH_uN3EscC7IlhNQgbk,5118
165
+ python_platform/events/contracts.py,sha256=DYbEcR8N21hW3ujSOlI_hwJ1-utk3QsAmjENdA0WA9E,1361
166
+ python_platform/events/contribution.py,sha256=Xn9JYJhC1Lm5tPGlDqYM6ubNzmbu6cKrTHMmfwiCFxQ,4209
167
+ python_platform/events/discovery.py,sha256=CdWW2yMAtigDUc1c6Jv3c3LfIeoQRZmzm7eUq9Vp0zU,4123
168
+ python_platform/events/errors.py,sha256=DA7J9VcpTt1sYSRjHY5In6ynC4I0yxrtOHwezb4MTwg,1765
169
+ python_platform/events/runtime.py,sha256=NR8abFc1ULUALPVYE6wIzVCRvnJPy9dGUgV8xvm77S8,6751
170
+ python_platform/fastapi/__init__.py,sha256=-C_L75ri-TONTeYUcQqjpws-8onjcPFNQR5cCYcCj5Y,1341
171
+ python_platform/fastapi/action.py,sha256=knR9H01BmYHP5WVRMV9r6abYS6uy2JYvotUyxLoOV0U,7133
172
+ python_platform/fastapi/adapter.py,sha256=VCwyHQnp2c5Nrzq9RKpNqy5Gvn5HMPBXET0p9OBAt64,15896
173
+ python_platform/fastapi/application_services.py,sha256=REkIAirDsaF2lAw_djdqnsbw9g5tZ1Yf5_3StbP3uRI,26493
174
+ python_platform/fastapi/background.py,sha256=gc3t2NWjP5ZuKHHF0HCX7jBSj_59pXdzr7tiGPUzMxA,1611
175
+ python_platform/fastapi/contracts.py,sha256=q-SqMQJu6OIeRtt8zQ2ytzzbTZjdOKwxU0GlnINA0uw,11114
176
+ python_platform/fastapi/errors.py,sha256=XPhxj-WyWQ2wj1q1JkalnyVi2UaOKHbFk_-RbMnS5Ok,984
177
+ python_platform/fastapi/filters.py,sha256=1gNoluxAP4BzfEsdaXNpJK9fTL4wpPRbBi-lNHoLywc,3949
178
+ python_platform/fastapi/health.py,sha256=hCbLVQJp30ewNB5845k1ysHFBIvS0YSp0aTV185YgJs,1309
179
+ python_platform/fastapi/http.py,sha256=QHvvMlMP5OkkLwiNwnWrGLunr1JIf74RfAks4lVJqis,1924
180
+ python_platform/fastapi/http_router.py,sha256=_NoytpuaGwxg9mmVh2dV8P6NhtIVUDMpFhrD0oOKXYo,9063
181
+ python_platform/fastapi/manual_action.py,sha256=1a8ErBQ6wz2mBUfuqp0xCcp7uk4hAFLw2eneg-u96lM,4269
182
+ python_platform/fastapi/middleware.py,sha256=uIT3KFyVPy-ruBvNzjANclqLp4RAx3X01F9_yN3JEMQ,3968
183
+ python_platform/fastapi/parameters.py,sha256=b2JUXZNEhNd3kHML_2eRAQfb0GzUxcopXQQzzfg4dAg,4499
184
+ python_platform/fastapi/realtime/__init__.py,sha256=-GtZxXilBiLP3-jQpRa7HPKOMLFNh1sWeV_bcP9iONo,360
185
+ python_platform/fastapi/realtime/authentication.py,sha256=_FBZiAfe0On-jvtemCqfTX8MrlBhsY-X5etcsuqmpcc,6909
186
+ python_platform/fastapi/realtime/connection.py,sha256=WTzcfJgqD4AGoQSapNFvhQtvbUMH02Rz8I54HJo1Dg4,6102
187
+ python_platform/fastapi/realtime/module.py,sha256=HwvGmiv9oeU9CbTEDbEo7cxtXyTm1WKHbTM5XIRF_W0,1456
188
+ python_platform/fastapi/realtime/options.py,sha256=5xiv2pgiKb2FG3asZp5Q1jPYiZf6JmzXhFyqRTFj-Gc,1963
189
+ python_platform/fastapi/realtime/runtime.py,sha256=Hkqo2s2tR7Wl_iDn0qYF6Pv4bMMz4sSQR0Dca0gk8G4,14691
190
+ python_platform/fastapi/request_context.py,sha256=LgF8LHuADCaBD6ahadEpnRISPVtf0npQdU-YXiXN8EY,10012
191
+ python_platform/fastapi/route_integrity.py,sha256=_tDeeE6XHbsgrA2i1m6Yz_I9NU_JVuYb1E3iMvbwMxE,3174
192
+ python_platform/fastapi/routing.py,sha256=_TTCGJ5WBovLUTgVGMIJEWIr_OERvqzzmfJA0f84sFI,15157
193
+ python_platform/fastapi/server.py,sha256=OIDZ_eV6o79P8CFto7fLYqLWzGzXh-RBzSemfg1Jc8k,6433
194
+ python_platform/fastapi/settings.py,sha256=AV4CgldKwgDBWhOSDi7ofpzyMEW_P5jWXCriKp_6shM,1456
195
+ python_platform/fastapi/tracing.py,sha256=oKdPbDAZ-VQUGCOcaNMIAQNwgi6OA2nOA8wffn9ZE70,2494
196
+ python_platform/fastapi/transfer.py,sha256=JnbqjFyW--q2lBJdEg66knqAVMXNczJ__2pFsuvcd9o,6189
197
+ python_platform/fastapi/upload_limits.py,sha256=uZQgXkVslj5ix2iaD_YeSJN4NBt96MMRu1gCuAOpzQw,1954
198
+ python_platform/fastapi/uploads.py,sha256=RSQ5UcAmWOuqeWgoRzjZ7Ys8a8xrLJDRlfD2VgGv0Oo,3834
199
+ python_platform/hosted_services/__init__.py,sha256=r9yz2PpCUgpxvZsv1WyVrzslvfYCcfmAEsFIlrxejx8,991
200
+ python_platform/hosted_services/bridge.py,sha256=9QjK34pT9HjhU9gyk7jYntOeufhN1sn9j7Y8gw4DPmg,14211
201
+ python_platform/hosted_services/catalog.py,sha256=dRvs7xDRDnkaAQPWJdKwS4TM-eINew834v9Gdpci010,9636
202
+ python_platform/hosted_services/contracts.py,sha256=5dpDYgIfKtLKv249tBgS5UzWIDvjVaNpiZ1OLolLHoY,1923
203
+ python_platform/hosted_services/errors.py,sha256=GKG7fEkSoW4ykUXmMHriNrhuIEKBlonlN_vkjIwWKAY,1949
204
+ python_platform/hosted_services/options.py,sha256=KiMZhzbgFlUhYdTbTccUHMfGHrnnXrn-_5Qf6PAfxlE,551
205
+ python_platform/hosted_services/runtime.py,sha256=4fQGTyC65i_im09sENe4WHJgVpIrE9lWRZ95Tmx74p0,10645
206
+ python_platform/hosted_services/state.py,sha256=7xWT_yNEoOS7Yv2ZPA8tUvl_AyQ86iLQxAEzlndgNb8,1511
207
+ python_platform/hosting/__init__.py,sha256=AaDzy2CUF9fKNuxpzXMYqQvxhY8iktuM5ZG-v3STeHA,239
208
+ python_platform/hosting/instance.py,sha256=M0f_uETrrFkqnebT1KXVMJgQXHLNwxGE9LKChjsNaiU,1576
209
+ python_platform/identity/__init__.py,sha256=dVdA_LR5ezS8D3-82p6AdmsugLlWCgCl0QQMhpe-gBQ,1805
210
+ python_platform/identity/application.py,sha256=AniaQZQyGsXX-25dISoeN43Es0odTm98E6sYCp2XCaQ,10435
211
+ python_platform/identity/contracts.py,sha256=uc_PwLnsSdHWJWeqJM_EYHMOlzH_QGUIRZ0jC3qI48Q,7882
212
+ python_platform/identity/errors.py,sha256=6sorp9LkGm6PNsYbd7tqHBPXTjXYeXQg8NDMpQAzyxA,1048
213
+ python_platform/identity/http_api.py,sha256=fMwwzJqEs_UJYeRdUpGRjtteO7OzCM4PQh67aNxUJGM,3388
214
+ python_platform/identity/module.py,sha256=moUuP9dHLK-fpLMhV2nLi7HRxydSx6aiVJTAIJplIA4,1537
215
+ python_platform/identity/passwords.py,sha256=SLQPUzLSOnn33tPnga33YPNYJ3zonHEdJh75jA2C7To,1104
216
+ python_platform/identity/permissions.py,sha256=vfzowu8FD9shhNC3kQ7xYAtT00HNLNn5u0d29zRthZ0,597
217
+ python_platform/identity/services.py,sha256=n62OSk13xfbC4hg_3VtKLozEQATRFdlowQrdEmWqxb4,3820
218
+ python_platform/identity/sqlalchemy/__init__.py,sha256=q-Y-hevtLH-8rNp_uGDNB8WmA_vsm5FDFiyoynLaxBM,140
219
+ python_platform/identity/sqlalchemy/migrations/0001_platform_identity.py,sha256=zDmdD0MuTwaq2_l6-XvPpE2PjQGA9sMXQpAtDZ9tb7Q,5588
220
+ python_platform/identity/sqlalchemy/migrations/0002_physical_delete.py,sha256=oIA6az7VLdtDEqiSKq25GGeTiPl0FtD1M4BLW6yozkI,1350
221
+ python_platform/identity/sqlalchemy/migrations/__init__.py,sha256=_DfByWUWyZtcAZND3Yv2O5Rh_cCQuwg9PzMnStf1lv0,42
222
+ python_platform/identity/sqlalchemy/models.py,sha256=-pf-g0qTKA-sFWJ9byawVMEOrAFMrUG_kvGYnozomj0,3330
223
+ python_platform/identity/sqlalchemy/module.py,sha256=bltJAy481f2C90umqk7DviyX0bxdhVvILm6V_Q7gY6M,1824
224
+ python_platform/identity/sqlalchemy/stores.py,sha256=7iHozyBW-DgHBauPRA_dhhSNCzpCQXmBiDO7NHTH2Ck,20296
225
+ python_platform/identity/tokens.py,sha256=-uzO_x_KzlIzlpZJmBVU40uHx1pHHaNXCPdFVrBusQQ,3486
226
+ python_platform/invocation/__init__.py,sha256=AsJHV0LS2mpvY9XLeVnCrVWa2p7z-WiqL5zDBjxAxC0,146
227
+ python_platform/invocation/callables.py,sha256=Gc5lRacdsxzBnYa7jhDt6VPFi4j4Q4DADRtyo0p1_9c,6718
228
+ python_platform/invocation/contracts.py,sha256=VxT-kj4v90cq1yUx9lTs-enDeqzofRG5pecPqiazcWE,908
229
+ python_platform/invocation/entries.py,sha256=mGWlL-WBCphZECLGuDAjHN2GV8VugjuxjuGsAg3vmHQ,2086
230
+ python_platform/invocation/function_runtime.py,sha256=isBRrje4mvaN-SMPj8CJ6UPmaO3RYvCqdTAUiFyvE04,1961
231
+ python_platform/invocation/interception.py,sha256=cG8qDnVVaOPZArMn1mBFDrjHxDCWAYBOIOZIztvTXKU,6964
232
+ python_platform/lifecycle/__init__.py,sha256=4esYcdXYxZz8XsvWc0AKVWPeIRMNcq1fwfOM7o0qRrs,674
233
+ python_platform/lifecycle/composition.py,sha256=dorqz3OSARDYFaroelh4A9dc_FYhoWdsfQpQtQ_CMSA,1042
234
+ python_platform/lifecycle/context.py,sha256=GfWBjveXbmVLWmQsRc77p5zsUcOCN2MyEV770x855pE,907
235
+ python_platform/lifecycle/runtime.py,sha256=8itu1qc-TKYwfQpihEJevUyrsijTxhak15o7qGG-yzI,1166
236
+ python_platform/lifecycle/state.py,sha256=chxUojM1d3s-cu7mr_gWV-kFu5A-S6ANlKBQ_Pq-0GA,501
237
+ python_platform/modularity/__init__.py,sha256=0GnSw98fN4IZaO9G826P8jMkPa2dYHYESOR0g_sHZG4,439
238
+ python_platform/modularity/contracts.py,sha256=whWDVv2d0FiIdD2CskQTMcpRCvSKENQNSrbEMIu4hcs,2921
239
+ python_platform/modularity/discovery.py,sha256=MFueNjxQZ_BCs-s3mDzNZSCAKKkFP2c-LrhD80_jtmo,4768
240
+ python_platform/modularity/graph.py,sha256=11Xffr4upfzVDlE-QOQJ5SmOyipTj_s0w5zolDrkjgU,13704
241
+ python_platform/modularity/registry.py,sha256=eyvceOf6STnON84D_bvk7S_VhcAJPoqQbaLtsOw6NZk,3535
242
+ python_platform/modularity/selection.py,sha256=dhxUZsnGa7KiLVDKUeKhAcId0GHx555bfZ3_OAUwIyQ,611
243
+ python_platform/notifications/__init__.py,sha256=l6KIjpN-uRUlu3ayM0zzuPjwunMWDo3SlrcYNHrW2dA,465
244
+ python_platform/notifications/catalog.py,sha256=xMJ3u08sTtHeJoLksYnoPqPTC_TTkiAVuybMUeyv148,1910
245
+ python_platform/notifications/contracts.py,sha256=xffd4yXvBBSN_xyacDLdBBkb2n8fbpvyLFN_s9bxJWo,3677
246
+ python_platform/observability/__init__.py,sha256=Qg_2CPs0MTexfNvu9KvD0K59T-_9r_K3AWHe6bWKgwI,193
247
+ python_platform/observability/context.py,sha256=GOXpe34Dt46h3mZ7qrm2t9NWYGZb1gMpr8EsJY4N-PY,1546
248
+ python_platform/observability/export.py,sha256=HitQCY3b7n1kIyk4tI7GuVAthhX5fAJUnRdqfQrOOT4,2639
249
+ python_platform/observability/formatting.py,sha256=72WSSYTNhKMEn7NjFyih8ekFFUxYfS0txXw1UTHU5xY,3352
250
+ python_platform/observability/logging.py,sha256=yBVPE3mdFEAUFWsWNmr_4kIuabrdeAkqJSUu8PCCOZw,4311
251
+ python_platform/observability/options.py,sha256=LHE_EWw6TKHGqPZKzJIvDJS5l5Fb8kTbzmwUl19diGw,1768
252
+ python_platform/observability/tracing.py,sha256=G2Lx6LkrH6ZsZd55mOeTSI_SunSSpW3naL6vVUJ-keE,3627
253
+ python_platform/options/__init__.py,sha256=F7hZTxaKdNeDpQ32BxXM84xL81GqfAfAdQnjY2DDThI,385
254
+ python_platform/options/aliases.py,sha256=xZKF_BfY4VHxxLHppJM7InQPo-vGXKFYro78pinXC5g,10210
255
+ python_platform/options/contribution.py,sha256=Cpan2HfGZoVpOB4f63JUIhqzFdUncRkqsg30dmsUi8Y,1893
256
+ python_platform/options/immutability.py,sha256=eZttcDu7hjVGSohmpbH-SSgWSdjyY2BnBO9T9fWsTuI,1558
257
+ python_platform/options/input_keys.py,sha256=wLUydsbJOb03ycL77YSCww8JKDTdbZMfzhLgw1YnGrQ,8175
258
+ python_platform/options/issues.py,sha256=WYOxfmgL3czn4T5Z0lz5JDHejJrGrWR9EEHmZRePrAQ,10914
259
+ python_platform/options/models.py,sha256=VDvb3DddkTDtgH9Atkk0qV9rZKzFcwUjs4WU2LclhEo,3264
260
+ python_platform/options/registry.py,sha256=jQ3Put54fNf0n-y6rpkz92lQq8eH_5k7LqDmFuBvj0M,10651
261
+ python_platform/options/schema.py,sha256=hiNDFzZR2qKU_hUN4WXMXA_FF77O6eg4ikDX-4fYvZs,17911
262
+ python_platform/options/validation.py,sha256=IC4kvB3tK-tUGq20rMBCYNvUVXqU_Y3dNzx4IBhj2V4,4830
263
+ python_platform/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
264
+ python_platform/realtime/__init__.py,sha256=TKAtNqxpH43_Tteykf0-Apw919rNPGe_gWKnt6nUw8Q,318
265
+ python_platform/realtime/contracts.py,sha256=GBGvpuGYYf6GU4wVaBLv5smbOv1szLnEJY50SSAvn7E,711
266
+ python_platform/realtime/diagnostics.py,sha256=cql7zeKHZdWktqY82VMMzYpSynY1MWdffofhhp4I148,1455
267
+ python_platform/realtime/messages.py,sha256=8OvSBs9SkeAsqbZQfGr_qrEchHh1sahxHMbCDHuPlNU,4442
268
+ python_platform/redis/__init__.py,sha256=lhqhQO1tMeGAOuHXDYl-vY10ashvs1OfKfhU45ybelE,267
269
+ python_platform/redis/distributed_lock.py,sha256=Dwn_OmByzzi3S84wRMM2vKIkzrAPqbMwQ8QEHeFjZ8I,9214
270
+ python_platform/redis/lease_lock.py,sha256=l04gDtFdLYaWqiatX_f3Gten86HVa6OtLfl_BngJ5JE,1140
271
+ python_platform/redis/module.py,sha256=E97HVxd6o9DNw9LWrkdAeAkfNQ140JWC4kCUo_O77wg,1969
272
+ python_platform/redis/notification_runtime.py,sha256=he808WhYOciqgQq34oMcoFoaT3rdnugPHa1TlQsNQXc,7435
273
+ python_platform/redis/notifications.py,sha256=FLf6d4vYepiUvFgIbup6joex6HhjfCZEYtD7XBZXWrI,995
274
+ python_platform/redis/options.py,sha256=c-Sxyf504Bpd1nj-p1GVam9c9qsnM-0q_wRO5xKZ3g0,1070
275
+ python_platform/redis/runtime.py,sha256=rbn_RkksDCpbAyz_74XO-Hn_CPlYsl2uhk43YKwXjBc,3898
276
+ python_platform/services/__init__.py,sha256=bovtsYExT-o5R3fdDw2t01_4I4F4bpmY0qU_kUsVqUw,951
277
+ python_platform/services/application_bindings.py,sha256=a0GKHduTiZzk1vLbF3tJrvOX8ftR-DRMvIP5lcXAQkI,9133
278
+ python_platform/services/arbitration.py,sha256=IQZdesC7x8SLHd4fq_cZw-JR8oD2mjNdvOMyBg7u90s,15461
279
+ python_platform/services/binding.py,sha256=gL5S-C04_fe-WX3QBY_9wskmZi4SxAHN5PfPMEBcZj0,3945
280
+ python_platform/services/contribution.py,sha256=aKhIXd8k5BvmX6TuzCL_YH8knKnln1_ro-jJcZCK9fI,14081
281
+ python_platform/services/convention.py,sha256=5zuTQuX9ERjUSviH-EknwblqZ1RhxzqXrrWSo9gqjMg,11714
282
+ python_platform/services/convention_contracts.py,sha256=1DFN3SL8VfvDpVuiNIlHchZGrNk1ffEHoylYxMTV97w,3003
283
+ python_platform/services/exposure.py,sha256=z3FofcVRF5CPsn5qNVgHUrLw-KrF8DInqqQ7saHGRMQ,910
284
+ python_platform/services/framework_provider.py,sha256=Sm4RllSnooUD_xBSOnsvkTU1XsXmm-cUIfyjMhmXI4E,7110
285
+ python_platform/services/native_graph.py,sha256=MWOE872o5-opunn4ZOOLoH8oH2xc1J9mUnmsTqzQxTM,6335
286
+ python_platform/services/provider.py,sha256=FiIFbYXcC5wZCkxnjWC4-c28_pgFbdAQZryXRgzz2_Q,7983
287
+ python_platform/services/registration.py,sha256=AsvhVv_szq8TcaXdUMvOY6fNNp85D9oJ3NmtI9zJKKA,2914
288
+ python_platform/services/runtime.py,sha256=OLQFivm11pi-AwnfRJ_15M7fk5zZ0YFBwKwPNj405KA,11965
289
+ python_platform/settings/__init__.py,sha256=5Ikxnl_nT9l_WDuqW916hsvVlO9t_vCjR9OIvvJR8lI,1034
290
+ python_platform/settings/application.py,sha256=9J7Q74Vr6QXJ2ddWU7-MFpwdjUXW-ZGI1Py_R93mAsM,3775
291
+ python_platform/settings/binding.py,sha256=1a-AzTLwCTU6zQ85rYBJrQE63_b7BwFf9UWbMhOfJrQ,962
292
+ python_platform/settings/catalog.py,sha256=sUKev6BdnoAsnAO47jNWfAtcF99vP0Scsks7m5OdQEA,4840
293
+ python_platform/settings/changes.py,sha256=zpHhCJY83s-KIs7NkjQAmIxzY7cJfT8FD4A08gF9NfE,367
294
+ python_platform/settings/contracts.py,sha256=E70lLiFC5G7XoEpmf3rsoW5BnPhzajm-eri0vzn0xuY,4428
295
+ python_platform/settings/definition_discovery.py,sha256=zHN3-coqzdEb--mecv00v7ifWzzCfJRZ-BrFcdVx4u4,3002
296
+ python_platform/settings/definitions.py,sha256=TMjXCvlEQpm_dxzuIJZcPCJ5WoScoGM1aO0h6Nlvvow,1508
297
+ python_platform/settings/errors.py,sha256=ZcU1nMB44_Rq9Wl5bw83s3Y066LxSLrFqOW_gG6ViS4,836
298
+ python_platform/settings/handlers.py,sha256=A0GWDKRXASlCoWm_Wduul0thAv4xW4SG305KXd6wY-4,1369
299
+ python_platform/settings/management.py,sha256=dJhyZYfNA5Qsup9yt2dKOrIwGq3OnNkDxskJniBV3BI,1656
300
+ python_platform/settings/manager.py,sha256=VO-vozAtDvmAGgMQPMqktgqLsgFNXvn0GCDsBAANPRo,4185
301
+ python_platform/settings/module.py,sha256=ZzkTvwwUHfJSoueNFIMkiE5-Ad81bgV7ihj30-e48jU,249
302
+ python_platform/settings/notifications.py,sha256=jnKfILIhXOECIO-6urEtXuRmv2IB1QSK0DfnP2Cl3kw,1535
303
+ python_platform/settings/permissions.py,sha256=2nPyZOZ9G-4mSCIqwNI0C9WUBhP0ZwqNjljP3XZD3PE,553
304
+ python_platform/settings/provider.py,sha256=plT4x6UjBGn9B6-OmZYKswdto3NrE6Ib1lsyc1VUKoA,2871
305
+ python_platform/settings/refresh.py,sha256=XX2qO9ssrOQIKGcDYUZI8KdMeM960W5tWhoD42ecdUE,5426
306
+ python_platform/settings/refresh_module.py,sha256=De3vw4t3A4SpBV6ReEzw8FRsoeFQlWti1ptgCyxT99Q,1961
307
+ python_platform/settings/sqlalchemy/__init__.py,sha256=G-S-sSsxwfjZxr0mVAyXUBG0SIxC3ZCMtrdpMsZ14YM,158
308
+ python_platform/settings/sqlalchemy/migrations/0001_platform_settings.py,sha256=eD1n8k3RkP3RpgIcCTVtk3E29HkZSsHDBG91JLIENaI,1080
309
+ python_platform/settings/sqlalchemy/migrations/0002_physical_delete.py,sha256=y04patscQ045atbGjcMtqAgdFUG7AMNntVZDbN63SrI,1040
310
+ python_platform/settings/sqlalchemy/migrations/0003_version_tokens.py,sha256=zvtHNVhwuIe2Wg9B-kCvxIqorBcbUbuby3i79WtjCAY,1338
311
+ python_platform/settings/sqlalchemy/migrations/__init__.py,sha256=c0HIY6_n9Oo1LayM-0lxfUECxUdNZW5_JdmRfniNRL4,42
312
+ python_platform/settings/sqlalchemy/models.py,sha256=1QNYyxZV2ImoU0BJM2kgYiRrzAcUGgMH6MjwTKHB6rc,1211
313
+ python_platform/settings/sqlalchemy/module.py,sha256=WNHJB4ZFokvf-XQT14WkWw69sFuI0dtBVDv2oK96HFA,1165
314
+ python_platform/settings/sqlalchemy/store.py,sha256=X1EzNWbu2YxZc_XVerEMfqUVBhkAkhIoBnkURcKpLLI,3607
315
+ python_platform/settings/store.py,sha256=3tdF-0l0owUdWuNEd0K8OfbXncI38hx0pD6anU5GdmA,442
316
+ python_platform/settings/values.py,sha256=KMRZDQu2FRNXDIdJwGVgHn656Hc5qRY2WQGjbBxfhO4,898
317
+ python_platform/sqlalchemy/__init__.py,sha256=36UMwfv-BjA71c4KzAKjX8QFNeIMXcdgiToWfxPMcSo,1572
318
+ python_platform/sqlalchemy/alembic_runtime/__init__.py,sha256=r-ZHMiEhca5M2xv3plW9U3fHfzt5lVQeDohEFqrTuv0,82
319
+ python_platform/sqlalchemy/alembic_runtime/env.py,sha256=NIlAbfh5wBOvyTmSIx1rSFG-RT1pKVjlPUWp2VkXMxA,909
320
+ python_platform/sqlalchemy/alembic_runtime/script.py.mako,sha256=sD37hvmrRZrsFAumUCW_hi50ZSM0yCrVMsLmjSD7mlY,406
321
+ python_platform/sqlalchemy/auditing.py,sha256=wF1Ahep_EmV6Cwjf1cS71dU9gQJk7zhu7f21R_SGd_g,1885
322
+ python_platform/sqlalchemy/errors.py,sha256=RWojd0BXu0HwFldCqdz1qhsqtgz6pYwvErFmOR3tS9g,3126
323
+ python_platform/sqlalchemy/metadata.py,sha256=_8pqwsuO2Bv68JO9iEmTYNoiWEwTv8zs7Xw4YqCQsKw,21186
324
+ python_platform/sqlalchemy/migration.py,sha256=94SAFSY4h-QvCndVlY7ZSAgF4NCr0l8Drh2lQnbW7Es,13453
325
+ python_platform/sqlalchemy/module.py,sha256=pp9rmg8Ckt_CzytD67hP0ABygafOJZd-ir1M0DjpJrg,1773
326
+ python_platform/sqlalchemy/module_migration.py,sha256=HfemUi89fRgffgaQ_2_XITYqR34kFMNcmSyDdzkQdCk,6537
327
+ python_platform/sqlalchemy/options.py,sha256=FytS2WGhmm0_GyFUAEQYH_Ok5G1jdeiWM8uwEkocu6g,2252
328
+ python_platform/sqlalchemy/repository.py,sha256=QDZd20z7HSmghB_L4zmg4ZTA3VF9NgwX4oI63sNn9r4,1207
329
+ python_platform/sqlalchemy/runtime.py,sha256=ahWNK6ZQnjXalHUeCj_aAOhPX0_Cx3_eqIzu-QAtAq8,2998
330
+ python_platform/sqlalchemy/session_provider.py,sha256=EAm3pSvaFfiPAnxzz6y6vYj7rC1ZOcMrErGRNhEOLWY,1996
331
+ python_platform/sqlalchemy/unit_of_work.py,sha256=hSWrE19eGXsFyN1odI1nn1zsjoMwobEPcvjBrLI0vzo,4008
332
+ python_platform/testing/__init__.py,sha256=r8Esd1ev_R0w-jRqjLCaOSO1szOFbyHL6SWvtb2upoo,128
333
+ python_platform/testing/runtime.py,sha256=rrJvOgLc-xcFHF_GQKl09EpvxRX7MCpBxmJo-kOsSAA,3723
334
+ python_platform/unit_of_work/__init__.py,sha256=xynGCoU4b7YhwlHSIAwYi4D-H_M3PdLiueBVRLb1pWI,406
335
+ python_platform/unit_of_work/contracts.py,sha256=9SEa4tv2zhrOo5q2h1eCaHKE8l4CLAjr2752ce2leiY,7216
336
+ python_platform/unit_of_work/errors.py,sha256=apyOAtdoLNsCuxsaQr5S3v5WxyqrCBAhcMiqxw_kSxk,734
337
+ python_platform/unit_of_work/manager.py,sha256=UOnV7HG9T8iLCzjDQuMTcIs7A42bGkUeBYejiXJSqC0,8183
338
+ python_platform/unit_of_work/options.py,sha256=cw0A0dQcDXzlXLcWMA6uyX2fYi38afrqZFVLtoe7i0s,3105
339
+ python_platform-0.1.1.dist-info/licenses/LICENSE,sha256=2sSWLZdtk4EhG2GlwpksXzmyux-G6Qiov0D27lE_bqw,805
340
+ python_platform-0.1.1.dist-info/licenses/src/python_platform/background_jobs/pgqueuer/UPSTREAM_LICENSE.txt,sha256=0lCGUd5Pke2Up1Kqn1kRnHcwLlBz60E8xvR7WL4k_kE,1066
341
+ python_platform-0.1.1.dist-info/WHEEL,sha256=_d8F1e7SqtoW6CDj4Gi8lFC26a_7I17R7zPLCKTp4Fg,81
342
+ python_platform-0.1.1.dist-info/entry_points.txt,sha256=VLTsFbylCpJgX2B46_ZxjaueXD8DC1y1kFf-7VNnq_8,415
343
+ python_platform-0.1.1.dist-info/METADATA,sha256=GkqlbYoYIvr9Z0_bOO56ugzboEYRwysRsdKqNpwM99Q,9391
344
+ python_platform-0.1.1.dist-info/RECORD,,
@@ -0,0 +1,4 @@
1
+ Wheel-Version: 1.0
2
+ Generator: uv 0.12.15
3
+ Root-Is-Purelib: true
4
+ Tag: py3-none-any
@@ -0,0 +1,9 @@
1
+ [console_scripts]
2
+ pp = python_platform.cli:main
3
+
4
+ [python_platform.modules]
5
+ auditing = python_platform.auditing.sqlalchemy.module:SqlAlchemyAuditingModule
6
+ background_jobs = python_platform.background_jobs.pgqueuer.module:PgQueuerBackgroundJobsModule
7
+ identity = python_platform.identity.sqlalchemy.module:SqlAlchemyIdentityModule
8
+ settings = python_platform.settings.sqlalchemy.module:SqlAlchemyRuntimeSettingsModule
9
+
@@ -0,0 +1,7 @@
1
+ hank-repo Proprietary License
2
+
3
+ Copyright (c) 2026 hank-repo. All rights reserved.
4
+
5
+ This software and associated documentation files (the "Software") are proprietary and confidential. No license or permission is granted to use, copy, modify, merge, publish, distribute, sublicense, sell, or create derivative works from the Software except under a separate written agreement with hank-repo. Possession or public availability of a copy does not grant any additional rights.
6
+
7
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL HANK-REPO BE LIABLE FOR ANY CLAIM, DAMAGES, OR OTHER LIABILITY ARISING FROM OR IN CONNECTION WITH THE SOFTWARE.
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2024 janbjorge
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.