arpakitlib 1.6.47__py3-none-any.whl → 1.7.90__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 (157) hide show
  1. arpakitlib/_arpakit_project_template/.gitignore +51 -0
  2. arpakitlib/_arpakit_project_template/.python-version +1 -0
  3. arpakitlib/_arpakit_project_template/ARPAKITLIB +1 -0
  4. arpakitlib/_arpakit_project_template/AUTHOR.md +4 -0
  5. arpakitlib/_arpakit_project_template/NOTICE +16 -0
  6. arpakitlib/_arpakit_project_template/README.md +6 -0
  7. arpakitlib/_arpakit_project_template/example.env +22 -0
  8. arpakitlib/_arpakit_project_template/manage/__init__.py +0 -0
  9. arpakitlib/_arpakit_project_template/manage/docker_ps.sh +2 -0
  10. arpakitlib/_arpakit_project_template/manage/docker_ps_a.sh +2 -0
  11. arpakitlib/_arpakit_project_template/manage/docker_run_postgres_for_dev.sh +4 -0
  12. arpakitlib/_arpakit_project_template/manage/docker_start_postgres_for_dev.sh +2 -0
  13. arpakitlib/_arpakit_project_template/manage/docker_stop_postgres_for_dev.sh +2 -0
  14. arpakitlib/_arpakit_project_template/manage/example_nginx_proxy.nginx +14 -0
  15. arpakitlib/_arpakit_project_template/manage/example_poetry_arpakitlib.sh +1 -0
  16. arpakitlib/_arpakit_project_template/manage/example_pyproject.toml +18 -0
  17. arpakitlib/_arpakit_project_template/manage/example_systemd.service +12 -0
  18. arpakitlib/_arpakit_project_template/manage/git_branch.sh +2 -0
  19. arpakitlib/_arpakit_project_template/manage/git_commit.sh +3 -0
  20. arpakitlib/_arpakit_project_template/manage/git_push_arpakit_company_github_1.sh +4 -0
  21. arpakitlib/_arpakit_project_template/manage/git_push_arpakit_company_gitlab_1.sh +4 -0
  22. arpakitlib/_arpakit_project_template/manage/git_push_arpakit_github_1.sh +4 -0
  23. arpakitlib/_arpakit_project_template/manage/git_push_arpakit_gitlab_1.sh +4 -0
  24. arpakitlib/_arpakit_project_template/manage/git_remote_v.sh +2 -0
  25. arpakitlib/_arpakit_project_template/manage/git_set_arpakit_company_origin.sh +7 -0
  26. arpakitlib/_arpakit_project_template/manage/git_set_arpakit_origin.sh +7 -0
  27. arpakitlib/_arpakit_project_template/manage/git_status.sh +2 -0
  28. arpakitlib/_arpakit_project_template/manage/hello_world.py +6 -0
  29. arpakitlib/_arpakit_project_template/manage/json_beutify.py +10 -0
  30. arpakitlib/_arpakit_project_template/manage/logging_check.py +14 -0
  31. arpakitlib/_arpakit_project_template/manage/note/__init__.py +0 -0
  32. arpakitlib/_arpakit_project_template/manage/note/note_1.txt +0 -0
  33. arpakitlib/_arpakit_project_template/manage/note/note_2.txt +0 -0
  34. arpakitlib/_arpakit_project_template/manage/note/note_3.txt +0 -0
  35. arpakitlib/_arpakit_project_template/manage/note/note_4.txt +0 -0
  36. arpakitlib/_arpakit_project_template/manage/note/note_5.txt +0 -0
  37. arpakitlib/_arpakit_project_template/manage/poetry_add_plugin_export.sh +2 -0
  38. arpakitlib/_arpakit_project_template/manage/poetry_check.sh +2 -0
  39. arpakitlib/_arpakit_project_template/manage/poetry_clear_cache.sh +4 -0
  40. arpakitlib/_arpakit_project_template/manage/poetry_config_virtualenvs_in_project_true.sh +2 -0
  41. arpakitlib/_arpakit_project_template/manage/poetry_generate_requirements.txt.sh +1 -0
  42. arpakitlib/_arpakit_project_template/manage/poetry_install.sh +5 -0
  43. arpakitlib/_arpakit_project_template/manage/poetry_lock.sh +2 -0
  44. arpakitlib/_arpakit_project_template/manage/poetry_remove_and_add_arpakitlib.sh +7 -0
  45. arpakitlib/_arpakit_project_template/manage/poetry_show.sh +2 -0
  46. arpakitlib/_arpakit_project_template/manage/poetry_show_arpakitlib.sh +2 -0
  47. arpakitlib/_arpakit_project_template/manage/poetry_update.sh +6 -0
  48. arpakitlib/_arpakit_project_template/manage/poetry_update_arpakitlib.sh +5 -0
  49. arpakitlib/_arpakit_project_template/manage/requirements.txt +209 -0
  50. arpakitlib/_arpakit_project_template/manage/sandbox/__init__.py +0 -0
  51. arpakitlib/_arpakit_project_template/manage/sandbox/sandbox_1.py +14 -0
  52. arpakitlib/_arpakit_project_template/manage/sandbox/sandbox_2.py +14 -0
  53. arpakitlib/_arpakit_project_template/manage/sandbox/sandbox_3.py +14 -0
  54. arpakitlib/_arpakit_project_template/manage/sandbox/sandbox_4.py +14 -0
  55. arpakitlib/_arpakit_project_template/manage/sandbox/sandbox_5.py +14 -0
  56. arpakitlib/_arpakit_project_template/manage/sandbox/sandbox_6.py +14 -0
  57. arpakitlib/_arpakit_project_template/manage/sandbox/sandbox_7.py +14 -0
  58. arpakitlib/_arpakit_project_template/manage/sandbox/sandbox_8.sh +0 -0
  59. arpakitlib/_arpakit_project_template/manage/sandbox/sandbox_9.sh +0 -0
  60. arpakitlib/_arpakit_project_template/manage/settings_check.py +10 -0
  61. arpakitlib/_arpakit_project_template/manage/settings_generate_env_example.py +13 -0
  62. arpakitlib/_arpakit_project_template/manage/sqlalchemy_db_check_conn.py +11 -0
  63. arpakitlib/_arpakit_project_template/manage/sqlalchemy_db_init.py +11 -0
  64. arpakitlib/_arpakit_project_template/manage/sqlalchemy_db_reinit.py +11 -0
  65. arpakitlib/_arpakit_project_template/resource/__init__.py +0 -0
  66. arpakitlib/_arpakit_project_template/resource/static/__init__.py +0 -0
  67. arpakitlib/_arpakit_project_template/resource/static/healthcheck +1 -0
  68. arpakitlib/_arpakit_project_template/resource/static/helloworld +1 -0
  69. arpakitlib/_arpakit_project_template/src/__init__.py +0 -0
  70. arpakitlib/_arpakit_project_template/src/additional_model/__init__.py +0 -0
  71. arpakitlib/_arpakit_project_template/src/additional_model/additional_model.py +6 -0
  72. arpakitlib/_arpakit_project_template/src/api/__init__.py +0 -0
  73. arpakitlib/_arpakit_project_template/src/api/asgi.py +3 -0
  74. arpakitlib/_arpakit_project_template/src/api/auth.py +1 -0
  75. arpakitlib/_arpakit_project_template/src/api/const.py +13 -0
  76. arpakitlib/_arpakit_project_template/src/api/create_api_app.py +117 -0
  77. arpakitlib/_arpakit_project_template/src/api/event.py +20 -0
  78. arpakitlib/_arpakit_project_template/src/api/router/__init__.py +0 -0
  79. arpakitlib/_arpakit_project_template/src/api/router/main_router.py +9 -0
  80. arpakitlib/_arpakit_project_template/src/api/router/v1/__init__.py +0 -0
  81. arpakitlib/_arpakit_project_template/src/api/router/v1/get_api_error_info.py +27 -0
  82. arpakitlib/_arpakit_project_template/src/api/router/v1/main_router.py +11 -0
  83. arpakitlib/_arpakit_project_template/src/api/schema/__init__.py +0 -0
  84. arpakitlib/_arpakit_project_template/src/api/schema/v1/__init__.py +0 -0
  85. arpakitlib/_arpakit_project_template/src/api/schema/v1/in_.py +0 -0
  86. arpakitlib/_arpakit_project_template/src/api/schema/v1/out.py +6 -0
  87. arpakitlib/_arpakit_project_template/src/api/start_api_for_dev.py +17 -0
  88. arpakitlib/_arpakit_project_template/src/api/start_api_for_dev_with_reload.py +9 -0
  89. arpakitlib/_arpakit_project_template/src/api/transmitted_api_data.py +9 -0
  90. arpakitlib/_arpakit_project_template/src/api/util.py +0 -0
  91. arpakitlib/_arpakit_project_template/src/business_service/__init__.py +0 -0
  92. arpakitlib/_arpakit_project_template/src/core/__init__.py +0 -0
  93. arpakitlib/_arpakit_project_template/src/core/const.py +48 -0
  94. arpakitlib/_arpakit_project_template/src/core/settings.py +86 -0
  95. arpakitlib/_arpakit_project_template/src/core/util.py +58 -0
  96. arpakitlib/_arpakit_project_template/src/db/__init__.py +0 -0
  97. arpakitlib/_arpakit_project_template/src/db/sqlalchemy_model.py +8 -0
  98. arpakitlib/_arpakit_project_template/src/db/util.py +21 -0
  99. arpakitlib/_arpakit_project_template/src/operation_execution/__init__.py +0 -0
  100. arpakitlib/_arpakit_project_template/src/operation_execution/const.py +9 -0
  101. arpakitlib/_arpakit_project_template/src/operation_execution/operation_executor.py +14 -0
  102. arpakitlib/_arpakit_project_template/src/operation_execution/scheduled_operations.py +25 -0
  103. arpakitlib/_arpakit_project_template/src/operation_execution/start_operation_executor_worker_for_dev.py +18 -0
  104. arpakitlib/_arpakit_project_template/src/operation_execution/start_scheduled_operation_creator_worker_for_dev.py +17 -0
  105. arpakitlib/_arpakit_project_template/src/operation_execution/util.py +21 -0
  106. arpakitlib/_arpakit_project_template/src/test_data/__init__.py +0 -0
  107. arpakitlib/_arpakit_project_template/src/test_data/make_test_data_1.py +6 -0
  108. arpakitlib/_arpakit_project_template/src/test_data/make_test_data_2.py +6 -0
  109. arpakitlib/_arpakit_project_template/src/test_data/make_test_data_3.py +6 -0
  110. arpakitlib/_arpakit_project_template/src/test_data/make_test_data_4.py +6 -0
  111. arpakitlib/_arpakit_project_template/src/test_data/make_test_data_5.py +6 -0
  112. arpakitlib/_arpakit_project_template/src/util/__init__.py +0 -0
  113. arpakitlib/api_key_util.py +21 -0
  114. arpakitlib/ar_additional_model_util.py +25 -2
  115. arpakitlib/ar_aiogram_util.py +10 -18
  116. arpakitlib/ar_arpakit_lib_module_util.py +6 -1
  117. arpakitlib/ar_arpakit_project_template_util.py +96 -0
  118. arpakitlib/ar_arpakit_schedule_uust_api_client_util.py +24 -3
  119. arpakitlib/ar_arpakitlib_cli_util.py +79 -0
  120. arpakitlib/ar_base_worker_util.py +95 -48
  121. arpakitlib/ar_dream_ai_api_client_util.py +26 -52
  122. arpakitlib/ar_enumeration_util.py +11 -0
  123. arpakitlib/ar_exception_util.py +18 -0
  124. arpakitlib/ar_fastapi_static/healthcheck +1 -0
  125. arpakitlib/ar_fastapi_util.py +270 -137
  126. arpakitlib/ar_file_util.py +22 -0
  127. arpakitlib/ar_func_util.py +55 -0
  128. arpakitlib/ar_http_request_util.py +35 -6
  129. arpakitlib/ar_json_util.py +13 -7
  130. arpakitlib/ar_logging_util.py +5 -2
  131. arpakitlib/ar_need_type_util.py +12 -2
  132. arpakitlib/{ar_openai_util.py → ar_openai_api_client_util.py} +16 -2
  133. arpakitlib/ar_operation_execution_util.py +250 -105
  134. arpakitlib/ar_parse_command.py +25 -7
  135. arpakitlib/ar_schedule_uust_api_client_util.py +37 -23
  136. arpakitlib/ar_settings_util.py +37 -11
  137. arpakitlib/ar_sleep_util.py +0 -13
  138. arpakitlib/ar_sqlalchemy_model_util.py +47 -10
  139. arpakitlib/ar_sqlalchemy_util.py +4 -3
  140. arpakitlib/{ar_ssh_util.py → ar_ssh_runner_util.py} +2 -2
  141. arpakitlib/ar_str_util.py +43 -2
  142. arpakitlib/ar_type_util.py +68 -4
  143. arpakitlib/ar_yookassa_api_client_util.py +26 -44
  144. {arpakitlib-1.6.47.dist-info → arpakitlib-1.7.90.dist-info}/METADATA +17 -8
  145. arpakitlib-1.7.90.dist-info/NOTICE +16 -0
  146. arpakitlib-1.7.90.dist-info/RECORD +186 -0
  147. arpakitlib-1.7.90.dist-info/entry_points.txt +3 -0
  148. arpakitlib/AUTHOR.md +0 -7
  149. arpakitlib/NOTICE +0 -2
  150. arpakitlib/ar_arpakitlib_info.py +0 -13
  151. arpakitlib/ar_generate_env_example.py +0 -22
  152. arpakitlib-1.6.47.dist-info/NOTICE +0 -2
  153. arpakitlib-1.6.47.dist-info/RECORD +0 -70
  154. /arpakitlib/{LICENSE → _arpakit_project_template/LICENSE} +0 -0
  155. /arpakitlib/{ar_zabbix_util.py → ar_zabbix_api_client_util.py} +0 -0
  156. {arpakitlib-1.6.47.dist-info → arpakitlib-1.7.90.dist-info}/LICENSE +0 -0
  157. {arpakitlib-1.6.47.dist-info → arpakitlib-1.7.90.dist-info}/WHEEL +0 -0
