arpakitlib 1.7.120__py3-none-any.whl → 1.7.122__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.
- arpakitlib/_arpakit_project_template/src/operation_execution/start_operation_executor_worker_for_not_prod.py +1 -3
- arpakitlib/_arpakit_project_template/src/operation_execution/start_scheduled_operation_creator_worker_for_not_prod.py +1 -2
- arpakitlib/_arpakit_project_template/src/operation_execution/util.py +0 -21
- {arpakitlib-1.7.120.dist-info → arpakitlib-1.7.122.dist-info}/METADATA +1 -1
- {arpakitlib-1.7.120.dist-info → arpakitlib-1.7.122.dist-info}/RECORD +9 -11
- arpakitlib/_arpakit_project_template/AUTHOR.md +0 -4
- arpakitlib/_arpakit_project_template/manage/requirements.txt +0 -208
- {arpakitlib-1.7.120.dist-info → arpakitlib-1.7.122.dist-info}/LICENSE +0 -0
- {arpakitlib-1.7.120.dist-info → arpakitlib-1.7.122.dist-info}/NOTICE +0 -0
- {arpakitlib-1.7.120.dist-info → arpakitlib-1.7.122.dist-info}/WHEEL +0 -0
- {arpakitlib-1.7.120.dist-info → arpakitlib-1.7.122.dist-info}/entry_points.txt +0 -0
@@ -8,9 +8,7 @@ def start_operation_executor_worker_for_dev():
|
|
8
8
|
setup_logging()
|
9
9
|
worker = OperationExecutorWorker(
|
10
10
|
sqlalchemy_db=get_cached_sqlalchemy_db(),
|
11
|
-
operation_executor=OperationExecutor(sqlalchemy_db=get_cached_sqlalchemy_db())
|
12
|
-
filter_operation_types=None,
|
13
|
-
startup_funcs=[lambda: print("hello")]
|
11
|
+
operation_executor=OperationExecutor(sqlalchemy_db=get_cached_sqlalchemy_db())
|
14
12
|
)
|
15
13
|
worker.sync_safe_run()
|
16
14
|
|
@@ -8,8 +8,7 @@ def start_create_scheduled_operation_worker_for_dev():
|
|
8
8
|
setup_logging()
|
9
9
|
worker = ScheduledOperationCreatorWorker(
|
10
10
|
sqlalchemy_db=get_cached_sqlalchemy_db(),
|
11
|
-
scheduled_operations=SCHEDULED_OPERATIONS
|
12
|
-
startup_funcs=[lambda: print("hello")]
|
11
|
+
scheduled_operations=SCHEDULED_OPERATIONS
|
13
12
|
)
|
14
13
|
worker.sync_safe_run()
|
15
14
|
|
@@ -1,21 +0,0 @@
|
|
1
|
-
from functools import lru_cache
|
2
|
-
|
3
|
-
from arpakitlib.ar_operation_execution_util import ScheduledOperationCreatorWorker
|
4
|
-
from src.db.util import get_cached_sqlalchemy_db
|
5
|
-
|
6
|
-
|
7
|
-
def create_scheduled_operation_creator_worker() -> ScheduledOperationCreatorWorker:
|
8
|
-
from src.operation_execution.scheduled_operations import SCHEDULED_OPERATIONS
|
9
|
-
scheduled_operation_creator_worker = ScheduledOperationCreatorWorker(
|
10
|
-
sqlalchemy_db=get_cached_sqlalchemy_db(),
|
11
|
-
scheduled_operations=SCHEDULED_OPERATIONS,
|
12
|
-
startup_funcs=[
|
13
|
-
get_cached_sqlalchemy_db().init
|
14
|
-
]
|
15
|
-
)
|
16
|
-
return scheduled_operation_creator_worker
|
17
|
-
|
18
|
-
|
19
|
-
@lru_cache()
|
20
|
-
def get_scheduled_operation_creator_worker() -> ScheduledOperationCreatorWorker:
|
21
|
-
return create_scheduled_operation_creator_worker()
|
@@ -2,7 +2,6 @@ arpakitlib/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
2
2
|
arpakitlib/_arpakit_project_template/.gitignore,sha256=Q8n7q3-hKsnFVN5NcACPs71Z9t5EtyjK8HOp0FMA5cg,428
|
3
3
|
arpakitlib/_arpakit_project_template/.python-version,sha256=XMd40XBnlTFfBSmMldd-7VdqXNyFCy6wtxhw5e1mnhc,7
|
4
4
|
arpakitlib/_arpakit_project_template/ARPAKITLIB,sha256=3-iAkMXtesLzJXHw_IIv2k2M0oH8cTjHzW22Vvbi0IE,4
|
5
|
-
arpakitlib/_arpakit_project_template/AUTHOR.md,sha256=E09xfHALn1c4BWFwPweNep83oIcQlI4e96GeURMM8Wc,37
|
6
5
|
arpakitlib/_arpakit_project_template/LICENSE,sha256=GPEDQMam2r7FSTYqM1mm7aKnxLaWcBotH7UvQtea-ec,11355
|
7
6
|
arpakitlib/_arpakit_project_template/NOTICE,sha256=95aUzaPJjVpDsGAsNzVnq7tHTxAl0s5UFznCTkVCau4,763
|
8
7
|
arpakitlib/_arpakit_project_template/README.md,sha256=EEoHPZrJQtLS3fKD3JvoPhkGhjfuDihxK5fmAGwihCQ,65
|
@@ -50,7 +49,6 @@ arpakitlib/_arpakit_project_template/manage/poetry_show.sh,sha256=pclR9efCNrrGyJ
|
|
50
49
|
arpakitlib/_arpakit_project_template/manage/poetry_show_arpakitlib.sh,sha256=5ibH12wGYc-Cj8zl5abtI_hLVSW0o4ofktt-w7I6wQo,37
|
51
50
|
arpakitlib/_arpakit_project_template/manage/poetry_update.sh,sha256=ZtoXIC4Qq7PMTDxQMwUxvkYC6lTc5LC23ILTywWbyoU,164
|
52
51
|
arpakitlib/_arpakit_project_template/manage/poetry_update_arpakitlib.sh,sha256=hh7vj-yKgKqLfaGb8cjsJ_NTa7fBtE4s3yxzte4D8bw,163
|
53
|
-
arpakitlib/_arpakit_project_template/manage/requirements.txt,sha256=rQyiMoxw1UtkLAl_8l7mS5MTcDUQd0VF_5XOBK3czW4,17319
|
54
52
|
arpakitlib/_arpakit_project_template/manage/sandbox/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
55
53
|
arpakitlib/_arpakit_project_template/manage/sandbox/sandbox_1.py,sha256=WdE1IWyObxVUT9jE3qgNMaFXXkKV6nUI0ZToLT1uhdk,155
|
56
54
|
arpakitlib/_arpakit_project_template/manage/sandbox/sandbox_2.py,sha256=WdE1IWyObxVUT9jE3qgNMaFXXkKV6nUI0ZToLT1uhdk,155
|
@@ -109,9 +107,9 @@ arpakitlib/_arpakit_project_template/src/operation_execution/__init__.py,sha256=
|
|
109
107
|
arpakitlib/_arpakit_project_template/src/operation_execution/const.py,sha256=HjupGEDUWVijQlbzxZPI9vBbAVOETUYzYU9pdnc9IcI,176
|
110
108
|
arpakitlib/_arpakit_project_template/src/operation_execution/operation_executor.py,sha256=TuAlF3QPJq-Zsq693NHQ00dvCWAzuwce2q6ozesWFYY,725
|
111
109
|
arpakitlib/_arpakit_project_template/src/operation_execution/scheduled_operations.py,sha256=N6erGXOf_Qm3soPzuraMoc1jLXA6M1KfNsp0l4aAWBM,973
|
112
|
-
arpakitlib/_arpakit_project_template/src/operation_execution/start_operation_executor_worker_for_not_prod.py,sha256
|
113
|
-
arpakitlib/_arpakit_project_template/src/operation_execution/start_scheduled_operation_creator_worker_for_not_prod.py,sha256=
|
114
|
-
arpakitlib/_arpakit_project_template/src/operation_execution/util.py,sha256=
|
110
|
+
arpakitlib/_arpakit_project_template/src/operation_execution/start_operation_executor_worker_for_not_prod.py,sha256=-o1mL3UtKPKAvXV-IOrafEaUcE5A517ejUPxMTtTaDk,589
|
111
|
+
arpakitlib/_arpakit_project_template/src/operation_execution/start_scheduled_operation_creator_worker_for_not_prod.py,sha256=c8E7T-xvjutcpN9IDHyHh0C7U-LaVqWe-71iDIXyHWg,589
|
112
|
+
arpakitlib/_arpakit_project_template/src/operation_execution/util.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
115
113
|
arpakitlib/_arpakit_project_template/src/test_data/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
116
114
|
arpakitlib/_arpakit_project_template/src/test_data/make_test_data_1.py,sha256=3WVPgRsNCIxWpA-6t_Phe-nFULdHPhS1S_DO11XRmqk,80
|
117
115
|
arpakitlib/_arpakit_project_template/src/test_data/make_test_data_2.py,sha256=MVDc71sj5I1muWin50GwrSxMwYtOOSDOtRmeFErHcXs,80
|
@@ -185,9 +183,9 @@ arpakitlib/ar_str_util.py,sha256=yU5gOwNXUQaH5b_tM5t6fXUn9oUcv5EQbVnq2wXXIpQ,337
|
|
185
183
|
arpakitlib/ar_type_util.py,sha256=BJ5FcS5Vkj9KFNJgoh0qGLazy-wCubqhND3vle0yOTo,3717
|
186
184
|
arpakitlib/ar_yookassa_api_client_util.py,sha256=sh4fcUkAkdOetFn9JYoTvjcSXP-M1wU04KEY-ECLfLg,5137
|
187
185
|
arpakitlib/ar_zabbix_api_client_util.py,sha256=Q-VR4MvoZ9aHwZeYZr9G3LwN-ANx1T5KFmF6pvPM-9M,6402
|
188
|
-
arpakitlib-1.7.
|
189
|
-
arpakitlib-1.7.
|
190
|
-
arpakitlib-1.7.
|
191
|
-
arpakitlib-1.7.
|
192
|
-
arpakitlib-1.7.
|
193
|
-
arpakitlib-1.7.
|
186
|
+
arpakitlib-1.7.122.dist-info/LICENSE,sha256=GPEDQMam2r7FSTYqM1mm7aKnxLaWcBotH7UvQtea-ec,11355
|
187
|
+
arpakitlib-1.7.122.dist-info/METADATA,sha256=_CnRdn00ErrwVvV4k3n77m2N-wRV5m0smHqfrNAB1LE,3176
|
188
|
+
arpakitlib-1.7.122.dist-info/NOTICE,sha256=95aUzaPJjVpDsGAsNzVnq7tHTxAl0s5UFznCTkVCau4,763
|
189
|
+
arpakitlib-1.7.122.dist-info/WHEEL,sha256=IYZQI976HJqqOpQU6PHkJ8fb3tMNBFjg-Cn-pwAbaFM,88
|
190
|
+
arpakitlib-1.7.122.dist-info/entry_points.txt,sha256=36xqR3PJFT2kuwjkM_EqoIy0qFUDPKSm_mJaI7emewE,87
|
191
|
+
arpakitlib-1.7.122.dist-info/RECORD,,
|
@@ -1,208 +0,0 @@
|
|
1
|
-
aiofiles==24.1.0 ; python_full_version >= "3.12.4" and python_version < "4.0"
|
2
|
-
aiogram==3.17.0 ; python_full_version >= "3.12.4" and python_version < "4.0"
|
3
|
-
aiohappyeyeballs==2.4.4 ; python_full_version >= "3.12.4" and python_version < "4.0"
|
4
|
-
aiohttp-socks==0.10.1 ; python_full_version >= "3.12.4" and python_version < "4.0"
|
5
|
-
aiohttp==3.11.11 ; python_full_version >= "3.12.4" and python_version < "4.0"
|
6
|
-
aiosignal==1.3.2 ; python_full_version >= "3.12.4" and python_version < "4.0"
|
7
|
-
alembic==1.14.1 ; python_full_version >= "3.12.4" and python_version < "4.0"
|
8
|
-
amqp==5.3.1 ; python_full_version >= "3.12.4" and python_version < "4.0"
|
9
|
-
annotated-types==0.7.0 ; python_full_version >= "3.12.4" and python_version < "4.0"
|
10
|
-
anyio==4.8.0 ; python_full_version >= "3.12.4" and python_version < "4.0"
|
11
|
-
appnope==0.1.4 ; python_full_version >= "3.12.4" and python_version < "4.0" and platform_system == "Darwin"
|
12
|
-
argon2-cffi-bindings==21.2.0 ; python_full_version >= "3.12.4" and python_version < "4.0"
|
13
|
-
argon2-cffi==23.1.0 ; python_full_version >= "3.12.4" and python_version < "4.0"
|
14
|
-
arrow==1.3.0 ; python_full_version >= "3.12.4" and python_version < "4.0"
|
15
|
-
asttokens==3.0.0 ; python_full_version >= "3.12.4" and python_version < "4.0"
|
16
|
-
async-lru==2.0.4 ; python_full_version >= "3.12.4" and python_version < "4.0"
|
17
|
-
asyncpg==0.30.0 ; python_full_version >= "3.12.4" and python_version < "4.0"
|
18
|
-
asyncssh==2.19.0 ; python_full_version >= "3.12.4" and python_version < "4.0"
|
19
|
-
attrs==24.3.0 ; python_full_version >= "3.12.4" and python_version < "4.0"
|
20
|
-
babel==2.16.0 ; python_full_version >= "3.12.4" and python_version < "4.0"
|
21
|
-
bcrypt==4.2.1 ; python_full_version >= "3.12.4" and python_version < "4.0"
|
22
|
-
beautifulsoup4==4.12.3 ; python_full_version >= "3.12.4" and python_version < "4.0"
|
23
|
-
billiard==4.2.1 ; python_full_version >= "3.12.4" and python_version < "4.0"
|
24
|
-
bleach==6.2.0 ; python_full_version >= "3.12.4" and python_version < "4.0"
|
25
|
-
bs4==0.0.2 ; python_full_version >= "3.12.4" and python_version < "4.0"
|
26
|
-
build==1.2.2.post1 ; python_full_version >= "3.12.4" and python_version < "4.0"
|
27
|
-
cachecontrol==0.14.2 ; python_full_version >= "3.12.4" and python_version < "4.0"
|
28
|
-
cachetools==5.5.1 ; python_full_version >= "3.12.4" and python_version < "4.0"
|
29
|
-
celery==5.4.0 ; python_full_version >= "3.12.4" and python_version < "4.0"
|
30
|
-
certifi==2024.12.14 ; python_full_version >= "3.12.4" and python_version < "4.0"
|
31
|
-
cffi==1.17.1 ; python_full_version >= "3.12.4" and python_version < "4.0"
|
32
|
-
charset-normalizer==3.4.1 ; python_full_version >= "3.12.4" and python_version < "4.0"
|
33
|
-
cleo==2.1.0 ; python_full_version >= "3.12.4" and python_version < "4.0"
|
34
|
-
click-didyoumean==0.3.1 ; python_full_version >= "3.12.4" and python_version < "4.0"
|
35
|
-
click-plugins==1.1.1 ; python_full_version >= "3.12.4" and python_version < "4.0"
|
36
|
-
click-repl==0.3.0 ; python_full_version >= "3.12.4" and python_version < "4.0"
|
37
|
-
click==8.1.8 ; python_full_version >= "3.12.4" and python_version < "4.0"
|
38
|
-
colorama==0.4.6 ; python_full_version >= "3.12.4" and python_version < "4.0" and os_name == "nt" or python_full_version >= "3.12.4" and python_version < "4.0" and platform_system == "Windows" or python_full_version >= "3.12.4" and python_version < "4.0" and sys_platform == "win32"
|
39
|
-
comm==0.2.2 ; python_full_version >= "3.12.4" and python_version < "4.0"
|
40
|
-
contourpy==1.3.1 ; python_full_version >= "3.12.4" and python_version < "4.0"
|
41
|
-
crashtest==0.4.1 ; python_full_version >= "3.12.4" and python_version < "4.0"
|
42
|
-
cryptography==44.0.0 ; python_full_version >= "3.12.4" and python_version < "4.0"
|
43
|
-
cycler==0.12.1 ; python_full_version >= "3.12.4" and python_version < "4.0"
|
44
|
-
debugpy==1.8.12 ; python_full_version >= "3.12.4" and python_version < "4.0"
|
45
|
-
decorator==5.1.1 ; python_full_version >= "3.12.4" and python_version < "4.0"
|
46
|
-
defusedxml==0.7.1 ; python_full_version >= "3.12.4" and python_version < "4.0"
|
47
|
-
distlib==0.3.9 ; python_full_version >= "3.12.4" and python_version < "4.0"
|
48
|
-
distro==1.9.0 ; python_full_version >= "3.12.4" and python_version < "4.0"
|
49
|
-
dnspython==2.7.0 ; python_full_version >= "3.12.4" and python_version < "4.0"
|
50
|
-
docutils==0.21.2 ; python_full_version >= "3.12.4" and python_version < "4.0"
|
51
|
-
dulwich==0.22.7 ; python_full_version >= "3.12.4" and python_version < "4.0"
|
52
|
-
email-validator==2.2.0 ; python_full_version >= "3.12.4" and python_version < "4.0"
|
53
|
-
emoji==2.14.1 ; python_full_version >= "3.12.4" and python_version < "4.0"
|
54
|
-
et-xmlfile==2.0.0 ; python_full_version >= "3.12.4" and python_version < "4.0"
|
55
|
-
executing==2.2.0 ; python_full_version >= "3.12.4" and python_version < "4.0"
|
56
|
-
fastapi==0.115.6 ; python_full_version >= "3.12.4" and python_version < "4.0"
|
57
|
-
fastjsonschema==2.21.1 ; python_full_version >= "3.12.4" and python_version < "4.0"
|
58
|
-
filelock==3.17.0 ; python_full_version >= "3.12.4" and python_version < "4.0"
|
59
|
-
fonttools==4.55.4 ; python_full_version >= "3.12.4" and python_version < "4.0"
|
60
|
-
fqdn==1.5.1 ; python_full_version >= "3.12.4" and python_version < "4.0"
|
61
|
-
frozenlist==1.5.0 ; python_full_version >= "3.12.4" and python_version < "4.0"
|
62
|
-
greenlet==3.1.1 ; python_full_version >= "3.12.4" and python_version < "3.14" and (platform_machine == "aarch64" or platform_machine == "ppc64le" or platform_machine == "x86_64" or platform_machine == "amd64" or platform_machine == "AMD64" or platform_machine == "win32" or platform_machine == "WIN32")
|
63
|
-
gunicorn==23.0.0 ; python_full_version >= "3.12.4" and python_version < "4.0"
|
64
|
-
h11==0.14.0 ; python_full_version >= "3.12.4" and python_version < "4.0"
|
65
|
-
httpcore==1.0.7 ; python_full_version >= "3.12.4" and python_version < "4.0"
|
66
|
-
httpx==0.28.1 ; python_full_version >= "3.12.4" and python_version < "4.0"
|
67
|
-
id==1.5.0 ; python_full_version >= "3.12.4" and python_version < "4.0"
|
68
|
-
idna==3.10 ; python_full_version >= "3.12.4" and python_version < "4.0"
|
69
|
-
installer==0.7.0 ; python_full_version >= "3.12.4" and python_version < "4.0"
|
70
|
-
ipykernel==6.29.5 ; python_full_version >= "3.12.4" and python_version < "4.0"
|
71
|
-
ipython==8.31.0 ; python_full_version >= "3.12.4" and python_version < "4.0"
|
72
|
-
ipywidgets==8.1.5 ; python_full_version >= "3.12.4" and python_version < "4.0"
|
73
|
-
isoduration==20.11.0 ; python_full_version >= "3.12.4" and python_version < "4.0"
|
74
|
-
itsdangerous==2.2.0 ; python_full_version >= "3.12.4" and python_version < "4.0"
|
75
|
-
jaraco-classes==3.4.0 ; python_full_version >= "3.12.4" and python_version < "4.0"
|
76
|
-
jaraco-context==6.0.1 ; python_full_version >= "3.12.4" and python_version < "4.0"
|
77
|
-
jaraco-functools==4.1.0 ; python_full_version >= "3.12.4" and python_version < "4.0"
|
78
|
-
jedi==0.19.2 ; python_full_version >= "3.12.4" and python_version < "4.0"
|
79
|
-
jeepney==0.8.0 ; python_full_version >= "3.12.4" and python_version < "4.0" and sys_platform == "linux"
|
80
|
-
jinja2==3.1.5 ; python_full_version >= "3.12.4" and python_version < "4.0"
|
81
|
-
jiter==0.8.2 ; python_full_version >= "3.12.4" and python_version < "4.0"
|
82
|
-
json5==0.10.0 ; python_full_version >= "3.12.4" and python_version < "4.0"
|
83
|
-
jsonpointer==3.0.0 ; python_full_version >= "3.12.4" and python_version < "4.0"
|
84
|
-
jsonschema-specifications==2024.10.1 ; python_full_version >= "3.12.4" and python_version < "4.0"
|
85
|
-
jsonschema==4.23.0 ; python_full_version >= "3.12.4" and python_version < "4.0"
|
86
|
-
jupyter-client==8.6.3 ; python_full_version >= "3.12.4" and python_version < "4.0"
|
87
|
-
jupyter-console==6.6.3 ; python_full_version >= "3.12.4" and python_version < "4.0"
|
88
|
-
jupyter-core==5.7.2 ; python_full_version >= "3.12.4" and python_version < "4.0"
|
89
|
-
jupyter-events==0.11.0 ; python_full_version >= "3.12.4" and python_version < "4.0"
|
90
|
-
jupyter-lsp==2.2.5 ; python_full_version >= "3.12.4" and python_version < "4.0"
|
91
|
-
jupyter-server-terminals==0.5.3 ; python_full_version >= "3.12.4" and python_version < "4.0"
|
92
|
-
jupyter-server==2.15.0 ; python_full_version >= "3.12.4" and python_version < "4.0"
|
93
|
-
jupyter==1.1.1 ; python_full_version >= "3.12.4" and python_version < "4.0"
|
94
|
-
jupyterlab-pygments==0.3.0 ; python_full_version >= "3.12.4" and python_version < "4.0"
|
95
|
-
jupyterlab-server==2.27.3 ; python_full_version >= "3.12.4" and python_version < "4.0"
|
96
|
-
jupyterlab-widgets==3.0.13 ; python_full_version >= "3.12.4" and python_version < "4.0"
|
97
|
-
jupyterlab==4.3.4 ; python_full_version >= "3.12.4" and python_version < "4.0"
|
98
|
-
keyring==25.6.0 ; python_full_version >= "3.12.4" and python_version < "4.0"
|
99
|
-
kiwisolver==1.4.8 ; python_full_version >= "3.12.4" and python_version < "4.0"
|
100
|
-
kombu==5.4.2 ; python_full_version >= "3.12.4" and python_version < "4.0"
|
101
|
-
magic-filter==1.0.12 ; python_full_version >= "3.12.4" and python_version < "4.0"
|
102
|
-
mako==1.3.8 ; python_full_version >= "3.12.4" and python_version < "4.0"
|
103
|
-
markdown-it-py==3.0.0 ; python_full_version >= "3.12.4" and python_version < "4.0"
|
104
|
-
markupsafe==3.0.2 ; python_full_version >= "3.12.4" and python_version < "4.0"
|
105
|
-
matplotlib-inline==0.1.7 ; python_full_version >= "3.12.4" and python_version < "4.0"
|
106
|
-
matplotlib==3.10.0 ; python_full_version >= "3.12.4" and python_version < "4.0"
|
107
|
-
mdurl==0.1.2 ; python_full_version >= "3.12.4" and python_version < "4.0"
|
108
|
-
mistune==3.1.0 ; python_full_version >= "3.12.4" and python_version < "4.0"
|
109
|
-
more-itertools==10.6.0 ; python_full_version >= "3.12.4" and python_version < "4.0"
|
110
|
-
msgpack==1.1.0 ; python_full_version >= "3.12.4" and python_version < "4.0"
|
111
|
-
multidict==6.1.0 ; python_full_version >= "3.12.4" and python_version < "4.0"
|
112
|
-
nbclient==0.10.2 ; python_full_version >= "3.12.4" and python_version < "4.0"
|
113
|
-
nbconvert==7.16.5 ; python_full_version >= "3.12.4" and python_version < "4.0"
|
114
|
-
nbformat==5.10.4 ; python_full_version >= "3.12.4" and python_version < "4.0"
|
115
|
-
nest-asyncio==1.6.0 ; python_full_version >= "3.12.4" and python_version < "4.0"
|
116
|
-
nh3==0.2.20 ; python_full_version >= "3.12.4" and python_version < "4.0"
|
117
|
-
notebook-shim==0.2.4 ; python_full_version >= "3.12.4" and python_version < "4.0"
|
118
|
-
notebook==7.3.2 ; python_full_version >= "3.12.4" and python_version < "4.0"
|
119
|
-
numpy==2.2.2 ; python_full_version >= "3.12.4" and python_version < "4.0"
|
120
|
-
openai==1.60.0 ; python_full_version >= "3.12.4" and python_version < "4.0"
|
121
|
-
openpyxl==3.1.5 ; python_full_version >= "3.12.4" and python_version < "4.0"
|
122
|
-
overrides==7.7.0 ; python_full_version >= "3.12.4" and python_version < "4.0"
|
123
|
-
packaging==24.2 ; python_full_version >= "3.12.4" and python_version < "4.0"
|
124
|
-
pandas==2.2.3 ; python_full_version >= "3.12.4" and python_version < "4.0"
|
125
|
-
pandocfilters==1.5.1 ; python_full_version >= "3.12.4" and python_version < "4.0"
|
126
|
-
paramiko==3.5.0 ; python_full_version >= "3.12.4" and python_version < "4.0"
|
127
|
-
parso==0.8.4 ; python_full_version >= "3.12.4" and python_version < "4.0"
|
128
|
-
pexpect==4.9.0 ; python_full_version >= "3.12.4" and python_version < "4.0" and (sys_platform != "win32" and sys_platform != "emscripten")
|
129
|
-
pillow==11.1.0 ; python_full_version >= "3.12.4" and python_version < "4.0"
|
130
|
-
pkginfo==1.12.0 ; python_full_version >= "3.12.4" and python_version < "4.0"
|
131
|
-
platformdirs==4.3.6 ; python_full_version >= "3.12.4" and python_version < "4.0"
|
132
|
-
poetry-core==2.0.1 ; python_full_version >= "3.12.4" and python_version < "4.0"
|
133
|
-
poetry==2.0.1 ; python_full_version >= "3.12.4" and python_version < "4.0"
|
134
|
-
prometheus-client==0.21.1 ; python_full_version >= "3.12.4" and python_version < "4.0"
|
135
|
-
prompt-toolkit==3.0.50 ; python_full_version >= "3.12.4" and python_version < "4.0"
|
136
|
-
propcache==0.2.1 ; python_full_version >= "3.12.4" and python_version < "4.0"
|
137
|
-
psutil==6.1.1 ; python_full_version >= "3.12.4" and python_version < "4.0"
|
138
|
-
psycopg2-binary==2.9.10 ; python_full_version >= "3.12.4" and python_version < "4.0"
|
139
|
-
ptyprocess==0.7.0 ; python_full_version >= "3.12.4" and python_version < "4.0" and os_name != "nt" or python_full_version >= "3.12.4" and python_version < "4.0" and (sys_platform != "win32" and sys_platform != "emscripten")
|
140
|
-
pure-eval==0.2.3 ; python_full_version >= "3.12.4" and python_version < "4.0"
|
141
|
-
pycparser==2.22 ; python_full_version >= "3.12.4" and python_version < "4.0"
|
142
|
-
pydantic-core==2.27.2 ; python_full_version >= "3.12.4" and python_version < "4.0"
|
143
|
-
pydantic-settings==2.7.1 ; python_full_version >= "3.12.4" and python_version < "4.0"
|
144
|
-
pydantic==2.10.5 ; python_full_version >= "3.12.4" and python_version < "4.0"
|
145
|
-
pygments==2.19.1 ; python_full_version >= "3.12.4" and python_version < "4.0"
|
146
|
-
pyjwt==2.10.1 ; python_full_version >= "3.12.4" and python_version < "4.0"
|
147
|
-
pymongo==4.10.1 ; python_full_version >= "3.12.4" and python_version < "4.0"
|
148
|
-
pynacl==1.5.0 ; python_full_version >= "3.12.4" and python_version < "4.0"
|
149
|
-
pyparsing==3.2.1 ; python_full_version >= "3.12.4" and python_version < "4.0"
|
150
|
-
pyproject-hooks==1.2.0 ; python_full_version >= "3.12.4" and python_version < "4.0"
|
151
|
-
pysocks==1.7.1 ; python_full_version >= "3.12.4" and python_version < "4.0"
|
152
|
-
python-dateutil==2.9.0.post0 ; python_full_version >= "3.12.4" and python_version < "4.0"
|
153
|
-
python-dotenv==1.0.1 ; python_full_version >= "3.12.4" and python_version < "4.0"
|
154
|
-
python-json-logger==3.2.1 ; python_full_version >= "3.12.4" and python_version < "4.0"
|
155
|
-
python-multipart==0.0.20 ; python_full_version >= "3.12.4" and python_version < "4.0"
|
156
|
-
python-socks==2.6.1 ; python_full_version >= "3.12.4" and python_version < "4.0"
|
157
|
-
pytz==2024.2 ; python_full_version >= "3.12.4" and python_version < "4.0"
|
158
|
-
pywin32-ctypes==0.2.3 ; python_full_version >= "3.12.4" and python_version < "4.0" and sys_platform == "win32"
|
159
|
-
pywin32==308 ; python_full_version >= "3.12.4" and python_version < "4.0" and sys_platform == "win32" and platform_python_implementation != "PyPy"
|
160
|
-
pywinpty==2.0.14 ; python_full_version >= "3.12.4" and python_version < "4.0" and os_name == "nt"
|
161
|
-
pyyaml==6.0.2 ; python_full_version >= "3.12.4" and python_version < "4.0"
|
162
|
-
pyzabbix==1.3.1 ; python_full_version >= "3.12.4" and python_version < "4.0"
|
163
|
-
pyzmq==26.2.0 ; python_full_version >= "3.12.4" and python_version < "4.0"
|
164
|
-
rapidfuzz==3.11.0 ; python_full_version >= "3.12.4" and python_version < "4.0"
|
165
|
-
readme-renderer==44.0 ; python_full_version >= "3.12.4" and python_version < "4.0"
|
166
|
-
referencing==0.36.1 ; python_full_version >= "3.12.4" and python_version < "4.0"
|
167
|
-
requests-toolbelt==1.0.0 ; python_full_version >= "3.12.4" and python_version < "4.0"
|
168
|
-
requests==2.32.3 ; python_full_version >= "3.12.4" and python_version < "4.0"
|
169
|
-
rfc3339-validator==0.1.4 ; python_full_version >= "3.12.4" and python_version < "4.0"
|
170
|
-
rfc3986-validator==0.1.1 ; python_full_version >= "3.12.4" and python_version < "4.0"
|
171
|
-
rfc3986==2.0.0 ; python_full_version >= "3.12.4" and python_version < "4.0"
|
172
|
-
rich==13.9.4 ; python_full_version >= "3.12.4" and python_version < "4.0"
|
173
|
-
rpds-py==0.22.3 ; python_full_version >= "3.12.4" and python_version < "4.0"
|
174
|
-
secretstorage==3.3.3 ; python_full_version >= "3.12.4" and python_version < "4.0" and sys_platform == "linux"
|
175
|
-
send2trash==1.8.3 ; python_full_version >= "3.12.4" and python_version < "4.0"
|
176
|
-
setuptools==75.8.0 ; python_full_version >= "3.12.4" and python_version < "4.0"
|
177
|
-
shellingham==1.5.4 ; python_full_version >= "3.12.4" and python_version < "4.0"
|
178
|
-
six==1.17.0 ; python_full_version >= "3.12.4" and python_version < "4.0"
|
179
|
-
sniffio==1.3.1 ; python_full_version >= "3.12.4" and python_version < "4.0"
|
180
|
-
soupsieve==2.6 ; python_full_version >= "3.12.4" and python_version < "4.0"
|
181
|
-
sqladmin==0.20.1 ; python_full_version >= "3.12.4" and python_version < "4.0"
|
182
|
-
sqlalchemy==2.0.37 ; python_full_version >= "3.12.4" and python_version < "4.0"
|
183
|
-
stack-data==0.6.3 ; python_full_version >= "3.12.4" and python_version < "4.0"
|
184
|
-
starlette==0.41.3 ; python_full_version >= "3.12.4" and python_version < "4.0"
|
185
|
-
terminado==0.18.1 ; python_full_version >= "3.12.4" and python_version < "4.0"
|
186
|
-
tinycss2==1.4.0 ; python_full_version >= "3.12.4" and python_version < "4.0"
|
187
|
-
tomlkit==0.13.2 ; python_full_version >= "3.12.4" and python_version < "4.0"
|
188
|
-
tornado==6.4.2 ; python_full_version >= "3.12.4" and python_version < "4.0"
|
189
|
-
tqdm==4.67.1 ; python_full_version >= "3.12.4" and python_version < "4.0"
|
190
|
-
traitlets==5.14.3 ; python_full_version >= "3.12.4" and python_version < "4.0"
|
191
|
-
trove-classifiers==2025.1.15.22 ; python_full_version >= "3.12.4" and python_version < "4.0"
|
192
|
-
twine==6.1.0 ; python_full_version >= "3.12.4" and python_version < "4.0"
|
193
|
-
types-python-dateutil==2.9.0.20241206 ; python_full_version >= "3.12.4" and python_version < "4.0"
|
194
|
-
typing-extensions==4.12.2 ; python_full_version >= "3.12.4" and python_version < "4.0"
|
195
|
-
tzdata==2025.1 ; python_full_version >= "3.12.4" and python_version < "4.0"
|
196
|
-
uri-template==1.3.0 ; python_full_version >= "3.12.4" and python_version < "4.0"
|
197
|
-
urllib3==2.3.0 ; python_full_version >= "3.12.4" and python_version < "4.0"
|
198
|
-
uvicorn==0.34.0 ; python_full_version >= "3.12.4" and python_version < "4.0"
|
199
|
-
vine==5.1.0 ; python_full_version >= "3.12.4" and python_version < "4.0"
|
200
|
-
virtualenv==20.29.1 ; python_full_version >= "3.12.4" and python_version < "4.0"
|
201
|
-
wcwidth==0.2.13 ; python_full_version >= "3.12.4" and python_version < "4.0"
|
202
|
-
webcolors==24.11.1 ; python_full_version >= "3.12.4" and python_version < "4.0"
|
203
|
-
webencodings==0.5.1 ; python_full_version >= "3.12.4" and python_version < "4.0"
|
204
|
-
websocket-client==1.8.0 ; python_full_version >= "3.12.4" and python_version < "4.0"
|
205
|
-
widgetsnbextension==4.0.13 ; python_full_version >= "3.12.4" and python_version < "4.0"
|
206
|
-
wtforms==3.1.2 ; python_full_version >= "3.12.4" and python_version < "4.0"
|
207
|
-
xattr==1.1.4 ; python_full_version >= "3.12.4" and python_version < "4.0" and sys_platform == "darwin"
|
208
|
-
yarl==1.18.3 ; python_full_version >= "3.12.4" and python_version < "4.0"
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|