zrb 1.2.0__py3-none-any.whl → 1.2.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.
@@ -62,7 +62,7 @@ scaffold_fastapp = Scaffolder(
62
62
  ),
63
63
  # Register fastapp's tasks to project's zrb_init (project_dir/zrb_init.py)
64
64
  ContentTransformer(
65
- name="trasnform-zrb-init",
65
+ name="transform-zrb-init",
66
66
  match=is_project_zrb_init_file,
67
67
  transform=update_project_zrb_init_file,
68
68
  ),
@@ -1,12 +1,12 @@
1
1
  import os
2
2
 
3
3
  from my_app_name._zrb.column.add_column_util import (
4
- update_fastapp_schema,
5
- update_fastapp_test_create,
6
- update_fastapp_test_delete,
7
- update_fastapp_test_read,
8
- update_fastapp_test_update,
9
- update_fastapp_ui,
4
+ update_my_app_name_schema,
5
+ update_my_app_name_test_create,
6
+ update_my_app_name_test_delete,
7
+ update_my_app_name_test_read,
8
+ update_my_app_name_test_update,
9
+ update_my_app_name_ui,
10
10
  )
11
11
  from my_app_name._zrb.config import APP_DIR
12
12
  from my_app_name._zrb.format_task import format_my_app_name_code
@@ -23,14 +23,14 @@ from zrb import AnyContext, Task, make_task
23
23
 
24
24
 
25
25
  @make_task(
26
- name="validate-add-fastapp-column",
26
+ name="validate-add-my-app-name-column",
27
27
  input=[
28
28
  existing_module_input,
29
29
  existing_entity_input,
30
30
  ],
31
31
  retries=0,
32
32
  )
33
- async def validate_add_fastapp_column(ctx: AnyContext):
33
+ async def validate_add_my_app_name_column(ctx: AnyContext):
34
34
  module_name = ctx.input.module
35
35
  if module_name not in get_existing_module_names():
36
36
  raise ValueError(f"Module not exist: {module_name}")
@@ -39,96 +39,96 @@ async def validate_add_fastapp_column(ctx: AnyContext):
39
39
  raise ValueError(f"Schema not exist: {schema_name}")
40
40
 
41
41
 