@@ -0,0 +1,51 @@
1
+ # extensions
2
+ *.log
3
+ *.crt
4
+ *.key
5
+ *.session-journal
6
+ *.ignore
7
+ ignore*
8
+ *.session
9
+ *.sqlite
10
+ *.xlsx#
11
+ *_ardb.json
12
+
13
+ # dirs
14
+ media
15
+ .idea
16
+ var
17
+ dump
18
+ dump/*
19
+ var/*
20
+ cache/*
21
+ media/*
22
+ .venv
23
+ venv
24
+ dist
25
+ *_ardb
26
+ .pytest_cache
27
+ file_storage
28
+ mongo_dumps
29
+ __pycache__
30
+ cache
31
+ wgconfigs
32
+ foo
33
+ bar
34
+ logs
35
+ cache_dir
36
+ cachedir
37
+ config
38
+
39
+ # files
40
+ .env
41
+ .env_docker
42
+ db.sqlite
43
+ .env_test_prod
44
+ .api_env
45
+ test.txt
46
+ vk_config.v2.json
47
+ .env_prod
48
+ test.py
49
+ test.sh
50
+ playground.py
51
+ story.log
@@ -0,0 +1 @@
1
+ 3.12.4
@@ -0,0 +1 @@
1
+ TRUE
@@ -0,0 +1,4 @@
1
+ # Author
2
+
3
+ - arpakit.com
4
+ - support@arpakit.com
@@ -0,0 +1,16 @@
1
+ Copyright 2024-present Sabirzyanov Arsen
2
+
3
+ This project includes software developed by Sabirzyanov Arsen.
4
+
5
+ This project is licensed under the Apache License, Version 2.0 (the "License");
6
+ you may not use this file except in compliance with the License.
7
+ You may obtain a copy of the License at
8
+
9
+ ./LICENSE
10
+
11
+ Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS,
12
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13
+ See the License for the specific language governing permissions and limitations under the License.
14
+
15
+ Additional notices:
16
+ - This project may include third-party components that are subject to other licenses. See the LICENSE file for more information.
@@ -0,0 +1,6 @@
1
+ # {PROJECT_NAME}
2
+
3
+ ...
4
+
5
+ ## ❤️ Made by ARPAKIT Company ❤️
6
+
@@ -0,0 +1,22 @@
1
+ # mode_type=
2
+ # sql_db_url=
3
+ # sql_db_echo=
4
+ # api_init_sql_db_at_start=
5
+ # api_title=
6
+ # api_description=
7
+ # api_create_story_log_before_response_in_handle_exception=
8
+ # api_start_operation_executor_worker=
9
+ # api_start_scheduled_operation_creator_worker=
10
+ # api_port=
11
+ # api_correct_api_key=
12
+ # var_dirname=
13
+ # var_dirpath=
14
+ # log_filename=
15
+ # log_filepath=
16
+ # cache_dirname=
17
+ # cache_dirpath=
18
+ # media_dirname=
19
+ # media_dirpath=
20
+ # dump_dirname=
21
+ # dump_dirpath=
22
+ # local_timezone=
@@ -0,0 +1,2 @@
1
+ cd ..
2
+ docker ps
@@ -0,0 +1,2 @@
1
+ cd ..
2
+ docker ps -a
@@ -0,0 +1,4 @@
1
+ cd ..
2
+ docker rm {PROJECT_NAME}_postgres
3
+ docker run --name {PROJECT_NAME}_postgres -d -p {SQL_DB_PORT}:5432 -e POSTGRES_USER={PROJECT_NAME} -e POSTGRES_PASSWORD={PROJECT_NAME} -e POSTGRES_DB={PROJECT_NAME} postgres:16 -c max_connections=100
4
+ docker start {PROJECT_NAME}_postgres
@@ -0,0 +1,2 @@
1
+ cd ..
2
+ docker start {PROJECT_NAME}_postgres
@@ -0,0 +1,2 @@
1
+ cd ..
2
+ docker stop {PROJECT_NAME}_postgres
@@ -0,0 +1,14 @@
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
+ }
@@ -0,0 +1 @@
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 ...
@@ -0,0 +1,18 @@
1
+ [tool.poetry]
2
+ name = "{PROJECT_NAME}"
3
+ version = "0.1.0"
4
+ description = "{PROJECT_NAME}"
5
+ authors = ["arpakit <arpakit@gmail.com>", "arpakitsupport <support@arpakit.com>"]
6
+ license = "Apache License 2.0"
7
+ readme = "README.md"
8
+ keywords = ["{PROJECT_NAME}", "arpakitlib", "arpakit", "arpakit-company", "arpakitcompany", "arpakit_company"]
9
+ package-mode = false
10
+
11
+
12
+ [tool.poetry.dependencies]
13
+ python = "^3.12"
14
+
15
+
16
+ [build-system]
17
+ requires = ["poetry-core"]
18
+ build-backend = "poetry.core.masonry.api"
@@ -0,0 +1,12 @@
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
@@ -0,0 +1,2 @@
1
+ cd ..
2
+ git branch
@@ -0,0 +1,3 @@
1
+ cd ..
2
+ git add .
3
+ git commit -m "no_message"
@@ -0,0 +1,4 @@
1
+ cd ..
2
+ git add .
3
+ git commit -m "fix"
4
+ git push arpakit_company_github_1
@@ -0,0 +1,4 @@
1
+ cd ..
2
+ git add .
3
+ git commit -m "fix"
4
+ git push arpakit_company_gitlab_1
@@ -0,0 +1,4 @@
1
+ cd ..
2
+ git add .
3
+ git commit -m "fix"
4
+ git push arpakit_github_1
@@ -0,0 +1,4 @@
1
+ cd ..
2
+ git add .
3
+ git commit -m "fix"
4
+ git push arpakit_gitlab_1
@@ -0,0 +1,2 @@
1
+ cd ..
2
+ git remote -v
@@ -0,0 +1,7 @@
1
+ cd ..
2
+
3
+ git remote remove arpakit_company_github_1
4
+ git remote add arpakit_company_github_1 git@github.com:ARPAKIT-Company/{PROJECT_NAME}.git
5
+
6
+ git remote remove arpakit_company_gitlab_1
7
+ git remote add arpakit_company_gitlab_1 git@gitlab.com:ARPAKIT-Company/{PROJECT_NAME}.git
@@ -0,0 +1,7 @@
1
+ cd ..
2
+
3
+ git remote remove arpakit_github_1
4
+ git remote add arpakit_github_1 git@github.com:arpakit/{PROJECT_NAME}.git
5
+
6
+ git remote remove arpakit_gitlab_1
7
+ git remote add arpakit_gitlab_1 git@gitlab.com:arpakit/{PROJECT_NAME}.git
@@ -0,0 +1,2 @@
1
+ cd ..
2
+ git status
@@ -0,0 +1,6 @@
1
+ def command():
2
+ print("Hello world")
3
+
4
+
5
+ if __name__ == '__main__':
6
+ command()
@@ -0,0 +1,10 @@
1
+ from arpakitlib.ar_json_util import safely_transfer_str_to_json_obj_to_json_str
2
+
3
+
4
+ def command():
5
+ s = input("JSON:\n")
6
+ print(safely_transfer_str_to_json_obj_to_json_str(s))
7
+
8
+
9
+ if __name__ == '__main__':
10
+ command()
@@ -0,0 +1,14 @@
1
+ import logging
2
+
3
+ from src.core.util import setup_logging
4
+
5
+ _logger = logging.getLogger(__name__)
6
+
7
+
8
+ def command():
9
+ setup_logging()
10
+ _logger.info("checking logging")
11
+
12
+
13
+ if __name__ == '__main__':
14
+ command()
@@ -0,0 +1,2 @@
1
+ cd ..
2
+ poetry self add poetry-plugin-export
@@ -0,0 +1,2 @@
1
+ cd ..
2
+ poetry check
@@ -0,0 +1,4 @@
1
+ cd ..
2
+ echo "yes" | poetry cache clear --all PyPI
3
+ echo "yes" | poetry cache clear --all pypi
4
+ echo "yes" | poetry cache clear --all testpypi
@@ -0,0 +1,2 @@
1
+ cd ..
2
+ poetry config virtualenvs.in-project true
@@ -0,0 +1 @@
1
+ poetry export -f requirements.txt --without-hashes --output requirements.txt
@@ -0,0 +1,5 @@
1
+ cd ..
2
+ echo "yes" | poetry cache clear --all PyPI
3
+ echo "yes" | poetry cache clear --all pypi
4
+ echo "yes" | poetry cache clear --all testpypi
5
+ poetry install
@@ -0,0 +1,2 @@
1
+ cd ..
2
+ poetry lock
@@ -0,0 +1,7 @@
1
+ cd ..
2
+ poetry remove arpakitlib
3
+ echo "yes" | poetry cache clear --all PyPI
4
+ echo "yes" | poetry cache clear --all pypi
5
+ echo "yes" | poetry cache clear --all testpypi
6
+ poetry add arpakitlib
7
+ poetry lock
@@ -0,0 +1,2 @@
1
+ cd ..
2
+ poetry show --tree
@@ -0,0 +1,2 @@
1
+ cd ..
2
+ poetry show arpakitlib --no-dev
@@ -0,0 +1,6 @@
1
+ cd ..
2
+ echo "yes" | poetry cache clear --all PyPI
3
+ echo "yes" | poetry cache clear --all pypi
4
+ echo "yes" | poetry cache clear --all testpypi
5
+ poetry update
6
+ poetry lock
@@ -0,0 +1,5 @@
1
+ cd ..
2
+ echo "yes" | poetry cache clear --all PyPI
3
+ echo "yes" | poetry cache clear --all pypi
4
+ echo "yes" | poetry cache clear --all testpypi
5
+ poetry update arpakitlib
@@ -0,0 +1,209 @@
1
+ aiofiles==24.1.0 ; python_version >= "3.12" and python_version < "4.0"
2
+ aiogram==3.17.0 ; python_version >= "3.12" and python_version < "4.0"
3
+ aiohappyeyeballs==2.4.4 ; python_version >= "3.12" and python_version < "4.0"
4
+ aiohttp-socks==0.9.2 ; python_version >= "3.12" and python_version < "4.0"
5
+ aiohttp==3.11.11 ; python_version >= "3.12" and python_version < "4.0"
6
+ aiosignal==1.3.2 ; python_version >= "3.12" and python_version < "4.0"
7
+ alembic==1.14.0 ; python_version >= "3.12" and python_version < "4.0"
8
+ amqp==5.3.1 ; python_version >= "3.12" and python_version < "4.0"
9
+ annotated-types==0.7.0 ; python_version >= "3.12" and python_version < "4.0"
10
+ anyio==4.7.0 ; python_version >= "3.12" and python_version < "4.0"
11
+ appnope==0.1.4 ; python_version >= "3.12" and python_version < "4.0" and platform_system == "Darwin"
12
+ argon2-cffi-bindings==21.2.0 ; python_version >= "3.12" and python_version < "4.0"
13
+ argon2-cffi==23.1.0 ; python_version >= "3.12" and python_version < "4.0"
14
+ arrow==1.3.0 ; python_version >= "3.12" and python_version < "4.0"
15
+ asttokens==3.0.0 ; python_version >= "3.12" and python_version < "4.0"
16
+ async-lru==2.0.4 ; python_version >= "3.12" and python_version < "4.0"
17
+ asyncpg==0.30.0 ; python_version >= "3.12" and python_version < "4.0"
18
+ asyncssh==2.19.0 ; python_version >= "3.12" and python_version < "4.0"
19
+ attrs==24.3.0 ; python_version >= "3.12" and python_version < "4.0"
20
+ babel==2.16.0 ; python_version >= "3.12" and python_version < "4.0"
21
+ bcrypt==4.2.1 ; python_version >= "3.12" and python_version < "4.0"
22
+ beautifulsoup4==4.12.3 ; python_version >= "3.12" and python_version < "4.0"
23
+ billiard==4.2.1 ; python_version >= "3.12" and python_version < "4.0"
24
+ bleach[css]==6.2.0 ; python_version >= "3.12" and python_version < "4.0"
25
+ bs4==0.0.2 ; python_version >= "3.12" and python_version < "4.0"
26
+ build==1.2.2.post1 ; python_version >= "3.12" and python_version < "4.0"
27
+ cachecontrol[filecache]==0.14.1 ; python_version >= "3.12" and python_version < "4.0"
28
+ cachetools==5.5.0 ; python_version >= "3.12" and python_version < "4.0"
29
+ celery==5.4.0 ; python_version >= "3.12" and python_version < "4.0"
30
+ certifi==2024.12.14 ; python_version >= "3.12" and python_version < "4.0"
31
+ cffi==1.17.1 ; python_version >= "3.12" and python_version < "4.0"
32
+ charset-normalizer==3.4.1 ; python_version >= "3.12" and python_version < "4.0"
33
+ cleo==2.1.0 ; python_version >= "3.12" and python_version < "4.0"
34
+ click-didyoumean==0.3.1 ; python_version >= "3.12" and python_version < "4.0"
35
+ click-plugins==1.1.1 ; python_version >= "3.12" and python_version < "4.0"
36
+ click-repl==0.3.0 ; python_version >= "3.12" and python_version < "4.0"
37
+ click==8.1.8 ; python_version >= "3.12" and python_version < "4.0"
38
+ colorama==0.4.6 ; python_version >= "3.12" and python_version < "4.0" and (platform_system == "Windows" or os_name == "nt" or sys_platform == "win32")
39
+ comm==0.2.2 ; python_version >= "3.12" and python_version < "4.0"
40
+ contourpy==1.3.1 ; python_version >= "3.12" and python_version < "4.0"
41
+ crashtest==0.4.1 ; python_version >= "3.12" and python_version < "4.0"
42
+ cryptography==44.0.0 ; python_version >= "3.12" and python_version < "4.0"
43
+ cycler==0.12.1 ; python_version >= "3.12" and python_version < "4.0"
44
+ debugpy==1.8.11 ; python_version >= "3.12" and python_version < "4.0"
45
+ decorator==5.1.1 ; python_version >= "3.12" and python_version < "4.0"
46
+ defusedxml==0.7.1 ; python_version >= "3.12" and python_version < "4.0"
47
+ distlib==0.3.9 ; python_version >= "3.12" and python_version < "4.0"
48
+ distro==1.9.0 ; python_version >= "3.12" and python_version < "4.0"
49
+ dnspython==2.7.0 ; python_version >= "3.12" and python_version < "4.0"
50
+ docutils==0.21.2 ; python_version >= "3.12" and python_version < "4.0"
51
+ dulwich==0.21.7 ; python_version >= "3.12" and python_version < "4.0"
52
+ email-validator==2.2.0 ; python_version >= "3.12" and python_version < "4.0"
53
+ emoji==2.14.0 ; python_version >= "3.12" and python_version < "4.0"
54
+ et-xmlfile==2.0.0 ; python_version >= "3.12" and python_version < "4.0"
55
+ executing==2.1.0 ; python_version >= "3.12" and python_version < "4.0"
56
+ fastapi==0.115.6 ; python_version >= "3.12" and python_version < "4.0"
57
+ fastjsonschema==2.21.1 ; python_version >= "3.12" and python_version < "4.0"
58
+ filelock==3.16.1 ; python_version >= "3.12" and python_version < "4.0"
59
+ fonttools==4.55.3 ; python_version >= "3.12" and python_version < "4.0"
60
+ fqdn==1.5.1 ; python_version >= "3.12" and python_version < "4"
61
+ frozenlist==1.5.0 ; python_version >= "3.12" and python_version < "4.0"
62
+ greenlet==3.1.1 ; python_version < "3.13" 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") and python_version >= "3.12"
63
+ gunicorn==23.0.0 ; python_version >= "3.12" and python_version < "4.0"
64
+ h11==0.14.0 ; python_version >= "3.12" and python_version < "4.0"
65
+ httpcore==1.0.7 ; python_version >= "3.12" and python_version < "4.0"
66
+ httpx==0.28.1 ; python_version >= "3.12" and python_version < "4.0"
67
+ idna==3.10 ; python_version >= "3.12" and python_version < "4.0"
68
+ installer==0.7.0 ; python_version >= "3.12" and python_version < "4.0"
69
+ ipykernel==6.29.5 ; python_version >= "3.12" and python_version < "4.0"
70
+ ipython==8.31.0 ; python_version >= "3.12" and python_version < "4.0"
71
+ ipywidgets==8.1.5 ; python_version >= "3.12" and python_version < "4.0"
72
+ isoduration==20.11.0 ; python_version >= "3.12" and python_version < "4.0"
73
+ itsdangerous==2.2.0 ; python_version >= "3.12" and python_version < "4.0"
74
+ jaraco-classes==3.4.0 ; python_version >= "3.12" and python_version < "4.0"
75
+ jedi==0.19.2 ; python_version >= "3.12" and python_version < "4.0"
76
+ jeepney==0.8.0 ; python_version >= "3.12" and python_version < "4.0" and sys_platform == "linux"
77
+ jinja2==3.1.5 ; python_version >= "3.12" and python_version < "4.0"
78
+ jiter==0.8.2 ; python_version >= "3.12" and python_version < "4.0"
79
+ json5==0.10.0 ; python_version >= "3.12" and python_version < "4.0"
80
+ jsonpointer==3.0.0 ; python_version >= "3.12" and python_version < "4.0"
81
+ jsonschema-specifications==2024.10.1 ; python_version >= "3.12" and python_version < "4.0"
82
+ jsonschema==4.23.0 ; python_version >= "3.12" and python_version < "4.0"
83
+ jsonschema[format-nongpl]==4.23.0 ; python_version >= "3.12" and python_version < "4.0"
84
+ jupyter-client==8.6.3 ; python_version >= "3.12" and python_version < "4.0"
85
+ jupyter-console==6.6.3 ; python_version >= "3.12" and python_version < "4.0"
86
+ jupyter-core==5.7.2 ; python_version >= "3.12" and python_version < "4.0"
87
+ jupyter-events==0.11.0 ; python_version >= "3.12" and python_version < "4.0"
88
+ jupyter-lsp==2.2.5 ; python_version >= "3.12" and python_version < "4.0"
89
+ jupyter-server-terminals==0.5.3 ; python_version >= "3.12" and python_version < "4.0"
90
+ jupyter-server==2.15.0 ; python_version >= "3.12" and python_version < "4.0"
91
+ jupyter==1.1.1 ; python_version >= "3.12" and python_version < "4.0"
92
+ jupyterlab-pygments==0.3.0 ; python_version >= "3.12" and python_version < "4.0"
93
+ jupyterlab-server==2.27.3 ; python_version >= "3.12" and python_version < "4.0"
94
+ jupyterlab-widgets==3.0.13 ; python_version >= "3.12" and python_version < "4.0"
95
+ jupyterlab==4.3.4 ; python_version >= "3.12" and python_version < "4.0"
96
+ keyring==24.3.1 ; python_version >= "3.12" and python_version < "4.0"
97
+ kiwisolver==1.4.8 ; python_version >= "3.12" and python_version < "4.0"
98
+ kombu==5.4.2 ; python_version >= "3.12" and python_version < "4.0"
99
+ magic-filter==1.0.12 ; python_version >= "3.12" and python_version < "4.0"
100
+ mako==1.3.8 ; python_version >= "3.12" and python_version < "4.0"
101
+ markdown-it-py==3.0.0 ; python_version >= "3.12" and python_version < "4.0"
102
+ markupsafe==3.0.2 ; python_version >= "3.12" and python_version < "4.0"
103
+ matplotlib-inline==0.1.7 ; python_version >= "3.12" and python_version < "4.0"
104
+ matplotlib==3.10.0 ; python_version >= "3.12" and python_version < "4.0"
105
+ mdurl==0.1.2 ; python_version >= "3.12" and python_version < "4.0"
106
+ mistune==3.1.0 ; python_version >= "3.12" and python_version < "4.0"
107
+ more-itertools==10.5.0 ; python_version >= "3.12" and python_version < "4.0"
108
+ msgpack==1.1.0 ; python_version >= "3.12" and python_version < "4.0"
109
+ multidict==6.1.0 ; python_version >= "3.12" and python_version < "4.0"
110
+ nbclient==0.10.2 ; python_version >= "3.12" and python_version < "4.0"
111
+ nbconvert==7.16.5 ; python_version >= "3.12" and python_version < "4.0"
112
+ nbformat==5.10.4 ; python_version >= "3.12" and python_version < "4.0"
113
+ nest-asyncio==1.6.0 ; python_version >= "3.12" and python_version < "4.0"
114
+ nh3==0.2.20 ; python_version >= "3.12" and python_version < "4.0"
115
+ notebook-shim==0.2.4 ; python_version >= "3.12" and python_version < "4.0"
116
+ notebook==7.3.2 ; python_version >= "3.12" and python_version < "4.0"
117
+ numpy==2.2.1 ; python_version >= "3.12" and python_version < "4.0"
118
+ openai==1.58.1 ; python_version >= "3.12" and python_version < "4.0"
119
+ openpyxl==3.1.5 ; python_version >= "3.12" and python_version < "4.0"
120
+ overrides==7.7.0 ; python_version >= "3.12" and python_version < "4.0"
121
+ packaging==24.2 ; python_version >= "3.12" and python_version < "4.0"
122
+ pandas==2.2.3 ; python_version >= "3.12" and python_version < "4.0"
123
+ pandocfilters==1.5.1 ; python_version >= "3.12" and python_version < "4.0"
124
+ paramiko==3.5.0 ; python_version >= "3.12" and python_version < "4.0"
125
+ parso==0.8.4 ; python_version >= "3.12" and python_version < "4.0"
126
+ pexpect==4.9.0 ; python_version >= "3.12" and python_version < "4.0"
127
+ pillow==11.1.0 ; python_version >= "3.12" and python_version < "4.0"
128
+ pkginfo==1.12.0 ; python_version >= "3.12" and python_version < "4.0"
129
+ platformdirs==4.3.6 ; python_version >= "3.12" and python_version < "4.0"
130
+ poetry-core==1.9.1 ; python_version >= "3.12" and python_version < "4.0"
131
+ poetry-plugin-export==1.8.0 ; python_version >= "3.12" and python_version < "4.0"
132
+ poetry==1.8.5 ; python_version >= "3.12" and python_version < "4.0"
133
+ prometheus-client==0.21.1 ; python_version >= "3.12" and python_version < "4.0"
134
+ prompt-toolkit==3.0.48 ; python_version >= "3.12" and python_version < "4.0"
135
+ propcache==0.2.1 ; python_version >= "3.12" and python_version < "4.0"
136
+ psutil==6.1.1 ; python_version >= "3.12" and python_version < "4.0"
137
+ psycopg2-binary==2.9.10 ; python_version >= "3.12" and python_version < "4.0"
138
+ ptyprocess==0.7.0 ; python_version >= "3.12" and python_version < "4.0"
139
+ pure-eval==0.2.3 ; python_version >= "3.12" and python_version < "4.0"
140
+ pycparser==2.22 ; python_version >= "3.12" and python_version < "4.0"
141
+ pydantic-core==2.27.2 ; python_version >= "3.12" and python_version < "4.0"
142
+ pydantic-settings==2.7.1 ; python_version >= "3.12" and python_version < "4.0"
143
+ pydantic==2.10.4 ; python_version >= "3.12" and python_version < "4.0"
144
+ pygments==2.18.0 ; python_version >= "3.12" and python_version < "4.0"
145
+ pyjwt==2.10.1 ; python_version >= "3.12" and python_version < "4.0"
146
+ pymongo==4.10.1 ; python_version >= "3.12" and python_version < "4.0"
147
+ pynacl==1.5.0 ; python_version >= "3.12" and python_version < "4.0"
148
+ pyparsing==3.2.1 ; python_version >= "3.12" and python_version < "4.0"
149
+ pyproject-hooks==1.2.0 ; python_version >= "3.12" and python_version < "4.0"
150
+ pysocks==1.7.1 ; python_version >= "3.12" and python_version < "4.0"
151
+ python-dateutil==2.9.0.post0 ; python_version >= "3.12" and python_version < "4.0"
152
+ python-dotenv==1.0.1 ; python_version >= "3.12" and python_version < "4.0"
153
+ python-json-logger==3.2.1 ; python_version >= "3.12" and python_version < "4.0"
154
+ python-multipart==0.0.20 ; python_version >= "3.12" and python_version < "4.0"
155
+ python-socks[asyncio]==2.6.1 ; python_version >= "3.12" and python_version < "4.0"
156
+ pytz==2024.2 ; python_version >= "3.12" and python_version < "4.0"
157
+ pywin32-ctypes==0.2.3 ; python_version >= "3.12" and python_version < "4.0" and sys_platform == "win32"
158
+ pywin32==308 ; sys_platform == "win32" and platform_python_implementation != "PyPy" and python_version >= "3.12" and python_version < "4.0"
159
+ pywinpty==2.0.14 ; python_version >= "3.12" and python_version < "4.0" and os_name == "nt"
160
+ pyyaml==6.0.2 ; python_version >= "3.12" and python_version < "4.0"
161
+ pyzabbix==1.3.1 ; python_version >= "3.12" and python_version < "4.0"
162
+ pyzmq==26.2.0 ; python_version >= "3.12" and python_version < "4.0"
163
+ rapidfuzz==3.11.0 ; python_version >= "3.12" and python_version < "4.0"
164
+ readme-renderer==44.0 ; python_version >= "3.12" and python_version < "4.0"
165
+ redis==5.2.1 ; python_version >= "3.12" and python_version < "4.0"
166
+ referencing==0.35.1 ; python_version >= "3.12" and python_version < "4.0"
167
+ requests-toolbelt==1.0.0 ; python_version >= "3.12" and python_version < "4.0"
168
+ requests==2.32.3 ; python_version >= "3.12" and python_version < "4.0"
169
+ requests[socks]==2.32.3 ; python_version >= "3.12" and python_version < "4.0"
170
+ rfc3339-validator==0.1.4 ; python_version >= "3.12" and python_version < "4.0"
171
+ rfc3986-validator==0.1.1 ; python_version >= "3.12" and python_version < "4.0"
172
+ rfc3986==2.0.0 ; python_version >= "3.12" and python_version < "4.0"
173
+ rich==13.9.4 ; python_version >= "3.12" and python_version < "4.0"
174
+ rpds-py==0.22.3 ; python_version >= "3.12" and python_version < "4.0"
175
+ secretstorage==3.3.3 ; python_version >= "3.12" and python_version < "4.0" and sys_platform == "linux"
176
+ send2trash==1.8.3 ; python_version >= "3.12" and python_version < "4.0"
177
+ setuptools==75.6.0 ; python_version >= "3.12" and python_version < "4.0"
178
+ shellingham==1.5.4 ; python_version >= "3.12" and python_version < "4.0"
179
+ six==1.17.0 ; python_version >= "3.12" and python_version < "4.0"
180
+ sniffio==1.3.1 ; python_version >= "3.12" and python_version < "4.0"
181
+ soupsieve==2.6 ; python_version >= "3.12" and python_version < "4.0"
182
+ sqladmin==0.20.1 ; python_version >= "3.12" and python_version < "4.0"
183
+ sqlalchemy==2.0.36 ; python_version >= "3.12" and python_version < "4.0"
184
+ stack-data==0.6.3 ; python_version >= "3.12" and python_version < "4.0"
185
+ starlette==0.41.3 ; python_version >= "3.12" and python_version < "4.0"
186
+ terminado==0.18.1 ; python_version >= "3.12" and python_version < "4.0"
187
+ tinycss2==1.4.0 ; python_version >= "3.12" and python_version < "4.0"
188
+ tomlkit==0.13.2 ; python_version >= "3.12" and python_version < "4.0"
189
+ tornado==6.4.2 ; python_version >= "3.12" and python_version < "4.0"
190
+ tqdm==4.67.1 ; python_version >= "3.12" and python_version < "4.0"
191
+ traitlets==5.14.3 ; python_version >= "3.12" and python_version < "4.0"
192
+ trove-classifiers==2024.10.21.16 ; python_version >= "3.12" and python_version < "4.0"
193
+ twine==6.0.1 ; python_version >= "3.12" and python_version < "4.0"
194
+ types-python-dateutil==2.9.0.20241206 ; python_version >= "3.12" and python_version < "4.0"
195
+ typing-extensions==4.12.2 ; python_version >= "3.12" and python_version < "4.0"
196
+ tzdata==2024.2 ; python_version >= "3.12" and python_version < "4.0"
197
+ uri-template==1.3.0 ; python_version >= "3.12" and python_version < "4.0"
198
+ urllib3==2.3.0 ; python_version >= "3.12" and python_version < "4.0"
199
+ uvicorn==0.32.1 ; python_version >= "3.12" and python_version < "4.0"
200
+ vine==5.1.0 ; python_version >= "3.12" and python_version < "4.0"
201
+ virtualenv==20.28.0 ; python_version >= "3.12" and python_version < "4.0"
202
+ wcwidth==0.2.13 ; python_version >= "3.12" and python_version < "4.0"
203
+ webcolors==24.11.1 ; python_version >= "3.12" and python_version < "4.0"
204
+ webencodings==0.5.1 ; python_version >= "3.12" and python_version < "4.0"
205
+ websocket-client==1.8.0 ; python_version >= "3.12" and python_version < "4.0"
206
+ widgetsnbextension==4.0.13 ; python_version >= "3.12" and python_version < "4.0"
207
+ wtforms==3.1.2 ; python_version >= "3.12" and python_version < "4.0"
208
+ xattr==1.1.0 ; python_version >= "3.12" and python_version < "4.0" and sys_platform == "darwin"
209
+ yarl==1.18.3 ; python_version >= "3.12" and python_version < "4.0"
@@ -0,0 +1,14 @@
1
+ import asyncio
2
+
3
+
4
+ def command():
5
+ pass
6
+
7
+
8
+ async def async_command():
9
+ pass
10
+
11
+
12
+ if __name__ == '__main__':
13
+ command()
14
+ asyncio.run(async_command())
@@ -0,0 +1,14 @@
1
+ import asyncio
2
+
3
+
4
+ def command():
5
+ pass
6
+
7
+
8
+ async def async_command():
9
+ pass
10
+
11
+
12
+ if __name__ == '__main__':
13
+ command()
14
+ asyncio.run(async_command())
@@ -0,0 +1,14 @@
1
+ import asyncio
2
+
3
+
4
+ def command():
5
+ pass
6
+
7
+
8
+ async def async_command():
9
+ pass
10
+
11
+
12
+ if __name__ == '__main__':
13
+ command()
14
+ asyncio.run(async_command())