instant-python 0.20.0__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 (202) hide show
  1. instant_python/__init__.py +1 -0
  2. instant_python/cli/__init__.py +0 -0
  3. instant_python/cli/cli.py +58 -0
  4. instant_python/cli/instant_python_typer.py +35 -0
  5. instant_python/config/__init__.py +0 -0
  6. instant_python/config/application/__init__.py +0 -0
  7. instant_python/config/application/config_generator.py +23 -0
  8. instant_python/config/delivery/__init__.py +0 -0
  9. instant_python/config/delivery/cli.py +19 -0
  10. instant_python/config/domain/__init__.py +0 -0
  11. instant_python/config/domain/question_wizard.py +7 -0
  12. instant_python/config/infra/__init__.py +0 -0
  13. instant_python/config/infra/question_wizard/__init__.py +0 -0
  14. instant_python/config/infra/question_wizard/questionary_console_wizard.py +25 -0
  15. instant_python/config/infra/question_wizard/step/__init__.py +0 -0
  16. instant_python/config/infra/question_wizard/step/dependencies_step.py +64 -0
  17. instant_python/config/infra/question_wizard/step/general_step.py +81 -0
  18. instant_python/config/infra/question_wizard/step/git_step.py +41 -0
  19. instant_python/config/infra/question_wizard/step/questionary.py +17 -0
  20. instant_python/config/infra/question_wizard/step/steps.py +21 -0
  21. instant_python/config/infra/question_wizard/step/template_step.py +63 -0
  22. instant_python/initialize/__init__.py +0 -0
  23. instant_python/initialize/application/__init__.py +0 -0
  24. instant_python/initialize/application/project_initializer.py +47 -0
  25. instant_python/initialize/delivery/__init__.py +0 -0
  26. instant_python/initialize/delivery/cli.py +48 -0
  27. instant_python/initialize/domain/__init__.py +0 -0
  28. instant_python/initialize/domain/env_manager.py +9 -0
  29. instant_python/initialize/domain/node.py +73 -0
  30. instant_python/initialize/domain/project_formatter.py +7 -0
  31. instant_python/initialize/domain/project_renderer.py +10 -0
  32. instant_python/initialize/domain/project_structure.py +77 -0
  33. instant_python/initialize/domain/project_writer.py +20 -0
  34. instant_python/initialize/domain/version_control_configurer.py +9 -0
  35. instant_python/initialize/infra/__init__.py +0 -0
  36. instant_python/initialize/infra/env_manager/__init__.py +0 -0
  37. instant_python/initialize/infra/env_manager/env_manager_factory.py +27 -0
  38. instant_python/initialize/infra/env_manager/pdm_env_manager.py +66 -0
  39. instant_python/initialize/infra/env_manager/system_console.py +65 -0
  40. instant_python/initialize/infra/env_manager/uv_env_manager.py +74 -0
  41. instant_python/initialize/infra/formatter/__init__.py +0 -0
  42. instant_python/initialize/infra/formatter/ruff_project_formatter.py +10 -0
  43. instant_python/initialize/infra/renderer/__init__.py +0 -0
  44. instant_python/initialize/infra/renderer/jinja_environment.py +71 -0
  45. instant_python/initialize/infra/renderer/jinja_project_renderer.py +57 -0
  46. instant_python/initialize/infra/version_control/__init__.py +0 -0
  47. instant_python/initialize/infra/version_control/git_configurer.py +29 -0
  48. instant_python/initialize/infra/writer/__init__.py +0 -0
  49. instant_python/initialize/infra/writer/file_system_project_writer.py +23 -0
  50. instant_python/shared/__init__.py +0 -0
  51. instant_python/shared/application_error.py +8 -0
  52. instant_python/shared/domain/__init__.py +0 -0
  53. instant_python/shared/domain/config_repository.py +18 -0
  54. instant_python/shared/domain/config_schema.py +113 -0
  55. instant_python/shared/domain/dependency_config.py +41 -0
  56. instant_python/shared/domain/general_config.py +71 -0
  57. instant_python/shared/domain/git_config.py +32 -0
  58. instant_python/shared/domain/template_config.py +76 -0
  59. instant_python/shared/infra/__init__.py +0 -0
  60. instant_python/shared/infra/persistence/__init__.py +0 -0
  61. instant_python/shared/infra/persistence/yaml_config_repository.py +39 -0
  62. instant_python/shared/supported_built_in_features.py +20 -0
  63. instant_python/shared/supported_licenses.py +11 -0
  64. instant_python/shared/supported_managers.py +10 -0
  65. instant_python/shared/supported_python_versions.py +12 -0
  66. instant_python/shared/supported_templates.py +12 -0
  67. instant_python/templates/boilerplate/.gitignore +164 -0
  68. instant_python/templates/boilerplate/.pre-commit-config.yml +73 -0
  69. instant_python/templates/boilerplate/.python-version +1 -0
  70. instant_python/templates/boilerplate/CITATION.cff +13 -0
  71. instant_python/templates/boilerplate/LICENSE +896 -0
  72. instant_python/templates/boilerplate/README.md +8 -0
  73. instant_python/templates/boilerplate/SECURITY.md +43 -0
  74. instant_python/templates/boilerplate/event_bus/__init__.py +0 -0
  75. instant_python/templates/boilerplate/event_bus/domain_event.py +15 -0
  76. instant_python/templates/boilerplate/event_bus/domain_event_json_deserializer.py +25 -0
  77. instant_python/templates/boilerplate/event_bus/domain_event_json_serializer.py +16 -0
  78. instant_python/templates/boilerplate/event_bus/domain_event_subscriber.py +33 -0
  79. instant_python/templates/boilerplate/event_bus/event_aggregate.py +19 -0
  80. instant_python/templates/boilerplate/event_bus/event_bus.py +9 -0
  81. instant_python/templates/boilerplate/event_bus/exchange_type.py +14 -0
  82. instant_python/templates/boilerplate/event_bus/mock_event_bus.py +16 -0
  83. instant_python/templates/boilerplate/event_bus/rabbit_mq_configurer.py +45 -0
  84. instant_python/templates/boilerplate/event_bus/rabbit_mq_connection.py +71 -0
  85. instant_python/templates/boilerplate/event_bus/rabbit_mq_consumer.py +56 -0
  86. instant_python/templates/boilerplate/event_bus/rabbit_mq_event_bus.py +26 -0
  87. instant_python/templates/boilerplate/event_bus/rabbit_mq_queue_formatter.py +21 -0
  88. instant_python/templates/boilerplate/event_bus/rabbit_mq_settings.py +8 -0
  89. instant_python/templates/boilerplate/exceptions/__init__.py +0 -0
  90. instant_python/templates/boilerplate/exceptions/base_error.py +13 -0
  91. instant_python/templates/boilerplate/exceptions/domain_error.py +6 -0
  92. instant_python/templates/boilerplate/exceptions/domain_event_type_not_found_error.py +6 -0
  93. instant_python/templates/boilerplate/exceptions/rabbit_mq_connection_not_established_error.py +7 -0
  94. instant_python/templates/boilerplate/exceptions/required_value_error.py +6 -0
  95. instant_python/templates/boilerplate/fastapi/__init__.py +0 -0
  96. instant_python/templates/boilerplate/fastapi/application.py +74 -0
  97. instant_python/templates/boilerplate/fastapi/error_handlers.py +88 -0
  98. instant_python/templates/boilerplate/fastapi/error_response.py +31 -0
  99. instant_python/templates/boilerplate/fastapi/fastapi_log_middleware.py +32 -0
  100. instant_python/templates/boilerplate/fastapi/lifespan.py +13 -0
  101. instant_python/templates/boilerplate/fastapi/success_response.py +13 -0
  102. instant_python/templates/boilerplate/github/action.yml +35 -0
  103. instant_python/templates/boilerplate/github/bug_report.yml +60 -0
  104. instant_python/templates/boilerplate/github/ci.yml +199 -0
  105. instant_python/templates/boilerplate/github/feature_request.yml +21 -0
  106. instant_python/templates/boilerplate/github/release.yml +94 -0
  107. instant_python/templates/boilerplate/logger/__init__.py +0 -0
  108. instant_python/templates/boilerplate/logger/file_logger.py +55 -0
  109. instant_python/templates/boilerplate/logger/file_rotating_handler.py +36 -0
  110. instant_python/templates/boilerplate/logger/json_formatter.py +16 -0
  111. instant_python/templates/boilerplate/mypy.ini +41 -0
  112. instant_python/templates/boilerplate/persistence/__init__.py +0 -0
  113. instant_python/templates/boilerplate/persistence/alembic_migrator.py +19 -0
  114. instant_python/templates/boilerplate/persistence/async/README.md +1 -0
  115. instant_python/templates/boilerplate/persistence/async/__init__.py +0 -0
  116. instant_python/templates/boilerplate/persistence/async/alembic.ini +124 -0
  117. instant_python/templates/boilerplate/persistence/async/async_engine_fixture.py +20 -0
  118. instant_python/templates/boilerplate/persistence/async/async_session.py +20 -0
  119. instant_python/templates/boilerplate/persistence/async/env.py +94 -0
  120. instant_python/templates/boilerplate/persistence/async/models_metadata.py +10 -0
  121. instant_python/templates/boilerplate/persistence/async/postgres_settings.py +15 -0
  122. instant_python/templates/boilerplate/persistence/async/script.py.mako +26 -0
  123. instant_python/templates/boilerplate/persistence/async/sqlalchemy_repository.py +28 -0
  124. instant_python/templates/boilerplate/persistence/base.py +4 -0
  125. instant_python/templates/boilerplate/persistence/synchronous/__init__.py +0 -0
  126. instant_python/templates/boilerplate/persistence/synchronous/session_maker.py +21 -0
  127. instant_python/templates/boilerplate/persistence/synchronous/sqlalchemy_repository.py +40 -0
  128. instant_python/templates/boilerplate/pyproject.toml +134 -0
  129. instant_python/templates/boilerplate/pytest.ini +10 -0
  130. instant_python/templates/boilerplate/scripts/add_dependency.py +45 -0
  131. instant_python/templates/boilerplate/scripts/create_aggregate.py +33 -0
  132. instant_python/templates/boilerplate/scripts/insert_template.py +90 -0
  133. instant_python/templates/boilerplate/scripts/integration.sh +39 -0
  134. instant_python/templates/boilerplate/scripts/local_setup.py +12 -0
  135. instant_python/templates/boilerplate/scripts/makefile +184 -0
  136. instant_python/templates/boilerplate/scripts/post-merge.py +40 -0
  137. instant_python/templates/boilerplate/scripts/pre-commit.py +15 -0
  138. instant_python/templates/boilerplate/scripts/pre-push.py +6 -0
  139. instant_python/templates/boilerplate/scripts/remove_dependency.py +40 -0
  140. instant_python/templates/boilerplate/scripts/unit.sh +40 -0
  141. instant_python/templates/project_structure/clean_architecture/layers/application.yml +3 -0
  142. instant_python/templates/project_structure/clean_architecture/layers/delivery.yml +8 -0
  143. instant_python/templates/project_structure/clean_architecture/layers/domain.yml +10 -0
  144. instant_python/templates/project_structure/clean_architecture/layers/infra.yml +12 -0
  145. instant_python/templates/project_structure/clean_architecture/layers/test_application.yml +3 -0
  146. instant_python/templates/project_structure/clean_architecture/layers/test_delivery.yml +3 -0
  147. instant_python/templates/project_structure/clean_architecture/layers/test_domain.yml +3 -0
  148. instant_python/templates/project_structure/clean_architecture/layers/test_infra.yml +9 -0
  149. instant_python/templates/project_structure/clean_architecture/main_structure.yml +38 -0
  150. instant_python/templates/project_structure/clean_architecture/source.yml +9 -0
  151. instant_python/templates/project_structure/clean_architecture/test.yml +9 -0
  152. instant_python/templates/project_structure/config_files/gitignore.yml +3 -0
  153. instant_python/templates/project_structure/config_files/mypy.yml +4 -0
  154. instant_python/templates/project_structure/config_files/pyproject.yml +4 -0
  155. instant_python/templates/project_structure/config_files/pytest.yml +4 -0
  156. instant_python/templates/project_structure/config_files/python_version.yml +3 -0
  157. instant_python/templates/project_structure/documentation/citation.yml +4 -0
  158. instant_python/templates/project_structure/documentation/license.yml +3 -0
  159. instant_python/templates/project_structure/documentation/readme.yml +4 -0
  160. instant_python/templates/project_structure/documentation/security.yml +4 -0
  161. instant_python/templates/project_structure/domain_driven_design/layers/bounded_context.yml +17 -0
  162. instant_python/templates/project_structure/domain_driven_design/layers/delivery.yml +8 -0
  163. instant_python/templates/project_structure/domain_driven_design/layers/shared.yml +18 -0
  164. instant_python/templates/project_structure/domain_driven_design/layers/shared_domain.yml +10 -0
  165. instant_python/templates/project_structure/domain_driven_design/layers/shared_infra.yml +12 -0
  166. instant_python/templates/project_structure/domain_driven_design/layers/test_shared.yml +8 -0
  167. instant_python/templates/project_structure/domain_driven_design/layers/test_shared_delivery.yml +3 -0
  168. instant_python/templates/project_structure/domain_driven_design/layers/test_shared_domain.yml +3 -0
  169. instant_python/templates/project_structure/domain_driven_design/layers/test_shared_infra.yml +9 -0
  170. instant_python/templates/project_structure/domain_driven_design/main_structure.yml +38 -0
  171. instant_python/templates/project_structure/domain_driven_design/source.yml +10 -0
  172. instant_python/templates/project_structure/domain_driven_design/test.yml +9 -0
  173. instant_python/templates/project_structure/errors.yml +12 -0
  174. instant_python/templates/project_structure/events/event_bus_domain.yml +48 -0
  175. instant_python/templates/project_structure/events/event_bus_infra.yml +40 -0
  176. instant_python/templates/project_structure/events/mock_event_bus.yml +4 -0
  177. instant_python/templates/project_structure/fastapi/fastapi_app.yml +32 -0
  178. instant_python/templates/project_structure/fastapi/fastapi_domain.yml +12 -0
  179. instant_python/templates/project_structure/fastapi/fastapi_infra.yml +12 -0
  180. instant_python/templates/project_structure/github/github_action.yml +24 -0
  181. instant_python/templates/project_structure/github/github_issues_template.yml +14 -0
  182. instant_python/templates/project_structure/github/makefile.yml +3 -0
  183. instant_python/templates/project_structure/github/precommit_hook.yml +4 -0
  184. instant_python/templates/project_structure/logger.yml +16 -0
  185. instant_python/templates/project_structure/macros.j2 +73 -0
  186. instant_python/templates/project_structure/persistence/alembic_migrator.yml +6 -0
  187. instant_python/templates/project_structure/persistence/async_alembic.yml +27 -0
  188. instant_python/templates/project_structure/persistence/async_engine_conftest.yml +4 -0
  189. instant_python/templates/project_structure/persistence/async_sqlalchemy.yml +14 -0
  190. instant_python/templates/project_structure/persistence/persistence.yml +8 -0
  191. instant_python/templates/project_structure/persistence/synchronous_sqlalchemy.yml +20 -0
  192. instant_python/templates/project_structure/standard_project/layers/source_features.yml +13 -0
  193. instant_python/templates/project_structure/standard_project/layers/test_event_bus.yml +6 -0
  194. instant_python/templates/project_structure/standard_project/layers/test_features.yml +6 -0
  195. instant_python/templates/project_structure/standard_project/main_structure.yml +38 -0
  196. instant_python/templates/project_structure/standard_project/source.yml +5 -0
  197. instant_python/templates/project_structure/standard_project/test.yml +5 -0
  198. instant_python-0.20.0.dist-info/METADATA +318 -0
  199. instant_python-0.20.0.dist-info/RECORD +202 -0
  200. instant_python-0.20.0.dist-info/WHEEL +4 -0
  201. instant_python-0.20.0.dist-info/entry_points.txt +2 -0
  202. instant_python-0.20.0.dist-info/licenses/LICENSE +201 -0
