iatoolkit 0.3.1__py3-none-any.whl → 0.3.3__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.
Potentially problematic release.
This version of iatoolkit might be problematic. Click here for more details.
- {iatoolkit-0.3.1.dist-info → iatoolkit-0.3.3.dist-info}/METADATA +1 -1
- {iatoolkit-0.3.1.dist-info → iatoolkit-0.3.3.dist-info}/RECORD +4 -5
- iatoolkit/toolkit_config.py +0 -13
- {iatoolkit-0.3.1.dist-info → iatoolkit-0.3.3.dist-info}/WHEEL +0 -0
- {iatoolkit-0.3.1.dist-info → iatoolkit-0.3.3.dist-info}/top_level.txt +0 -0
|
@@ -2,7 +2,6 @@ iatoolkit/__init__.py,sha256=Yu9XbQmEjs0gA1HBnqiaORL7HUfoKuEElUIs8scg4IQ,1125
|
|
|
2
2
|
iatoolkit/base_company.py,sha256=VWfpNofFlmgHQQK8BCw2KSOPLd2DM9eA68lGQ3SDE7M,1639
|
|
3
3
|
iatoolkit/company_registry.py,sha256=saOf5JxsEtvAs-JqkNp-UfOIQvtVCXyujvv6G5_zi5k,3332
|
|
4
4
|
iatoolkit/iatoolkit.py,sha256=YX5Oh-WWBKX0DDrzeOeaNoBrPLm0O7t4ttntYC_rk-8,15186
|
|
5
|
-
iatoolkit/toolkit_config.py,sha256=y4y6DV_HvHbEHCKC3v5FtX9zZyuYR5qOoULPNuiNfXI,492
|
|
6
5
|
services/__init__.py,sha256=fSvSfIcPW1dHwTBY1hQ5dBEhaoorzk_GzR4G46gD8tY,173
|
|
7
6
|
services/api_service.py,sha256=VTM5OfKF7-eCT-dpl46ZnZ3ptbTxLUDH2IxnbS4T3jA,1113
|
|
8
7
|
services/benchmark_service.py,sha256=g9JVrmAqIe_iI0D1DwdQ6DJ2_FJRCTndarESNSVfhbw,5907
|
|
@@ -22,7 +21,7 @@ services/sql_service.py,sha256=H7CIPpXTcxLXLojD2fBFr_mIAD0PW1vEJhKHLfJi4Hk,1418
|
|
|
22
21
|
services/tasks_service.py,sha256=hHJDlcsSOPtEleD6_Vv3pocfxWNmthIhmZSdnoWFpEM,6861
|
|
23
22
|
services/user_feedback_service.py,sha256=YtCndRBekDEWYEbac431Ksn2gMO5iBrI3WqKK0xtShE,2513
|
|
24
23
|
services/user_session_context_service.py,sha256=5qn7fqpuiU8KgMpU4M5-iRUsETumz1raBw-EeZLuE1A,3868
|
|
25
|
-
iatoolkit-0.3.
|
|
26
|
-
iatoolkit-0.3.
|
|
27
|
-
iatoolkit-0.3.
|
|
28
|
-
iatoolkit-0.3.
|
|
24
|
+
iatoolkit-0.3.3.dist-info/METADATA,sha256=mYfAO_d2KXSqC3Zcf61oURv1MDabe7ax7calsdKECG0,8801
|
|
25
|
+
iatoolkit-0.3.3.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
26
|
+
iatoolkit-0.3.3.dist-info/top_level.txt,sha256=dqlBbmgo9okD9d_WMR9uYzdup7Rxgj26yFF85jRGeu4,19
|
|
27
|
+
iatoolkit-0.3.3.dist-info/RECORD,,
|
iatoolkit/toolkit_config.py
DELETED
|
@@ -1,13 +0,0 @@
|
|
|
1
|
-
# src/iatoolkit/toolkit_config.py
|
|
2
|
-
from injector import Module, Binder, singleton
|
|
3
|
-
from flask import Flask
|
|
4
|
-
from repositories.database_manager import DatabaseManager
|
|
5
|
-
|
|
6
|
-
class IAToolkitConfig(Module):
|
|
7
|
-
def __init__(self, app: Flask, db_manager: DatabaseManager):
|
|
8
|
-
self.app = app
|
|
9
|
-
self.db_manager = db_manager
|
|
10
|
-
|
|
11
|
-
def configure(self, binder: Binder):
|
|
12
|
-
binder.bind(Flask, to=self.app, scope=singleton)
|
|
13
|
-
binder.bind(DatabaseManager, to=self.db_manager, scope=singleton)
|
|
File without changes
|
|
File without changes
|