architectonics 0.0.46__py3-none-any.whl → 0.0.48__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.
|
@@ -9,7 +9,12 @@ from architectonics.core.config.application_settings import application_settings
|
|
|
9
9
|
class BaseApplicationFactory:
|
|
10
10
|
@classmethod
|
|
11
11
|
def create(cls, title) -> FastAPI:
|
|
12
|
-
app = FastAPI(
|
|
12
|
+
app = FastAPI(
|
|
13
|
+
debug=application_settings.DEBUG,
|
|
14
|
+
title=title,
|
|
15
|
+
docs_url="/docs/",
|
|
16
|
+
lifespan=BaseApplicationFactory.lifespan,
|
|
17
|
+
)
|
|
13
18
|
|
|
14
19
|
app.add_middleware(
|
|
15
20
|
CORSMiddleware,
|
|
@@ -30,4 +35,8 @@ class BaseApplicationFactory:
|
|
|
30
35
|
@staticmethod
|
|
31
36
|
@asynccontextmanager
|
|
32
37
|
async def lifespan(app: FastAPI):
|
|
38
|
+
# Load the ML model
|
|
39
|
+
print("Loading ML models...")
|
|
33
40
|
yield
|
|
41
|
+
# Clean up the ML models and release the resources
|
|
42
|
+
print("Shutting down ML models...")
|
|
@@ -15,7 +15,7 @@ architectonics/core/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSu
|
|
|
15
15
|
architectonics/core/config/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
16
16
|
architectonics/core/config/application_settings.py,sha256=DmCjQCbm4BsxMoZuQ212Pjjl_3spQ2vK5TUyZdDcklM,239
|
|
17
17
|
architectonics/core/factory/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
18
|
-
architectonics/core/factory/factory.py,sha256=
|
|
18
|
+
architectonics/core/factory/factory.py,sha256=QjCbDJSIiooWJCVX0g3RZxnFu9wR7sBsqqOc3xZsRU8,1111
|
|
19
19
|
architectonics/core/models/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
20
20
|
architectonics/core/models/base_model.py,sha256=-dT4UqQCSW41Ip6Cb41Bkudh45Co71EsReYOdwF4BMs,663
|
|
21
21
|
architectonics/core/models/deleted_models.py,sha256=9hqdZgCC2JhAriA_GA7P2uA32rk5UAEXvGA3u8HVIME,151
|
|
@@ -39,6 +39,6 @@ architectonics/rabbit_mq/config/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm
|
|
|
39
39
|
architectonics/rabbit_mq/config/rabbit_mq_settings.py,sha256=fLPeHeqC6dEQ-eTj1GZ4_ulIATdMxqZXdxdbszCgNZA,404
|
|
40
40
|
architectonics/rabbit_mq/consumer/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
41
41
|
architectonics/rabbit_mq/consumer/base_consumer.py,sha256=A61l6g6B6y_dXLiqGNaA87Nx9Xve_edCZ5WP88ivy9A,1699
|
|
42
|
-
architectonics-0.0.
|
|
43
|
-
architectonics-0.0.
|
|
44
|
-
architectonics-0.0.
|
|
42
|
+
architectonics-0.0.48.dist-info/WHEEL,sha256=y3eDiaFVSNTPbgzfNn0nYn5tEn1cX6WrdetDlQM4xWw,83
|
|
43
|
+
architectonics-0.0.48.dist-info/METADATA,sha256=IjHD_yvnbvxsNaiWaOBQjf3hkkqGNAZwUznNVkWIEbs,469
|
|
44
|
+
architectonics-0.0.48.dist-info/RECORD,,
|
|
File without changes
|