apify 2.6.1b4__tar.gz → 2.6.1b6__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


This version of apify might be problematic. Click here for more details.

Files changed (210) hide show
  1. {apify-2.6.1b4 → apify-2.6.1b6}/PKG-INFO +9 -6
  2. {apify-2.6.1b4 → apify-2.6.1b6}/pyproject.toml +16 -9
  3. {apify-2.6.1b4 → apify-2.6.1b6}/src/apify/_actor.py +1 -1
  4. {apify-2.6.1b4 → apify-2.6.1b6}/src/apify/_charging.py +2 -4
  5. {apify-2.6.1b4 → apify-2.6.1b6}/uv.lock +42 -28
  6. {apify-2.6.1b4 → apify-2.6.1b6}/.editorconfig +0 -0
  7. {apify-2.6.1b4 → apify-2.6.1b6}/.github/CODEOWNERS +0 -0
  8. {apify-2.6.1b4 → apify-2.6.1b6}/.github/workflows/build_and_deploy_docs.yaml +0 -0
  9. {apify-2.6.1b4 → apify-2.6.1b6}/.github/workflows/check_pr_title.yaml +0 -0
  10. {apify-2.6.1b4 → apify-2.6.1b6}/.github/workflows/pre_release.yaml +0 -0
  11. {apify-2.6.1b4 → apify-2.6.1b6}/.github/workflows/release.yaml +0 -0
  12. {apify-2.6.1b4 → apify-2.6.1b6}/.github/workflows/run_code_checks.yaml +0 -0
  13. {apify-2.6.1b4 → apify-2.6.1b6}/.github/workflows/update_new_issue.yaml +0 -0
  14. {apify-2.6.1b4 → apify-2.6.1b6}/.gitignore +0 -0
  15. {apify-2.6.1b4 → apify-2.6.1b6}/.markdownlint.yaml +0 -0
  16. {apify-2.6.1b4 → apify-2.6.1b6}/.pre-commit-config.yaml +0 -0
  17. {apify-2.6.1b4 → apify-2.6.1b6}/CHANGELOG.md +0 -0
  18. {apify-2.6.1b4 → apify-2.6.1b6}/CONTRIBUTING.md +0 -0
  19. {apify-2.6.1b4 → apify-2.6.1b6}/LICENSE +0 -0
  20. {apify-2.6.1b4 → apify-2.6.1b6}/Makefile +0 -0
  21. {apify-2.6.1b4 → apify-2.6.1b6}/README.md +0 -0
  22. {apify-2.6.1b4 → apify-2.6.1b6}/docs/01_overview/01_introduction.mdx +0 -0
  23. {apify-2.6.1b4 → apify-2.6.1b6}/docs/01_overview/02_running_actors_locally.mdx +0 -0
  24. {apify-2.6.1b4 → apify-2.6.1b6}/docs/01_overview/03_actor_structure.mdx +0 -0
  25. {apify-2.6.1b4 → apify-2.6.1b6}/docs/01_overview/code/01_introduction.py +0 -0
  26. {apify-2.6.1b4 → apify-2.6.1b6}/docs/01_overview/code/actor_structure/__init__.py +0 -0
  27. {apify-2.6.1b4 → apify-2.6.1b6}/docs/01_overview/code/actor_structure/__main__.py +0 -0
  28. {apify-2.6.1b4 → apify-2.6.1b6}/docs/01_overview/code/actor_structure/main.py +0 -0
  29. {apify-2.6.1b4 → apify-2.6.1b6}/docs/01_overview/code/actor_structure/py.typed +0 -0
  30. {apify-2.6.1b4 → apify-2.6.1b6}/docs/02_guides/01_beautifulsoup_httpx.mdx +0 -0
  31. {apify-2.6.1b4 → apify-2.6.1b6}/docs/02_guides/02_crawlee.mdx +0 -0
  32. {apify-2.6.1b4 → apify-2.6.1b6}/docs/02_guides/03_playwright.mdx +0 -0
  33. {apify-2.6.1b4 → apify-2.6.1b6}/docs/02_guides/04_selenium.mdx +0 -0
  34. {apify-2.6.1b4 → apify-2.6.1b6}/docs/02_guides/05_scrapy.mdx +0 -0
  35. {apify-2.6.1b4 → apify-2.6.1b6}/docs/02_guides/code/01_beautifulsoup_httpx.py +0 -0
  36. {apify-2.6.1b4 → apify-2.6.1b6}/docs/02_guides/code/02_crawlee_beautifulsoup.py +0 -0
  37. {apify-2.6.1b4 → apify-2.6.1b6}/docs/02_guides/code/02_crawlee_playwright.py +0 -0
  38. {apify-2.6.1b4 → apify-2.6.1b6}/docs/02_guides/code/03_playwright.py +0 -0
  39. {apify-2.6.1b4 → apify-2.6.1b6}/docs/02_guides/code/04_selenium.py +0 -0
  40. {apify-2.6.1b4 → apify-2.6.1b6}/docs/02_guides/code/scrapy_project/src/__init__.py +0 -0
  41. {apify-2.6.1b4 → apify-2.6.1b6}/docs/02_guides/code/scrapy_project/src/__main__.py +0 -0
  42. {apify-2.6.1b4 → apify-2.6.1b6}/docs/02_guides/code/scrapy_project/src/items.py +0 -0
  43. {apify-2.6.1b4 → apify-2.6.1b6}/docs/02_guides/code/scrapy_project/src/main.py +0 -0
  44. {apify-2.6.1b4 → apify-2.6.1b6}/docs/02_guides/code/scrapy_project/src/py.typed +0 -0
  45. {apify-2.6.1b4 → apify-2.6.1b6}/docs/02_guides/code/scrapy_project/src/settings.py +0 -0
  46. {apify-2.6.1b4 → apify-2.6.1b6}/docs/02_guides/code/scrapy_project/src/spiders/__init__.py +0 -0
  47. {apify-2.6.1b4 → apify-2.6.1b6}/docs/02_guides/code/scrapy_project/src/spiders/py.typed +0 -0
  48. {apify-2.6.1b4 → apify-2.6.1b6}/docs/02_guides/code/scrapy_project/src/spiders/title.py +0 -0
  49. {apify-2.6.1b4 → apify-2.6.1b6}/docs/03_concepts/01_actor_lifecycle.mdx +0 -0
  50. {apify-2.6.1b4 → apify-2.6.1b6}/docs/03_concepts/02_actor_input.mdx +0 -0
  51. {apify-2.6.1b4 → apify-2.6.1b6}/docs/03_concepts/03_storages.mdx +0 -0
  52. {apify-2.6.1b4 → apify-2.6.1b6}/docs/03_concepts/04_actor_events.mdx +0 -0
  53. {apify-2.6.1b4 → apify-2.6.1b6}/docs/03_concepts/05_proxy_management.mdx +0 -0
  54. {apify-2.6.1b4 → apify-2.6.1b6}/docs/03_concepts/06_interacting_with_other_actors.mdx +0 -0
  55. {apify-2.6.1b4 → apify-2.6.1b6}/docs/03_concepts/07_webhooks.mdx +0 -0
  56. {apify-2.6.1b4 → apify-2.6.1b6}/docs/03_concepts/08_access_apify_api.mdx +0 -0
  57. {apify-2.6.1b4 → apify-2.6.1b6}/docs/03_concepts/09_running_webserver.mdx +0 -0
  58. {apify-2.6.1b4 → apify-2.6.1b6}/docs/03_concepts/10_logging.mdx +0 -0
  59. {apify-2.6.1b4 → apify-2.6.1b6}/docs/03_concepts/11_configuration.mdx +0 -0
  60. {apify-2.6.1b4 → apify-2.6.1b6}/docs/03_concepts/12_pay_per_event.mdx +0 -0
  61. {apify-2.6.1b4 → apify-2.6.1b6}/docs/03_concepts/code/01_context_manager.py +0 -0
  62. {apify-2.6.1b4 → apify-2.6.1b6}/docs/03_concepts/code/01_init_exit.py +0 -0
  63. {apify-2.6.1b4 → apify-2.6.1b6}/docs/03_concepts/code/01_reboot.py +0 -0
  64. {apify-2.6.1b4 → apify-2.6.1b6}/docs/03_concepts/code/01_status_message.py +0 -0
  65. {apify-2.6.1b4 → apify-2.6.1b6}/docs/03_concepts/code/02_input.py +0 -0
  66. {apify-2.6.1b4 → apify-2.6.1b6}/docs/03_concepts/code/03_dataset_exports.py +0 -0
  67. {apify-2.6.1b4 → apify-2.6.1b6}/docs/03_concepts/code/03_dataset_read_write.py +0 -0
  68. {apify-2.6.1b4 → apify-2.6.1b6}/docs/03_concepts/code/03_deleting_storages.py +0 -0
  69. {apify-2.6.1b4 → apify-2.6.1b6}/docs/03_concepts/code/03_kvs_iterating.py +0 -0
  70. {apify-2.6.1b4 → apify-2.6.1b6}/docs/03_concepts/code/03_kvs_public_url.py +0 -0
  71. {apify-2.6.1b4 → apify-2.6.1b6}/docs/03_concepts/code/03_kvs_read_write.py +0 -0
  72. {apify-2.6.1b4 → apify-2.6.1b6}/docs/03_concepts/code/03_opening_storages.py +0 -0
  73. {apify-2.6.1b4 → apify-2.6.1b6}/docs/03_concepts/code/03_rq.py +0 -0
  74. {apify-2.6.1b4 → apify-2.6.1b6}/docs/03_concepts/code/04_actor_events.py +0 -0
  75. {apify-2.6.1b4 → apify-2.6.1b6}/docs/03_concepts/code/05_apify_proxy.py +0 -0
  76. {apify-2.6.1b4 → apify-2.6.1b6}/docs/03_concepts/code/05_apify_proxy_config.py +0 -0
  77. {apify-2.6.1b4 → apify-2.6.1b6}/docs/03_concepts/code/05_custom_proxy.py +0 -0
  78. {apify-2.6.1b4 → apify-2.6.1b6}/docs/03_concepts/code/05_custom_proxy_function.py +0 -0
  79. {apify-2.6.1b4 → apify-2.6.1b6}/docs/03_concepts/code/05_proxy_actor_input.py +0 -0
  80. {apify-2.6.1b4 → apify-2.6.1b6}/docs/03_concepts/code/05_proxy_httpx.py +0 -0
  81. {apify-2.6.1b4 → apify-2.6.1b6}/docs/03_concepts/code/05_proxy_rotation.py +0 -0
  82. {apify-2.6.1b4 → apify-2.6.1b6}/docs/03_concepts/code/06_interacting_call.py +0 -0
  83. {apify-2.6.1b4 → apify-2.6.1b6}/docs/03_concepts/code/06_interacting_call_task.py +0 -0
  84. {apify-2.6.1b4 → apify-2.6.1b6}/docs/03_concepts/code/06_interacting_metamorph.py +0 -0
  85. {apify-2.6.1b4 → apify-2.6.1b6}/docs/03_concepts/code/06_interacting_start.py +0 -0
  86. {apify-2.6.1b4 → apify-2.6.1b6}/docs/03_concepts/code/07_webhook.py +0 -0
  87. {apify-2.6.1b4 → apify-2.6.1b6}/docs/03_concepts/code/07_webhook_preventing.py +0 -0
  88. {apify-2.6.1b4 → apify-2.6.1b6}/docs/03_concepts/code/08_actor_client.py +0 -0
  89. {apify-2.6.1b4 → apify-2.6.1b6}/docs/03_concepts/code/08_actor_new_client.py +0 -0
  90. {apify-2.6.1b4 → apify-2.6.1b6}/docs/03_concepts/code/09_webserver.py +0 -0
  91. {apify-2.6.1b4 → apify-2.6.1b6}/docs/03_concepts/code/10_log_config.py +0 -0
  92. {apify-2.6.1b4 → apify-2.6.1b6}/docs/03_concepts/code/10_logger_usage.py +0 -0
  93. {apify-2.6.1b4 → apify-2.6.1b6}/docs/03_concepts/code/11_config.py +0 -0
  94. {apify-2.6.1b4 → apify-2.6.1b6}/docs/03_concepts/code/actor_charge.py +0 -0
  95. {apify-2.6.1b4 → apify-2.6.1b6}/docs/03_concepts/code/conditional_actor_charge.py +0 -0
  96. {apify-2.6.1b4 → apify-2.6.1b6}/docs/04_upgrading/upgrading_to_v2.md +0 -0
  97. {apify-2.6.1b4 → apify-2.6.1b6}/docs/pyproject.toml +0 -0
  98. {apify-2.6.1b4 → apify-2.6.1b6}/renovate.json +0 -0
  99. {apify-2.6.1b4 → apify-2.6.1b6}/src/apify/__init__.py +0 -0
  100. {apify-2.6.1b4 → apify-2.6.1b6}/src/apify/_configuration.py +0 -0
  101. {apify-2.6.1b4 → apify-2.6.1b6}/src/apify/_consts.py +0 -0
  102. {apify-2.6.1b4 → apify-2.6.1b6}/src/apify/_crypto.py +0 -0
  103. {apify-2.6.1b4 → apify-2.6.1b6}/src/apify/_models.py +0 -0
  104. {apify-2.6.1b4 → apify-2.6.1b6}/src/apify/_platform_event_manager.py +0 -0
  105. {apify-2.6.1b4 → apify-2.6.1b6}/src/apify/_proxy_configuration.py +0 -0
  106. {apify-2.6.1b4 → apify-2.6.1b6}/src/apify/_utils.py +0 -0
  107. {apify-2.6.1b4 → apify-2.6.1b6}/src/apify/apify_storage_client/__init__.py +0 -0
  108. {apify-2.6.1b4 → apify-2.6.1b6}/src/apify/apify_storage_client/_apify_storage_client.py +0 -0
  109. {apify-2.6.1b4 → apify-2.6.1b6}/src/apify/apify_storage_client/_dataset_client.py +0 -0
  110. {apify-2.6.1b4 → apify-2.6.1b6}/src/apify/apify_storage_client/_dataset_collection_client.py +0 -0
  111. {apify-2.6.1b4 → apify-2.6.1b6}/src/apify/apify_storage_client/_key_value_store_client.py +0 -0
  112. {apify-2.6.1b4 → apify-2.6.1b6}/src/apify/apify_storage_client/_key_value_store_collection_client.py +0 -0
  113. {apify-2.6.1b4 → apify-2.6.1b6}/src/apify/apify_storage_client/_request_queue_client.py +0 -0
  114. {apify-2.6.1b4 → apify-2.6.1b6}/src/apify/apify_storage_client/_request_queue_collection_client.py +0 -0
  115. {apify-2.6.1b4 → apify-2.6.1b6}/src/apify/apify_storage_client/py.typed +0 -0
  116. {apify-2.6.1b4 → apify-2.6.1b6}/src/apify/log.py +0 -0
  117. {apify-2.6.1b4 → apify-2.6.1b6}/src/apify/py.typed +0 -0
  118. {apify-2.6.1b4 → apify-2.6.1b6}/src/apify/scrapy/__init__.py +0 -0
  119. {apify-2.6.1b4 → apify-2.6.1b6}/src/apify/scrapy/_actor_runner.py +0 -0
  120. {apify-2.6.1b4 → apify-2.6.1b6}/src/apify/scrapy/_async_thread.py +0 -0
  121. {apify-2.6.1b4 → apify-2.6.1b6}/src/apify/scrapy/_logging_config.py +0 -0
  122. {apify-2.6.1b4 → apify-2.6.1b6}/src/apify/scrapy/extensions/__init__.py +0 -0
  123. {apify-2.6.1b4 → apify-2.6.1b6}/src/apify/scrapy/extensions/_httpcache.py +0 -0
  124. {apify-2.6.1b4 → apify-2.6.1b6}/src/apify/scrapy/middlewares/__init__.py +0 -0
  125. {apify-2.6.1b4 → apify-2.6.1b6}/src/apify/scrapy/middlewares/apify_proxy.py +0 -0
  126. {apify-2.6.1b4 → apify-2.6.1b6}/src/apify/scrapy/middlewares/py.typed +0 -0
  127. {apify-2.6.1b4 → apify-2.6.1b6}/src/apify/scrapy/pipelines/__init__.py +0 -0
  128. {apify-2.6.1b4 → apify-2.6.1b6}/src/apify/scrapy/pipelines/actor_dataset_push.py +0 -0
  129. {apify-2.6.1b4 → apify-2.6.1b6}/src/apify/scrapy/pipelines/py.typed +0 -0
  130. {apify-2.6.1b4 → apify-2.6.1b6}/src/apify/scrapy/py.typed +0 -0
  131. {apify-2.6.1b4 → apify-2.6.1b6}/src/apify/scrapy/requests.py +0 -0
  132. {apify-2.6.1b4 → apify-2.6.1b6}/src/apify/scrapy/scheduler.py +0 -0
  133. {apify-2.6.1b4 → apify-2.6.1b6}/src/apify/scrapy/utils.py +0 -0
  134. {apify-2.6.1b4 → apify-2.6.1b6}/src/apify/storages/__init__.py +0 -0
  135. {apify-2.6.1b4 → apify-2.6.1b6}/src/apify/storages/_request_list.py +0 -0
  136. {apify-2.6.1b4 → apify-2.6.1b6}/src/apify/storages/py.typed +0 -0
  137. {apify-2.6.1b4 → apify-2.6.1b6}/tests/integration/README.md +0 -0
  138. {apify-2.6.1b4 → apify-2.6.1b6}/tests/integration/__init__.py +0 -0
  139. {apify-2.6.1b4 → apify-2.6.1b6}/tests/integration/_utils.py +0 -0
  140. {apify-2.6.1b4 → apify-2.6.1b6}/tests/integration/actor_source_base/Dockerfile +0 -0
  141. {apify-2.6.1b4 → apify-2.6.1b6}/tests/integration/actor_source_base/requirements.txt +0 -0
  142. {apify-2.6.1b4 → apify-2.6.1b6}/tests/integration/actor_source_base/src/__init__.py +0 -0
  143. {apify-2.6.1b4 → apify-2.6.1b6}/tests/integration/actor_source_base/src/__main__.py +0 -0
  144. {apify-2.6.1b4 → apify-2.6.1b6}/tests/integration/actor_source_base/src/main.py +0 -0
  145. {apify-2.6.1b4 → apify-2.6.1b6}/tests/integration/conftest.py +0 -0
  146. {apify-2.6.1b4 → apify-2.6.1b6}/tests/integration/test_actor_api_helpers.py +0 -0
  147. {apify-2.6.1b4 → apify-2.6.1b6}/tests/integration/test_actor_call_timeouts.py +0 -0
  148. {apify-2.6.1b4 → apify-2.6.1b6}/tests/integration/test_actor_charge.py +0 -0
  149. {apify-2.6.1b4 → apify-2.6.1b6}/tests/integration/test_actor_create_proxy_configuration.py +0 -0
  150. {apify-2.6.1b4 → apify-2.6.1b6}/tests/integration/test_actor_dataset.py +0 -0
  151. {apify-2.6.1b4 → apify-2.6.1b6}/tests/integration/test_actor_events.py +0 -0
  152. {apify-2.6.1b4 → apify-2.6.1b6}/tests/integration/test_actor_key_value_store.py +0 -0
  153. {apify-2.6.1b4 → apify-2.6.1b6}/tests/integration/test_actor_lifecycle.py +0 -0
  154. {apify-2.6.1b4 → apify-2.6.1b6}/tests/integration/test_actor_log.py +0 -0
  155. {apify-2.6.1b4 → apify-2.6.1b6}/tests/integration/test_actor_request_queue.py +0 -0
  156. {apify-2.6.1b4 → apify-2.6.1b6}/tests/integration/test_actor_scrapy.py +0 -0
  157. {apify-2.6.1b4 → apify-2.6.1b6}/tests/integration/test_fixtures.py +0 -0
  158. {apify-2.6.1b4 → apify-2.6.1b6}/tests/integration/test_request_queue.py +0 -0
  159. {apify-2.6.1b4 → apify-2.6.1b6}/tests/unit/__init__.py +0 -0
  160. {apify-2.6.1b4 → apify-2.6.1b6}/tests/unit/actor/__init__.py +0 -0
  161. {apify-2.6.1b4 → apify-2.6.1b6}/tests/unit/actor/test_actor_create_proxy_configuration.py +0 -0
  162. {apify-2.6.1b4 → apify-2.6.1b6}/tests/unit/actor/test_actor_dataset.py +0 -0
  163. {apify-2.6.1b4 → apify-2.6.1b6}/tests/unit/actor/test_actor_env_helpers.py +0 -0
  164. {apify-2.6.1b4 → apify-2.6.1b6}/tests/unit/actor/test_actor_helpers.py +0 -0
  165. {apify-2.6.1b4 → apify-2.6.1b6}/tests/unit/actor/test_actor_key_value_store.py +0 -0
  166. {apify-2.6.1b4 → apify-2.6.1b6}/tests/unit/actor/test_actor_lifecycle.py +0 -0
  167. {apify-2.6.1b4 → apify-2.6.1b6}/tests/unit/actor/test_actor_log.py +0 -0
  168. {apify-2.6.1b4 → apify-2.6.1b6}/tests/unit/actor/test_actor_non_default_instance.py +0 -0
  169. {apify-2.6.1b4 → apify-2.6.1b6}/tests/unit/actor/test_actor_request_queue.py +0 -0
  170. {apify-2.6.1b4 → apify-2.6.1b6}/tests/unit/actor/test_configuration.py +0 -0
  171. {apify-2.6.1b4 → apify-2.6.1b6}/tests/unit/actor/test_request_list.py +0 -0
  172. {apify-2.6.1b4 → apify-2.6.1b6}/tests/unit/conftest.py +0 -0
  173. {apify-2.6.1b4 → apify-2.6.1b6}/tests/unit/scrapy/__init__.py +0 -0
  174. {apify-2.6.1b4 → apify-2.6.1b6}/tests/unit/scrapy/extensions/__init__.py +0 -0
  175. {apify-2.6.1b4 → apify-2.6.1b6}/tests/unit/scrapy/extensions/test_httpcache.py +0 -0
  176. {apify-2.6.1b4 → apify-2.6.1b6}/tests/unit/scrapy/middlewares/__init__.py +0 -0
  177. {apify-2.6.1b4 → apify-2.6.1b6}/tests/unit/scrapy/middlewares/test_apify_proxy.py +0 -0
  178. {apify-2.6.1b4 → apify-2.6.1b6}/tests/unit/scrapy/pipelines/__init__.py +0 -0
  179. {apify-2.6.1b4 → apify-2.6.1b6}/tests/unit/scrapy/pipelines/test_actor_dataset_push.py +0 -0
  180. {apify-2.6.1b4 → apify-2.6.1b6}/tests/unit/scrapy/requests/__init__.py +0 -0
  181. {apify-2.6.1b4 → apify-2.6.1b6}/tests/unit/scrapy/requests/test_to_apify_request.py +0 -0
  182. {apify-2.6.1b4 → apify-2.6.1b6}/tests/unit/scrapy/requests/test_to_scrapy_request.py +0 -0
  183. {apify-2.6.1b4 → apify-2.6.1b6}/tests/unit/scrapy/utils/__init__.py +0 -0
  184. {apify-2.6.1b4 → apify-2.6.1b6}/tests/unit/scrapy/utils/test_apply_apify_settings.py +0 -0
  185. {apify-2.6.1b4 → apify-2.6.1b6}/tests/unit/scrapy/utils/test_get_basic_auth_header.py +0 -0
  186. {apify-2.6.1b4 → apify-2.6.1b6}/tests/unit/test_crypto.py +0 -0
  187. {apify-2.6.1b4 → apify-2.6.1b6}/tests/unit/test_platform_event_manager.py +0 -0
  188. {apify-2.6.1b4 → apify-2.6.1b6}/tests/unit/test_proxy_configuration.py +0 -0
  189. {apify-2.6.1b4 → apify-2.6.1b6}/website/.eslintrc.json +0 -0
  190. {apify-2.6.1b4 → apify-2.6.1b6}/website/babel.config.js +0 -0
  191. {apify-2.6.1b4 → apify-2.6.1b6}/website/build_api_reference.sh +0 -0
  192. {apify-2.6.1b4 → apify-2.6.1b6}/website/docusaurus.config.js +0 -0
  193. {apify-2.6.1b4 → apify-2.6.1b6}/website/generate_module_shortcuts.py +0 -0
  194. {apify-2.6.1b4 → apify-2.6.1b6}/website/package-lock.json +0 -0
  195. {apify-2.6.1b4 → apify-2.6.1b6}/website/package.json +0 -0
  196. {apify-2.6.1b4 → apify-2.6.1b6}/website/sidebars.js +0 -0
  197. {apify-2.6.1b4 → apify-2.6.1b6}/website/src/components/ApiLink.jsx +0 -0
  198. {apify-2.6.1b4 → apify-2.6.1b6}/website/src/components/Gradients.jsx +0 -0
  199. {apify-2.6.1b4 → apify-2.6.1b6}/website/src/components/Highlights.jsx +0 -0
  200. {apify-2.6.1b4 → apify-2.6.1b6}/website/src/components/Highlights.module.css +0 -0
  201. {apify-2.6.1b4 → apify-2.6.1b6}/website/src/components/RunnableCodeBlock.jsx +0 -0
  202. {apify-2.6.1b4 → apify-2.6.1b6}/website/src/components/RunnableCodeBlock.module.css +0 -0
  203. {apify-2.6.1b4 → apify-2.6.1b6}/website/src/css/custom.css +0 -0
  204. {apify-2.6.1b4 → apify-2.6.1b6}/website/src/pages/home_page_example.py +0 -0
  205. {apify-2.6.1b4 → apify-2.6.1b6}/website/src/pages/index.js +0 -0
  206. {apify-2.6.1b4 → apify-2.6.1b6}/website/src/pages/index.module.css +0 -0
  207. {apify-2.6.1b4 → apify-2.6.1b6}/website/static/.nojekyll +0 -0
  208. {apify-2.6.1b4 → apify-2.6.1b6}/website/static/img/docs-og.png +0 -0
  209. {apify-2.6.1b4 → apify-2.6.1b6}/website/tools/docs-prettier.config.js +0 -0
  210. {apify-2.6.1b4 → apify-2.6.1b6}/website/tools/utils/externalLink.js +0 -0
