fast-clean 1.4.3__tar.gz → 1.4.4__tar.gz
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.
- {fast_clean-1.4.3 → fast_clean-1.4.4}/PKG-INFO +1 -1
- {fast_clean-1.4.3 → fast_clean-1.4.4}/fast_clean/depends.py +3 -2
- {fast_clean-1.4.3 → fast_clean-1.4.4}/fast_clean.egg-info/PKG-INFO +1 -1
- {fast_clean-1.4.3 → fast_clean-1.4.4}/pyproject.toml +1 -1
- {fast_clean-1.4.3 → fast_clean-1.4.4}/README.md +0 -0
- {fast_clean-1.4.3 → fast_clean-1.4.4}/fast_clean/__init__.py +0 -0
- {fast_clean-1.4.3 → fast_clean-1.4.4}/fast_clean/broker.py +0 -0
- {fast_clean-1.4.3 → fast_clean-1.4.4}/fast_clean/cli/__init__.py +0 -0
- {fast_clean-1.4.3 → fast_clean-1.4.4}/fast_clean/cli/cryptography.py +0 -0
- {fast_clean-1.4.3 → fast_clean-1.4.4}/fast_clean/cli/load_seed.py +0 -0
- {fast_clean-1.4.3 → fast_clean-1.4.4}/fast_clean/container.py +0 -0
- {fast_clean-1.4.3 → fast_clean-1.4.4}/fast_clean/contrib/__init__.py +0 -0
- {fast_clean-1.4.3 → fast_clean-1.4.4}/fast_clean/contrib/healthcheck/__init__.py +0 -0
- {fast_clean-1.4.3 → fast_clean-1.4.4}/fast_clean/contrib/healthcheck/router.py +0 -0
- {fast_clean-1.4.3 → fast_clean-1.4.4}/fast_clean/contrib/healthcheck/schemas.py +0 -0
- {fast_clean-1.4.3 → fast_clean-1.4.4}/fast_clean/contrib/logging/__init__.py +0 -0
- {fast_clean-1.4.3 → fast_clean-1.4.4}/fast_clean/contrib/logging/enums.py +0 -0
- {fast_clean-1.4.3 → fast_clean-1.4.4}/fast_clean/contrib/logging/sentry.py +0 -0
- {fast_clean-1.4.3 → fast_clean-1.4.4}/fast_clean/contrib/monitoring/__init__.py +0 -0
- {fast_clean-1.4.3 → fast_clean-1.4.4}/fast_clean/contrib/monitoring/middleware.py +0 -0
- {fast_clean-1.4.3 → fast_clean-1.4.4}/fast_clean/contrib/monitoring/router.py +0 -0
- {fast_clean-1.4.3 → fast_clean-1.4.4}/fast_clean/contrib/sqlalchemy_utils/__init__.py +0 -0
- {fast_clean-1.4.3 → fast_clean-1.4.4}/fast_clean/contrib/sqlalchemy_utils/utils.py +0 -0
- {fast_clean-1.4.3 → fast_clean-1.4.4}/fast_clean/db.py +0 -0
- {fast_clean-1.4.3 → fast_clean-1.4.4}/fast_clean/enums.py +0 -0
- {fast_clean-1.4.3 → fast_clean-1.4.4}/fast_clean/exceptions.py +0 -0
- {fast_clean-1.4.3 → fast_clean-1.4.4}/fast_clean/loggers.py +0 -0
- {fast_clean-1.4.3 → fast_clean-1.4.4}/fast_clean/middleware.py +0 -0
- {fast_clean-1.4.3 → fast_clean-1.4.4}/fast_clean/models.py +0 -0
- {fast_clean-1.4.3 → fast_clean-1.4.4}/fast_clean/py.typed +0 -0
- {fast_clean-1.4.3 → fast_clean-1.4.4}/fast_clean/repositories/__init__.py +0 -0
- {fast_clean-1.4.3 → fast_clean-1.4.4}/fast_clean/repositories/cache/__init__.py +0 -0
- {fast_clean-1.4.3 → fast_clean-1.4.4}/fast_clean/repositories/cache/in_memory.py +0 -0
- {fast_clean-1.4.3 → fast_clean-1.4.4}/fast_clean/repositories/cache/redis.py +0 -0
- {fast_clean-1.4.3 → fast_clean-1.4.4}/fast_clean/repositories/crud/__init__.py +0 -0
- {fast_clean-1.4.3 → fast_clean-1.4.4}/fast_clean/repositories/crud/db.py +0 -0
- {fast_clean-1.4.3 → fast_clean-1.4.4}/fast_clean/repositories/crud/in_memory.py +0 -0
- {fast_clean-1.4.3 → fast_clean-1.4.4}/fast_clean/repositories/crud/type_vars.py +0 -0
- {fast_clean-1.4.3 → fast_clean-1.4.4}/fast_clean/repositories/settings/__init__.py +0 -0
- {fast_clean-1.4.3 → fast_clean-1.4.4}/fast_clean/repositories/settings/enums.py +0 -0
- {fast_clean-1.4.3 → fast_clean-1.4.4}/fast_clean/repositories/settings/env.py +0 -0
- {fast_clean-1.4.3 → fast_clean-1.4.4}/fast_clean/repositories/settings/exceptions.py +0 -0
- {fast_clean-1.4.3 → fast_clean-1.4.4}/fast_clean/repositories/settings/type_vars.py +0 -0
- {fast_clean-1.4.3 → fast_clean-1.4.4}/fast_clean/repositories/storage/__init__.py +0 -0
- {fast_clean-1.4.3 → fast_clean-1.4.4}/fast_clean/repositories/storage/enums.py +0 -0
- {fast_clean-1.4.3 → fast_clean-1.4.4}/fast_clean/repositories/storage/local.py +0 -0
- {fast_clean-1.4.3 → fast_clean-1.4.4}/fast_clean/repositories/storage/reader.py +0 -0
- {fast_clean-1.4.3 → fast_clean-1.4.4}/fast_clean/repositories/storage/s3.py +0 -0
- {fast_clean-1.4.3 → fast_clean-1.4.4}/fast_clean/repositories/storage/schemas.py +0 -0
- {fast_clean-1.4.3 → fast_clean-1.4.4}/fast_clean/schemas/__init__.py +0 -0
- {fast_clean-1.4.3 → fast_clean-1.4.4}/fast_clean/schemas/exceptions.py +0 -0
- {fast_clean-1.4.3 → fast_clean-1.4.4}/fast_clean/schemas/pagination.py +0 -0
- {fast_clean-1.4.3 → fast_clean-1.4.4}/fast_clean/schemas/repository.py +0 -0
- {fast_clean-1.4.3 → fast_clean-1.4.4}/fast_clean/schemas/request_response.py +0 -0
- {fast_clean-1.4.3 → fast_clean-1.4.4}/fast_clean/services/__init__.py +0 -0
- {fast_clean-1.4.3 → fast_clean-1.4.4}/fast_clean/services/cryptography/__init__.py +0 -0
- {fast_clean-1.4.3 → fast_clean-1.4.4}/fast_clean/services/cryptography/aes.py +0 -0
- {fast_clean-1.4.3 → fast_clean-1.4.4}/fast_clean/services/cryptography/enums.py +0 -0
- {fast_clean-1.4.3 → fast_clean-1.4.4}/fast_clean/services/lock.py +0 -0
- {fast_clean-1.4.3 → fast_clean-1.4.4}/fast_clean/services/seed.py +0 -0
- {fast_clean-1.4.3 → fast_clean-1.4.4}/fast_clean/services/transaction.py +0 -0
- {fast_clean-1.4.3 → fast_clean-1.4.4}/fast_clean/settings.py +0 -0
- {fast_clean-1.4.3 → fast_clean-1.4.4}/fast_clean/utils/__init__.py +0 -0
- {fast_clean-1.4.3 → fast_clean-1.4.4}/fast_clean/utils/process.py +0 -0
- {fast_clean-1.4.3 → fast_clean-1.4.4}/fast_clean/utils/pydantic.py +0 -0
- {fast_clean-1.4.3 → fast_clean-1.4.4}/fast_clean/utils/ssl_context.py +0 -0
- {fast_clean-1.4.3 → fast_clean-1.4.4}/fast_clean/utils/string.py +0 -0
- {fast_clean-1.4.3 → fast_clean-1.4.4}/fast_clean/utils/thread.py +0 -0
- {fast_clean-1.4.3 → fast_clean-1.4.4}/fast_clean/utils/time.py +0 -0
- {fast_clean-1.4.3 → fast_clean-1.4.4}/fast_clean/utils/toml.py +0 -0
- {fast_clean-1.4.3 → fast_clean-1.4.4}/fast_clean/utils/type_converters.py +0 -0
- {fast_clean-1.4.3 → fast_clean-1.4.4}/fast_clean/utils/typer.py +0 -0
- {fast_clean-1.4.3 → fast_clean-1.4.4}/fast_clean.egg-info/SOURCES.txt +0 -0
- {fast_clean-1.4.3 → fast_clean-1.4.4}/fast_clean.egg-info/dependency_links.txt +0 -0
- {fast_clean-1.4.3 → fast_clean-1.4.4}/fast_clean.egg-info/requires.txt +0 -0
- {fast_clean-1.4.3 → fast_clean-1.4.4}/fast_clean.egg-info/top_level.txt +0 -0
- {fast_clean-1.4.3 → fast_clean-1.4.4}/setup.cfg +0 -0
- {fast_clean-1.4.3 → fast_clean-1.4.4}/tests/test_broker.py +0 -0
- {fast_clean-1.4.3 → fast_clean-1.4.4}/tests/test_db.py +0 -0
- {fast_clean-1.4.3 → fast_clean-1.4.4}/tests/test_exceptions.py +0 -0
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.4
|
2
2
|
Name: fast-clean
|
3
|
-
Version: 1.4.
|
3
|
+
Version: 1.4.4
|
4
4
|
Summary: FastAPI Clean Architecture implementation
|
5
5
|
Author-email: Luferov Victor <luferovvs@yandex.ru>, Orlov Artem <squakrazv@yandex.ru>, Kashapov Rustam <hardtechnik91@gmail.com>
|
6
6
|
Requires-Python: >=3.13
|
@@ -159,7 +159,8 @@ class CoreProvider(Provider):
|
|
159
159
|
)
|
160
160
|
async with storage_repository:
|
161
161
|
yield storage_repository
|
162
|
-
|
162
|
+
else:
|
163
|
+
raise NotImplementedError(f'Storage {storage_settings.provider} is not allowed')
|
163
164
|
|
164
165
|
# --- db ---
|
165
166
|
|
@@ -189,7 +190,7 @@ class CoreProvider(Provider):
|
|
189
190
|
|
190
191
|
# --- services ---
|
191
192
|
|
192
|
-
seed_service = provide(SeedService, scope=Scope.
|
193
|
+
seed_service = provide(SeedService, scope=Scope.REQUEST)
|
193
194
|
transaction_service = provide(TransactionService)
|
194
195
|
|
195
196
|
@provide(scope=Scope.APP)
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.4
|
2
2
|
Name: fast-clean
|
3
|
-
Version: 1.4.
|
3
|
+
Version: 1.4.4
|
4
4
|
Summary: FastAPI Clean Architecture implementation
|
5
5
|
Author-email: Luferov Victor <luferovvs@yandex.ru>, Orlov Artem <squakrazv@yandex.ru>, Kashapov Rustam <hardtechnik91@gmail.com>
|
6
6
|
Requires-Python: >=3.13
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|