@@ -0,0 +1,318 @@
1
+ Metadata-Version: 2.4
2
+ Name: instant-python
3
+ Version: 0.20.0
4
+ Summary: Instant boilerplate generation for Python projects
5
+ Project-URL: documentation, https://dimanu-py.github.io/instant-python/
6
+ Project-URL: repository, https://github.com/dimanu-py/instant-python/
7
+ Author-email: dimanu-py <dimanu.py@gmail.com>
8
+ License: Apache License
9
+ Version 2.0, January 2004
10
+ http://www.apache.org/licenses/
11
+
12
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
13
+
14
+ 1. Definitions.
15
+
16
+ "License" shall mean the terms and conditions for use, reproduction,
17
+ and distribution as defined by Sections 1 through 9 of this document.
18
+
19
+ "Licensor" shall mean the copyright owner or entity authorized by
20
+ the copyright owner that is granting the License.
21
+
22
+ "Legal Entity" shall mean the union of the acting entity and all
23
+ other entities that control, are controlled by, or are under common
24
+ control with that entity. For the purposes of this definition,
25
+ "control" means (i) the power, direct or indirect, to cause the
26
+ direction or management of such entity, whether by contract or
27
+ otherwise, or (ii) ownership of fifty percent (50%) or more of the
28
+ outstanding shares, or (iii) beneficial ownership of such entity.
29
+
30
+ "You" (or "Your") shall mean an individual or Legal Entity
31
+ exercising permissions granted by this License.
32
+
33
+ "Source" form shall mean the preferred form for making modifications,
34
+ including but not limited to software source code, documentation
35
+ source, and configuration files.
36
+
37
+ "Object" form shall mean any form resulting from mechanical
38
+ transformation or translation of a Source form, including but
39
+ not limited to compiled object code, generated documentation,
40
+ and conversions to other media types.
41
+
42
+ "Work" shall mean the work of authorship, whether in Source or
43
+ Object form, made available under the License, as indicated by a
44
+ copyright notice that is included in or attached to the work
45
+ (an example is provided in the Appendix below).
46
+
47
+ "Derivative Works" shall mean any work, whether in Source or Object
48
+ form, that is based on (or derived from) the Work and for which the
49
+ editorial revisions, annotations, elaborations, or other modifications
50
+ represent, as a whole, an original work of authorship. For the purposes
51
+ of this License, Derivative Works shall not include works that remain
52
+ separable from, or merely link (or bind by name) to the interfaces of,
53
+ the Work and Derivative Works thereof.
54
+
55
+ "Contribution" shall mean any work of authorship, including
56
+ the original version of the Work and any modifications or additions
57
+ to that Work or Derivative Works thereof, that is intentionally
58
+ submitted to Licensor for inclusion in the Work by the copyright owner
59
+ or by an individual or Legal Entity authorized to submit on behalf of
60
+ the copyright owner. For the purposes of this definition, "submitted"
61
+ means any form of electronic, verbal, or written communication sent
62
+ to the Licensor or its representatives, including but not limited to
63
+ communication on electronic mailing lists, source code control systems,
64
+ and issue tracking systems that are managed by, or on behalf of, the
65
+ Licensor for the purpose of discussing and improving the Work, but
66
+ excluding communication that is conspicuously marked or otherwise
67
+ designated in writing by the copyright owner as "Not a Contribution."
68
+
69
+ "Contributor" shall mean Licensor and any individual or Legal Entity
70
+ on behalf of whom a Contribution has been received by Licensor and
71
+ subsequently incorporated within the Work.
72
+
73
+ 2. Grant of Copyright License. Subject to the terms and conditions of
74
+ this License, each Contributor hereby grants to You a perpetual,
75
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
76
+ copyright license to reproduce, prepare Derivative Works of,
77
+ publicly display, publicly perform, sublicense, and distribute the
78
+ Work and such Derivative Works in Source or Object form.
79
+
80
+ 3. Grant of Patent License. Subject to the terms and conditions of
81
+ this License, each Contributor hereby grants to You a perpetual,
82
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
83
+ (except as stated in this section) patent license to make, have made,
84
+ use, offer to sell, sell, import, and otherwise transfer the Work,
85
+ where such license applies only to those patent claims licensable
86
+ by such Contributor that are necessarily infringed by their
87
+ Contribution(s) alone or by combination of their Contribution(s)
88
+ with the Work to which such Contribution(s) was submitted. If You
89
+ institute patent litigation against any entity (including a
90
+ cross-claim or counterclaim in a lawsuit) alleging that the Work
91
+ or a Contribution incorporated within the Work constitutes direct
92
+ or contributory patent infringement, then any patent licenses
93
+ granted to You under this License for that Work shall terminate
94
+ as of the date such litigation is filed.
95
+
96
+ 4. Redistribution. You may reproduce and distribute copies of the
97
+ Work or Derivative Works thereof in any medium, with or without
98
+ modifications, and in Source or Object form, provided that You
99
+ meet the following conditions:
100
+
101
+ (a) You must give any other recipients of the Work or
102
+ Derivative Works a copy of this License; and
103
+
104
+ (b) You must cause any modified files to carry prominent notices
105
+ stating that You changed the files; and
106
+
107
+ (c) You must retain, in the Source form of any Derivative Works
108
+ that You distribute, all copyright, patent, trademark, and
109
+ attribution notices from the Source form of the Work,
110
+ excluding those notices that do not pertain to any part of
111
+ the Derivative Works; and
112
+
113
+ (d) If the Work includes a "NOTICE" text file as part of its
114
+ distribution, then any Derivative Works that You distribute must
115
+ include a readable copy of the attribution notices contained
116
+ within such NOTICE file, excluding those notices that do not
117
+ pertain to any part of the Derivative Works, in at least one
118
+ of the following places: within a NOTICE text file distributed
119
+ as part of the Derivative Works; within the Source form or
120
+ documentation, if provided along with the Derivative Works; or,
121
+ within a display generated by the Derivative Works, if and
122
+ wherever such third-party notices normally appear. The contents
123
+ of the NOTICE file are for informational purposes only and
124
+ do not modify the License. You may add Your own attribution
125
+ notices within Derivative Works that You distribute, alongside
126
+ or as an addendum to the NOTICE text from the Work, provided
127
+ that such additional attribution notices cannot be construed
128
+ as modifying the License.
129
+
130
+ You may add Your own copyright statement to Your modifications and
131
+ may provide additional or different license terms and conditions
132
+ for use, reproduction, or distribution of Your modifications, or
133
+ for any such Derivative Works as a whole, provided Your use,
134
+ reproduction, and distribution of the Work otherwise complies with
135
+ the conditions stated in this License.
136
+
137
+ 5. Submission of Contributions. Unless You explicitly state otherwise,
138
+ any Contribution intentionally submitted for inclusion in the Work
139
+ by You to the Licensor shall be under the terms and conditions of
140
+ this License, without any additional terms or conditions.
141
+ Notwithstanding the above, nothing herein shall supersede or modify
142
+ the terms of any separate license agreement you may have executed
143
+ with Licensor regarding such Contributions.
144
+
145
+ 6. Trademarks. This License does not grant permission to use the trade
146
+ names, trademarks, service marks, or product names of the Licensor,
147
+ except as required for reasonable and customary use in describing the
148
+ origin of the Work and reproducing the content of the NOTICE file.
149
+
150
+ 7. Disclaimer of Warranty. Unless required by applicable law or
151
+ agreed to in writing, Licensor provides the Work (and each
152
+ Contributor provides its Contributions) on an "AS IS" BASIS,
153
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
154
+ implied, including, without limitation, any warranties or conditions
155
+ of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
156
+ PARTICULAR PURPOSE. You are solely responsible for determining the
157
+ appropriateness of using or redistributing the Work and assume any
158
+ risks associated with Your exercise of permissions under this License.
159
+
160
+ 8. Limitation of Liability. In no event and under no legal theory,
161
+ whether in tort (including negligence), contract, or otherwise,
162
+ unless required by applicable law (such as deliberate and grossly
163
+ negligent acts) or agreed to in writing, shall any Contributor be
164
+ liable to You for damages, including any direct, indirect, special,
165
+ incidental, or consequential damages of any character arising as a
166
+ result of this License or out of the use or inability to use the
167
+ Work (including but not limited to damages for loss of goodwill,
168
+ work stoppage, computer failure or malfunction, or any and all
169
+ other commercial damages or losses), even if such Contributor
170
+ has been advised of the possibility of such damages.
171
+
172
+ 9. Accepting Warranty or Additional Liability. While redistributing
173
+ the Work or Derivative Works thereof, You may choose to offer,
174
+ and charge a fee for, acceptance of support, warranty, indemnity,
175
+ or other liability obligations and/or rights consistent with this
176
+ License. However, in accepting such obligations, You may act only
177
+ on Your own behalf and on Your sole responsibility, not on behalf
178
+ of any other Contributor, and only if You agree to indemnify,
179
+ defend, and hold each Contributor harmless for any liability
180
+ incurred by, or claims asserted against, such Contributor by reason
181
+ of your accepting any such warranty or additional liability.
182
+
183
+ END OF TERMS AND CONDITIONS
184
+
185
+ APPENDIX: How to apply the Apache License to your work.
186
+
187
+ To apply the Apache License to your work, attach the following
188
+ boilerplate notice, with the fields enclosed by brackets "[]"
189
+ replaced with your own identifying information. (Don't include
190
+ the brackets!) The text should be enclosed in the appropriate
191
+ comment syntax for the file format. We also recommend that a
192
+ file or class name and description of purpose be included on the
193
+ same "printed page" as the copyright notice for easier
194
+ identification within third-party archives.
195
+
196
+ Copyright 2025 Diego Martínez Núñez
197
+
198
+ Licensed under the Apache License, Version 2.0 (the "License");
199
+ you may not use this file except in compliance with the License.
200
+ You may obtain a copy of the License at
201
+
202
+ http://www.apache.org/licenses/LICENSE-2.0
203
+
204
+ Unless required by applicable law or agreed to in writing, software
205
+ distributed under the License is distributed on an "AS IS" BASIS,
206
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
207
+ See the License for the specific language governing permissions and
208
+ limitations under the License.
209
+ License-File: LICENSE
210
+ Classifier: Environment :: Console
211
+ Classifier: Intended Audience :: Developers
212
+ Classifier: Operating System :: MacOS
213
+ Classifier: Operating System :: Microsoft :: Windows
214
+ Classifier: Operating System :: POSIX :: Linux
215
+ Classifier: Operating System :: Unix
216
+ Classifier: Topic :: Software Development :: Code Generators
217
+ Classifier: Topic :: Software Development :: Libraries
218
+ Classifier: Topic :: Software Development :: Libraries :: Python Modules
219
+ Classifier: Topic :: System :: Installation/Setup
220
+ Classifier: Topic :: System :: Shells
221
+ Requires-Python: >=3.9
222
+ Requires-Dist: jinja2>=3.1.6
223
+ Requires-Dist: posthog>=6.9.3
224
+ Requires-Dist: pyyaml>=6.0.2
225
+ Requires-Dist: questionary>=2.1.0
226
+ Requires-Dist: typer>=0.15.1
227
+ Provides-Extra: build
228
+ Requires-Dist: uv>=0.7.21; extra == 'build'
229
+ Description-Content-Type: text/markdown
230
+
231
+ <div align="center">
232
+ <h1>⚡️ Instant Boilerplate for Python Projects ⚡️</h1>
233
+ <strong>Fast, easy and reliable project generator for your Python projects.</strong>
234
+ </div>
235
+
236
+ <p align="center">
237
+ <a href="https://dimanu-py.github.io/instant-python/getting_started/installation/">Getting Started</a>&nbsp;&nbsp;•&nbsp;
238
+ <a href="https://dimanu-py.github.io/instant-python/guide/">Usage</a>&nbsp;&nbsp;•&nbsp;
239
+ <a href="https://dimanu-py.github.io/instant-python/guide/custom_projects/">How to: Custom Projects</a>&nbsp;&nbsp;•&nbsp;
240
+ </p>
241
+
242
+ <div align="center"><table><tr><td>
243
+ <b>Instant Python</b> replaces extensive manual setup with a simple command to get started quickly. Its motivation is to emulate
244
+ commands like `ng new` or `create-react-app`, but for Python projects.
245
+
246
+ <br>
247
+
248
+ <b>Why use Instant Python?</b> Generating your Python project with Instant Python lets you:
249
+
250
+ <ul style="list-style-type: none">
251
+ <li>⏱️ Slash folder & config setup time to seconds</li>
252
+ <li>🐍 Instantly install & switch between any Python version</li>
253
+ <li>🔧 Effortlessly configure your favorite project manager</li>
254
+ <li>📁 Kickstart with ready-made or fully custom project structures</li>
255
+ <li>🔄 Initialize a Git repo in just a few clicks</li>
256
+ <li>📦 Auto-install all your go-to dependencies</li>
257
+ <li>🚀 Ship with production-ready boilerplates out of the box</li>
258
+ </ul>
259
+
260
+ </td></tr></table></div>
261
+
262
+ ## ✨ NEW ✨ Create Fully Customized Projects
263
+
264
+ Take full control of your project generation! With **custom templates**, you can:
265
+
266
+ - 🎨 Design your own project structure that matches your architectural patterns (like Hexagonal Architecture)
267
+ - 📝 Create reusable file templates with your standardized code and best practices
268
+ - 🔄 Enforce consistency across all your Python projects
269
+ - ⚡ Eliminate repetitive boilerplate and setup tasks
270
+
271
+ Whether you have a standardized project structure you always use or specific architectural patterns you want to enforce,
272
+ custom templates let you generate projects exactly the way you want them.
273
+ [Learn how to create your first custom template](https://dimanu-py.github.io/instant-python/guide/custom_projects/) and level up your project generation workflow!
274
+
275
+ ## Navigation Guide
276
+
277
+ This section provides a high-level overview of the `instant-python` documentation
278
+ so can quickly find what you need.
279
+
280
+ ### For Users
281
+
282
+ - [Installation]: begin by learning how to install `instant-python`.
283
+ - [First Steps]: get started with the basic features of `instant-python`.
284
+ - [Advanced Usage and Customization]: explore advanced features and customization options.
285
+
286
+ [Installation]: https://dimanu-py.github.io/instant-python/getting_started/installation/
287
+ [First Steps]: https://dimanu-py.github.io/instant-python/getting_started/first_steps/
288
+ [Advanced Usage and Customization]: https://dimanu-py.github.io/instant-python/guide/
289
+
290
+ ### For Developers
291
+
292
+ - [Contributing]: learn how to contribute to `instant-python` development.
293
+ - [Releases]: understand our release process and versioning.
294
+ - [Security]: understand our security policies and reporting procedures.
295
+
296
+ [Contributing]: https://dimanu-py.github.io/instant-python/development/contributing/
297
+ [Releases]: https://dimanu-py.github.io/instant-python/development/releases/
298
+ [Security]: https://dimanu-py.github.io/instant-python/development/security/
299
+
300
+ ### Need help?
301
+
302
+ - Join a discussion 💬 on [GitHub Discussions]
303
+ - [Raise an issue][GitHub Issues] on GitHub
304
+
305
+ [GitHub Discussions]: https://github.com/dimanu-py/instant-python/discussions
306
+ [GitHub Issues]: https://github.com/dimanu-py/instant-python/issues
307
+
308
+ [//]: # (### Do Not Track)
309
+
310
+ [//]: # ()
311
+ [//]: # (In order to get better insights about the usage of the library, we collect anonymous usage data. The only)
312
+
313
+ [//]: # (data we collect is the commands you run. No personal data is collected as part of this request.)
314
+
315
+ [//]: # ()
316
+ [//]: # (You can disable this feature by setting the environment variable `INSTANT_PYTHON_NO_TRACK` to `1` or )
317
+
318
+ [//]: # (passing the `--no-track` option to any command.)
@@ -0,0 +1,202 @@
1
+ instant_python/__init__.py,sha256=NGIecTe1EEM7UeBjKSJ4vCWuGDWF1ZX4PckW2Eguxps,23
2
+ instant_python/cli/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
3
+ instant_python/cli/cli.py,sha256=tRSRB3hdrY8NDvXq6dxqp495rYc0XA-BLZ27foa8Nfg,1516
4
+ instant_python/cli/instant_python_typer.py,sha256=jVk2VV8O4WHbyVGGn56D8Id-oo03KriwfmxgPTQOdy4,1230
5
+ instant_python/config/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
6
+ instant_python/config/application/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
7
+ instant_python/config/application/config_generator.py,sha256=2W42gN96EOJ6CFJ7V_t83T9XLzdvLrOzoD-a8RKW2zg,971
8
+ instant_python/config/delivery/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
9
+ instant_python/config/delivery/cli.py,sha256=-BeuOh5mESTB8wIxTojNFB7zNMUOVLsKqskyJ2aJqXA,753
10
+ instant_python/config/domain/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
11
+ instant_python/config/domain/question_wizard.py,sha256=mSqESa4xC6F2OEJZ338dokXZ34Y22aBMAGmARhBQSnY,146
12
+ instant_python/config/infra/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
13
+ instant_python/config/infra/question_wizard/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
14
+ instant_python/config/infra/question_wizard/questionary_console_wizard.py,sha256=Cd_rVohA5WtFxAadBMOYaZEpjN4M6GgJHkuPAVUM5Ts,1118
15
+ instant_python/config/infra/question_wizard/step/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
16
+ instant_python/config/infra/question_wizard/step/dependencies_step.py,sha256=zqv8UP8K1qRkJfVfsFA6RQLU5vnpul8Jb9C9Xmntszo,2340
17
+ instant_python/config/infra/question_wizard/step/general_step.py,sha256=hNR3XlDwRKMZe5I7blU2bTlsEcnyzrkfbFBjYujXsvA,2981
18
+ instant_python/config/infra/question_wizard/step/git_step.py,sha256=y8cUWbviWghaO8iy2ZxJFUfw1iUlX1luEwk3mcS7L68,1292
19
+ instant_python/config/infra/question_wizard/step/questionary.py,sha256=CwU2nIJhiYg4UO6g9lqwQoLoNlyY1RE-Qi7xBswaAnw,729
20
+ instant_python/config/infra/question_wizard/step/steps.py,sha256=nin12gNy-UwiuGIjcagABJYT1VU9N1IDOH_aZRr4TUg,538
21
+ instant_python/config/infra/question_wizard/step/template_step.py,sha256=ajNV-GMRI4EEG4AfBo-4DoKtMU7JBEjcG7DT87bT3Wk,2362
22
+ instant_python/initialize/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
23
+ instant_python/initialize/application/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
24
+ instant_python/initialize/application/project_initializer.py,sha256=BIpnLijxLlDsj3vSpVR8a1CFaxpapSanD382YaGIo24,2091
25
+ instant_python/initialize/delivery/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
26
+ instant_python/initialize/delivery/cli.py,sha256=q6mhLtzF5QuAjPiD0T60fvXqmqOV-Ux0Bd2be6cAXrs,2203
27
+ instant_python/initialize/domain/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
28
+ instant_python/initialize/domain/env_manager.py,sha256=EWbanx4lo4wMIMpvQp_EjALxO5JtkIJzdVY6G-Z0-l8,280
29
+ instant_python/initialize/domain/node.py,sha256=IQLo4CZ2CjSJnrZTHcUSd0nH-vJD5zYrg2rbGsk4dDw,2267
30
+ instant_python/initialize/domain/project_formatter.py,sha256=KyQaoBlQ31Azm5-MmZ-uUcJr46vkRFokaz6mlhGC7oY,151
31
+ instant_python/initialize/domain/project_renderer.py,sha256=cmNOaOdAu4YTBd6Pnwd3hPJTr7H60Ws3hFa_n3SEMYQ,341
32
+ instant_python/initialize/domain/project_structure.py,sha256=LBuqr5DJA27ZuH7Sod4m0NtvcGattdiWW2OpflPzFCw,2764
33
+ instant_python/initialize/domain/project_writer.py,sha256=2LORMis7lS1Jg_x_cNCkx0NqE1IZURTjUpw0knrnuIQ,570
34
+ instant_python/initialize/domain/version_control_configurer.py,sha256=JafmpBac0sAOPhvUG-58K6x73OI8kLpv6qF8l3lMHNo,240
35
+ instant_python/initialize/infra/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
36
+ instant_python/initialize/infra/env_manager/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
37
+ instant_python/initialize/infra/env_manager/env_manager_factory.py,sha256=IPfWOnhOaSGYMgkTk1OG8EzFX1bFcoZM4le5G8CgQ7s,1249
38
+ instant_python/initialize/infra/env_manager/pdm_env_manager.py,sha256=uXMS4uXPLAnUORy-3sAmFutF9Ucd83PSBBbpsPr9vCQ,2804
39
+ instant_python/initialize/infra/env_manager/system_console.py,sha256=XQbrI6uIukXtt2OSa7k3a3Wh-bSW3QDV7IJrQEmfZ2I,1937
40
+ instant_python/initialize/infra/env_manager/uv_env_manager.py,sha256=Ye8fND_3xqKgT3qo_HdQVSAJA58gKPxlrm-gzSGuL0w,3277
41
+ instant_python/initialize/infra/formatter/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
42
+ instant_python/initialize/infra/formatter/ruff_project_formatter.py,sha256=AE3DYoDC-NZse3Mv2MW5VqsUigiIMscCCETPJ_Rr_Io,398
43
+ instant_python/initialize/infra/renderer/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
44
+ instant_python/initialize/infra/renderer/jinja_environment.py,sha256=g7703BbX9aCZTIR1oiCDaBbh4urlY8ieXg-gRyc1xR8,2791
45
+ instant_python/initialize/infra/renderer/jinja_project_renderer.py,sha256=ze_yR7QxwW71tYe_cTQrnWDRJH8xdE4ihaf03I5N42g,2831
46
+ instant_python/initialize/infra/version_control/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
47
+ instant_python/initialize/infra/version_control/git_configurer.py,sha256=mdfaUEpJgFaB9CVZx9IkSUuijvTX9Lab3ayTiT9biFA,1232
48
+ instant_python/initialize/infra/writer/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
49
+ instant_python/initialize/infra/writer/file_system_project_writer.py,sha256=7z_32Mp3JvOAZlai5nQZkFupJEWQIJ1Qi1hhM9xIcow,844
50
+ instant_python/shared/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
51
+ instant_python/shared/application_error.py,sha256=SwiOXMf5U9JCKxe9Jz0yQM5WKt72NP_CQdaJCKDgvaY,227
52
+ instant_python/shared/supported_built_in_features.py,sha256=vPMICnhEPMoAJiRob_mz8hcO9WkEpTLaiZ1MPMlOtsE,607
53
+ instant_python/shared/supported_licenses.py,sha256=VXZqm4wNNVw9wBjRTpGBI8ell8_HmAJNV4gH5EEUsvs,232
54
+ instant_python/shared/supported_managers.py,sha256=jydeepM5ouZOyl5JRFh3E65lj8hZyaGvGH0ch3Nq3qE,208
55
+ instant_python/shared/supported_python_versions.py,sha256=KTtD8Cu7zJiLW_9C6quWCR_ft7aKxapRpyF90mhWgOc,284
56
+ instant_python/shared/supported_templates.py,sha256=Sl6pFsyrb2F8hUsy-_ZP4RIX0Kr_Q_zw9a0shevCp8M,304
57
+ instant_python/shared/domain/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
58
+ instant_python/shared/domain/config_repository.py,sha256=8iHVflpRMFA_qpSPux8v9b3Yulp73oJHdH2ZiEOqhwM,498
59
+ instant_python/shared/domain/config_schema.py,sha256=U7d1h8UMv5NU0udE8AuUPOjFPi6oAE-t0qQlOJN7v-o,4035
60
+ instant_python/shared/domain/dependency_config.py,sha256=XFOyetaTWXJ_4TRZDIIcgj3lUf67kObgNV54Y72Cs50,1417
61
+ instant_python/shared/domain/general_config.py,sha256=YB7srlH5pUsTm_DNPrezA8hvfkWf_VobQnGgzW8wbyE,2953
62
+ instant_python/shared/domain/git_config.py,sha256=6qg30SpdgnN-EfajTQbnX5kqVeZnzrZJipdfsUeg-HI,1115
63
+ instant_python/shared/domain/template_config.py,sha256=_eibDDQ1Ic5rshwpO6LCDgTmKnmLP-SQUhwD8v4hn1Q,3328
64
+ instant_python/shared/infra/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
65
+ instant_python/shared/infra/persistence/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
66
+ instant_python/shared/infra/persistence/yaml_config_repository.py,sha256=d-gv-RgrDmoDbbrsTyzCN3k_oH4FqVK2rtiYpWnOe_0,1609
67
+ instant_python/templates/boilerplate/.gitignore,sha256=uViK8iDiHZGpnnvM3TpgrDwXlBk16wjMIndS8XDtWYE,3035
68
+ instant_python/templates/boilerplate/.pre-commit-config.yml,sha256=bOqrzSmADvZV6snrhmo9KCUvvIMEJElV_oC4RchvoRs,1788
69
+ instant_python/templates/boilerplate/.python-version,sha256=7b_kfEdqh7QsWx4IDCSWhbwielSfsmsAEZPM3kjSuBA,28
70
+ instant_python/templates/boilerplate/CITATION.cff,sha256=m1fHRwEfq7HvL9uMJ8H1sPk91teJYldVlD3M2OiyFAE,401
71
+ instant_python/templates/boilerplate/LICENSE,sha256=wzw1JFV1qGbnRMfokpku4CO4ZKvtreFsyIksljC7hLI,47428
72
+ instant_python/templates/boilerplate/README.md,sha256=qlaO6Tnd8k0A_ccRNVI8yt5Vn1dQP6AwxW_WH80P8Is,238
73
+ instant_python/templates/boilerplate/SECURITY.md,sha256=l2T8a7mcV3PUs1vloUDqFXlRXKseInsT_nR71wlLvGo,2024
74
+ instant_python/templates/boilerplate/mypy.ini,sha256=unPeeeN5XStcdwqobdxtHsPj-Ru1NWPyZ5WF4PbQqik,889
75
+ instant_python/templates/boilerplate/pyproject.toml,sha256=AyFdCcP51Uc7GkzwF8tQzlb3nI_9A8j6nt7-yUoCV4c,4248
76
+ instant_python/templates/boilerplate/pytest.ini,sha256=Ur7Nw3dUSUSeea9r_woiv0wEsZMQFVs9hfTXtn6Mt74,248
77
+ instant_python/templates/boilerplate/event_bus/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
78
+ instant_python/templates/boilerplate/event_bus/domain_event.py,sha256=aD4UGS4HWQwQvyfdKLpWN1emDfHUS6NQbYlGXRHVDas,312
79
+ instant_python/templates/boilerplate/event_bus/domain_event_json_deserializer.py,sha256=E1x8w2IR863deGaOGj6ErX5Zlc2ne5zaF06tAsByTMM,1058
80
+ instant_python/templates/boilerplate/event_bus/domain_event_json_serializer.py,sha256=9VeTbjvoYbzwRRhylASMu1m7pBV2xZ82Sj_WYTWXQSE,451
81
+ instant_python/templates/boilerplate/event_bus/domain_event_subscriber.py,sha256=uJZouAD7d9mx3BdW98z8hrsGVJVe2RLacvGyihNqNSU,1041
82
+ instant_python/templates/boilerplate/event_bus/event_aggregate.py,sha256=CauuZnf2R6HMDV4FHbHUSJAGTw4S3lgu0UDOlHkSLuY,612
83
+ instant_python/templates/boilerplate/event_bus/event_bus.py,sha256=Nw7HtYLAP1VAJLurVmrzAQ-gCigdnBKMRcQv5utYxwc,305
84
+ instant_python/templates/boilerplate/event_bus/exchange_type.py,sha256=N4tVSRqURhpZnUxu-sLejmbwojM_917Gy_WsCyHQri8,258
85
+ instant_python/templates/boilerplate/event_bus/mock_event_bus.py,sha256=wunDI1hfmTD9Oo6F_agEGgggXeCtFqnyivd3Zh_gJgA,663
86
+ instant_python/templates/boilerplate/event_bus/rabbit_mq_configurer.py,sha256=IQSJfq3CyMj82Da4MFC7yfPLjf3J4ylgFgjuF2AIgPs,2034
87
+ instant_python/templates/boilerplate/event_bus/rabbit_mq_connection.py,sha256=Tf6LmWo7gOuc5tK3aHbEcScudE2x13-W7Tltt_76NX8,2910
88
+ instant_python/templates/boilerplate/event_bus/rabbit_mq_consumer.py,sha256=9vaPxUIvwTho1JDnVuXvwkDtXbFdKYzmdri4lzGgqNc,2135
89
+ instant_python/templates/boilerplate/event_bus/rabbit_mq_event_bus.py,sha256=m5Pq9QcfO7anT82CkX8Pdb8Y8JIFZnZZBnLYEjCkMAs,1217
90
+ instant_python/templates/boilerplate/event_bus/rabbit_mq_queue_formatter.py,sha256=yXUijJUk9giNO0JoIzBwtjBCO9C2UHsg52d4J9bWArU,876
91
+ instant_python/templates/boilerplate/event_bus/rabbit_mq_settings.py,sha256=0oOoAU0m9Jwo6CmBlGpEiFXU7lvIILI0OfkB9W7RNG4,131
92
+ instant_python/templates/boilerplate/exceptions/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
93
+ instant_python/templates/boilerplate/exceptions/base_error.py,sha256=nILyC2gifU1w-U0ldqaKL3ViM9JKsRst98V3U48H_Yw,285
94
+ instant_python/templates/boilerplate/exceptions/domain_error.py,sha256=zMc3TB1Mm86ibdp5TBCXZicfDfumNhdQOk3QBQeBsJs,165
95
+ instant_python/templates/boilerplate/exceptions/domain_event_type_not_found_error.py,sha256=IigIcXNhWbORmrb2Bwu7m-yC_pmhhOB9sI2NmO8jjrk,296
96
+ instant_python/templates/boilerplate/exceptions/rabbit_mq_connection_not_established_error.py,sha256=kyTWkhDnXfcOuYWemI88q-957f-qkWUBGlRrCm3Mods,294
97
+ instant_python/templates/boilerplate/exceptions/required_value_error.py,sha256=NhHOOWoiHcer4nE2iGo-TDWlCGuXuV_81bUNrn8aAJI,270
98
+ instant_python/templates/boilerplate/fastapi/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
99
+ instant_python/templates/boilerplate/fastapi/application.py,sha256=hq6iMI5MuKZmm-Xkr3Y8Ly0anEaeoW84R8sC0_WIKnk,2991
100
+ instant_python/templates/boilerplate/fastapi/error_handlers.py,sha256=V8T3bYRF_VkyRyx0J2p4HmueyeV-DOiS2Y8ePrLfxV8,2833
101
+ instant_python/templates/boilerplate/fastapi/error_response.py,sha256=vUy6kC7RFohuDMHSvdZtZnRV2xZoG5fuKbgM1IXGei4,834
102
+ instant_python/templates/boilerplate/fastapi/fastapi_log_middleware.py,sha256=7O8qK0dlUZTzMxQrx5IMjjGRS-qH2k_o1joaDTQj9Ps,938
103
+ instant_python/templates/boilerplate/fastapi/lifespan.py,sha256=AGiueYWbr4cLZtGMmeZJZhpC70jNNX868sRiLGFWqQY,391
104
+ instant_python/templates/boilerplate/fastapi/success_response.py,sha256=3K-Xw-fRV0Z9S2p1Oi201pwvhDsA5JL35WwBTfwyFUA,259
105
+ instant_python/templates/boilerplate/github/action.yml,sha256=orPXW0IIasWJDe3KZelFoITILKDPqRTYFC3WWOXQGa8,1036
106
+ instant_python/templates/boilerplate/github/bug_report.yml,sha256=DQ1OkBkQa2YNxXg2d7uPW1FI2sA_QZQH2E7Ju9tyi_g,1613
107
+ instant_python/templates/boilerplate/github/ci.yml,sha256=e_7enmY8C2RHBFysTFIo7G9M9GqZya31425rxyWMtTs,5321
108
+ instant_python/templates/boilerplate/github/feature_request.yml,sha256=Au116oHxO-julX2wJyNHbteTWKq68ulo2F45UakJppk,758
109
+ instant_python/templates/boilerplate/github/release.yml,sha256=42aPRU6oTI56FW4UcJy8zpAEbsCdj45KsALQ36exU5w,3313
110
+ instant_python/templates/boilerplate/logger/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
111
+ instant_python/templates/boilerplate/logger/file_logger.py,sha256=LqpdnKYcVjTDZPBeGU8saLw9QEj3cBRoiTg1imzJ5Rc,1329
112
+ instant_python/templates/boilerplate/logger/file_rotating_handler.py,sha256=5ZY98_zNbGyAVngJY-Qo7p1TM-CWwNEO9C6ctKVCbNc,1197
113
+ instant_python/templates/boilerplate/logger/json_formatter.py,sha256=DpqT3mH7Q077pXCWMkP-9HbWMwY5zfoZszThe6Qyjw4,389
114
+ instant_python/templates/boilerplate/persistence/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
115
+ instant_python/templates/boilerplate/persistence/alembic_migrator.py,sha256=9TYUeURBxs3TQJPvLclKZ5M_9BIveKWLepRtqbuiPwA,693
116
+ instant_python/templates/boilerplate/persistence/base.py,sha256=AmKqS3E-iJCwkuO3GAoRBzCan0--CeFykadTHJoMz7s,77
117
+ instant_python/templates/boilerplate/persistence/async/README.md,sha256=ISVtAOvqvKk_5ThM5ioJE-lMkvf9IbknFUFVU_vPma4,58
118
+ instant_python/templates/boilerplate/persistence/async/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
119
+ instant_python/templates/boilerplate/persistence/async/alembic.ini,sha256=cO02jtPYm1RMq0M_oCbiqHaSWHyC12IdfhMsGPN5l7I,3981
120
+ instant_python/templates/boilerplate/persistence/async/async_engine_fixture.py,sha256=5mycstsDyZYLDLVaG2Ar1yxWEWUlNVLp9LpERAxCyqs,657
121
+ instant_python/templates/boilerplate/persistence/async/async_session.py,sha256=dNvxmgS8ucqNkvFDgbYn9qxpMJ3sPoxzdbZ-B_COueA,670
122
+ instant_python/templates/boilerplate/persistence/async/env.py,sha256=9uzih4loxhnd7HBeLv-kfn8wBd8Uy3KPO5g2dghegss,2556
123
+ instant_python/templates/boilerplate/persistence/async/models_metadata.py,sha256=ejeCubyqKGaHR9XUxCX41T5_p-ZXEMGfGCEIJsb0KsQ,491
124
+ instant_python/templates/boilerplate/persistence/async/postgres_settings.py,sha256=qJXTAxHKSXfW1-f-SjAZEO0nMSyVi-oFgTiOg8aW7No,655
125
+ instant_python/templates/boilerplate/persistence/async/script.py.mako,sha256=Btnw5t7dF2bdkT6TiO9_1tPOAntYj0YBUuzazNG_GkE,634
126
+ instant_python/templates/boilerplate/persistence/async/sqlalchemy_repository.py,sha256=W_Er2EREYx8T4PggsdCvu-vZ8qyJuO4vptOhJdAE3F8,1116
127
+ instant_python/templates/boilerplate/persistence/synchronous/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
128
+ instant_python/templates/boilerplate/persistence/synchronous/session_maker.py,sha256=TP2fcj0kYJqr0W26h1rjzhUy9IrxH0qGU2RJVDhIuII,582
129
+ instant_python/templates/boilerplate/persistence/synchronous/sqlalchemy_repository.py,sha256=rHeSxzYb-uhRvQGcf0ud2o6BJcO2BXHM3AtGFs5rs3g,1501
130
+ instant_python/templates/boilerplate/scripts/add_dependency.py,sha256=KmWz8spKjejv9PCwQI_lm8d0xcrjufpNoiz_H6K13Lo,1259
131
+ instant_python/templates/boilerplate/scripts/create_aggregate.py,sha256=dgMCAtJEJjfvuvTMegjXgVGI86jupZN_z7q1fOoopNU,1061
132
+ instant_python/templates/boilerplate/scripts/insert_template.py,sha256=RFRZcKP6sEQ2nDCXyxDAg-N4qkUd7f952WfFV2bG_Ok,4264
133
+ instant_python/templates/boilerplate/scripts/integration.sh,sha256=bQe0acRChPrdBqzeEIviZezfZxlt8CeibHj1QXjLyZE,972
134
+ instant_python/templates/boilerplate/scripts/local_setup.py,sha256=oVUkqwudgzlI6AjTCf5eWLkvL4v0yAjFiz_xXhD2fY8,250
135
+ instant_python/templates/boilerplate/scripts/makefile,sha256=GAtPCTd5A1IhCKdTPsZXw5KUfPrSTQRj3ENC0PYjQL8,5893
136
+ instant_python/templates/boilerplate/scripts/post-merge.py,sha256=b0Be5pbZi34ZvlCWpVM0VrqrFqlMPkXBfPdQslEwsVA,916
137
+ instant_python/templates/boilerplate/scripts/pre-commit.py,sha256=juV42m6haVvbBSTB-R0bIDJqkEzj2S3JeciAb6Xieqk,278
138
+ instant_python/templates/boilerplate/scripts/pre-push.py,sha256=2UpPIkPTnwO8UusCAij18JSSzYArrYBqFEQWjaXG1Po,50
139
+ instant_python/templates/boilerplate/scripts/remove_dependency.py,sha256=i4xoHtaqymkmPuCHe3P4Ns1UmJEZL7ytE9uw1yL9Q1M,1173
140
+ instant_python/templates/boilerplate/scripts/unit.sh,sha256=HWne-jgso6Lcp6mRtvIsX84e3cKzmVUTQ1YFRPPA35M,1115
141
+ instant_python/templates/project_structure/errors.yml,sha256=3NJqG36F0yD-90NjyIO8yS8qHNGzwLYjq_AsIIpehCU,267
142
+ instant_python/templates/project_structure/logger.yml,sha256=-79x1UA30407BDTi-hE1eeXVnY8PKllan4c8ENudKfY,385
143
+ instant_python/templates/project_structure/macros.j2,sha256=H2FN9abT3KRbiVzwPGn1Gw24NCroOcZOwUlCb7xRQ2k,2186
144
+ instant_python/templates/project_structure/clean_architecture/main_structure.yml,sha256=dGj4qvK_rf7J3EVl0dR1gHYuB7PFZqcldRvfh8AGeec,1845
145
+ instant_python/templates/project_structure/clean_architecture/source.yml,sha256=trZVgOSQGw1BbBmr8cybS3hqyKuZl2iS8HpELPxrr0Q,412
146
+ instant_python/templates/project_structure/clean_architecture/test.yml,sha256=wzZJGXIQAre_qjJMtG2XLWkmRQ_Ko21_7gzToTgKsaY,411
147
+ instant_python/templates/project_structure/clean_architecture/layers/application.yml,sha256=vHlWg9bAxOzX60b0FIT2kflf5pO9OOEUmdA3sx1RrD8,52
148
+ instant_python/templates/project_structure/clean_architecture/layers/delivery.yml,sha256=UgTSG_fdK8ZkNacrPAG-33Y02zGfl3eJmg_jmRUOowM,263
149
+ instant_python/templates/project_structure/clean_architecture/layers/domain.yml,sha256=aFlsSTNFvPuh3MD4GJDqGl-eiQf5K0P_sHH4fwDnRDY,389
150
+ instant_python/templates/project_structure/clean_architecture/layers/infra.yml,sha256=MJJ1Vh2U3cv8XihrKO-gBHI_RINfzw29BrusjEvSQQM,540
151
+ instant_python/templates/project_structure/clean_architecture/layers/test_application.yml,sha256=vHlWg9bAxOzX60b0FIT2kflf5pO9OOEUmdA3sx1RrD8,52
152
+ instant_python/templates/project_structure/clean_architecture/layers/test_delivery.yml,sha256=3s0u-RPrgyhtaBUoHGUnO0nwO410_sJ0Yt9pRCDiM8E,49
153
+ instant_python/templates/project_structure/clean_architecture/layers/test_domain.yml,sha256=maNRkmgjyI1DiDY_L74TdvCFvxiS8pgVKzZlJlrJxao,47
154
+ instant_python/templates/project_structure/clean_architecture/layers/test_infra.yml,sha256=JBA2TMF1WslSAikXbngMblGxUNdWh1vxyLev8_pxW3s,335
155
+ instant_python/templates/project_structure/config_files/gitignore.yml,sha256=wY3L1A3baKiRi9mwjNz96APcNmIKUx7V7kHI8fmjFo0,54
156
+ instant_python/templates/project_structure/config_files/mypy.yml,sha256=rR4YM1OIJkeIz0yG5MFoTfE5SsyloDswqY8_GmtwcgQ,64
157
+ instant_python/templates/project_structure/config_files/pyproject.yml,sha256=3FS5TJEVGvOGhHcSchyaCrBJi33WoPX6XjGs1z38uQc,76
158
+ instant_python/templates/project_structure/config_files/pytest.yml,sha256=BtOTbtadmhlvBHTyaazxEg447bYfp3n6MaHHOla5YQQ,68
159
+ instant_python/templates/project_structure/config_files/python_version.yml,sha256=j4lqB133YclIhEerbDkHgoxfOrb1A1q9HLdGTzCdn2Y,64
160
+ instant_python/templates/project_structure/documentation/citation.yml,sha256=Rex9-hKT2UbHRt6hpVJogHllpj7asv1jtCIYue9S9J8,72
161
+ instant_python/templates/project_structure/documentation/license.yml,sha256=A5AF9NMnvJJfYDNxJF-AnF01tl-me3udHi7o7evc11A,48
162
+ instant_python/templates/project_structure/documentation/readme.yml,sha256=TEqP87Zi7LoE2l27dq6YfG48zRMOMf7ROzBpwZ6Jumo,66
163
+ instant_python/templates/project_structure/documentation/security.yml,sha256=QblZ53mNDpL0WjP774fZyuBz_ngYmKrLx_71THyuvIo,70
164
+ instant_python/templates/project_structure/domain_driven_design/main_structure.yml,sha256=GwsKY7_v0W40Jjq-GPILPO2aqvgnDSP8Nke65iIMnQ0,1849
165
+ instant_python/templates/project_structure/domain_driven_design/source.yml,sha256=faUxuK1Bc-Yb51vS8b2C72CypaQ9xU8k5RbyeP6-Crc,409
166
+ instant_python/templates/project_structure/domain_driven_design/test.yml,sha256=qJSKUN5sfAQcuqaHfXdS5WE2-zqeUgJDTU6Uky7YXss,319
167
+ instant_python/templates/project_structure/domain_driven_design/layers/bounded_context.yml,sha256=vKYCZ3bplbxrwX0wtZfUuofKZJQeFh7zFLNOZCFGgGc,411
168
+ instant_python/templates/project_structure/domain_driven_design/layers/delivery.yml,sha256=UgTSG_fdK8ZkNacrPAG-33Y02zGfl3eJmg_jmRUOowM,263
169
+ instant_python/templates/project_structure/domain_driven_design/layers/shared.yml,sha256=1eczUvIwkR3wV6nA0orJXMiaKG9uVF-MgzDpbcY5UGI,753
170
+ instant_python/templates/project_structure/domain_driven_design/layers/shared_domain.yml,sha256=aFlsSTNFvPuh3MD4GJDqGl-eiQf5K0P_sHH4fwDnRDY,389
171
+ instant_python/templates/project_structure/domain_driven_design/layers/shared_infra.yml,sha256=MJJ1Vh2U3cv8XihrKO-gBHI_RINfzw29BrusjEvSQQM,540
172
+ instant_python/templates/project_structure/domain_driven_design/layers/test_shared.yml,sha256=_4BBEi6CziFBeeFWfXU5ITq78EEoBol5xb2iO4h-Wlg,360
173
+ instant_python/templates/project_structure/domain_driven_design/layers/test_shared_delivery.yml,sha256=3s0u-RPrgyhtaBUoHGUnO0nwO410_sJ0Yt9pRCDiM8E,49
174
+ instant_python/templates/project_structure/domain_driven_design/layers/test_shared_domain.yml,sha256=maNRkmgjyI1DiDY_L74TdvCFvxiS8pgVKzZlJlrJxao,47
175
+ instant_python/templates/project_structure/domain_driven_design/layers/test_shared_infra.yml,sha256=JBA2TMF1WslSAikXbngMblGxUNdWh1vxyLev8_pxW3s,335
176
+ instant_python/templates/project_structure/events/event_bus_domain.yml,sha256=zWpiS2lBhl9MAoopb-2KxlQ5H9z-8C9qBJOi_Qkdeo8,1256
177
+ instant_python/templates/project_structure/events/event_bus_infra.yml,sha256=9pbN1oDYJAyBgjyTvMoGcPCh6QKzVT_3vhpLG0abRS4,1238
178
+ instant_python/templates/project_structure/events/mock_event_bus.yml,sha256=oF72d6MfYrhEkGIYuWqaajX9eMfc1Ixfk0nE6GX9Ke0,92
179
+ instant_python/templates/project_structure/fastapi/fastapi_app.yml,sha256=BTfI7u3XodVgZ1EG_KJvQgrhrbJNWXQXnGaum21qfrs,816
180
+ instant_python/templates/project_structure/fastapi/fastapi_domain.yml,sha256=2LHimbtLC8864Kq0L1l4pag3L6K5Lwy-CuENC5qfNnk,267
181
+ instant_python/templates/project_structure/fastapi/fastapi_infra.yml,sha256=o8b2FDbWKfMzbJYXlY9hkG7LAJiMvmxCqMozm69dHsM,275
182
+ instant_python/templates/project_structure/github/github_action.yml,sha256=WT_vz557FX0935nX6m8sqss8rsH-BsAuCGDAy6tGcmg,572
183
+ instant_python/templates/project_structure/github/github_issues_template.yml,sha256=Td2oQLBPJGdzTIn2u3s9yZghBOqsV7q04UrKHI4Tk1Q,352
184
+ instant_python/templates/project_structure/github/makefile.yml,sha256=cZWsfa5G6it6cPSvnWhA0__p_DIQJ_TAXHSBDRSHits,58
185
+ instant_python/templates/project_structure/github/precommit_hook.yml,sha256=qjWA2LvxsWWxw0A70BhP24c-0ARgRi8gviLI0-YF4Pk,92
186
+ instant_python/templates/project_structure/persistence/alembic_migrator.yml,sha256=A6BXm6cCvvUMk4PG3eQSDUiH-MQzx7xbeHOtGEyRNxw,207
187
+ instant_python/templates/project_structure/persistence/async_alembic.yml,sha256=3NXMeksCu0ar7QI-bnfurdynETyxgQp66KDTVQx2Q-8,684
188
+ instant_python/templates/project_structure/persistence/async_engine_conftest.yml,sha256=jUP5cfoS4nkM-hBKwX_TCGSpBopxaw_ePQ5bDGpR56M,100
189
+ instant_python/templates/project_structure/persistence/async_sqlalchemy.yml,sha256=DDFRL-76aWuJwjjhZbaX0HfKWx0SsTxTH4TzAj4F6EA,426
190
+ instant_python/templates/project_structure/persistence/persistence.yml,sha256=06cshBctKQxb-NmsyLuzNUaC-EQYAJF2PJX8bHUWQMM,187
191
+ instant_python/templates/project_structure/persistence/synchronous_sqlalchemy.yml,sha256=KtdeZTGaWaOyY_T7iEDqtUaJo_7R1pbI9jwfcZ4_y60,541
192
+ instant_python/templates/project_structure/standard_project/main_structure.yml,sha256=Mc0--h8_OJ2YBpyGJ7HIVuHSrIzTUWoTaRTqm_NtmDg,1841
193
+ instant_python/templates/project_structure/standard_project/source.yml,sha256=9mGkOLZnla08wKtZ_VM36ax5pdlElIC8GvbTZyB5HzA,191
194
+ instant_python/templates/project_structure/standard_project/test.yml,sha256=k5dExCUC0wW_5vnOPBziRI1FWtM8wRomlsmmifXZrsY,168
195
+ instant_python/templates/project_structure/standard_project/layers/source_features.yml,sha256=iVFOa5juIaiZObznHuSFoBCQXWwlDdX3UcO9GfBMAH4,781
196
+ instant_python/templates/project_structure/standard_project/layers/test_event_bus.yml,sha256=81fC2jIvK-0bLOIDSRi2Uab3dXigfjiEk6xT8PbzP0w,165
197
+ instant_python/templates/project_structure/standard_project/layers/test_features.yml,sha256=MfyuXbdF2K8zCXdDYRYTqDnWQ0_kkE1XeEfJVio_ALs,302
198
+ instant_python-0.20.0.dist-info/METADATA,sha256=jM_zMG_-FtFX_Waxe_lBU451G0_yEm2pTkntbzui4t4,18157
199
+ instant_python-0.20.0.dist-info/WHEEL,sha256=WLgqFyCfm_KASv4WHyYy0P3pM_m7J5L9k2skdKLirC8,87
200
+ instant_python-0.20.0.dist-info/entry_points.txt,sha256=M8YUHQaTszBM3np_x9j7wmc1ngrmpfrd4ajBv2EzQuk,51
201
+ instant_python-0.20.0.dist-info/licenses/LICENSE,sha256=kf7wA-1IsqXkzXjlsG95sdQJtsqUON_lNXombfPlklo,11353
202
+ instant_python-0.20.0.dist-info/RECORD,,
@@ -0,0 +1,4 @@
1
+ Wheel-Version: 1.0
2
+ Generator: hatchling 1.28.0
3
+ Root-Is-Purelib: true
4
+ Tag: py3-none-any
@@ -0,0 +1,2 @@
1
+ [console_scripts]
2
+ ipy = instant_python.cli.cli:app