@@ -1,13 +1,15 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: apify
3
- Version: 2.6.1b4
3
+ Version: 2.6.1b6
4
4
  Summary: Apify SDK for Python
5
- Project-URL: Homepage, https://docs.apify.com/sdk/python/
6
- Project-URL: Apify homepage, https://apify.com
5
+ Project-URL: Apify Homepage, https://apify.com
7
6
  Project-URL: Changelog, https://docs.apify.com/sdk/python/docs/changelog
8
- Project-URL: Documentation, https://docs.apify.com/sdk/python/
9
- Project-URL: Issue tracker, https://github.com/apify/apify-sdk-python/issues
10
- Project-URL: Repository, https://github.com/apify/apify-sdk-python
7
+ Project-URL: Discord, https://discord.com/invite/jyEM2PRvMU
8
+ Project-URL: Documentation, https://docs.apify.com/sdk/python/docs/overview/introduction
9
+ Project-URL: Homepage, https://docs.apify.com/sdk/python/
10
+ Project-URL: Issue Tracker, https://github.com/apify/apify-sdk-python/issues
11
+ Project-URL: Release Notes, https://docs.apify.com/sdk/python/docs/upgrading/upgrading-to-v2
12
+ Project-URL: Source Code, https://github.com/apify/apify-sdk-python
11
13
  Author-email: "Apify Technologies s.r.o." <support@apify.com>