42
- update_fastapp_schema_task = Task(
43
- name="update-fastapp-schema",
42
+ update_my_app_name_schema_task = Task(
43
+ name="update-my-app-name-schema",
44
44
  input=[
45
45
  existing_module_input,
46
46
  existing_entity_input,
47
47
  new_column_input,
48
48
  new_column_type_input,
49
49
  ],
50
- action=update_fastapp_schema,
50
+ action=update_my_app_name_schema,
51
51
  retries=0,
52
- upstream=validate_add_fastapp_column,
52
+ upstream=validate_add_my_app_name_column,
53
53
  )
54
54
 
55
- update_fastapp_ui_task = Task(
56
- name="update-fastapp-ui",
55
+ update_my_app_name_ui_task = Task(
56
+ name="update-my-app-name-ui",
57
57
  input=[
58
58
  existing_module_input,
59
59
  existing_entity_input,
60
60
  new_column_input,
61
61
  new_column_type_input,
62
62
  ],
63
- action=update_fastapp_ui,
63
+ action=update_my_app_name_ui,
64
64
  retries=0,
65
- upstream=validate_add_fastapp_column,
65
+ upstream=validate_add_my_app_name_column,
66
66
  )
67
67
 
68
- update_fastapp_test_create_task = Task(
69
- name="update-fastapp-test-create",
68
+ update_my_app_name_test_create_task = Task(
69
+ name="update-my-app-name-test-create",
70
70
  input=[
71
71
  existing_module_input,
72
72
  existing_entity_input,
73
73
  new_column_input,
74
74
  new_column_type_input,
75
75
  ],
76
- action=update_fastapp_test_create,
76
+ action=update_my_app_name_test_create,
77
77
  retries=0,
78
- upstream=validate_add_fastapp_column,
78
+ upstream=validate_add_my_app_name_column,
79
79
  )
80
80
 
81
- update_fastapp_test_read_task = Task(
82
- name="update-fastapp-test-read",
81
+ update_my_app_name_test_read_task = Task(
82
+ name="update-my-app-name-test-read",
83
83
  input=[
84
84
  existing_module_input,
85
85
  existing_entity_input,
86
86
  new_column_input,
87
87
  new_column_type_input,
88
88
  ],
89
- action=update_fastapp_test_read,
89
+ action=update_my_app_name_test_read,
90
90
  retries=0,
91
- upstream=validate_add_fastapp_column,
91
+ upstream=validate_add_my_app_name_column,
92
92
  )
93
93
 
94
- update_fastapp_test_update_task = Task(
95
- name="update-fastapp-test-update",
94
+ update_my_app_name_test_update_task = Task(
95
+ name="update-my-app-name-test-update",
96
96
  input=[
97
97
  existing_module_input,
98
98
  existing_entity_input,
99
99
  new_column_input,
100
100
  new_column_type_input,
101
101
  ],
102
- action=update_fastapp_test_update,
102
+ action=update_my_app_name_test_update,
103
103
  retries=0,
104
- upstream=validate_add_fastapp_column,
104
+ upstream=validate_add_my_app_name_column,
105
105
  )
106
106
 
107
- update_fastapp_test_delete_task = Task(
108
- name="update-fastapp-test-delete",
107
+ update_my_app_name_test_delete_task = Task(
108
+ name="update-my-app-name-test-delete",
109
109
  input=[
110
110
  existing_module_input,
111
111
  existing_entity_input,
112
112
  new_column_input,
113
113
  new_column_type_input,
114
114
  ],
115
- action=update_fastapp_test_delete,
115
+ action=update_my_app_name_test_delete,
116
116
  retries=0,
117
- upstream=validate_add_fastapp_column,
117
+ upstream=validate_add_my_app_name_column,
118
118
  )
119
119
 
120
120
 
121
- add_fastapp_column = app_create_group.add_task(
121
+ add_my_app_name_column = app_create_group.add_task(
122
122
  Task(
123
- name="add-fastapp-column",
123
+ name="add-my-app-name-column",
124
124
  description="📊 Create new column on an entity",
125
125
  upstream=[
126
- update_fastapp_schema_task,
127
- update_fastapp_ui_task,
128
- update_fastapp_test_create_task,
129
- update_fastapp_test_read_task,
130
- update_fastapp_test_update_task,
131
- update_fastapp_test_delete_task,
126
+ update_my_app_name_schema_task,
127
+ update_my_app_name_ui_task,
128
+ update_my_app_name_test_create_task,
129
+ update_my_app_name_test_read_task,
130
+ update_my_app_name_test_update_task,
131
+ update_my_app_name_test_delete_task,
132
132
  ],
133
133
  successor=format_my_app_name_code,
134
134
  retries=0,
@@ -6,11 +6,7 @@ from bs4 import BeautifulSoup, formatter
6
6
  from my_app_name._zrb.config import APP_DIR
7
7
 
8
8
  from zrb.context.any_context import AnyContext
9
- from zrb.util.codemod.modify_class import append_code_to_class
10
- from zrb.util.codemod.modify_class_parent import prepend_parent_class
11
9
  from zrb.util.codemod.modify_class_property import append_property_to_class
12
- from zrb.util.codemod.modify_function import append_code_to_function
13
- from zrb.util.codemod.modify_module import prepend_code_to_module
14
10
  from zrb.util.file import read_file, write_file
15
11
  from zrb.util.string.conversion import (
16
12
  to_human_case,
@@ -20,7 +16,7 @@ from zrb.util.string.conversion import (
20
16
  )
21
17
 
22
18
 
23
- def update_fastapp_schema(ctx: AnyContext):
19
+ def update_my_app_name_schema(ctx: AnyContext):
24
20
  snake_entity_name = to_snake_case(ctx.input.entity)
25
21
  pascal_entity_name = to_pascal_case(ctx.input.entity)
26
22
  snake_column_name = to_snake_case(ctx.input.column)
@@ -64,7 +60,7 @@ def _get_default_column_value(data_type: str) -> str:
64
60
  return "None"
65
61
 
66
62
 
67
- def update_fastapp_ui(ctx: AnyContext):
63
+ def update_my_app_name_ui(ctx: AnyContext):
68
64
  kebab_module_name = to_kebab_case(ctx.input.module)
69
65
  kebab_entity_name = to_kebab_case(ctx.input.entity)
70
66
  snake_column_name = to_snake_case(ctx.input.column)
@@ -237,7 +233,7 @@ def _alter_js_function_returned_array(
237
233
  return new_html
238
234
 
239
235
 
240
- def update_fastapp_test_create(ctx: AnyContext):
236
+ def update_my_app_name_test_create(ctx: AnyContext):
241
237
  snake_module_name = to_snake_case(ctx.input.module)
242
238
  snake_entity_name = to_snake_case(ctx.input.entity)
243
239
  test_file_path = os.path.join(
@@ -253,7 +249,7 @@ def update_fastapp_test_create(ctx: AnyContext):
253
249
  write_file(test_file_path, new_code)
254
250
 
255
251
 
256
- def update_fastapp_test_read(ctx: AnyContext):
252
+ def update_my_app_name_test_read(ctx: AnyContext):
257
253
  snake_module_name = to_snake_case(ctx.input.module)
258
254
  snake_entity_name = to_snake_case(ctx.input.entity)
259
255
  test_file_path = os.path.join(
@@ -269,7 +265,7 @@ def update_fastapp_test_read(ctx: AnyContext):
269
265
  write_file(test_file_path, new_code)
270
266
 
271
267
 
272
- def update_fastapp_test_update(ctx: AnyContext):
268
+ def update_my_app_name_test_update(ctx: AnyContext):
273
269
  snake_module_name = to_snake_case(ctx.input.module)
274
270
  snake_entity_name = to_snake_case(ctx.input.entity)
275
271
  test_file_path = os.path.join(
@@ -285,7 +281,7 @@ def update_fastapp_test_update(ctx: AnyContext):
285
281
  write_file(test_file_path, new_code)
286
282
 
287
283
 
288
- def update_fastapp_test_delete(ctx: AnyContext):
284
+ def update_my_app_name_test_delete(ctx: AnyContext):
289
285
  snake_module_name = to_snake_case(ctx.input.module)
290
286
  snake_entity_name = to_snake_case(ctx.input.entity)
291
287
  test_file_path = os.path.join(
@@ -17,8 +17,8 @@ from zrb.util.string.conversion import (
17
17
 
18
18
 
19
19
  def is_gateway_navigation_config_file(ctx: AnyContext, file_path: str) -> bool:
20
- return file_path == os.path.join(
21
- APP_DIR, "module", "gateway", "config", "navigation.py"
20
+ return file_path == os.path.abspath(
21
+ os.path.join(APP_DIR, "module", "gateway", "config", "navigation.py")
22
22
  )
23
23
 
24
24
 
@@ -76,106 +76,126 @@ def get_existing_auth_migration_xcom_key(ctx: AnyContext) -> str:
76
76
 
77
77
  def is_in_app_schema_dir(ctx: AnyContext, file_path: str) -> bool:
78
78
  return file_path.startswith(
79
- os.path.join(APP_DIR, "schema", to_snake_case(ctx.input.entity))
79
+ os.path.abspath(
80
+ os.path.join(APP_DIR, "schema", to_snake_case(ctx.input.entity))
81
+ )
80
82
  )
81
83
 
82
84
 
83
85
  def is_in_module_entity_test_dir(ctx: AnyContext, file_path: str) -> bool:
84
86
  return file_path.startswith(
85
- os.path.join(
86
- APP_DIR,
87
- "test",
88
- to_snake_case(ctx.input.module),
89
- to_snake_case(ctx.input.entity),
87
+ os.path.abspath(
88
+ os.path.join(
89
+ APP_DIR,
90
+ "test",
91
+ to_snake_case(ctx.input.module),
92
+ to_snake_case(ctx.input.entity),
93
+ )
90
94
  )
91
95
  )
92
96
 
93
97
 
94
98
  def is_in_module_entity_dir(ctx: AnyContext, file_path: str) -> bool:
95
99
  return file_path.startswith(
96
- os.path.join(
97
- APP_DIR,
98
- "module",
99
- to_snake_case(ctx.input.module),
100
- "service",
101
- to_snake_case(ctx.input.entity),
100
+ os.path.abspath(
101
+ os.path.join(
102
+ APP_DIR,
103
+ "module",
104
+ to_snake_case(ctx.input.module),
105
+ "service",
106
+ to_snake_case(ctx.input.entity),
107
+ )
102
108
  )
103
109
  )
104
110
 
105
111
 
106
112
  def is_module_route_file(ctx: AnyContext, file_path: str) -> bool:
107
- module_route_file = os.path.join(
108
- APP_DIR,
109
- "module",
110
- to_snake_case(ctx.input.module),
111
- "route.py",
113
+ module_route_file = os.path.abspath(
114
+ os.path.join(
115
+ APP_DIR,
116
+ "module",
117
+ to_snake_case(ctx.input.module),
118
+ "route.py",
119
+ )
112
120
  )
113
121
  return file_path == module_route_file
114
122
 
115
123
 
116
124
  def is_module_migration_metadata_file(ctx: AnyContext, file_path: str) -> bool:
117
- module_migration_metadata_file = os.path.join(
118
- APP_DIR,
119
- "module",
120
- to_snake_case(ctx.input.module),
121
- "migration_metadata.py",
125
+ module_migration_metadata_file = os.path.abspath(
126
+ os.path.join(
127
+ APP_DIR,
128
+ "module",
129
+ to_snake_case(ctx.input.module),
130
+ "migration_metadata.py",
131
+ )
122
132
  )
123
133
  return file_path == module_migration_metadata_file
124
134
 
125
135
 
126
136
  def is_module_client_file(ctx: AnyContext, file_path: str) -> bool:
127
- module_any_client_file = os.path.join(
128
- APP_DIR,
129
- "module",
130
- to_snake_case(ctx.input.module),
131
- "client",
132
- f"{to_snake_case(ctx.input.module)}_client.py",
137
+ module_any_client_file = os.path.abspath(
138
+ os.path.join(
139
+ APP_DIR,
140
+ "module",
141
+ to_snake_case(ctx.input.module),
142
+ "client",
143
+ f"{to_snake_case(ctx.input.module)}_client.py",
144
+ )
133
145
  )
134
146
  return file_path == module_any_client_file
135
147
 
136
148
 
137
149
  def is_module_api_client_file(ctx: AnyContext, file_path: str) -> bool:
138
- module_api_client_file = os.path.join(
139
- APP_DIR,
140
- "module",
141
- to_snake_case(ctx.input.module),
142
- "client",
143
- f"{to_snake_case(ctx.input.module)}_api_client.py",
150
+ module_api_client_file = os.path.abspath(
151
+ os.path.join(
152
+ APP_DIR,
153
+ "module",
154
+ to_snake_case(ctx.input.module),
155
+ "client",
156
+ f"{to_snake_case(ctx.input.module)}_api_client.py",
157
+ )
144
158
  )
145
159
  return file_path == module_api_client_file
146
160
 
147
161
 
148
162
  def is_module_direct_client_file(ctx: AnyContext, file_path: str) -> bool:
149
- module_direct_client_file = os.path.join(
150
- APP_DIR,
151
- "module",
152
- to_snake_case(ctx.input.module),
153
- "client",
154
- f"{to_snake_case(ctx.input.module)}_direct_client.py",
163
+ module_direct_client_file = os.path.abspath(
164
+ os.path.join(
165
+ APP_DIR,
166
+ "module",
167
+ to_snake_case(ctx.input.module),
168
+ "client",
169
+ f"{to_snake_case(ctx.input.module)}_direct_client.py",
170
+ )
155
171
  )
156
172
  return file_path == module_direct_client_file
157
173
 
158
174
 
159
175
  def is_module_gateway_subroute_file(ctx: AnyContext, file_path: str) -> bool:
160
- module_gateway_subroute_file = os.path.join(
161
- APP_DIR,
162
- "module",
163
- "gateway",
164
- "subroute",
165
- f"{to_snake_case(ctx.input.module)}.py",
176
+ module_gateway_subroute_file = os.path.abspath(
177
+ os.path.join(
178
+ APP_DIR,
179
+ "module",
180
+ "gateway",
181
+ "subroute",
182
+ f"{to_snake_case(ctx.input.module)}.py",
183
+ )
166
184
  )
167
185
  return file_path == module_gateway_subroute_file
168
186
 
169
187
 
170
188
  def is_module_gateway_subroute_view_file(ctx: AnyContext, file_path: str) -> bool:
171
- module_gateway_subroute_file = os.path.join(
172
- APP_DIR,
173
- "module",
174
- "gateway",
175
- "view",
176
- "content",
177
- f"{to_kebab_case(ctx.input.module)}",
178
- f"{to_kebab_case(ctx.input.entity)}.html",
189
+ module_gateway_subroute_file = os.path.abspath(
190
+ os.path.join(
191
+ APP_DIR,
192
+ "module",
193
+ "gateway",
194
+ "view",
195
+ "content",
196
+ f"{to_kebab_case(ctx.input.module)}",
197
+ f"{to_kebab_case(ctx.input.entity)}.html",
198
+ )
179
199
  )
180
200
  return file_path == module_gateway_subroute_file
181
201
 
@@ -16,41 +16,47 @@ from zrb.util.string.conversion import (
16
16
 
17
17
 
18
18
  def is_app_config_file(ctx: AnyContext, file_path: str) -> bool:
19
- return file_path == os.path.join(APP_DIR, "config.py")
19
+ return file_path == os.path.abspath(os.path.join(APP_DIR, "config.py"))
20
20
 
21
21
 
22
22
  def is_app_main_file(ctx: AnyContext, file_path: str) -> bool:
23
- return file_path == os.path.join(APP_DIR, "main.py")
23
+ return file_path == os.path.abspath(os.path.join(APP_DIR, "main.py"))
24
24
 
25
25
 
26
26
  def is_gateway_route_file(ctx: AnyContext, file_path: str) -> bool:
27
- return file_path == os.path.join(APP_DIR, "module", "gateway", "route.py")
27
+ return file_path == os.path.abspath(
28
+ os.path.join(APP_DIR, "module", "gateway", "route.py")
29
+ )
28
30
 
29
31
 
30
32
  def is_gateway_navigation_config_file(ctx: AnyContext, file_path: str) -> bool:
31
- return file_path == os.path.join(
32
- APP_DIR, "module", "gateway", "config", "navigation.py"
33
+ return file_path == os.path.abspath(
34
+ os.path.join(APP_DIR, "module", "gateway", "config", "navigation.py")
33
35
  )
34
36
 
35
37
 
36
38
  def is_app_zrb_task_file(ctx: AnyContext, file_path: str) -> bool:
37
- return file_path == os.path.join(APP_DIR, "_zrb", "task.py")
39
+ return file_path == os.path.abspath(os.path.join(APP_DIR, "_zrb", "task.py"))
38
40
 
39
41
 
40
42
  def is_app_zrb_config_file(ctx: AnyContext, file_path: str) -> bool:
41
- return file_path == os.path.join(APP_DIR, "_zrb", "config.py")
43
+ return file_path == os.path.abspath(os.path.join(APP_DIR, "_zrb", "config.py"))
42
44
 
43
45
 
44
46
  def is_in_module_dir(ctx: AnyContext, file_path: str) -> bool:
45
47
  return file_path.startswith(
46
- os.path.join(APP_DIR, "module", to_snake_case(ctx.input.module))
48
+ os.path.abspath(
49
+ os.path.join(APP_DIR, "module", to_snake_case(ctx.input.module))
50
+ )
47
51
  )
48
52
 
49
53
 
50
54
  def is_gateway_module_subroute_file(ctx: AnyContext, file_path: str) -> bool:
51
55
  module_subroute_file_name = f"{to_snake_case(ctx.input.module)}.py"
52
- return file_path == os.path.join(
53
- APP_DIR, "module", "gateway", "subroute", module_subroute_file_name
56
+ return file_path == os.path.abspath(
57
+ os.path.join(
58
+ APP_DIR, "module", "gateway", "subroute", module_subroute_file_name
59
+ )
54
60
  )
55
61
 
56
62
 
@@ -7,4 +7,4 @@ logging.basicConfig(
7
7
  )
8
8
 
9
9
  # Create a logger for your application
10
- logger: logging.Logger = logging.getLogger("fastapp")
10
+ logger: logging.Logger = logging.getLogger("my-app-name")
@@ -7,12 +7,16 @@ from zrb.util.string.conversion import double_quote, to_snake_case
7
7
 
8
8
  def is_in_project_app_dir(ctx: AnyContext, file_path: str) -> bool:
9
9
  return file_path.startswith(
10
- os.path.join(ctx.input.project_dir, to_snake_case(ctx.input.app))
10
+ os.path.abspath(
11
+ os.path.join(ctx.input.project_dir, to_snake_case(ctx.input.app))
12
+ )
11
13
  )
12
14
 
13
15
 
14
16
  def is_project_zrb_init_file(ctx: AnyContext, file_path: str) -> bool:
15
- return file_path == os.path.join(ctx.input.project_dir, "zrb_init.py")
17
+ return file_path == os.path.abspath(
18
+ os.path.join(ctx.input.project_dir, "zrb_init.py")
19
+ )
16
20
 
17
21
 
18
22
  def update_project_zrb_init_file(ctx: AnyContext, zrb_init_path: str):
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: zrb
3
- Version: 1.2.0
3
+ Version: 1.2.1
4
4
  Summary: Your Automation Powerhouse
5
5
  Home-page: https://github.com/state-alchemists/zrb
6
6
  License: AGPL-3.0-or-later
@@ -79,8 +79,7 @@ pip install --pre zrb
79
79
  Alternatively, you can also use our installation script to install Zrb along with some prerequisites:
80
80
 
81
81
  ```bash
82
- bash -c "$(curl -fsSL https://raw.githubusercontent.com/state-alchemists/zrb/refs/heads/1.0.0/install.sh)"
83
- # bash -c "$(curl -fsSL https://raw.githubusercontent.com/state-alchemists/zrb/main/install.sh)"
82
+ bash -c "$(curl -fsSL https://raw.githubusercontent.com/state-alchemists/zrb/main/install.sh)"
84
83
  ```
85
84
 
86
85
  # 🐞 Bug Report + Feature Request
@@ -16,17 +16,17 @@ zrb/builtin/llm/tool/web.py,sha256=N2HYuXbKPUpjVAq_UnQMbUrTIE8u0Ut3TeQadZ7_NJc,2
16
16
  zrb/builtin/md5.py,sha256=0pNlrfZA0wlZlHvFHLgyqN0JZJWGKQIF5oXxO44_OJk,949
17
17
  zrb/builtin/project/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
18
18
  zrb/builtin/project/add/fastapp/fastapp_input.py,sha256=MKlWR_LxWhM_DcULCtLfL_IjTxpDnDBkn9KIqNmajFs,310
19
- zrb/builtin/project/add/fastapp/fastapp_task.py,sha256=mUMZjC413DhZSKqA6donPTxVbd_DnDFqSV_ZTqQnSHs,2697
19
+ zrb/builtin/project/add/fastapp/fastapp_task.py,sha256=z6hZ3j-dxUG7F3IH40rQAOvyhmemfF-3KU-XcYEuTlI,2697
20
20
  zrb/builtin/project/add/fastapp/fastapp_template/my_app_name/.coveragerc,sha256=MsTf0Vlt_pxV-j4mNh-TxSo7sTI_GaVS_oM4tksIykE,181
21
21
  zrb/builtin/project/add/fastapp/fastapp_template/my_app_name/.flake8,sha256=fgvHmuskgYiCvHZHaFtiyOWW0zasVrs0P-sFHOq3W5U,56
22
22
  zrb/builtin/project/add/fastapp/fastapp_template/my_app_name/.gitignore,sha256=D-ISOzaKlN_VzeZP5f8aznDSJX4p8PCtaK2JWM5yY1c,61
23
23
  zrb/builtin/project/add/fastapp/fastapp_template/my_app_name/README.md,sha256=MAo7ZFbg7LLiAfQbXcippMgjJ2-VXMKtiTDEZ3I4AAg,221
24
24
  zrb/builtin/project/add/fastapp/fastapp_template/my_app_name/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
25
- zrb/builtin/project/add/fastapp/fastapp_template/my_app_name/_zrb/column/add_column_task.py,sha256=Q7Ami5JsyoJUms9yeQVTgEA642dzqRrAG8Mnzv1Xb7o,3566
26
- zrb/builtin/project/add/fastapp/fastapp_template/my_app_name/_zrb/column/add_column_util.py,sha256=GESC0cWFgRZXr6u2tDhO_WEP18GiQK-PEoNOyzlq3q4,10420
25
+ zrb/builtin/project/add/fastapp/fastapp_template/my_app_name/_zrb/column/add_column_task.py,sha256=j24bFnqMCZrYx67HMtOAJMBb2P1-ymvo8_oFjP0uTxg,3726
26
+ zrb/builtin/project/add/fastapp/fastapp_template/my_app_name/_zrb/column/add_column_util.py,sha256=vJoO24tydx87uVUTYsuLCm-EaFcS7dmyk8OhwuFZ_QI,10176
27
27
  zrb/builtin/project/add/fastapp/fastapp_template/my_app_name/_zrb/config.py,sha256=uviB4q2iZjoU9_fA1O4VrjpuVAqx2gj5hjospJ0Xzeg,885
28
28
  zrb/builtin/project/add/fastapp/fastapp_template/my_app_name/_zrb/entity/add_entity_task.py,sha256=W0ziCIhSwUbu8vBABEcTvLrTAegJmRbqui6TzG1xqlo,11183
29
- zrb/builtin/project/add/fastapp/fastapp_template/my_app_name/_zrb/entity/add_entity_util.py,sha256=6ltaoHBrEiSi7whOodcbqcgUaY93jV7wBeLw9F13umY,16120
29
+ zrb/builtin/project/add/fastapp/fastapp_template/my_app_name/_zrb/entity/add_entity_util.py,sha256=M7FSCdq-dzXqa22kFO6HwMIJ2XlHMSys-I0-K1_90xE,16683
30
30
  zrb/builtin/project/add/fastapp/fastapp_template/my_app_name/_zrb/entity/template/app_template/module/gateway/view/content/my-module/my-entity.html,sha256=lAXQWT5I2kzyWDHX4Rrp6F-y0Ck5xbMDJsDQChKgDpo,10910
31
31
  zrb/builtin/project/add/fastapp/fastapp_template/my_app_name/_zrb/entity/template/app_template/module/my_module/service/my_entity/my_entity_service.py,sha256=PgwTsHMHRiFS7JQeAe6wWmIHk6s-OfIybx_mJfuT_G4,3918
32
32
  zrb/builtin/project/add/fastapp/fastapp_template/my_app_name/_zrb/entity/template/app_template/module/my_module/service/my_entity/my_entity_service_factory.py,sha256=lnhhpc_AflWnCQbLkYORrshiqIA5wy4SdxDuUxmn7Ts,372
@@ -45,7 +45,7 @@ zrb/builtin/project/add/fastapp/fastapp_template/my_app_name/_zrb/format_task.py
45
45
  zrb/builtin/project/add/fastapp/fastapp_template/my_app_name/_zrb/group.py,sha256=S0sKnnABSGy3YzaExH40xJjm4UsEX6AyDE1u94ewk6A,648
46
46
  zrb/builtin/project/add/fastapp/fastapp_template/my_app_name/_zrb/input.py,sha256=_LagLs2R9Eao4xJ1d2i_Yj1ELu7uZGNJnK90ruvY0O8,1511
47
47
  zrb/builtin/project/add/fastapp/fastapp_template/my_app_name/_zrb/module/add_module_task.py,sha256=_1sJd91bViSfEbpxNgqeCE7gBHP7yH9i7uJbPu9OvtY,4058
48
- zrb/builtin/project/add/fastapp/fastapp_template/my_app_name/_zrb/module/add_module_util.py,sha256=NtQX3F9vVGJAPkzt6VffXGru8ULh4gYWeDxNk1Qepek,8293
48
+ zrb/builtin/project/add/fastapp/fastapp_template/my_app_name/_zrb/module/add_module_util.py,sha256=rNfXTtL6-Yhok1tp48cZYIX6Z3isEytaXCMd6B3c9pA,8487
49
49
  zrb/builtin/project/add/fastapp/fastapp_template/my_app_name/_zrb/module/template/app_template/module/gateway/subroute/my_module.py,sha256=_5EgmEeATL5ZSX5MSJixkDgRQKGNTPG6watEuzv3eQI,418
50
50
  zrb/builtin/project/add/fastapp/fastapp_template/my_app_name/_zrb/module/template/app_template/module/my_module/alembic.ini,sha256=mgQyBAIwdkZZJWLu_FQWPx1FkyaARCNp6-rLqSVvMbA,3723
51
51
  zrb/builtin/project/add/fastapp/fastapp_template/my_app_name/_zrb/module/template/app_template/module/my_module/client/my_module_api_client.py,sha256=7Ffk0eF4HX1RLfmacqHvuhNlfWkWAtunUBdF_N-Gq38,186
@@ -71,7 +71,7 @@ zrb/builtin/project/add/fastapp/fastapp_template/my_app_name/common/base_db_repo
71
71
  zrb/builtin/project/add/fastapp/fastapp_template/my_app_name/common/base_service.py,sha256=YGkoJ0PHlbq586XNQXBjIJEduIq-dFg9k_P4CAK4mFk,12164
72
72
  zrb/builtin/project/add/fastapp/fastapp_template/my_app_name/common/db_engine_factory.py,sha256=Ku4iowi5DhkXwdWGljCOiHqcC4sI_mTB0hpvmd1_4x0,198
73
73
  zrb/builtin/project/add/fastapp/fastapp_template/my_app_name/common/error.py,sha256=MCPn4hkJiCMgtCqVFusK0RHEQ-eABs_JjzHoWpPtvVs,1219
74
- zrb/builtin/project/add/fastapp/fastapp_template/my_app_name/common/logger_factory.py,sha256=v_glMWbCZfFRtLq6vSu1fWYcubYhnpD4j2nc9NS6-Wo,241
74
+ zrb/builtin/project/add/fastapp/fastapp_template/my_app_name/common/logger_factory.py,sha256=N80L_PHT5vLGBIPt5MQEj63nEgWlZFLZFyH2fXVS0Ds,245
75
75
  zrb/builtin/project/add/fastapp/fastapp_template/my_app_name/common/parser_factory.py,sha256=0dsYhxDec4EBDngkLyyPztDOhNUEyDue8DjIPUd5XvM,238
76
76
  zrb/builtin/project/add/fastapp/fastapp_template/my_app_name/common/schema.py,sha256=dbRryeP5u7ObGX3GjF9ZID00yXffOp-AxyXu8oVJP0I,82
77
77
  zrb/builtin/project/add/fastapp/fastapp_template/my_app_name/common/util/app.py,sha256=AeLoeMwQBqCLVUw9DaeOfAabKQxa7bT82QPo-1naiA0,1546
@@ -177,7 +177,7 @@ zrb/builtin/project/add/fastapp/fastapp_template/my_app_name/test/test_health_an
177
177
  zrb/builtin/project/add/fastapp/fastapp_template/my_app_name/test/test_homepage.py,sha256=fJGnHGXe893idQ94-0Yd50YfxQRQZq3bLTd2Rgq2d-A,498
178
178
  zrb/builtin/project/add/fastapp/fastapp_template/my_app_name/test/test_not_found_error.py,sha256=SBqFRgGUldUtIz-uMf9a5DeWDPFeKbhvnvwiYr-jjns,502
179
179
  zrb/builtin/project/add/fastapp/fastapp_template/my_app_name/test.sh,sha256=QIwe6InrlEkmxdtj6NTO9JozeECYN0O4vx-x-qid6go,148
180
- zrb/builtin/project/add/fastapp/fastapp_util.py,sha256=UVzKfljUDLvlassnKy8pKH4hBP23ZUwEK5Ouh-fr87w,1463
180
+ zrb/builtin/project/add/fastapp/fastapp_util.py,sha256=LfKcb_daaAdhMz0BgbYd1yIvw7DQzruZ7bjB7gLGFdk,1533
181
181
  zrb/builtin/project/create/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
182
182
  zrb/builtin/project/create/project-template/README.md,sha256=BHeWF_txdTDzKewWdWfGhO3YOTiW8E3YwTMnd0T1LVA,39
183
183
  zrb/builtin/project/create/project-template/zrb_init.py,sha256=kY0x5MrkIVl3l1GtN2ROrYGNpsfN2dgRT84LCcSrGUs,44
@@ -339,7 +339,7 @@ zrb/util/string/name.py,sha256=8picJfUBXNpdh64GNaHv3om23QHhUZux7DguFLrXHp8,1163
339
339
  zrb/util/todo.py,sha256=1nDdwPc22oFoK_1ZTXyf3638Bg6sqE2yp_U4_-frHoc,16015
340
340
  zrb/xcom/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
341
341
  zrb/xcom/xcom.py,sha256=o79rxR9wphnShrcIushA0Qt71d_p3ZTxjNf7x9hJB78,1571
342
- zrb-1.2.0.dist-info/METADATA,sha256=DlgVxKkUzjjMmqfdqv1h2jqlZGprsQGYraHstWCkEU4,4307
343
- zrb-1.2.0.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
344
- zrb-1.2.0.dist-info/entry_points.txt,sha256=-Pg3ElWPfnaSM-XvXqCxEAa-wfVI6BEgcs386s8C8v8,46
345
- zrb-1.2.0.dist-info/RECORD,,
342
+ zrb-1.2.1.dist-info/METADATA,sha256=Oj5aFm5hZeFXkWttWm6MNwk5uBCwVIGPHj2Y5IdoQyo,4198
343
+ zrb-1.2.1.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
344
+ zrb-1.2.1.dist-info/entry_points.txt,sha256=-Pg3ElWPfnaSM-XvXqCxEAa-wfVI6BEgcs386s8C8v8,46
345
+ zrb-1.2.1.dist-info/RECORD,,
File without changes