arpakitlib 1.7.121__py3-none-any.whl → 1.7.123__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.
Files changed (37) hide show
  1. arpakitlib/_arpakit_project_template/example.env +4 -0
  2. arpakitlib/_arpakit_project_template/manage/hello_world.py +2 -2
  3. arpakitlib/_arpakit_project_template/manage/json_beutify.py +2 -2
  4. arpakitlib/_arpakit_project_template/manage/sandbox/sandbox_1.py +4 -4
  5. arpakitlib/_arpakit_project_template/manage/sandbox/sandbox_2.py +4 -4
  6. arpakitlib/_arpakit_project_template/manage/sandbox/sandbox_3.py +4 -4
  7. arpakitlib/_arpakit_project_template/manage/sandbox/sandbox_4.py +4 -4
  8. arpakitlib/_arpakit_project_template/manage/sandbox/sandbox_5.py +4 -4
  9. arpakitlib/_arpakit_project_template/manage/sandbox/sandbox_6.py +4 -4
  10. arpakitlib/_arpakit_project_template/manage/sandbox/sandbox_7.py +4 -4
  11. arpakitlib/_arpakit_project_template/src/admin1/add_admin_in_app.py +3 -1
  12. arpakitlib/_arpakit_project_template/src/admin1/admin_auth.py +4 -7
  13. arpakitlib/_arpakit_project_template/src/admin1/model_view.py +5 -0
  14. arpakitlib/_arpakit_project_template/src/api/event.py +1 -1
  15. arpakitlib/_arpakit_project_template/src/api/start_api_for_dev_with_reload.py +12 -4
  16. arpakitlib/_arpakit_project_template/src/api/{start_api_for_dev.py → start_api_for_dev_without_reload.py} +3 -3
  17. arpakitlib/_arpakit_project_template/src/business_service/hello_world.py +12 -0
  18. arpakitlib/_arpakit_project_template/{manage/logging_check.py → src/core/check_logging.py} +3 -3
  19. arpakitlib/_arpakit_project_template/src/db/init_sqlalchemy_db.py +2 -2
  20. arpakitlib/_arpakit_project_template/src/db/{reinit_sqlalchemy_db_for_not_prod.py → reinit_sqlalchemy_db.py} +2 -2
  21. arpakitlib/_arpakit_project_template/src/operation_execution/{start_operation_executor_worker_for_not_prod.py → start_operation_executor_worker.py} +4 -2
  22. arpakitlib/_arpakit_project_template/src/operation_execution/{start_scheduled_operation_creator_worker_for_not_prod.py → start_scheduled_operation_creator_worker.py} +4 -2
  23. arpakitlib/_arpakit_project_template/src/tg_bot/__init__.py +0 -0
  24. arpakitlib/_arpakit_project_template/src/tg_bot/router/__init__.py +0 -0
  25. arpakitlib/_arpakit_project_template/src/tg_bot/start_tg_bot.py +0 -0
  26. arpakitlib/ar_settings_util.py +6 -5
  27. {arpakitlib-1.7.121.dist-info → arpakitlib-1.7.123.dist-info}/METADATA +1 -1
  28. {arpakitlib-1.7.121.dist-info → arpakitlib-1.7.123.dist-info}/RECORD +32 -33
  29. arpakitlib/_arpakit_project_template/manage/example_nginx_proxy.nginx +0 -14
  30. arpakitlib/_arpakit_project_template/manage/example_poetry_arpakitlib.sh +0 -1
  31. arpakitlib/_arpakit_project_template/manage/example_pyproject.toml +0 -23
  32. arpakitlib/_arpakit_project_template/manage/example_systemd.service +0 -12
  33. arpakitlib/_arpakit_project_template/manage/requirements.txt +0 -208
  34. {arpakitlib-1.7.121.dist-info → arpakitlib-1.7.123.dist-info}/LICENSE +0 -0
  35. {arpakitlib-1.7.121.dist-info → arpakitlib-1.7.123.dist-info}/NOTICE +0 -0
  36. {arpakitlib-1.7.121.dist-info → arpakitlib-1.7.123.dist-info}/WHEEL +0 -0
  37. {arpakitlib-1.7.121.dist-info → arpakitlib-1.7.123.dist-info}/entry_points.txt +0 -0
@@ -1,4 +1,5 @@
1
1
  # mode_type=
2
+ # project_name=
2
3
  # sql_db_url=
3
4
  # sql_db_echo=
4
5
  # api_init_sql_db_at_start=
@@ -9,6 +10,8 @@
9
10
  # api_start_scheduled_operation_creator_worker=
10
11
  # api_port=
11
12
  # api_correct_api_key=
13
+ # api_correct_token=
14
+ # api_enable_admin1=
12
15
  # var_dirname=
13
16
  # var_dirpath=
14
17
  # log_filename=
@@ -20,3 +23,4 @@
20
23
  # dump_dirname=
21
24
  # dump_dirpath=
22
25
  # local_timezone=
26
+ # admin1_secret_key=
@@ -1,6 +1,6 @@
1
- def command():
1
+ def __hello_world():
2
2
  print("Hello world")
3
3
 
4
4
 
5
5
  if __name__ == '__main__':
6
- command()
6
+ __hello_world()
@@ -1,10 +1,10 @@
1
1
  from arpakitlib.ar_json_util import safely_transfer_str_to_json_obj_to_json_str
2
2
 
3
3
 
4
- def command():
4
+ def __command():
5
5
  s = input("JSON:\n")
6
6
  print(safely_transfer_str_to_json_obj_to_json_str(s))
7
7
 
8
8
 
9
9
  if __name__ == '__main__':
10
- command()
10
+ __command()
@@ -1,14 +1,14 @@
1
1
  import asyncio
2
2
 
3
3
 
4
- def command():
4
+ def __sandbox():
5
5
  pass
6
6
 
7
7
 
8
- async def async_command():
8
+ async def __async_sandbox():
9
9
  pass
10
10
 
11
11
 
12
12
  if __name__ == '__main__':
13
- command()
14
- asyncio.run(async_command())
13
+ __sandbox()
14
+ asyncio.run(__async_sandbox())
@@ -1,14 +1,14 @@
1
1
  import asyncio
2
2
 
3
3
 
4
- def command():
4
+ def __sandbox():
5
5
  pass
6
6
 
7
7
 
8
- async def async_command():
8
+ async def __async_sandbox():
9
9
  pass
10
10
 
11
11
 
12
12
  if __name__ == '__main__':
13
- command()
14
- asyncio.run(async_command())
13
+ __sandbox()
14
+ asyncio.run(__async_sandbox())
@@ -1,14 +1,14 @@
1
1
  import asyncio
2
2
 
3
3
 
4
- def command():
4
+ def __sandbox():
5
5
  pass
6
6
 
7
7
 
8
- async def async_command():
8
+ async def __async_sandbox():
9
9
  pass
10
10
 
11
11
 
12
12
  if __name__ == '__main__':
13
- command()
14
- asyncio.run(async_command())
13
+ __sandbox()
14
+ asyncio.run(__async_sandbox())
@@ -1,14 +1,14 @@
1
1
  import asyncio
2
2
 
3
3
 
4
- def command():
4
+ def __sandbox():
5
5
  pass
6
6
 
7
7
 
8
- async def async_command():
8
+ async def __async_sandbox():
9
9
  pass
10
10
 
11
11
 
12
12
  if __name__ == '__main__':
13
- command()
14
- asyncio.run(async_command())
13
+ __sandbox()
14
+ asyncio.run(__async_sandbox())
@@ -1,14 +1,14 @@
1
1
  import asyncio
2
2
 
3
3
 
4
- def command():
4
+ def __sandbox():
5
5
  pass
6
6
 
7
7
 
8
- async def async_command():
8
+ async def __async_sandbox():
9
9
  pass
10
10
 
11
11
 
12
12
  if __name__ == '__main__':
13
- command()
14
- asyncio.run(async_command())
13
+ __sandbox()
14
+ asyncio.run(__async_sandbox())
@@ -1,14 +1,14 @@
1
1
  import asyncio
2
2
 
3
3
 
4
- def command():
4
+ def __sandbox():
5
5
  pass
6
6
 
7
7
 
8
- async def async_command():
8
+ async def __async_sandbox():
9
9
  pass
10
10
 
11
11
 
12
12
  if __name__ == '__main__':
13
- command()
14
- asyncio.run(async_command())
13
+ __sandbox()
14
+ asyncio.run(__async_sandbox())
@@ -1,14 +1,14 @@
1
1
  import asyncio
2
2
 
3
3
 
4
- def command():
4
+ def __sandbox():
5
5
  pass
6
6
 
7
7
 
8
- async def async_command():
8
+ async def __async_sandbox():
9
9
  pass
10
10
 
11
11
 
12
12
  if __name__ == '__main__':
13
- command()
14
- asyncio.run(async_command())
13
+ __sandbox()
14
+ asyncio.run(__async_sandbox())
@@ -2,6 +2,7 @@ from fastapi import FastAPI
2
2
  from sqladmin import Admin
3
3
 
4
4
  from src.admin1.admin_auth import AdminAuth
5
+ from src.admin1.model_view import MODEL_VIEWS
5
6
  from src.api.transmitted_api_data import TransmittedAPIData
6
7
 
7
8
 
@@ -18,6 +19,7 @@ def add_admin1_in_app(*, app: FastAPI) -> FastAPI:
18
19
  title="{PROJECT_NAME}"
19
20
  )
20
21
 
21
- # admin.add_model_view(CurrentSemesterMV)
22
+ for model_view in MODEL_VIEWS:
23
+ admin.add_model_view(model_view)
22
24
 
23
25
  return app
@@ -9,15 +9,13 @@ from src.core.settings import get_cached_settings
9
9
  class AdminAuth(AuthenticationBackend):
10
10
  def __init__(self):
11
11
  self._logger = logging.getLogger(self.__class__.__name__)
12
- super().__init__(secret_key=get_cached_settings().sec)
12
+ super().__init__(secret_key=get_cached_settings().admin1_secret_key)
13
13
 
14
14
  async def login(self, request: Request) -> bool:
15
- form = await request.form()
16
-
17
15
  # ...
18
-
16
+ # form = await request.form()
19
17
  # request.session.update(...)
20
-
18
+ # ...
21
19
  return True
22
20
 
23
21
  async def logout(self, request: Request) -> bool:
@@ -25,8 +23,7 @@ class AdminAuth(AuthenticationBackend):
25
23
  return True
26
24
 
27
25
  async def authenticate(self, request: Request) -> bool:
26
+ # ...
28
27
  # request.session.get("...")
29
-
30
28
  # ...
31
-
32
29
  return True
@@ -12,3 +12,8 @@ class BaseModelView(ModelView):
12
12
  save_as = True
13
13
  save_as_continue = True
14
14
  export_types = ["xlsx", "csv", "json"]
15
+
16
+
17
+ MODEL_VIEWS = []
18
+
19
+ # ...
@@ -40,7 +40,7 @@ class StartupAPIEvent(BaseStartupAPIEvent):
40
40
  self.transmitted_api_data.sqlalchemy_db.init
41
41
  ]
42
42
  ),
43
- mode=SafeRunInBackgroundModes.async_task
43
+ mode=SafeRunInBackgroundModes.thread
44
44
  )
45
45
 
46
46
  if self.transmitted_api_data.settings.api_start_scheduled_operation_creator_worker:
@@ -1,9 +1,17 @@
1
- from src.api.start_api_for_dev import start_api_for_dev
1
+ import uvicorn
2
2
 
3
+ from src.core.settings import get_cached_settings
3
4
 
4
- def command():
5
- start_api_for_dev(reload=True)
5
+
6
+ def __command():
7
+ uvicorn.run(
8
+ "src.api.asgi:app",
9
+ port=get_cached_settings().api_port,
10
+ host="localhost",
11
+ workers=1,
12
+ reload=True
13
+ )
6
14
 
7
15
 
8
16
  if __name__ == '__main__':
9
- command()
17
+ __command()
@@ -3,15 +3,15 @@ import uvicorn
3
3
  from src.core.settings import get_cached_settings
4
4
 
5
5
 
6
- def start_api_for_dev(*, reload: bool = False):
6
+ def __command():
7
7
  uvicorn.run(
8
8
  "src.api.asgi:app",
9
9
  port=get_cached_settings().api_port,
10
10
  host="localhost",
11
11
  workers=1,
12
- reload=reload
12
+ reload=False
13
13
  )
14
14
 
15
15
 
16
16
  if __name__ == '__main__':
17
- start_api_for_dev(reload=False)
17
+ __command()
@@ -0,0 +1,12 @@
1
+ import logging
2
+
3
+ _logger = logging.getLogger(__name__)
4
+
5
+
6
+ def hello_world() -> str:
7
+ _logger.info("hello world")
8
+ return "Hello world"
9
+
10
+
11
+ if __name__ == '__main__':
12
+ print(hello_world())
@@ -5,10 +5,10 @@ from src.core.util import setup_logging
5
5
  _logger = logging.getLogger(__name__)
6
6
 
7
7
 
8
- def command():
8
+ def __check_logging():
9
9
  setup_logging()
10
- _logger.info("checking logging")
10
+ _logger.info("logging is good")
11
11
 
12
12
 
13
13
  if __name__ == '__main__':
14
- command()
14
+ __check_logging()
@@ -2,10 +2,10 @@ from src.core.util import setup_logging
2
2
  from src.db.util import get_cached_sqlalchemy_db
3
3
 
4
4
 
5
- def command():
5
+ def __init_sqlalchemy_db():
6
6
  setup_logging()
7
7
  get_cached_sqlalchemy_db().init()
8
8
 
9
9
 
10
10
  if __name__ == '__main__':
11
- command()
11
+ __init_sqlalchemy_db()
@@ -3,11 +3,11 @@ from src.core.util import setup_logging
3
3
  from src.db.util import get_cached_sqlalchemy_db
4
4
 
5
5
 
6
- def command():
6
+ def __reinit_sqlalchemy_db():
7
7
  setup_logging()
8
8
  get_cached_settings().raise_if_mode_type_not_prod()
9
9
  get_cached_sqlalchemy_db().reinit()
10
10
 
11
11
 
12
12
  if __name__ == '__main__':
13
- command()
13
+ __reinit_sqlalchemy_db()
@@ -1,11 +1,13 @@
1
1
  from arpakitlib.ar_operation_execution_util import OperationExecutorWorker
2
+ from src.core.settings import get_cached_settings
2
3
  from src.core.util import setup_logging
3
4
  from src.db.util import get_cached_sqlalchemy_db
4
5
  from src.operation_execution.operation_executor import OperationExecutor
5
6
 
6
7
 
7
- def start_operation_executor_worker_for_dev():
8
+ def start_operation_executor_worker():
8
9
  setup_logging()
10
+ get_cached_settings().raise_if_mode_type_prod()
9
11
  worker = OperationExecutorWorker(
10
12
  sqlalchemy_db=get_cached_sqlalchemy_db(),
11
13
  operation_executor=OperationExecutor(sqlalchemy_db=get_cached_sqlalchemy_db())
@@ -14,4 +16,4 @@ def start_operation_executor_worker_for_dev():
14
16
 
15
17
 
16
18
  if __name__ == '__main__':
17
- start_operation_executor_worker_for_dev()
19
+ start_operation_executor_worker()
@@ -1,11 +1,13 @@
1
1
  from arpakitlib.ar_operation_execution_util import ScheduledOperationCreatorWorker
2
+ from src.core.settings import get_cached_settings
2
3
  from src.core.util import setup_logging
3
4
  from src.db.util import get_cached_sqlalchemy_db
4
5
  from src.operation_execution.scheduled_operations import SCHEDULED_OPERATIONS
5
6
 
6
7
 
7
- def start_create_scheduled_operation_worker_for_dev():
8
+ def start_scheduled_operation_creator_worker():
8
9
  setup_logging()
10
+ get_cached_settings().raise_if_mode_type_prod()
9
11
  worker = ScheduledOperationCreatorWorker(
10
12
  sqlalchemy_db=get_cached_sqlalchemy_db(),
11
13
  scheduled_operations=SCHEDULED_OPERATIONS
@@ -14,4 +16,4 @@ def start_create_scheduled_operation_worker_for_dev():
14
16
 
15
17
 
16
18
  if __name__ == '__main__':
17
- start_create_scheduled_operation_worker_for_dev()
19
+ start_scheduled_operation_creator_worker()
@@ -21,19 +21,20 @@ def generate_env_example(settings_class: Union[BaseSettings, type[BaseSettings]]
21
21
  return res
22
22
 
23
23
 
24
+ class ModeTypes(Enumeration):
25
+ not_prod: str = "not_prod"
26
+ prod: str = "prod"
27
+
28
+
24
29
  class SimpleSettings(BaseSettings):
25
30
  model_config = ConfigDict(extra="ignore")
26
31
 
27
- class ModeTypes(Enumeration):
28
- not_prod: str = "not_prod"
29
- prod: str = "prod"
30
-
31
32
  mode_type: str = ModeTypes.not_prod
32
33
 
33
34
  @field_validator("mode_type")
34
35
  @classmethod
35
36
  def validate_mode_type(cls, v: str):
36
- cls.ModeTypes.parse_and_validate_values(v.lower().strip())
37
+ ModeTypes.parse_and_validate_values(v.lower().strip())
37
38
  return v
38
39
 
39
40
  @property
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: arpakitlib
3
- Version: 1.7.121
3
+ Version: 1.7.123
4
4
  Summary: arpakitlib
5
5
  License: Apache-2.0
6
6
  Keywords: arpakitlib,arpakit,arpakit-company,arpakitcompany,arpakit_company
@@ -5,17 +5,13 @@ arpakitlib/_arpakit_project_template/ARPAKITLIB,sha256=3-iAkMXtesLzJXHw_IIv2k2M0
5
5
  arpakitlib/_arpakit_project_template/LICENSE,sha256=GPEDQMam2r7FSTYqM1mm7aKnxLaWcBotH7UvQtea-ec,11355
6
6
  arpakitlib/_arpakit_project_template/NOTICE,sha256=95aUzaPJjVpDsGAsNzVnq7tHTxAl0s5UFznCTkVCau4,763
7
7
  arpakitlib/_arpakit_project_template/README.md,sha256=EEoHPZrJQtLS3fKD3JvoPhkGhjfuDihxK5fmAGwihCQ,65
8
- arpakitlib/_arpakit_project_template/example.env,sha256=WGjeWQDQBZOh5c1jef6U8D7xxxz4dZAHWqBP8uEQAHs,464
8
+ arpakitlib/_arpakit_project_template/example.env,sha256=CtNXgvXe8PfULfLpLdrLUrtOhwc4Ax4vEPvxvRb1Eds,543
9
9
  arpakitlib/_arpakit_project_template/manage/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
10
10
  arpakitlib/_arpakit_project_template/manage/docker_ps.sh,sha256=uwm8vHgeuNLCOn0o9hgP_uc-PUkS9FwLyzZh6ItZ3do,15
11
11
  arpakitlib/_arpakit_project_template/manage/docker_ps_a.sh,sha256=nOQejihYlzstg9oROvYwHIsSLt2Sw0DWQEeT3GBaBNs,18
12
12
  arpakitlib/_arpakit_project_template/manage/docker_run_postgres_for_dev.sh,sha256=EKytHfg5nDIen_QZhltfU7fHNJ68cSbM2ab13smKnTk,276
13
13
  arpakitlib/_arpakit_project_template/manage/docker_start_postgres_for_dev.sh,sha256=vY_NMqqZzYhrRMyZhZkJ5ppOJnzhpvHr82U3zTXJWPw,43
14
14
  arpakitlib/_arpakit_project_template/manage/docker_stop_postgres_for_dev.sh,sha256=Mlerpr5giJvpAtmYsudx-bYb4SuL1Hw7iF1Jv_b061k,41
15
- arpakitlib/_arpakit_project_template/manage/example_nginx_proxy.nginx,sha256=Ch4vCoa1QBdDpfRAz2tgOMO8Gw-6tgNyvOkte7A3MsA,326
16
- arpakitlib/_arpakit_project_template/manage/example_poetry_arpakitlib.sh,sha256=ChcLbdsciCUlv_k-gp_1n70K80xc-ulKz4MXz-hXMqs,206
17
- arpakitlib/_arpakit_project_template/manage/example_pyproject.toml,sha256=EwzqwsuhD0gkAvvoxz4fssm5_f8W_NhoN4diwlrknrY,569
18
- arpakitlib/_arpakit_project_template/manage/example_systemd.service,sha256=Cunp3074ZKg1AQiX4Q_Xe5Q39Jca7hQj5ljXqryWwTU,143
19
15
  arpakitlib/_arpakit_project_template/manage/git_branch.sh,sha256=yMwBwT866WjxowbDrNHRDh8yod4eSn7JZnXUlQvrcOk,17
20
16
  arpakitlib/_arpakit_project_template/manage/git_commit.sh,sha256=AW1NEel-ZHaYeVWFlRbgZSYPQdnVKsTkpR_07RQL1Mw,42
21
17
  arpakitlib/_arpakit_project_template/manage/git_push_arpakit_company_github_1.sh,sha256=Sx-OegryHeNTIfAOoCfj3Z3CF-XKEY0AJF5HVJAgGpU,70
@@ -26,9 +22,8 @@ arpakitlib/_arpakit_project_template/manage/git_remote_v.sh,sha256=DIcyWmY_mve_C
26
22
  arpakitlib/_arpakit_project_template/manage/git_set_arpakit_company_origin.sh,sha256=qTi-SxgC6CfCTEAje0_XFcQ9wpuiyAZEU4MANeJjdWA,274
27
23
  arpakitlib/_arpakit_project_template/manage/git_set_arpakit_origin.sh,sha256=uMtOEDLe_L8SD5cqZ1ZU_pC2C5ZOD-eM8igf1z0LUIk,225
28
24
  arpakitlib/_arpakit_project_template/manage/git_status.sh,sha256=N9JGYX5_UfCdirw4EQYzu4sS7pMLGrF4-QrTSTcpUtA,16
29
- arpakitlib/_arpakit_project_template/manage/hello_world.py,sha256=1b1YIedAgtvBttAcKBeF03XsJ_pVKIThsr-0MYw0Uxg,83
30
- arpakitlib/_arpakit_project_template/manage/json_beutify.py,sha256=PChWwFEKQisArptVW7lMMwlEbtKdeCP_IkQ0OXz-J08,223
31
- arpakitlib/_arpakit_project_template/manage/logging_check.py,sha256=rfrl4MK5ItRKaLKb0UU_EfQLckRQSYJ1S_2VAQJQ2Yk,212
25
+ arpakitlib/_arpakit_project_template/manage/hello_world.py,sha256=OxvwkWqjmhhvMPG1TiQTo52hgEyzZfzUPoij0wmFmWA,95
26
+ arpakitlib/_arpakit_project_template/manage/json_beutify.py,sha256=JoJwN-GdI3HK_lTho043iNjLci2YrbdteeKB8gjwSL4,227
32
27
  arpakitlib/_arpakit_project_template/manage/note/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
33
28
  arpakitlib/_arpakit_project_template/manage/note/note_1.txt,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
34
29
  arpakitlib/_arpakit_project_template/manage/note/note_2.txt,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -49,15 +44,14 @@ arpakitlib/_arpakit_project_template/manage/poetry_show.sh,sha256=pclR9efCNrrGyJ
49
44
  arpakitlib/_arpakit_project_template/manage/poetry_show_arpakitlib.sh,sha256=5ibH12wGYc-Cj8zl5abtI_hLVSW0o4ofktt-w7I6wQo,37
50
45
  arpakitlib/_arpakit_project_template/manage/poetry_update.sh,sha256=ZtoXIC4Qq7PMTDxQMwUxvkYC6lTc5LC23ILTywWbyoU,164
51
46
  arpakitlib/_arpakit_project_template/manage/poetry_update_arpakitlib.sh,sha256=hh7vj-yKgKqLfaGb8cjsJ_NTa7fBtE4s3yxzte4D8bw,163
52
- arpakitlib/_arpakit_project_template/manage/requirements.txt,sha256=rQyiMoxw1UtkLAl_8l7mS5MTcDUQd0VF_5XOBK3czW4,17319
53
47
  arpakitlib/_arpakit_project_template/manage/sandbox/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
54
- arpakitlib/_arpakit_project_template/manage/sandbox/sandbox_1.py,sha256=WdE1IWyObxVUT9jE3qgNMaFXXkKV6nUI0ZToLT1uhdk,155
55
- arpakitlib/_arpakit_project_template/manage/sandbox/sandbox_2.py,sha256=WdE1IWyObxVUT9jE3qgNMaFXXkKV6nUI0ZToLT1uhdk,155
56
- arpakitlib/_arpakit_project_template/manage/sandbox/sandbox_3.py,sha256=WdE1IWyObxVUT9jE3qgNMaFXXkKV6nUI0ZToLT1uhdk,155
57
- arpakitlib/_arpakit_project_template/manage/sandbox/sandbox_4.py,sha256=WdE1IWyObxVUT9jE3qgNMaFXXkKV6nUI0ZToLT1uhdk,155
58
- arpakitlib/_arpakit_project_template/manage/sandbox/sandbox_5.py,sha256=WdE1IWyObxVUT9jE3qgNMaFXXkKV6nUI0ZToLT1uhdk,155
59
- arpakitlib/_arpakit_project_template/manage/sandbox/sandbox_6.py,sha256=WdE1IWyObxVUT9jE3qgNMaFXXkKV6nUI0ZToLT1uhdk,155
60
- arpakitlib/_arpakit_project_template/manage/sandbox/sandbox_7.py,sha256=WdE1IWyObxVUT9jE3qgNMaFXXkKV6nUI0ZToLT1uhdk,155
48
+ arpakitlib/_arpakit_project_template/manage/sandbox/sandbox_1.py,sha256=xKSp7tIBu3Ffp_kgJkwVtdam3BcoFZ44JPVHoRRaP0E,163
49
+ arpakitlib/_arpakit_project_template/manage/sandbox/sandbox_2.py,sha256=xKSp7tIBu3Ffp_kgJkwVtdam3BcoFZ44JPVHoRRaP0E,163
50
+ arpakitlib/_arpakit_project_template/manage/sandbox/sandbox_3.py,sha256=xKSp7tIBu3Ffp_kgJkwVtdam3BcoFZ44JPVHoRRaP0E,163
51
+ arpakitlib/_arpakit_project_template/manage/sandbox/sandbox_4.py,sha256=xKSp7tIBu3Ffp_kgJkwVtdam3BcoFZ44JPVHoRRaP0E,163
52
+ arpakitlib/_arpakit_project_template/manage/sandbox/sandbox_5.py,sha256=xKSp7tIBu3Ffp_kgJkwVtdam3BcoFZ44JPVHoRRaP0E,163
53
+ arpakitlib/_arpakit_project_template/manage/sandbox/sandbox_6.py,sha256=xKSp7tIBu3Ffp_kgJkwVtdam3BcoFZ44JPVHoRRaP0E,163
54
+ arpakitlib/_arpakit_project_template/manage/sandbox/sandbox_7.py,sha256=xKSp7tIBu3Ffp_kgJkwVtdam3BcoFZ44JPVHoRRaP0E,163
61
55
  arpakitlib/_arpakit_project_template/manage/sandbox/sandbox_8.sh,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
62
56
  arpakitlib/_arpakit_project_template/manage/sandbox/sandbox_9.sh,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
63
57
  arpakitlib/_arpakit_project_template/resource/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -68,15 +62,15 @@ arpakitlib/_arpakit_project_template/src/__init__.py,sha256=47DEQpj8HBSa-_TImW-5
68
62
  arpakitlib/_arpakit_project_template/src/additional_model/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
69
63
  arpakitlib/_arpakit_project_template/src/additional_model/additional_model.py,sha256=4KCOvto9Hj5eMYpvfaJChghhR9bkCvKluGGPWrTezoY,134
70
64
  arpakitlib/_arpakit_project_template/src/admin1/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
71
- arpakitlib/_arpakit_project_template/src/admin1/add_admin_in_app.py,sha256=mI4wPh49aEtylunAg4jL7YuCbKGs9RIk1vpmzrlX828,611
72
- arpakitlib/_arpakit_project_template/src/admin1/admin_auth.py,sha256=8ONlFhGzja2grk9R8rlSTFY8P5VJKr06iP-p_C1bFiw,765
73
- arpakitlib/_arpakit_project_template/src/admin1/model_view.py,sha256=jZLvrPfSHuxNu_Z54jG-CXi97ol6ILSMErgzYTSd8ig,331
65
+ arpakitlib/_arpakit_project_template/src/admin1/add_admin_in_app.py,sha256=dWPhsBgXAFKF6qDKknY_hLG1HAH1NWN_OBqztXj9FLU,687
66
+ arpakitlib/_arpakit_project_template/src/admin1/admin_auth.py,sha256=qEC7gMy9E6mwuQRxnSsmVthXahVai4zjiC6Z8O3MZn8,804
67
+ arpakitlib/_arpakit_project_template/src/admin1/model_view.py,sha256=kSscddS6RDZS1VpX0t1n0sjoCjT5O7U8d5YRmT3dauQ,357
74
68
  arpakitlib/_arpakit_project_template/src/api/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
75
69
  arpakitlib/_arpakit_project_template/src/api/asgi.py,sha256=a5UBxOyNC8NG3E0ayhiDo3t5tPoB3WtOf2gbZJFWBAA,74
76
70
  arpakitlib/_arpakit_project_template/src/api/auth.py,sha256=dcvj5C9E2F2KCsGZPBBncQf_EvVJAC1qQgnyD8P4ZEw,6
77
71
  arpakitlib/_arpakit_project_template/src/api/const.py,sha256=7d4qD5hedqr7QxVzbfsA7E1bNZn2Pm2U8joXGtpANu0,287
78
72
  arpakitlib/_arpakit_project_template/src/api/create_api_app.py,sha256=1R9nbDOw5Z7Ns5TJMy5MUlyp54VIBQ15oI02V1lHoYo,2758
79
- arpakitlib/_arpakit_project_template/src/api/event.py,sha256=q_Doo2brHnG14vHapLuDhUiANN5Ofk8KI7u16ZsQMDY,3259
73
+ arpakitlib/_arpakit_project_template/src/api/event.py,sha256=z3lNppog2x4a7phr4HmTQVWLt_LPI-357WeijbEeQRQ,3255
80
74
  arpakitlib/_arpakit_project_template/src/api/router/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
81
75
  arpakitlib/_arpakit_project_template/src/api/router/main_router.py,sha256=Yv699WCJDcdiJMXFg1kPTvolqj-NAGoXfqe-vzbMzIU,228
82
76
  arpakitlib/_arpakit_project_template/src/api/router/v1/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -86,12 +80,14 @@ arpakitlib/_arpakit_project_template/src/api/schema/__init__.py,sha256=47DEQpj8H
86
80
  arpakitlib/_arpakit_project_template/src/api/schema/v1/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
87
81
  arpakitlib/_arpakit_project_template/src/api/schema/v1/in_.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
88
82
  arpakitlib/_arpakit_project_template/src/api/schema/v1/out.py,sha256=odc-UyxBwUPh4t0H6qIuzAsBA_Qrm3H2qP-YBgJpaKc,164
89
- arpakitlib/_arpakit_project_template/src/api/start_api_for_dev.py,sha256=BwROGTR8Hm1ewx_Z0k8HXeql4RIItCdCtP_hmhTT_PM,344
90
- arpakitlib/_arpakit_project_template/src/api/start_api_for_dev_with_reload.py,sha256=xg2SFemhe8KmmoYvaG8zkFZyonzxdxcHuugjS3i0q0I,151
83
+ arpakitlib/_arpakit_project_template/src/api/start_api_for_dev_with_reload.py,sha256=H5J9k4j-pBiGlMHXYEYJQeQcanEpIBhv4r4SfiW3pSk,291
84
+ arpakitlib/_arpakit_project_template/src/api/start_api_for_dev_without_reload.py,sha256=n30lbivzh1EJ8p8LY4YYlreQ14gfHWkU2zNxiwQ6ej4,292
91
85
  arpakitlib/_arpakit_project_template/src/api/transmitted_api_data.py,sha256=fEWpfjnIrGluDrjgbsJwucQoiXKTP1cUYYORTFKdOJY,531
92
86
  arpakitlib/_arpakit_project_template/src/api/util.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
93
87
  arpakitlib/_arpakit_project_template/src/business_service/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
88
+ arpakitlib/_arpakit_project_template/src/business_service/hello_world.py,sha256=pDCPv_1qC4yo3dKYt2kdz3GsiR53XDmYi1r7zzzj8co,193
94
89
  arpakitlib/_arpakit_project_template/src/core/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
90
+ arpakitlib/_arpakit_project_template/src/core/check_logging.py,sha256=TXAG-v7rH3uSSyCgraEX-3gbDs4J2MGGaBJb1P-xj18,227
95
91
  arpakitlib/_arpakit_project_template/src/core/check_settings.py,sha256=m0fTAAFET2n6iE_rrFrWEHgKuJOKbJfkNRpIGsE69qU,328
96
92
  arpakitlib/_arpakit_project_template/src/core/const.py,sha256=CZZew674y7LhCAlYhvuF5cV4Zb9nQ17j2Tcuj2GEBf4,1232
97
93
  arpakitlib/_arpakit_project_template/src/core/generate_settings_env_example.py,sha256=DUfZtJL_iajxdihgPpO1b2Wg9Owe_3AYSUqIlBgCIEI,484
@@ -100,16 +96,16 @@ arpakitlib/_arpakit_project_template/src/core/util.py,sha256=5R8gvcZdvuDQes45FBn
100
96
  arpakitlib/_arpakit_project_template/src/db/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
101
97
  arpakitlib/_arpakit_project_template/src/db/check_conn_sqlalchemy_db.py,sha256=wv1N33nTGpsT9nk94OePlOSZ-O9UVKlMfRf8y5UeK1Y,213
102
98
  arpakitlib/_arpakit_project_template/src/db/const.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
103
- arpakitlib/_arpakit_project_template/src/db/init_sqlalchemy_db.py,sha256=cBkdDS4i1dbt0HsV6vyTTZvtCXYTfCdkvCHgVFrafUU,207
104
- arpakitlib/_arpakit_project_template/src/db/reinit_sqlalchemy_db_for_not_prod.py,sha256=8Mkyi74kkOR58NO7w0Ral2ADGiu6rul0SSIDy9rGQAQ,315
99
+ arpakitlib/_arpakit_project_template/src/db/init_sqlalchemy_db.py,sha256=gxCQT1bcJ-8Qos-zL8PnQ58i2GX_QkQnQSsSBKYR1f0,233
100
+ arpakitlib/_arpakit_project_template/src/db/reinit_sqlalchemy_db.py,sha256=WFcv3bt2AdSIwwhpkxzNsh09wpJCmuHux63fMt_iLTg,345
105
101
  arpakitlib/_arpakit_project_template/src/db/sqlalchemy_model.py,sha256=nXtayUkBaVb6tWx5qJgXZLbLOTVAjnSLpSDxBm7yZLc,234
106
102
  arpakitlib/_arpakit_project_template/src/db/util.py,sha256=8Jg9TtTwvyxVYIN_W5_lk9y-Pyh8To1aMRFUKCRDuuA,550
107
103
  arpakitlib/_arpakit_project_template/src/operation_execution/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
108
104
  arpakitlib/_arpakit_project_template/src/operation_execution/const.py,sha256=HjupGEDUWVijQlbzxZPI9vBbAVOETUYzYU9pdnc9IcI,176
109
105
  arpakitlib/_arpakit_project_template/src/operation_execution/operation_executor.py,sha256=TuAlF3QPJq-Zsq693NHQ00dvCWAzuwce2q6ozesWFYY,725
110
106
  arpakitlib/_arpakit_project_template/src/operation_execution/scheduled_operations.py,sha256=N6erGXOf_Qm3soPzuraMoc1jLXA6M1KfNsp0l4aAWBM,973
111
- arpakitlib/_arpakit_project_template/src/operation_execution/start_operation_executor_worker_for_not_prod.py,sha256=-o1mL3UtKPKAvXV-IOrafEaUcE5A517ejUPxMTtTaDk,589
112
- arpakitlib/_arpakit_project_template/src/operation_execution/start_scheduled_operation_creator_worker_for_not_prod.py,sha256=c8E7T-xvjutcpN9IDHyHh0C7U-LaVqWe-71iDIXyHWg,589
107
+ arpakitlib/_arpakit_project_template/src/operation_execution/start_operation_executor_worker.py,sha256=QEGIuzSf6z_xDgGNzB6cMvqKhksuyOxZDjAOR56m05Y,675
108
+ arpakitlib/_arpakit_project_template/src/operation_execution/start_scheduled_operation_creator_worker.py,sha256=GW1G8pi6yV_zODbqOs8VtEEM2e0iADFV6RXIxdPPPDY,677
113
109
  arpakitlib/_arpakit_project_template/src/operation_execution/util.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
114
110
  arpakitlib/_arpakit_project_template/src/test_data/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
115
111
  arpakitlib/_arpakit_project_template/src/test_data/make_test_data_1.py,sha256=3WVPgRsNCIxWpA-6t_Phe-nFULdHPhS1S_DO11XRmqk,80
@@ -117,6 +113,9 @@ arpakitlib/_arpakit_project_template/src/test_data/make_test_data_2.py,sha256=MV
117
113
  arpakitlib/_arpakit_project_template/src/test_data/make_test_data_3.py,sha256=89Rg0wubztpCNHBOWkhjZz3nB8Teilrl9xHlJvDWw9o,80
118
114
  arpakitlib/_arpakit_project_template/src/test_data/make_test_data_4.py,sha256=BlVvIhSFclBMQMHftETS57bRaFpkOdKPrZyxMbYJuDY,80
119
115
  arpakitlib/_arpakit_project_template/src/test_data/make_test_data_5.py,sha256=7ruCZevqJoLSdqL1OEJWUy3YPCOHQif7JqVTKxZ9acM,80
116
+ arpakitlib/_arpakit_project_template/src/tg_bot/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
117
+ arpakitlib/_arpakit_project_template/src/tg_bot/router/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
118
+ arpakitlib/_arpakit_project_template/src/tg_bot/start_tg_bot.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
120
119
  arpakitlib/_arpakit_project_template/src/util/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
121
120
  arpakitlib/api_key_util.py,sha256=E84JlJXiDHtxLQmV8BNHvqNKu_G8-Dox0XxknYJQ37Q,422
122
121
  arpakitlib/ar_additional_model_util.py,sha256=GFg-glLCxH9X95R2bhTJsscVwv37FgE1qbaAAyXrnIE,917
@@ -175,7 +174,7 @@ arpakitlib/ar_parse_command.py,sha256=-s61xcATIsfw1eV_iD3xi-grsitbGzSDoAFc5V0OFy
175
174
  arpakitlib/ar_postgresql_util.py,sha256=1AuLjEaa1Lg4pzn-ukCVnDi35Eg1k91APRTqZhIJAdo,945
176
175
  arpakitlib/ar_run_cmd_util.py,sha256=D_rPavKMmWkQtwvZFz-Io5Ak8eSODHkcFeLPzNVC68g,1072
177
176
  arpakitlib/ar_schedule_uust_api_client_util.py,sha256=0Ns0mMEXYEkVmP6YTAXHyNcrhNsvCJ8X-G_5XwILhJ4,6855
178
- arpakitlib/ar_settings_util.py,sha256=amNtoXhJwf3pnIYWRKwWd38TJ5oTyTS4mhZyQza7Ca8,1881
177
+ arpakitlib/ar_settings_util.py,sha256=WPlMp4mJdXds2PzmU4-w_poW2hzXlhoTukxKvHXA368,1866
179
178
  arpakitlib/ar_sleep_util.py,sha256=OaLtRaJQWMkGjfj_mW1RB2P4RaSWsAIH8LUoXqsH0zM,1061
180
179
  arpakitlib/ar_sqlalchemy_model_util.py,sha256=nKJGN32eg3Gn5kmJwHdVJznPT5TydLsfUfwJGdypdUo,6264
181
180
  arpakitlib/ar_sqlalchemy_util.py,sha256=Hcg1THrDsSR_-8dsY1CG3NWPEv0FqCbkPXFXLtjlSJ0,4207
@@ -184,9 +183,9 @@ arpakitlib/ar_str_util.py,sha256=yU5gOwNXUQaH5b_tM5t6fXUn9oUcv5EQbVnq2wXXIpQ,337
184
183
  arpakitlib/ar_type_util.py,sha256=BJ5FcS5Vkj9KFNJgoh0qGLazy-wCubqhND3vle0yOTo,3717
185
184
  arpakitlib/ar_yookassa_api_client_util.py,sha256=sh4fcUkAkdOetFn9JYoTvjcSXP-M1wU04KEY-ECLfLg,5137
186
185
  arpakitlib/ar_zabbix_api_client_util.py,sha256=Q-VR4MvoZ9aHwZeYZr9G3LwN-ANx1T5KFmF6pvPM-9M,6402
187
- arpakitlib-1.7.121.dist-info/LICENSE,sha256=GPEDQMam2r7FSTYqM1mm7aKnxLaWcBotH7UvQtea-ec,11355
188
- arpakitlib-1.7.121.dist-info/METADATA,sha256=1wxBDG287fBxLvkKFcqRryrQA7bXD04FythwCzQibr0,3176
189
- arpakitlib-1.7.121.dist-info/NOTICE,sha256=95aUzaPJjVpDsGAsNzVnq7tHTxAl0s5UFznCTkVCau4,763
190
- arpakitlib-1.7.121.dist-info/WHEEL,sha256=IYZQI976HJqqOpQU6PHkJ8fb3tMNBFjg-Cn-pwAbaFM,88
191
- arpakitlib-1.7.121.dist-info/entry_points.txt,sha256=36xqR3PJFT2kuwjkM_EqoIy0qFUDPKSm_mJaI7emewE,87
192
- arpakitlib-1.7.121.dist-info/RECORD,,
186
+ arpakitlib-1.7.123.dist-info/LICENSE,sha256=GPEDQMam2r7FSTYqM1mm7aKnxLaWcBotH7UvQtea-ec,11355
187
+ arpakitlib-1.7.123.dist-info/METADATA,sha256=4mkc7KZsSiTifxYfXvOhNz7FCCKqM6Zuyz3Rrlyw7aQ,3176
188
+ arpakitlib-1.7.123.dist-info/NOTICE,sha256=95aUzaPJjVpDsGAsNzVnq7tHTxAl0s5UFznCTkVCau4,763
189
+ arpakitlib-1.7.123.dist-info/WHEEL,sha256=IYZQI976HJqqOpQU6PHkJ8fb3tMNBFjg-Cn-pwAbaFM,88
190
+ arpakitlib-1.7.123.dist-info/entry_points.txt,sha256=36xqR3PJFT2kuwjkM_EqoIy0qFUDPKSm_mJaI7emewE,87
191
+ arpakitlib-1.7.123.dist-info/RECORD,,
@@ -1,14 +0,0 @@
1
- server {
2
- listen 80;
3
- listen [::]:80;
4
-
5
- server_name www...;
6
-
7
- location / {
8
- proxy_set_header Host $host;
9
- proxy_set_header X-Real-IP $remote_addr;
10
- proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
11
- proxy_set_header X-Forwarded-Proto $scheme;
12
- proxy_pass ...;
13
- }
14
- }
@@ -1 +0,0 @@
1
- poetry run arpakitlib -c init_arpakit_project_template -project_dirpath ./ -overwrite_if_exists true -project_name ... -sql_db_port ... -api_port ... -ignore_paths_startswith /src -only_paths_startswith ...
@@ -1,23 +0,0 @@
1
- [project]
2
- name = "{PROJECT_NAME}"
3
- version = "0.1.0"
4
- description = "{PROJECT_NAME}"
5
- authors = [
6
- { name = "arpakit", email = "arpakit@gmail.com" },
7
- { name = "arpakit_support", email = "support@arpakit.com" }
8
- ]
9
- license = "Apache License 2.0"
10
- readme = "README.md"
11
- keywords = ["{PROJECT_NAME}", "arpakitlib", "arpakit", "arpakit-company", "arpakitcompany", "arpakit_company"]
12
- requires-python = ">=3.12.4,<4.0"
13
- dependencies = [
14
- ]
15
-
16
-
17
- [tool.poetry]
18
- package-mode = false
19
-
20
-
21
- [build-system]
22
- requires = ["poetry-core>=2.0.0,<3.0.0"]
23
- build-backend = "poetry.core.masonry.api"
@@ -1,12 +0,0 @@
1
- [Unit]
2
- Description=...
3
-
4
- [Service]
5
- User=...
6
- WorkingDirectory=...
7
- ExecStart=...
8
- RestartSec=5
9
- Restart=always
10
-
11
- [Install]
12
- WantedBy=multi-user.target
@@ -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"