12
14
  License: Apache License
13
15
  Version 2.0, January 2004
@@ -213,6 +215,7 @@ License: Apache License
213
215
  License-File: LICENSE
214
216
  Keywords: apify,automation,chrome,crawlee,crawler,headless,scraper,scraping,sdk
215
217
  Classifier: Development Status :: 5 - Production/Stable
218
+ Classifier: Environment :: Console
216
219
  Classifier: Intended Audience :: Developers
217
220
  Classifier: License :: OSI Approved :: Apache Software License
218
221
  Classifier: Operating System :: OS Independent
@@ -4,7 +4,7 @@ build-backend = "hatchling.build"
4
4
 
5
5
  [project]
6
6
  name = "apify"
7
- version = "2.6.1b4"
7
+ version = "2.6.1b6"
8
8
  description = "Apify SDK for Python"
9
9
  authors = [{ name = "Apify Technologies s.r.o.", email = "support@apify.com" }]
10
10
  license = { file = "LICENSE" }
@@ -12,6 +12,7 @@ readme = "README.md"
12
12
  requires-python = ">=3.9"
13
13
  classifiers = [
14
14
  "Development Status :: 5 - Production/Stable",
15
+ "Environment :: Console",
15
16
  "Intended Audience :: Developers",
16
17
  "License :: OSI Approved :: Apache Software License",
17
18
  "Operating System :: OS Independent",
@@ -51,28 +52,31 @@ dependencies = [
51
52
  scrapy = ["scrapy>=2.11.0"]
52
53
 
53
54
  [project.urls]
54
- "Homepage" = "https://docs.apify.com/sdk/python/"
55
- "Apify homepage" = "https://apify.com"
55
+ "Apify Homepage" = "https://apify.com"
56
56
  "Changelog" = "https://docs.apify.com/sdk/python/docs/changelog"
57
- "Documentation" = "https://docs.apify.com/sdk/python/"
58
- "Issue tracker" = "https://github.com/apify/apify-sdk-python/issues"
59
- "Repository" = "https://github.com/apify/apify-sdk-python"
57
+ "Discord" = "https://discord.com/invite/jyEM2PRvMU"
58
+ "Documentation" = "https://docs.apify.com/sdk/python/docs/overview/introduction"
59
+ "Homepage" = "https://docs.apify.com/sdk/python/"
60
+ "Issue Tracker" = "https://github.com/apify/apify-sdk-python/issues"
61
+ "Release Notes" = "https://docs.apify.com/sdk/python/docs/upgrading/upgrading-to-v2"
62
+ "Source Code" = "https://github.com/apify/apify-sdk-python"
60
63
 
61
64
  [dependency-groups]
62
65
  dev = [
63
66
  "build~=1.2.0",
67
+ "dycw-pytest-only>=2.1.1",
64
68
  "griffe~=1.7.0",
65
69
  "mypy~=1.16.0",
66
70
  "pre-commit~=4.2.0",
67
71
  "pydoc-markdown~=4.8.0",
68
72
  "pytest-asyncio~=1.0.0",
69
73
  "pytest-cov~=6.2.0",
70
- "pytest-only~=2.1.0",
74
+ "pytest-timeout>=2.4.0",
71
75
  "pytest-xdist~=3.8.0",
72
76
  "pytest~=8.4.0",
73
77
  "respx~=0.22.0",
74
- "ruff~=0.11.0",
75
- "setuptools", # setuptools are used by pytest but not explicitly required
78
+ "ruff~=0.12.0",
79
+ "setuptools", # setuptools are used by pytest but not explicitly required
76
80
  ]
77
81
 
78
82
  [tool.hatch.build.targets.wheel]
@@ -134,6 +138,9 @@ indent-style = "space"
134
138
  "TRY301", # Abstract `raise` to an inner function
135
139
  "TID252", # Prefer absolute imports over relative imports from parent modules
136
140
  ]
141
+ "**/{tests}/{integration}/*" = [
142
+ "PLC0415", # `import` should be at the top-level of a file
143
+ ]
137
144
  "**/{docs,website}/**" = [
138
145
  "D", # Everything from the pydocstyle
139
146
  "INP001", # File {filename} is part of an implicit namespace package, add an __init__.py
@@ -1187,7 +1187,7 @@ class _ActorType:
1187
1187
 
1188
1188
  # Check if running in Scrapy by attempting to import it.
1189
1189
  with suppress(ImportError):
1190
- import scrapy # noqa: F401
1190
+ import scrapy # noqa: F401 PLC0415
1191
1191
 
1192
1192
  self.log.debug('Running in Scrapy, setting default `exit_process` to False.')
1193
1193
  return False
@@ -216,9 +216,7 @@ class ChargingManagerImplementation(ChargingManager):
216
216
  PricingInfoItem(
217
217
  price=Decimal()
218
218
  if self._is_at_home
219
- else Decimal(
220
- '1'
221
- ), # Use a nonzero price for local development so that the maximum budget can be reached,
219
+ else Decimal(1), # Use a nonzero price for local development so that the maximum budget can be reached,
222
220
  title=f"Unknown event '{event_name}'",
223
221
  ),
224
222
  )
@@ -282,7 +280,7 @@ class ChargingManagerImplementation(ChargingManager):
282
280
  if pricing_info is not None:
283
281
  price = pricing_info.price
284
282
  elif not self._is_at_home:
285
- price = Decimal('1') # Use a nonzero price for local development so that the maximum budget can be reached
283
+ price = Decimal(1) # Use a nonzero price for local development so that the maximum budget can be reached
286
284
  else:
287
285
  price = Decimal()
288
286
 
@@ -54,6 +54,7 @@ scrapy = [
54
54
  [package.dev-dependencies]
55
55
  dev = [
56
56
  { name = "build" },
57
+ { name = "dycw-pytest-only" },
57
58
  { name = "griffe" },
58
59
  { name = "mypy" },
59
60
  { name = "pre-commit" },
@@ -61,7 +62,7 @@ dev = [
61
62
  { name = "pytest" },
62
63
  { name = "pytest-asyncio" },
63
64
  { name = "pytest-cov" },
64
- { name = "pytest-only" },
65
+ { name = "pytest-timeout" },
65
66
  { name = "pytest-xdist" },
66
67
  { name = "respx" },
67
68
  { name = "ruff" },
@@ -86,6 +87,7 @@ provides-extras = ["scrapy"]
86
87
  [package.metadata.requires-dev]
87
88
  dev = [
88
89
  { name = "build", specifier = "~=1.2.0" },
90
+ { name = "dycw-pytest-only", specifier = ">=2.1.1" },
89
91
  { name = "griffe", specifier = "~=1.7.0" },
90
92
  { name = "mypy", specifier = "~=1.16.0" },
91
93
  { name = "pre-commit", specifier = "~=4.2.0" },
@@ -93,10 +95,10 @@ dev = [
93
95
  { name = "pytest", specifier = "~=8.4.0" },
94
96
  { name = "pytest-asyncio", specifier = "~=1.0.0" },
95
97
  { name = "pytest-cov", specifier = "~=6.2.0" },
96
- { name = "pytest-only", specifier = "~=2.1.0" },
98
+ { name = "pytest-timeout", specifier = ">=2.4.0" },
97
99
  { name = "pytest-xdist", specifier = "~=3.8.0" },
98
100
  { name = "respx", specifier = "~=0.22.0" },
99
- { name = "ruff", specifier = "~=0.11.0" },
101
+ { name = "ruff", specifier = "~=0.12.0" },
100
102
  { name = "setuptools" },
101
103
  ]
102
104
 
@@ -818,6 +820,18 @@ version = "0.11"
818
820
  source = { registry = "https://pypi.org/simple" }
819
821
  sdist = { url = "https://files.pythonhosted.org/packages/a2/ce/5d6a3782b9f88097ce3e579265015db3372ae78d12f67629b863a9208c96/docstring_parser-0.11.tar.gz", hash = "sha256:93b3f8f481c7d24e37c5d9f30293c89e2933fa209421c8abd731dd3ef0715ecb", size = 22775, upload-time = "2021-09-30T07:44:10.288Z" }
820
822
 
823
+ [[package]]
824
+ name = "dycw-pytest-only"
825
+ version = "2.1.1"
826
+ source = { registry = "https://pypi.org/simple" }
827
+ dependencies = [
828
+ { name = "pytest" },
829
+ ]
830
+ sdist = { url = "https://files.pythonhosted.org/packages/b9/71/0c544627c131eee64e41653bf35ebbf02a5aa2318b69c2f9d9415b8005f5/dycw_pytest_only-2.1.1.tar.gz", hash = "sha256:b3c7dce202ee3fac6c83a47d7b9b581737d83db89aab4c624102def18edd00d5", size = 5054, upload-time = "2025-06-03T01:04:47.751Z" }
831
+ wheels = [
832
+ { url = "https://files.pythonhosted.org/packages/f8/1a/25272fafd13c92a2e3b8e351127410b9ea5557324bfea3552388d65797fc/dycw_pytest_only-2.1.1-py3-none-any.whl", hash = "sha256:ea8fe48878dd95ad0ca804e549225cf3b7a1928eb188c22a284c1d17b48a7b89", size = 2413, upload-time = "2025-06-03T01:04:46.585Z" },
833
+ ]
834
+
821
835
  [[package]]
822
836
  name = "eval-type-backport"
823
837
  version = "0.2.2"
@@ -1969,15 +1983,15 @@ wheels = [
1969
1983
  ]
1970
1984
 
1971
1985
  [[package]]
1972
- name = "pytest-only"
1973
- version = "2.1.2"
1986
+ name = "pytest-timeout"
1987
+ version = "2.4.0"
1974
1988
  source = { registry = "https://pypi.org/simple" }
1975
1989
  dependencies = [
1976
1990
  { name = "pytest" },
1977
1991
  ]
1978
- sdist = { url = "https://files.pythonhosted.org/packages/1f/2f/937d554943477a540aa2aae2b4c47ad41c2f089f47691288938c67e94143/pytest_only-2.1.2.tar.gz", hash = "sha256:e341acc083e3bb66debc660b7d5d71ae3b31da5edc2a737280d7304221ab0c29", size = 4863, upload-time = "2024-05-27T17:04:18.626Z" }
1992
+ sdist = { url = "https://files.pythonhosted.org/packages/ac/82/4c9ecabab13363e72d880f2fb504c5f750433b2b6f16e99f4ec21ada284c/pytest_timeout-2.4.0.tar.gz", hash = "sha256:7e68e90b01f9eff71332b25001f85c75495fc4e3a836701876183c4bcfd0540a", size = 17973, upload-time = "2025-05-05T19:44:34.99Z" }
1979
1993
  wheels = [
1980
- { url = "https://files.pythonhosted.org/packages/da/95/3cf1a035048ee224a5dc701a3f41a5ec8684b030d217517bdf7da2f545aa/pytest_only-2.1.2-py3-none-any.whl", hash = "sha256:04dffe2aed64a741145ce5ad25b5df3ae4212e01ff885a8821fd2318eb509e91", size = 6456, upload-time = "2024-05-27T17:04:16.936Z" },
1994
+ { url = "https://files.pythonhosted.org/packages/fa/b6/3127540ecdf1464a00e5a01ee60a1b09175f6913f0644ac748494d9c4b21/pytest_timeout-2.4.0-py3-none-any.whl", hash = "sha256:c42667e5cdadb151aeb5b26d114aff6bdf5a907f176a007a30b940d3d865b5c2", size = 14382, upload-time = "2025-05-05T19:44:33.502Z" },
1981
1995
  ]
1982
1996
 
1983
1997
  [[package]]
@@ -2105,27 +2119,27 @@ wheels = [
2105
2119
 
2106
2120
  [[package]]
2107
2121
  name = "ruff"
2108
- version = "0.11.13"
2109
- source = { registry = "https://pypi.org/simple" }
2110
- sdist = { url = "https://files.pythonhosted.org/packages/ed/da/9c6f995903b4d9474b39da91d2d626659af3ff1eeb43e9ae7c119349dba6/ruff-0.11.13.tar.gz", hash = "sha256:26fa247dc68d1d4e72c179e08889a25ac0c7ba4d78aecfc835d49cbfd60bf514", size = 4282054, upload-time = "2025-06-05T21:00:15.721Z" }
2111
- wheels = [
2112
- { url = "https://files.pythonhosted.org/packages/7d/ce/a11d381192966e0b4290842cc8d4fac7dc9214ddf627c11c1afff87da29b/ruff-0.11.13-py3-none-linux_armv6l.whl", hash = "sha256:4bdfbf1240533f40042ec00c9e09a3aade6f8c10b6414cf11b519488d2635d46", size = 10292516, upload-time = "2025-06-05T20:59:32.944Z" },
2113
- { url = "https://files.pythonhosted.org/packages/78/db/87c3b59b0d4e753e40b6a3b4a2642dfd1dcaefbff121ddc64d6c8b47ba00/ruff-0.11.13-py3-none-macosx_10_12_x86_64.whl", hash = "sha256:aef9c9ed1b5ca28bb15c7eac83b8670cf3b20b478195bd49c8d756ba0a36cf48", size = 11106083, upload-time = "2025-06-05T20:59:37.03Z" },
2114
- { url = "https://files.pythonhosted.org/packages/77/79/d8cec175856ff810a19825d09ce700265f905c643c69f45d2b737e4a470a/ruff-0.11.13-py3-none-macosx_11_0_arm64.whl", hash = "sha256:53b15a9dfdce029c842e9a5aebc3855e9ab7771395979ff85b7c1dedb53ddc2b", size = 10436024, upload-time = "2025-06-05T20:59:39.741Z" },
2115
- { url = "https://files.pythonhosted.org/packages/8b/5b/f6d94f2980fa1ee854b41568368a2e1252681b9238ab2895e133d303538f/ruff-0.11.13-py3-none-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ab153241400789138d13f362c43f7edecc0edfffce2afa6a68434000ecd8f69a", size = 10646324, upload-time = "2025-06-05T20:59:42.185Z" },
2116
- { url = "https://files.pythonhosted.org/packages/6c/9c/b4c2acf24ea4426016d511dfdc787f4ce1ceb835f3c5fbdbcb32b1c63bda/ruff-0.11.13-py3-none-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:6c51f93029d54a910d3d24f7dd0bb909e31b6cd989a5e4ac513f4eb41629f0dc", size = 10174416, upload-time = "2025-06-05T20:59:44.319Z" },
2117
- { url = "https://files.pythonhosted.org/packages/f3/10/e2e62f77c65ede8cd032c2ca39c41f48feabedb6e282bfd6073d81bb671d/ruff-0.11.13-py3-none-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:1808b3ed53e1a777c2ef733aca9051dc9bf7c99b26ece15cb59a0320fbdbd629", size = 11724197, upload-time = "2025-06-05T20:59:46.935Z" },
2118
- { url = "https://files.pythonhosted.org/packages/bb/f0/466fe8469b85c561e081d798c45f8a1d21e0b4a5ef795a1d7f1a9a9ec182/ruff-0.11.13-py3-none-manylinux_2_17_ppc64.manylinux2014_ppc64.whl", hash = "sha256:d28ce58b5ecf0f43c1b71edffabe6ed7f245d5336b17805803312ec9bc665933", size = 12511615, upload-time = "2025-06-05T20:59:49.534Z" },
2119
- { url = "https://files.pythonhosted.org/packages/17/0e/cefe778b46dbd0cbcb03a839946c8f80a06f7968eb298aa4d1a4293f3448/ruff-0.11.13-py3-none-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:55e4bc3a77842da33c16d55b32c6cac1ec5fb0fbec9c8c513bdce76c4f922165", size = 12117080, upload-time = "2025-06-05T20:59:51.654Z" },
2120
- { url = "https://files.pythonhosted.org/packages/5d/2c/caaeda564cbe103bed145ea557cb86795b18651b0f6b3ff6a10e84e5a33f/ruff-0.11.13-py3-none-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:633bf2c6f35678c56ec73189ba6fa19ff1c5e4807a78bf60ef487b9dd272cc71", size = 11326315, upload-time = "2025-06-05T20:59:54.469Z" },
2121
- { url = "https://files.pythonhosted.org/packages/75/f0/782e7d681d660eda8c536962920c41309e6dd4ebcea9a2714ed5127d44bd/ruff-0.11.13-py3-none-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:4ffbc82d70424b275b089166310448051afdc6e914fdab90e08df66c43bb5ca9", size = 11555640, upload-time = "2025-06-05T20:59:56.986Z" },
2122
- { url = "https://files.pythonhosted.org/packages/5d/d4/3d580c616316c7f07fb3c99dbecfe01fbaea7b6fd9a82b801e72e5de742a/ruff-0.11.13-py3-none-musllinux_1_2_aarch64.whl", hash = "sha256:4a9ddd3ec62a9a89578c85842b836e4ac832d4a2e0bfaad3b02243f930ceafcc", size = 10507364, upload-time = "2025-06-05T20:59:59.154Z" },
2123
- { url = "https://files.pythonhosted.org/packages/5a/dc/195e6f17d7b3ea6b12dc4f3e9de575db7983db187c378d44606e5d503319/ruff-0.11.13-py3-none-musllinux_1_2_armv7l.whl", hash = "sha256:d237a496e0778d719efb05058c64d28b757c77824e04ffe8796c7436e26712b7", size = 10141462, upload-time = "2025-06-05T21:00:01.481Z" },
2124
- { url = "https://files.pythonhosted.org/packages/f4/8e/39a094af6967faa57ecdeacb91bedfb232474ff8c3d20f16a5514e6b3534/ruff-0.11.13-py3-none-musllinux_1_2_i686.whl", hash = "sha256:26816a218ca6ef02142343fd24c70f7cd8c5aa6c203bca284407adf675984432", size = 11121028, upload-time = "2025-06-05T21:00:04.06Z" },
2125
- { url = "https://files.pythonhosted.org/packages/5a/c0/b0b508193b0e8a1654ec683ebab18d309861f8bd64e3a2f9648b80d392cb/ruff-0.11.13-py3-none-musllinux_1_2_x86_64.whl", hash = "sha256:51c3f95abd9331dc5b87c47ac7f376db5616041173826dfd556cfe3d4977f492", size = 11602992, upload-time = "2025-06-05T21:00:06.249Z" },
2126
- { url = "https://files.pythonhosted.org/packages/7c/91/263e33ab93ab09ca06ce4f8f8547a858cc198072f873ebc9be7466790bae/ruff-0.11.13-py3-none-win32.whl", hash = "sha256:96c27935418e4e8e77a26bb05962817f28b8ef3843a6c6cc49d8783b5507f250", size = 10474944, upload-time = "2025-06-05T21:00:08.459Z" },
2127
- { url = "https://files.pythonhosted.org/packages/46/f4/7c27734ac2073aae8efb0119cae6931b6fb48017adf048fdf85c19337afc/ruff-0.11.13-py3-none-win_amd64.whl", hash = "sha256:29c3189895a8a6a657b7af4e97d330c8a3afd2c9c8f46c81e2fc5a31866517e3", size = 11548669, upload-time = "2025-06-05T21:00:11.147Z" },
2128
- { url = "https://files.pythonhosted.org/packages/ec/bf/b273dd11673fed8a6bd46032c0ea2a04b2ac9bfa9c628756a5856ba113b0/ruff-0.11.13-py3-none-win_arm64.whl", hash = "sha256:b4385285e9179d608ff1d2fb9922062663c658605819a6876d8beef0c30b7f3b", size = 10683928, upload-time = "2025-06-05T21:00:13.758Z" },
2122
+ version = "0.12.1"
2123
+ source = { registry = "https://pypi.org/simple" }
2124
+ sdist = { url = "https://files.pythonhosted.org/packages/97/38/796a101608a90494440856ccfb52b1edae90de0b817e76bfade66b12d320/ruff-0.12.1.tar.gz", hash = "sha256:806bbc17f1104fd57451a98a58df35388ee3ab422e029e8f5cf30aa4af2c138c", size = 4413426, upload-time = "2025-06-26T20:34:14.784Z" }
2125
+ wheels = [
2126
+ { url = "https://files.pythonhosted.org/packages/06/bf/3dba52c1d12ab5e78d75bd78ad52fb85a6a1f29cc447c2423037b82bed0d/ruff-0.12.1-py3-none-linux_armv6l.whl", hash = "sha256:6013a46d865111e2edb71ad692fbb8262e6c172587a57c0669332a449384a36b", size = 10305649, upload-time = "2025-06-26T20:33:39.242Z" },
2127
+ { url = "https://files.pythonhosted.org/packages/8c/65/dab1ba90269bc8c81ce1d499a6517e28fe6f87b2119ec449257d0983cceb/ruff-0.12.1-py3-none-macosx_10_12_x86_64.whl", hash = "sha256:b3f75a19e03a4b0757d1412edb7f27cffb0c700365e9d6b60bc1b68d35bc89e0", size = 11120201, upload-time = "2025-06-26T20:33:42.207Z" },
2128
+ { url = "https://files.pythonhosted.org/packages/3f/3e/2d819ffda01defe857fa2dd4cba4d19109713df4034cc36f06bbf582d62a/ruff-0.12.1-py3-none-macosx_11_0_arm64.whl", hash = "sha256:9a256522893cb7e92bb1e1153283927f842dea2e48619c803243dccc8437b8be", size = 10466769, upload-time = "2025-06-26T20:33:44.102Z" },
2129
+ { url = "https://files.pythonhosted.org/packages/63/37/bde4cf84dbd7821c8de56ec4ccc2816bce8125684f7b9e22fe4ad92364de/ruff-0.12.1-py3-none-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:069052605fe74c765a5b4272eb89880e0ff7a31e6c0dbf8767203c1fbd31c7ff", size = 10660902, upload-time = "2025-06-26T20:33:45.98Z" },
2130
+ { url = "https://files.pythonhosted.org/packages/0e/3a/390782a9ed1358c95e78ccc745eed1a9d657a537e5c4c4812fce06c8d1a0/ruff-0.12.1-py3-none-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:a684f125a4fec2d5a6501a466be3841113ba6847827be4573fddf8308b83477d", size = 10167002, upload-time = "2025-06-26T20:33:47.81Z" },
2131
+ { url = "https://files.pythonhosted.org/packages/6d/05/f2d4c965009634830e97ffe733201ec59e4addc5b1c0efa035645baa9e5f/ruff-0.12.1-py3-none-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:bdecdef753bf1e95797593007569d8e1697a54fca843d78f6862f7dc279e23bd", size = 11751522, upload-time = "2025-06-26T20:33:49.857Z" },
2132
+ { url = "https://files.pythonhosted.org/packages/35/4e/4bfc519b5fcd462233f82fc20ef8b1e5ecce476c283b355af92c0935d5d9/ruff-0.12.1-py3-none-manylinux_2_17_ppc64.manylinux2014_ppc64.whl", hash = "sha256:70d52a058c0e7b88b602f575d23596e89bd7d8196437a4148381a3f73fcd5010", size = 12520264, upload-time = "2025-06-26T20:33:52.199Z" },
2133
+ { url = "https://files.pythonhosted.org/packages/85/b2/7756a6925da236b3a31f234b4167397c3e5f91edb861028a631546bad719/ruff-0.12.1-py3-none-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:84d0a69d1e8d716dfeab22d8d5e7c786b73f2106429a933cee51d7b09f861d4e", size = 12133882, upload-time = "2025-06-26T20:33:54.231Z" },
2134
+ { url = "https://files.pythonhosted.org/packages/dd/00/40da9c66d4a4d51291e619be6757fa65c91b92456ff4f01101593f3a1170/ruff-0.12.1-py3-none-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:6cc32e863adcf9e71690248607ccdf25252eeeab5193768e6873b901fd441fed", size = 11608941, upload-time = "2025-06-26T20:33:56.202Z" },
2135
+ { url = "https://files.pythonhosted.org/packages/91/e7/f898391cc026a77fbe68dfea5940f8213622474cb848eb30215538a2dadf/ruff-0.12.1-py3-none-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:7fd49a4619f90d5afc65cf42e07b6ae98bb454fd5029d03b306bd9e2273d44cc", size = 11602887, upload-time = "2025-06-26T20:33:58.47Z" },
2136
+ { url = "https://files.pythonhosted.org/packages/f6/02/0891872fc6aab8678084f4cf8826f85c5d2d24aa9114092139a38123f94b/ruff-0.12.1-py3-none-musllinux_1_2_aarch64.whl", hash = "sha256:ed5af6aaaea20710e77698e2055b9ff9b3494891e1b24d26c07055459bb717e9", size = 10521742, upload-time = "2025-06-26T20:34:00.465Z" },
2137
+ { url = "https://files.pythonhosted.org/packages/2a/98/d6534322c74a7d47b0f33b036b2498ccac99d8d8c40edadb552c038cecf1/ruff-0.12.1-py3-none-musllinux_1_2_armv7l.whl", hash = "sha256:801d626de15e6bf988fbe7ce59b303a914ff9c616d5866f8c79eb5012720ae13", size = 10149909, upload-time = "2025-06-26T20:34:02.603Z" },
2138
+ { url = "https://files.pythonhosted.org/packages/34/5c/9b7ba8c19a31e2b6bd5e31aa1e65b533208a30512f118805371dbbbdf6a9/ruff-0.12.1-py3-none-musllinux_1_2_i686.whl", hash = "sha256:2be9d32a147f98a1972c1e4df9a6956d612ca5f5578536814372113d09a27a6c", size = 11136005, upload-time = "2025-06-26T20:34:04.723Z" },
2139
+ { url = "https://files.pythonhosted.org/packages/dc/34/9bbefa4d0ff2c000e4e533f591499f6b834346025e11da97f4ded21cb23e/ruff-0.12.1-py3-none-musllinux_1_2_x86_64.whl", hash = "sha256:49b7ce354eed2a322fbaea80168c902de9504e6e174fd501e9447cad0232f9e6", size = 11648579, upload-time = "2025-06-26T20:34:06.766Z" },
2140
+ { url = "https://files.pythonhosted.org/packages/6f/1c/20cdb593783f8f411839ce749ec9ae9e4298c2b2079b40295c3e6e2089e1/ruff-0.12.1-py3-none-win32.whl", hash = "sha256:d973fa626d4c8267848755bd0414211a456e99e125dcab147f24daa9e991a245", size = 10519495, upload-time = "2025-06-26T20:34:08.718Z" },
2141
+ { url = "https://files.pythonhosted.org/packages/cf/56/7158bd8d3cf16394928f47c637d39a7d532268cd45220bdb6cd622985760/ruff-0.12.1-py3-none-win_amd64.whl", hash = "sha256:9e1123b1c033f77bd2590e4c1fe7e8ea72ef990a85d2484351d408224d603013", size = 11547485, upload-time = "2025-06-26T20:34:11.008Z" },
2142
+ { url = "https://files.pythonhosted.org/packages/91/d0/6902c0d017259439d6fd2fd9393cea1cfe30169940118b007d5e0ea7e954/ruff-0.12.1-py3-none-win_arm64.whl", hash = "sha256:78ad09a022c64c13cc6077707f036bab0fac8cd7088772dcd1e5be21c5002efc", size = 10691209, upload-time = "2025-06-26T20:34:12.928Z" },
2129
2143
  ]
2130
2144
 
2131
2145
  [[package]]
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes