amsdal_cli 0.5.8__py3-none-any.whl → 0.5.9__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.
- amsdal_cli/__about__.py +1 -1
- amsdal_cli/commands/cloud/deploy/sub_commands/deploy_list.py +4 -4
- amsdal_cli/commands/cloud/deploy/sub_commands/deploy_new.py +1 -1
- amsdal_cli/commands/generate/utils/tests/type_utils.py +3 -3
- amsdal_cli/commands/migrations/sub_commands/apply.py +1 -1
- amsdal_cli/commands/migrations/sub_commands/list.py +1 -1
- amsdal_cli/commands/migrations/sub_commands/make.py +1 -1
- amsdal_cli/commands/migrations/sub_commands/make_contrib.py +1 -1
- amsdal_cli/commands/new/templates/requirements.txt +1 -1
- amsdal_cli/commands/register_connection/utils/initialize.py +1 -1
- amsdal_cli/commands/register_connection/utils/migrate_models.py +3 -3
- amsdal_cli/commands/serve/command.py +1 -1
- amsdal_cli/commands/serve/utils.py +3 -3
- {amsdal_cli-0.5.8.dist-info → amsdal_cli-0.5.9.dist-info}/METADATA +5 -4
- {amsdal_cli-0.5.8.dist-info → amsdal_cli-0.5.9.dist-info}/RECORD +18 -18
- {amsdal_cli-0.5.8.dist-info → amsdal_cli-0.5.9.dist-info}/WHEEL +1 -1
- {amsdal_cli-0.5.8.dist-info → amsdal_cli-0.5.9.dist-info}/entry_points.txt +0 -0
- {amsdal_cli-0.5.8.dist-info → amsdal_cli-0.5.9.dist-info}/licenses/LICENSE.txt +0 -0
amsdal_cli/__about__.py
CHANGED
|
@@ -92,11 +92,11 @@ async def list_command(
|
|
|
92
92
|
deployment.application_name or '-',
|
|
93
93
|
datetime.datetime.fromtimestamp(
|
|
94
94
|
deployment.created_at / 1000,
|
|
95
|
-
tz=datetime.
|
|
95
|
+
tz=datetime.UTC,
|
|
96
96
|
).strftime('%Y-%m-%d %H:%M:%S %Z'),
|
|
97
97
|
datetime.datetime.fromtimestamp(
|
|
98
98
|
deployment.last_update_at / 1000,
|
|
99
|
-
tz=datetime.
|
|
99
|
+
tz=datetime.UTC,
|
|
100
100
|
).strftime('%Y-%m-%d %H:%M:%S %Z'),
|
|
101
101
|
deployment.application_uuid or '-',
|
|
102
102
|
deployment.domain_url or '-',
|
|
@@ -109,11 +109,11 @@ async def list_command(
|
|
|
109
109
|
deployment.application_name or '-',
|
|
110
110
|
datetime.datetime.fromtimestamp(
|
|
111
111
|
deployment.created_at / 1000,
|
|
112
|
-
tz=datetime.
|
|
112
|
+
tz=datetime.UTC,
|
|
113
113
|
).strftime('%Y-%m-%d %H:%M:%S %Z'),
|
|
114
114
|
datetime.datetime.fromtimestamp(
|
|
115
115
|
deployment.last_update_at / 1000,
|
|
116
|
-
tz=datetime.
|
|
116
|
+
tz=datetime.UTC,
|
|
117
117
|
).strftime('%Y-%m-%d %H:%M:%S %Z'),
|
|
118
118
|
)
|
|
119
119
|
|
|
@@ -308,7 +308,7 @@ async def _async_check_missing_generated_migrations(
|
|
|
308
308
|
if not amsdal_manager.is_authenticated:
|
|
309
309
|
amsdal_manager.authenticate()
|
|
310
310
|
|
|
311
|
-
await amsdal_manager.post_setup() # type: ignore[call-arg
|
|
311
|
+
await amsdal_manager.post_setup() # type: ignore[call-arg]
|
|
312
312
|
|
|
313
313
|
migrations_dir = app_source_path / MIGRATIONS_DIR_NAME
|
|
314
314
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import ast
|
|
2
|
+
from datetime import UTC
|
|
2
3
|
from datetime import date
|
|
3
|
-
from datetime import timezone
|
|
4
4
|
from pathlib import Path
|
|
5
5
|
|
|
6
6
|
import faker
|
|
@@ -122,7 +122,7 @@ def _generate_values_for_type(
|
|
|
122
122
|
return ast.Constant(value='2023-01-01T00:00:00Z')
|
|
123
123
|
|
|
124
124
|
if test_data_type == TestDataType.RANDOM:
|
|
125
|
-
dt = FAKER.date_time(tzinfo=
|
|
125
|
+
dt = FAKER.date_time(tzinfo=UTC).replace(hour=0, minute=0, second=0, microsecond=0)
|
|
126
126
|
return ast.Constant(value=dt) # type: ignore[arg-type]
|
|
127
127
|
if test_data_type == TestDataType.DYNAMIC:
|
|
128
128
|
return _faker_call('date_time')
|
|
@@ -132,7 +132,7 @@ def _generate_values_for_type(
|
|
|
132
132
|
return ast.Constant(value=date(2023, 1, 1)) # type: ignore[arg-type]
|
|
133
133
|
|
|
134
134
|
if test_data_type == TestDataType.RANDOM:
|
|
135
|
-
dt = FAKER.date_time(tzinfo=
|
|
135
|
+
dt = FAKER.date_time(tzinfo=UTC).replace(hour=0, minute=0, second=0, microsecond=0)
|
|
136
136
|
return ast.Constant(value=dt.date()) # type: ignore[arg-type]
|
|
137
137
|
|
|
138
138
|
if test_data_type == TestDataType.DYNAMIC:
|
|
@@ -116,7 +116,7 @@ async def _async_sync_apply(
|
|
|
116
116
|
try:
|
|
117
117
|
amsdal_manager.authenticate()
|
|
118
118
|
|
|
119
|
-
await amsdal_manager.post_setup() # type: ignore[call-arg
|
|
119
|
+
await amsdal_manager.post_setup() # type: ignore[call-arg]
|
|
120
120
|
|
|
121
121
|
app_migrations_loader = MigrationsLoader(
|
|
122
122
|
migrations_dir=build_dir / MIGRATIONS_DIR_NAME,
|
|
@@ -39,7 +39,7 @@ async def _async_fetch_migrations(app_migrations_path: Path) -> list['MigrationF
|
|
|
39
39
|
|
|
40
40
|
try:
|
|
41
41
|
amsdal_manager.authenticate()
|
|
42
|
-
await amsdal_manager.post_setup() # type: ignore[call-arg
|
|
42
|
+
await amsdal_manager.post_setup() # type: ignore[call-arg]
|
|
43
43
|
|
|
44
44
|
store = AsyncFileMigrationStore(app_migrations_path)
|
|
45
45
|
await store.init_migration_table()
|
|
@@ -89,7 +89,7 @@ async def _async_make_migrations(
|
|
|
89
89
|
if not amsdal_manager.is_setup:
|
|
90
90
|
await amsdal_manager.setup()
|
|
91
91
|
amsdal_manager.authenticate()
|
|
92
|
-
await amsdal_manager.post_setup() # type: ignore[call-arg
|
|
92
|
+
await amsdal_manager.post_setup() # type: ignore[call-arg]
|
|
93
93
|
|
|
94
94
|
schema_repository = build_schema_repository(cli_config=cli_config)
|
|
95
95
|
migrations_dir: Path = cli_config.app_directory / cli_config.src_dir / MIGRATIONS_DIR_NAME
|
|
@@ -87,7 +87,7 @@ async def _async_make_contrib_migrations(
|
|
|
87
87
|
if not amsdal_manager.is_setup:
|
|
88
88
|
await amsdal_manager.setup()
|
|
89
89
|
amsdal_manager.authenticate()
|
|
90
|
-
await amsdal_manager.post_setup() # type: ignore[call-arg
|
|
90
|
+
await amsdal_manager.post_setup() # type: ignore[call-arg]
|
|
91
91
|
|
|
92
92
|
schema_repository = build_schema_repository(cli_config=cli_config)
|
|
93
93
|
migrations_dir: Path = cli_config.app_directory / cli_config.src_dir / MIGRATIONS_DIR_NAME
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
amsdal[cli]=={{ ctx.amsdal_version }}
|
|
2
|
-
{% if ctx.is_async_mode %}amsdal-glue-connections[async-sqlite]{% endif %}
|
|
2
|
+
{% if ctx.is_async_mode %}amsdal-glue-connections[async-sqlite,postgres-binary]{% endif %}
|
|
@@ -178,7 +178,7 @@ async def _async_migrate_models(config_path: Path) -> None:
|
|
|
178
178
|
new_manager = AsyncAmsdalManager()
|
|
179
179
|
if not new_manager.is_setup:
|
|
180
180
|
await new_manager.setup()
|
|
181
|
-
await new_manager.post_setup() # type: ignore[call-arg
|
|
181
|
+
await new_manager.post_setup() # type: ignore[call-arg]
|
|
182
182
|
|
|
183
183
|
schemas = MigrationSchemas()
|
|
184
184
|
executor = DefaultAsyncMigrationExecutor(schemas, use_foreign_keys=True)
|
|
@@ -310,7 +310,7 @@ async def _async_migrate_data(new_connection_name: str) -> None:
|
|
|
310
310
|
origin_manager = AsyncAmsdalManager()
|
|
311
311
|
if not origin_manager.is_setup:
|
|
312
312
|
await origin_manager.setup()
|
|
313
|
-
await origin_manager.post_setup() # type: ignore[call-arg
|
|
313
|
+
await origin_manager.post_setup() # type: ignore[call-arg]
|
|
314
314
|
|
|
315
315
|
model_class_loader = ModelClassLoader(settings.USER_MODELS_MODULE)
|
|
316
316
|
tables_for_connection = _resolve_tables_for_connection(new_connection_name)
|
|
@@ -346,7 +346,7 @@ async def _async_migrate_data(new_connection_name: str) -> None:
|
|
|
346
346
|
force_insert = True
|
|
347
347
|
lakehouse_item = model_class(**item.model_dump_refs())
|
|
348
348
|
|
|
349
|
-
await lakehouse_item.asave(
|
|
349
|
+
await lakehouse_item.asave(
|
|
350
350
|
force_insert=force_insert,
|
|
351
351
|
using=LAKEHOUSE_DB_ALIAS,
|
|
352
352
|
)
|
|
@@ -45,7 +45,7 @@ async def _async_serve(
|
|
|
45
45
|
async def on_event_async(self, *args: Any, **kwargs: Any) -> None: # noqa: ARG002
|
|
46
46
|
if not amsdal_manager._is_setup:
|
|
47
47
|
await amsdal_manager.setup()
|
|
48
|
-
await amsdal_manager.post_setup() # type: ignore[call-arg
|
|
48
|
+
await amsdal_manager.post_setup() # type: ignore[call-arg]
|
|
49
49
|
|
|
50
50
|
if not amsdal_manager.is_authenticated:
|
|
51
51
|
amsdal_manager.authenticate()
|
|
@@ -397,13 +397,13 @@ async def async_build_app_and_check_migrations(
|
|
|
397
397
|
if not amsdal_manager.is_setup:
|
|
398
398
|
await amsdal_manager.setup()
|
|
399
399
|
|
|
400
|
-
await amsdal_manager.post_setup() # type: ignore[call-arg
|
|
400
|
+
await amsdal_manager.post_setup() # type: ignore[call-arg]
|
|
401
401
|
amsdal_manager.init_classes()
|
|
402
402
|
|
|
403
403
|
if not amsdal_manager.is_authenticated:
|
|
404
404
|
amsdal_manager.authenticate()
|
|
405
405
|
|
|
406
|
-
await amsdal_manager.apply_fixtures() # type: ignore[call-arg
|
|
406
|
+
await amsdal_manager.apply_fixtures() # type: ignore[call-arg]
|
|
407
407
|
rprint(rich_success('OK!'))
|
|
408
408
|
except Exception:
|
|
409
409
|
if amsdal_manager.is_setup:
|
|
@@ -438,7 +438,7 @@ async def async_check_migrations_generated_and_applied(
|
|
|
438
438
|
if not amsdal_manager.is_authenticated:
|
|
439
439
|
amsdal_manager.authenticate()
|
|
440
440
|
|
|
441
|
-
await amsdal_manager.post_setup() # type: ignore[call-arg
|
|
441
|
+
await amsdal_manager.post_setup() # type: ignore[call-arg]
|
|
442
442
|
|
|
443
443
|
has_unapplied_migrations = await _async_check_has_unapplied_migrations(build_dir=build_dir)
|
|
444
444
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: amsdal_cli
|
|
3
|
-
Version: 0.5.
|
|
3
|
+
Version: 0.5.9
|
|
4
4
|
Summary: CLI for AMSDAL framework
|
|
5
5
|
Project-URL: Documentation, https://pypi.org/project/amsdal_cli/#readme
|
|
6
6
|
Project-URL: Issues, https://pypi.org/project/amsdal_cli/
|
|
@@ -118,17 +118,18 @@ Classifier: Development Status :: 4 - Beta
|
|
|
118
118
|
Classifier: Programming Language :: Python
|
|
119
119
|
Classifier: Programming Language :: Python :: 3.11
|
|
120
120
|
Classifier: Programming Language :: Python :: 3.12
|
|
121
|
+
Classifier: Programming Language :: Python :: 3.13
|
|
121
122
|
Classifier: Programming Language :: Python :: Implementation :: CPython
|
|
122
123
|
Classifier: Programming Language :: Python :: Implementation :: PyPy
|
|
123
|
-
Requires-Python:
|
|
124
|
+
Requires-Python: <3.14,>=3.11
|
|
124
125
|
Requires-Dist: amsdal-server==0.5.*
|
|
125
126
|
Requires-Dist: click<8.2.0
|
|
126
127
|
Requires-Dist: faker==27.*
|
|
127
128
|
Requires-Dist: gitpython~=3.1
|
|
128
129
|
Requires-Dist: httpx==0.28.*
|
|
129
130
|
Requires-Dist: jinja2~=3.1
|
|
130
|
-
Requires-Dist: pydantic-settings~=2.
|
|
131
|
-
Requires-Dist: pydantic~=2.
|
|
131
|
+
Requires-Dist: pydantic-settings~=2.12
|
|
132
|
+
Requires-Dist: pydantic~=2.12
|
|
132
133
|
Requires-Dist: rich~=14.0
|
|
133
134
|
Requires-Dist: typer~=0.15.3
|
|
134
135
|
Requires-Dist: watchfiles~=0.21
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
amsdal_cli/Third-Party Materials - AMSDAL Dependencies - License Notices.md,sha256=uHJlGG0D4tbpUi8cq-497NNO9ltQ67a5448k-T14HTw,68241
|
|
2
|
-
amsdal_cli/__about__.py,sha256=
|
|
2
|
+
amsdal_cli/__about__.py,sha256=6kYLhdHkt8K7kGaoPcOypmOiRuisFHUqVenu6fa0rn8,124
|
|
3
3
|
amsdal_cli/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
4
4
|
amsdal_cli/app.py,sha256=_ucuLT5ospf1ifFKEG0IMfVnxKjnvPUQ4iMhkvOfCrc,466
|
|
5
5
|
amsdal_cli/main.py,sha256=LtH-BD1eJrAUecjKzC8Gx7kYFUstOMH1erdeJUVqFB8,144
|
|
@@ -68,8 +68,8 @@ amsdal_cli/commands/cloud/deploy/app.py,sha256=_t2LVD8apbyvBrcWdNv1_nXtubng1hLW9
|
|
|
68
68
|
amsdal_cli/commands/cloud/deploy/command.py,sha256=LIX07pTU55GUA9KmTiKDtoCj5Ytx9ZDC7XQsVYUYsh8,262
|
|
69
69
|
amsdal_cli/commands/cloud/deploy/sub_commands/__init__.py,sha256=I7MJEyceCIgCXP7JpX06nLvEA6HUkjj9LSDAb7VfTGo,353
|
|
70
70
|
amsdal_cli/commands/cloud/deploy/sub_commands/deploy_delete.py,sha256=pRLumeigF4e_Nod32p6XkgJsYxbB9H3WSxbv0IwA5Eo,3221
|
|
71
|
-
amsdal_cli/commands/cloud/deploy/sub_commands/deploy_list.py,sha256=
|
|
72
|
-
amsdal_cli/commands/cloud/deploy/sub_commands/deploy_new.py,sha256=
|
|
71
|
+
amsdal_cli/commands/cloud/deploy/sub_commands/deploy_list.py,sha256=rqykOi49C3CHm7GiVOKTgwlrYcN3mSguHx759ZzZJ3k,5498
|
|
72
|
+
amsdal_cli/commands/cloud/deploy/sub_commands/deploy_new.py,sha256=N591T6XKpj1xPx_qGmpAmCqumeWpGrA0RH0e9_SSs-8,12686
|
|
73
73
|
amsdal_cli/commands/cloud/environments/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
74
74
|
amsdal_cli/commands/cloud/environments/app.py,sha256=kkzf_kW2jpl3d44qWuIZB5C3uWXzpNpnTIvUpuuPJHE,238
|
|
75
75
|
amsdal_cli/commands/cloud/environments/command.py,sha256=roeg2tpa53W1qzCa_3-zEn5z2xiVS4STWB9M7P5BVKA,283
|
|
@@ -138,7 +138,7 @@ amsdal_cli/commands/generate/utils/tests/async_mode_utils.py,sha256=iub84Pj5TMa3
|
|
|
138
138
|
amsdal_cli/commands/generate/utils/tests/conftest_utils.py,sha256=Ma0yRcrwzGwN_IdnAoYgVnYVjgLy0CgQveqXHuhn5RA,786
|
|
139
139
|
amsdal_cli/commands/generate/utils/tests/function_utils.py,sha256=Bkk9JDbANX2aSreNRr1Bste5rPwVKc2HV5xLFg2dQK4,496
|
|
140
140
|
amsdal_cli/commands/generate/utils/tests/model_utils.py,sha256=CBfR9AcL6Q1boEejjmOD16F0kgJFdIjYYWNE3vQMkfE,4051
|
|
141
|
-
amsdal_cli/commands/generate/utils/tests/type_utils.py,sha256=
|
|
141
|
+
amsdal_cli/commands/generate/utils/tests/type_utils.py,sha256=c2eKOrzuioDHbxQieiRAT8reF9TCgTq5CRx7WB3_W-Y,9302
|
|
142
142
|
amsdal_cli/commands/generate/utils/tests/unit.py,sha256=XEoTmgZP-8dSmFqA6lPk5U8k3AfDbDom92CviXgzFtw,27696
|
|
143
143
|
amsdal_cli/commands/generate/utils/tests/templates/async/conftest.py,sha256=9GfoV_HzwuWtglI7uz0fP5_pOsPk2f56elaoinuPa80,1632
|
|
144
144
|
amsdal_cli/commands/generate/utils/tests/templates/sync/conftest.py,sha256=wMmnKQnVTSJsS5MdH25ChRcc-aQevQYqIZhXwLnZl0U,1564
|
|
@@ -148,17 +148,17 @@ amsdal_cli/commands/migrations/command.py,sha256=jlpdYZAc02ZUBxSdzGSzkDxEb1nlHNz
|
|
|
148
148
|
amsdal_cli/commands/migrations/constants.py,sha256=846-DQ-Iqcxw2akd5aBAmbnXHDmRFqEKu6vai2ZFBkU,35
|
|
149
149
|
amsdal_cli/commands/migrations/utils.py,sha256=Fvu6NlIFL3OAz0MhLkvnucIsHBZlDDCOZZ38VhNahws,2700
|
|
150
150
|
amsdal_cli/commands/migrations/sub_commands/__init__.py,sha256=HHxiJxcbJUQLv6QOLwcvcSjTYJTixiRJ89IUb1H7sRo,1100
|
|
151
|
-
amsdal_cli/commands/migrations/sub_commands/apply.py,sha256=
|
|
152
|
-
amsdal_cli/commands/migrations/sub_commands/list.py,sha256=
|
|
153
|
-
amsdal_cli/commands/migrations/sub_commands/make.py,sha256=
|
|
154
|
-
amsdal_cli/commands/migrations/sub_commands/make_contrib.py,sha256=
|
|
151
|
+
amsdal_cli/commands/migrations/sub_commands/apply.py,sha256=MrlykOqsdBZoC1gnaHSOa6oGfTREDmxKyTmB7-mBRPU,8742
|
|
152
|
+
amsdal_cli/commands/migrations/sub_commands/list.py,sha256=kZc-qI-lVFrVpWyPV3b21wx1aLUYcFbFX1U1WDq2l0E,5828
|
|
153
|
+
amsdal_cli/commands/migrations/sub_commands/make.py,sha256=6Xh4wZFyZQmxSR8InBc0f_FUuIM_eqyfqO0ynLuDlPY,6423
|
|
154
|
+
amsdal_cli/commands/migrations/sub_commands/make_contrib.py,sha256=G3w5fRKR16-tKrTfOWCGj4Vkuwl22V5aEsRxEhIoD1k,6331
|
|
155
155
|
amsdal_cli/commands/new/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
156
156
|
amsdal_cli/commands/new/command.py,sha256=B-chjS_TAEzH4CIr_vBtxFWn7Y4xWm8vpUetCf1lwKo,3233
|
|
157
157
|
amsdal_cli/commands/new/templates/.amsdal-cli,sha256=PdXPovcT8AfPhqwDLI_4EWFYAS6e3J5JcsHVityBdF8,304
|
|
158
158
|
amsdal_cli/commands/new/templates/.gitignore,sha256=u7cZFs8VyeZahreeYtkoRnAQduko23Lz4SoGCyMSOQc,153
|
|
159
159
|
amsdal_cli/commands/new/templates/README.md,sha256=SM_MPq4HNWIxo2B4HJmfM1kfJYawW4YneuZxFqZnDo4,21552
|
|
160
160
|
amsdal_cli/commands/new/templates/config.yml,sha256=89BTeSrzPO92JTCRS8N03DXY0kdw-uMWCStLHzNaeRw,640
|
|
161
|
-
amsdal_cli/commands/new/templates/requirements.txt,sha256=
|
|
161
|
+
amsdal_cli/commands/new/templates/requirements.txt,sha256=05SVW1yzgvHwir231NIEgeCguZovGJyJKtHA1uFC3aA,129
|
|
162
162
|
amsdal_cli/commands/new/templates/.amsdal/.dependencies,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
163
163
|
amsdal_cli/commands/new/templates/.amsdal/.environment,sha256=DW5AeeNnA-vTfAByL1iR0osOKBHcEUsSkhUSOtzONgU,4
|
|
164
164
|
amsdal_cli/commands/new/templates/.amsdal/.secrets,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -179,17 +179,17 @@ amsdal_cli/commands/register_connection/utils/__init__.py,sha256=47DEQpj8HBSa-_T
|
|
|
179
179
|
amsdal_cli/commands/register_connection/utils/build.py,sha256=nsx2EeN-KhZHg1IwICeRSTfUJS1ajNy1LrP33lXoD4s,710
|
|
180
180
|
amsdal_cli/commands/register_connection/utils/config_updater.py,sha256=CDsaCuli5tCsHoNrzfeWoVDPlyOTWvi8TPdbM4Fzo4o,4204
|
|
181
181
|
amsdal_cli/commands/register_connection/utils/credentials.py,sha256=iaAF5STbKJNIoT8vL30DafTn4uzYnrjumtM3XNHuOS8,1066
|
|
182
|
-
amsdal_cli/commands/register_connection/utils/initialize.py,sha256=
|
|
182
|
+
amsdal_cli/commands/register_connection/utils/initialize.py,sha256=Fjs3ilpnv3TqdzpfkT8UUxtZhWR2GQ8_2-pGvazQu3s,1273
|
|
183
183
|
amsdal_cli/commands/register_connection/utils/meta.py,sha256=PDs2miN0SPW2hCATLY8uGe1WOzDyw-D6my90P-mpcl8,709
|
|
184
|
-
amsdal_cli/commands/register_connection/utils/migrate_models.py,sha256=
|
|
184
|
+
amsdal_cli/commands/register_connection/utils/migrate_models.py,sha256=vljLYKBDZJn4h2fywbDfNeKd5W4G_KYZ8vKpMhc1oMI,14043
|
|
185
185
|
amsdal_cli/commands/register_connection/utils/model_generator.py,sha256=w0vz-i-tMdimcQYmFbtfpOZJF8heTTRIzu1yTdbKBpc,10853
|
|
186
186
|
amsdal_cli/commands/register_connection/utils/tables.py,sha256=FOwbWOpEw485Leoqe8LXCVY5osGKTKlMqWD9oqosapk,474
|
|
187
187
|
amsdal_cli/commands/restore/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
188
188
|
amsdal_cli/commands/restore/command.py,sha256=yrtF0y3HHmv6RXrMKQCnUIDhEQecDWY7THI_erh6WtA,35976
|
|
189
189
|
amsdal_cli/commands/restore/enums.py,sha256=6SiKMRGlSjiLyepfbfQFXGAYqlM6Bkoeko2KscntTUQ,307
|
|
190
190
|
amsdal_cli/commands/serve/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
191
|
-
amsdal_cli/commands/serve/command.py,sha256=
|
|
192
|
-
amsdal_cli/commands/serve/utils.py,sha256=
|
|
191
|
+
amsdal_cli/commands/serve/command.py,sha256=r27g3mw-P77LfP43ygTk9QbxN7HklWbzrlosjO4hB5c,6537
|
|
192
|
+
amsdal_cli/commands/serve/utils.py,sha256=ErwuQFRJxo32Y7uLgxtUXYdbPlDCYsh8OfAkqWSblrA,18475
|
|
193
193
|
amsdal_cli/commands/serve/filters/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
194
194
|
amsdal_cli/commands/serve/filters/models_watch_filter.py,sha256=cnoAjrn-PYDAFq5MtgbQ6QeCvJJmcNisVNlA8QtFv4A,170
|
|
195
195
|
amsdal_cli/commands/serve/filters/static_files_watch_filter.py,sha256=jKAF5RHq1au2v0kcOrqaAHP1x5IUjt_KgZURJLm29Tw,552
|
|
@@ -224,8 +224,8 @@ amsdal_cli/utils/vcs/base.py,sha256=jC05ExJZDnyHAsW7_4IDf8gQcYgK4dXq3zNlFIX66T4,
|
|
|
224
224
|
amsdal_cli/utils/vcs/dummy.py,sha256=Lk8MT-b0YlHHUsiXsq5cvmPwcl4jTYdo8piN5_C8ORA,434
|
|
225
225
|
amsdal_cli/utils/vcs/enums.py,sha256=tYR9LN1IOr8BZFbSeX_vDlhn8fPl4IU-Yakii8lRDYs,69
|
|
226
226
|
amsdal_cli/utils/vcs/git.py,sha256=xHynbZcV6p2D3RFCwu1MGGpV9D7eK-pGUtO8kVexTQM,1269
|
|
227
|
-
amsdal_cli-0.5.
|
|
228
|
-
amsdal_cli-0.5.
|
|
229
|
-
amsdal_cli-0.5.
|
|
230
|
-
amsdal_cli-0.5.
|
|
231
|
-
amsdal_cli-0.5.
|
|
227
|
+
amsdal_cli-0.5.9.dist-info/METADATA,sha256=uFiVJXIDg30UwS0T47yiyypMaGT7CNKQDO1kr453xxQ,57164
|
|
228
|
+
amsdal_cli-0.5.9.dist-info/WHEEL,sha256=WLgqFyCfm_KASv4WHyYy0P3pM_m7J5L9k2skdKLirC8,87
|
|
229
|
+
amsdal_cli-0.5.9.dist-info/entry_points.txt,sha256=GC-8LZsD3W--Pd9_gD4W3tw3ZZyPbSvkZ-qWc9Fx0NI,47
|
|
230
|
+
amsdal_cli-0.5.9.dist-info/licenses/LICENSE.txt,sha256=hG-541PFYfNJi9WRZi_hno91UyqNg7YLK8LR3vLblZA,27355
|
|
231
|
+
amsdal_cli-0.5.9.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|