fast-clean 1.2.2__tar.gz → 1.2.3__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.2.3/PKG-INFO +42 -0
- fast_clean-1.2.3/README.md +12 -0
- {fast_clean-1.2.2 → fast_clean-1.2.3}/fast_clean/contrib/logging/sentry.py +0 -3
- {fast_clean-1.2.2 → fast_clean-1.2.3}/fast_clean/schemas/__init__.py +0 -1
- fast_clean-1.2.3/fast_clean.egg-info/PKG-INFO +42 -0
- {fast_clean-1.2.2 → fast_clean-1.2.3}/fast_clean.egg-info/requires.txt +1 -1
- {fast_clean-1.2.2 → fast_clean-1.2.3}/pyproject.toml +2 -2
- fast_clean-1.2.2/PKG-INFO +0 -1426
- fast_clean-1.2.2/README.md +0 -1396
- fast_clean-1.2.2/fast_clean.egg-info/PKG-INFO +0 -1426
- {fast_clean-1.2.2 → fast_clean-1.2.3}/fast_clean/__init__.py +0 -0
- {fast_clean-1.2.2 → fast_clean-1.2.3}/fast_clean/broker.py +0 -0
- {fast_clean-1.2.2 → fast_clean-1.2.3}/fast_clean/container.py +0 -0
- {fast_clean-1.2.2 → fast_clean-1.2.3}/fast_clean/contrib/__init__.py +0 -0
- {fast_clean-1.2.2 → fast_clean-1.2.3}/fast_clean/contrib/healthcheck/__init__.py +0 -0
- {fast_clean-1.2.2 → fast_clean-1.2.3}/fast_clean/contrib/healthcheck/router.py +0 -0
- {fast_clean-1.2.2 → fast_clean-1.2.3}/fast_clean/contrib/healthcheck/schemas.py +0 -0
- {fast_clean-1.2.2 → fast_clean-1.2.3}/fast_clean/contrib/logging/__init__.py +0 -0
- {fast_clean-1.2.2 → fast_clean-1.2.3}/fast_clean/contrib/logging/enums.py +0 -0
- {fast_clean-1.2.2 → fast_clean-1.2.3}/fast_clean/contrib/monitoring/__init__.py +0 -0
- {fast_clean-1.2.2 → fast_clean-1.2.3}/fast_clean/contrib/monitoring/middleware.py +0 -0
- {fast_clean-1.2.2 → fast_clean-1.2.3}/fast_clean/contrib/monitoring/router.py +0 -0
- {fast_clean-1.2.2 → fast_clean-1.2.3}/fast_clean/contrib/sqlalchemy_utils/__init__.py +0 -0
- {fast_clean-1.2.2 → fast_clean-1.2.3}/fast_clean/contrib/sqlalchemy_utils/utils.py +0 -0
- {fast_clean-1.2.2 → fast_clean-1.2.3}/fast_clean/db.py +0 -0
- {fast_clean-1.2.2 → fast_clean-1.2.3}/fast_clean/depends.py +0 -0
- {fast_clean-1.2.2 → fast_clean-1.2.3}/fast_clean/enums.py +0 -0
- {fast_clean-1.2.2 → fast_clean-1.2.3}/fast_clean/exceptions.py +0 -0
- {fast_clean-1.2.2 → fast_clean-1.2.3}/fast_clean/loggers.py +0 -0
- {fast_clean-1.2.2 → fast_clean-1.2.3}/fast_clean/middleware.py +0 -0
- {fast_clean-1.2.2 → fast_clean-1.2.3}/fast_clean/models.py +0 -0
- {fast_clean-1.2.2 → fast_clean-1.2.3}/fast_clean/py.typed +0 -0
- {fast_clean-1.2.2 → fast_clean-1.2.3}/fast_clean/redis.py +0 -0
- {fast_clean-1.2.2 → fast_clean-1.2.3}/fast_clean/repositories/__init__.py +0 -0
- {fast_clean-1.2.2 → fast_clean-1.2.3}/fast_clean/repositories/cache/__init__.py +0 -0
- {fast_clean-1.2.2 → fast_clean-1.2.3}/fast_clean/repositories/cache/in_memory.py +0 -0
- {fast_clean-1.2.2 → fast_clean-1.2.3}/fast_clean/repositories/cache/redis.py +0 -0
- {fast_clean-1.2.2 → fast_clean-1.2.3}/fast_clean/repositories/crud/__init__.py +0 -0
- {fast_clean-1.2.2 → fast_clean-1.2.3}/fast_clean/repositories/crud/db.py +0 -0
- {fast_clean-1.2.2 → fast_clean-1.2.3}/fast_clean/repositories/crud/in_memory.py +0 -0
- {fast_clean-1.2.2 → fast_clean-1.2.3}/fast_clean/repositories/crud/type_vars.py +0 -0
- {fast_clean-1.2.2 → fast_clean-1.2.3}/fast_clean/repositories/settings/__init__.py +0 -0
- {fast_clean-1.2.2 → fast_clean-1.2.3}/fast_clean/repositories/settings/enums.py +0 -0
- {fast_clean-1.2.2 → fast_clean-1.2.3}/fast_clean/repositories/settings/env.py +0 -0
- {fast_clean-1.2.2 → fast_clean-1.2.3}/fast_clean/repositories/settings/exceptions.py +0 -0
- {fast_clean-1.2.2 → fast_clean-1.2.3}/fast_clean/repositories/settings/type_vars.py +0 -0
- {fast_clean-1.2.2 → fast_clean-1.2.3}/fast_clean/repositories/storage/__init__.py +0 -0
- {fast_clean-1.2.2 → fast_clean-1.2.3}/fast_clean/repositories/storage/enums.py +0 -0
- {fast_clean-1.2.2 → fast_clean-1.2.3}/fast_clean/repositories/storage/local.py +0 -0
- {fast_clean-1.2.2 → fast_clean-1.2.3}/fast_clean/repositories/storage/reader.py +0 -0
- {fast_clean-1.2.2 → fast_clean-1.2.3}/fast_clean/repositories/storage/s3.py +0 -0
- {fast_clean-1.2.2 → fast_clean-1.2.3}/fast_clean/repositories/storage/schemas.py +0 -0
- {fast_clean-1.2.2 → fast_clean-1.2.3}/fast_clean/schemas/exceptions.py +0 -0
- {fast_clean-1.2.2 → fast_clean-1.2.3}/fast_clean/schemas/pagination.py +0 -0
- {fast_clean-1.2.2 → fast_clean-1.2.3}/fast_clean/schemas/repository.py +0 -0
- {fast_clean-1.2.2 → fast_clean-1.2.3}/fast_clean/schemas/request_response.py +0 -0
- {fast_clean-1.2.2 → fast_clean-1.2.3}/fast_clean/services/__init__.py +0 -0
- {fast_clean-1.2.2 → fast_clean-1.2.3}/fast_clean/services/cryptography/__init__.py +0 -0
- {fast_clean-1.2.2 → fast_clean-1.2.3}/fast_clean/services/cryptography/aes.py +0 -0
- {fast_clean-1.2.2 → fast_clean-1.2.3}/fast_clean/services/cryptography/enums.py +0 -0
- {fast_clean-1.2.2 → fast_clean-1.2.3}/fast_clean/services/lock.py +0 -0
- {fast_clean-1.2.2 → fast_clean-1.2.3}/fast_clean/services/seed.py +0 -0
- {fast_clean-1.2.2 → fast_clean-1.2.3}/fast_clean/services/transaction.py +0 -0
- {fast_clean-1.2.2 → fast_clean-1.2.3}/fast_clean/settings.py +0 -0
- {fast_clean-1.2.2 → fast_clean-1.2.3}/fast_clean/utils/__init__.py +0 -0
- {fast_clean-1.2.2 → fast_clean-1.2.3}/fast_clean/utils/process.py +0 -0
- {fast_clean-1.2.2 → fast_clean-1.2.3}/fast_clean/utils/pydantic.py +0 -0
- {fast_clean-1.2.2 → fast_clean-1.2.3}/fast_clean/utils/ssl_context.py +0 -0
- {fast_clean-1.2.2 → fast_clean-1.2.3}/fast_clean/utils/string.py +0 -0
- {fast_clean-1.2.2 → fast_clean-1.2.3}/fast_clean/utils/thread.py +0 -0
- {fast_clean-1.2.2 → fast_clean-1.2.3}/fast_clean/utils/time.py +0 -0
- {fast_clean-1.2.2 → fast_clean-1.2.3}/fast_clean/utils/type_converters.py +0 -0
- {fast_clean-1.2.2 → fast_clean-1.2.3}/fast_clean/utils/typer.py +0 -0
- {fast_clean-1.2.2 → fast_clean-1.2.3}/fast_clean.egg-info/SOURCES.txt +0 -0
- {fast_clean-1.2.2 → fast_clean-1.2.3}/fast_clean.egg-info/dependency_links.txt +0 -0
- {fast_clean-1.2.2 → fast_clean-1.2.3}/fast_clean.egg-info/top_level.txt +0 -0
- {fast_clean-1.2.2 → fast_clean-1.2.3}/setup.cfg +0 -0
- {fast_clean-1.2.2 → fast_clean-1.2.3}/tests/test_broker.py +0 -0
- {fast_clean-1.2.2 → fast_clean-1.2.3}/tests/test_db.py +0 -0
- {fast_clean-1.2.2 → fast_clean-1.2.3}/tests/test_exceptions.py +0 -0
@@ -0,0 +1,42 @@
|
|
1
|
+
Metadata-Version: 2.4
|
2
|
+
Name: fast-clean
|
3
|
+
Version: 1.2.3
|
4
|
+
Summary: FastAPI Clean Architecture implementation
|
5
|
+
Author-email: Luferov Victor <luferovvs@yandex.ru>, Orlov Artem <squakrazv@yandex.ru>, Kashapov Rustam <hardtechnik91@gmail.com>
|
6
|
+
Requires-Python: >=3.13
|
7
|
+
Description-Content-Type: text/markdown
|
8
|
+
Requires-Dist: aiofiles>=24.1.0
|
9
|
+
Requires-Dist: aiokafka>=0.12.0
|
10
|
+
Requires-Dist: aioprometheus>=23.12.0
|
11
|
+
Requires-Dist: alembic>=1.16.2
|
12
|
+
Requires-Dist: cryptography>=44.0.1
|
13
|
+
Requires-Dist: dishka>=1.6.0
|
14
|
+
Requires-Dist: fastapi>=0.115.8
|
15
|
+
Requires-Dist: fastapi-cache2[redis]>=0.2.2
|
16
|
+
Requires-Dist: faststream>=0.5.34
|
17
|
+
Requires-Dist: flatten-dict>=0.4.2
|
18
|
+
Requires-Dist: miniopy-async>=1.21.1
|
19
|
+
Requires-Dist: overrides>=7.7.0
|
20
|
+
Requires-Dist: psycopg[binary]>=3.2.4
|
21
|
+
Requires-Dist: pydantic>=2.10.6
|
22
|
+
Requires-Dist: pydantic-settings>=2.8.0
|
23
|
+
Requires-Dist: pyyaml>=6.0.2
|
24
|
+
Requires-Dist: sentry-sdk[fastapi]>=2.32.0
|
25
|
+
Requires-Dist: snakecase>=1.0.1
|
26
|
+
Requires-Dist: sqlalchemy-utils>=0.41.2
|
27
|
+
Requires-Dist: sqlalchemy[asyncio]>=2.0.38
|
28
|
+
Requires-Dist: stringcase>=1.2.0
|
29
|
+
Requires-Dist: typer>=0.15.1
|
30
|
+
|
31
|
+
# FastClean
|
32
|
+
|
33
|
+
FastAPI clean architecture implementation
|
34
|
+
|
35
|
+
|
36
|
+
## Contribution
|
37
|
+
|
38
|
+
```
|
39
|
+
git clone git@github.com:Luferov/fast-clean.git
|
40
|
+
uv sync
|
41
|
+
uv run pre-commit install
|
42
|
+
```
|
@@ -22,4 +22,3 @@ from .request_response import RemoteRequestSchema as RemoteRequestSchema
|
|
22
22
|
from .request_response import RemoteResponseSchema as RemoteResponseSchema
|
23
23
|
from .request_response import RequestSchema as RequestSchema
|
24
24
|
from .request_response import ResponseSchema as ResponseSchema
|
25
|
-
from .status_response import StatusOkResponseSchema as StatusOkResponseSchema
|
@@ -0,0 +1,42 @@
|
|
1
|
+
Metadata-Version: 2.4
|
2
|
+
Name: fast-clean
|
3
|
+
Version: 1.2.3
|
4
|
+
Summary: FastAPI Clean Architecture implementation
|
5
|
+
Author-email: Luferov Victor <luferovvs@yandex.ru>, Orlov Artem <squakrazv@yandex.ru>, Kashapov Rustam <hardtechnik91@gmail.com>
|
6
|
+
Requires-Python: >=3.13
|
7
|
+
Description-Content-Type: text/markdown
|
8
|
+
Requires-Dist: aiofiles>=24.1.0
|
9
|
+
Requires-Dist: aiokafka>=0.12.0
|
10
|
+
Requires-Dist: aioprometheus>=23.12.0
|
11
|
+
Requires-Dist: alembic>=1.16.2
|
12
|
+
Requires-Dist: cryptography>=44.0.1
|
13
|
+
Requires-Dist: dishka>=1.6.0
|
14
|
+
Requires-Dist: fastapi>=0.115.8
|
15
|
+
Requires-Dist: fastapi-cache2[redis]>=0.2.2
|
16
|
+
Requires-Dist: faststream>=0.5.34
|
17
|
+
Requires-Dist: flatten-dict>=0.4.2
|
18
|
+
Requires-Dist: miniopy-async>=1.21.1
|
19
|
+
Requires-Dist: overrides>=7.7.0
|
20
|
+
Requires-Dist: psycopg[binary]>=3.2.4
|
21
|
+
Requires-Dist: pydantic>=2.10.6
|
22
|
+
Requires-Dist: pydantic-settings>=2.8.0
|
23
|
+
Requires-Dist: pyyaml>=6.0.2
|
24
|
+
Requires-Dist: sentry-sdk[fastapi]>=2.32.0
|
25
|
+
Requires-Dist: snakecase>=1.0.1
|
26
|
+
Requires-Dist: sqlalchemy-utils>=0.41.2
|
27
|
+
Requires-Dist: sqlalchemy[asyncio]>=2.0.38
|
28
|
+
Requires-Dist: stringcase>=1.2.0
|
29
|
+
Requires-Dist: typer>=0.15.1
|
30
|
+
|
31
|
+
# FastClean
|
32
|
+
|
33
|
+
FastAPI clean architecture implementation
|
34
|
+
|
35
|
+
|
36
|
+
## Contribution
|
37
|
+
|
38
|
+
```
|
39
|
+
git clone git@github.com:Luferov/fast-clean.git
|
40
|
+
uv sync
|
41
|
+
uv run pre-commit install
|
42
|
+
```
|
@@ -1,6 +1,6 @@
|
|
1
1
|
[project]
|
2
2
|
name = "fast-clean"
|
3
|
-
version = "1.2.
|
3
|
+
version = "1.2.3"
|
4
4
|
description = "FastAPI Clean Architecture implementation"
|
5
5
|
readme = "README.md"
|
6
6
|
requires-python = ">=3.13"
|
@@ -26,7 +26,7 @@ dependencies = [
|
|
26
26
|
"pydantic>=2.10.6",
|
27
27
|
"pydantic-settings>=2.8.0",
|
28
28
|
"pyyaml>=6.0.2",
|
29
|
-
"sentry-sdk>=2.32.0",
|
29
|
+
"sentry-sdk[fastapi]>=2.32.0",
|
30
30
|
"snakecase>=1.0.1",
|
31
31
|
"sqlalchemy-utils>=0.41.2",
|
32
32
|
"sqlalchemy[asyncio]>=2.0.38",
|