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.
- {apify-2.6.1b4 → apify-2.6.1b6}/PKG-INFO +9 -6
- {apify-2.6.1b4 → apify-2.6.1b6}/pyproject.toml +16 -9
- {apify-2.6.1b4 → apify-2.6.1b6}/src/apify/_actor.py +1 -1
- {apify-2.6.1b4 → apify-2.6.1b6}/src/apify/_charging.py +2 -4
- {apify-2.6.1b4 → apify-2.6.1b6}/uv.lock +42 -28
- {apify-2.6.1b4 → apify-2.6.1b6}/.editorconfig +0 -0
- {apify-2.6.1b4 → apify-2.6.1b6}/.github/CODEOWNERS +0 -0
- {apify-2.6.1b4 → apify-2.6.1b6}/.github/workflows/build_and_deploy_docs.yaml +0 -0
- {apify-2.6.1b4 → apify-2.6.1b6}/.github/workflows/check_pr_title.yaml +0 -0
- {apify-2.6.1b4 → apify-2.6.1b6}/.github/workflows/pre_release.yaml +0 -0
- {apify-2.6.1b4 → apify-2.6.1b6}/.github/workflows/release.yaml +0 -0
- {apify-2.6.1b4 → apify-2.6.1b6}/.github/workflows/run_code_checks.yaml +0 -0
- {apify-2.6.1b4 → apify-2.6.1b6}/.github/workflows/update_new_issue.yaml +0 -0
- {apify-2.6.1b4 → apify-2.6.1b6}/.gitignore +0 -0
- {apify-2.6.1b4 → apify-2.6.1b6}/.markdownlint.yaml +0 -0
- {apify-2.6.1b4 → apify-2.6.1b6}/.pre-commit-config.yaml +0 -0
- {apify-2.6.1b4 → apify-2.6.1b6}/CHANGELOG.md +0 -0
- {apify-2.6.1b4 → apify-2.6.1b6}/CONTRIBUTING.md +0 -0
- {apify-2.6.1b4 → apify-2.6.1b6}/LICENSE +0 -0
- {apify-2.6.1b4 → apify-2.6.1b6}/Makefile +0 -0
- {apify-2.6.1b4 → apify-2.6.1b6}/README.md +0 -0
- {apify-2.6.1b4 → apify-2.6.1b6}/docs/01_overview/01_introduction.mdx +0 -0
- {apify-2.6.1b4 → apify-2.6.1b6}/docs/01_overview/02_running_actors_locally.mdx +0 -0
- {apify-2.6.1b4 → apify-2.6.1b6}/docs/01_overview/03_actor_structure.mdx +0 -0
- {apify-2.6.1b4 → apify-2.6.1b6}/docs/01_overview/code/01_introduction.py +0 -0
- {apify-2.6.1b4 → apify-2.6.1b6}/docs/01_overview/code/actor_structure/__init__.py +0 -0
- {apify-2.6.1b4 → apify-2.6.1b6}/docs/01_overview/code/actor_structure/__main__.py +0 -0
- {apify-2.6.1b4 → apify-2.6.1b6}/docs/01_overview/code/actor_structure/main.py +0 -0
- {apify-2.6.1b4 → apify-2.6.1b6}/docs/01_overview/code/actor_structure/py.typed +0 -0
- {apify-2.6.1b4 → apify-2.6.1b6}/docs/02_guides/01_beautifulsoup_httpx.mdx +0 -0
- {apify-2.6.1b4 → apify-2.6.1b6}/docs/02_guides/02_crawlee.mdx +0 -0
- {apify-2.6.1b4 → apify-2.6.1b6}/docs/02_guides/03_playwright.mdx +0 -0
- {apify-2.6.1b4 → apify-2.6.1b6}/docs/02_guides/04_selenium.mdx +0 -0
- {apify-2.6.1b4 → apify-2.6.1b6}/docs/02_guides/05_scrapy.mdx +0 -0
- {apify-2.6.1b4 → apify-2.6.1b6}/docs/02_guides/code/01_beautifulsoup_httpx.py +0 -0
- {apify-2.6.1b4 → apify-2.6.1b6}/docs/02_guides/code/02_crawlee_beautifulsoup.py +0 -0
- {apify-2.6.1b4 → apify-2.6.1b6}/docs/02_guides/code/02_crawlee_playwright.py +0 -0
- {apify-2.6.1b4 → apify-2.6.1b6}/docs/02_guides/code/03_playwright.py +0 -0
- {apify-2.6.1b4 → apify-2.6.1b6}/docs/02_guides/code/04_selenium.py +0 -0
- {apify-2.6.1b4 → apify-2.6.1b6}/docs/02_guides/code/scrapy_project/src/__init__.py +0 -0
- {apify-2.6.1b4 → apify-2.6.1b6}/docs/02_guides/code/scrapy_project/src/__main__.py +0 -0
- {apify-2.6.1b4 → apify-2.6.1b6}/docs/02_guides/code/scrapy_project/src/items.py +0 -0
- {apify-2.6.1b4 → apify-2.6.1b6}/docs/02_guides/code/scrapy_project/src/main.py +0 -0
- {apify-2.6.1b4 → apify-2.6.1b6}/docs/02_guides/code/scrapy_project/src/py.typed +0 -0
- {apify-2.6.1b4 → apify-2.6.1b6}/docs/02_guides/code/scrapy_project/src/settings.py +0 -0
- {apify-2.6.1b4 → apify-2.6.1b6}/docs/02_guides/code/scrapy_project/src/spiders/__init__.py +0 -0
- {apify-2.6.1b4 → apify-2.6.1b6}/docs/02_guides/code/scrapy_project/src/spiders/py.typed +0 -0
- {apify-2.6.1b4 → apify-2.6.1b6}/docs/02_guides/code/scrapy_project/src/spiders/title.py +0 -0
- {apify-2.6.1b4 → apify-2.6.1b6}/docs/03_concepts/01_actor_lifecycle.mdx +0 -0
- {apify-2.6.1b4 → apify-2.6.1b6}/docs/03_concepts/02_actor_input.mdx +0 -0
- {apify-2.6.1b4 → apify-2.6.1b6}/docs/03_concepts/03_storages.mdx +0 -0
- {apify-2.6.1b4 → apify-2.6.1b6}/docs/03_concepts/04_actor_events.mdx +0 -0
- {apify-2.6.1b4 → apify-2.6.1b6}/docs/03_concepts/05_proxy_management.mdx +0 -0
- {apify-2.6.1b4 → apify-2.6.1b6}/docs/03_concepts/06_interacting_with_other_actors.mdx +0 -0
- {apify-2.6.1b4 → apify-2.6.1b6}/docs/03_concepts/07_webhooks.mdx +0 -0
- {apify-2.6.1b4 → apify-2.6.1b6}/docs/03_concepts/08_access_apify_api.mdx +0 -0
- {apify-2.6.1b4 → apify-2.6.1b6}/docs/03_concepts/09_running_webserver.mdx +0 -0
- {apify-2.6.1b4 → apify-2.6.1b6}/docs/03_concepts/10_logging.mdx +0 -0
- {apify-2.6.1b4 → apify-2.6.1b6}/docs/03_concepts/11_configuration.mdx +0 -0
- {apify-2.6.1b4 → apify-2.6.1b6}/docs/03_concepts/12_pay_per_event.mdx +0 -0
- {apify-2.6.1b4 → apify-2.6.1b6}/docs/03_concepts/code/01_context_manager.py +0 -0
- {apify-2.6.1b4 → apify-2.6.1b6}/docs/03_concepts/code/01_init_exit.py +0 -0
- {apify-2.6.1b4 → apify-2.6.1b6}/docs/03_concepts/code/01_reboot.py +0 -0
- {apify-2.6.1b4 → apify-2.6.1b6}/docs/03_concepts/code/01_status_message.py +0 -0
- {apify-2.6.1b4 → apify-2.6.1b6}/docs/03_concepts/code/02_input.py +0 -0
- {apify-2.6.1b4 → apify-2.6.1b6}/docs/03_concepts/code/03_dataset_exports.py +0 -0
- {apify-2.6.1b4 → apify-2.6.1b6}/docs/03_concepts/code/03_dataset_read_write.py +0 -0
- {apify-2.6.1b4 → apify-2.6.1b6}/docs/03_concepts/code/03_deleting_storages.py +0 -0
- {apify-2.6.1b4 → apify-2.6.1b6}/docs/03_concepts/code/03_kvs_iterating.py +0 -0
- {apify-2.6.1b4 → apify-2.6.1b6}/docs/03_concepts/code/03_kvs_public_url.py +0 -0
- {apify-2.6.1b4 → apify-2.6.1b6}/docs/03_concepts/code/03_kvs_read_write.py +0 -0
- {apify-2.6.1b4 → apify-2.6.1b6}/docs/03_concepts/code/03_opening_storages.py +0 -0
- {apify-2.6.1b4 → apify-2.6.1b6}/docs/03_concepts/code/03_rq.py +0 -0
- {apify-2.6.1b4 → apify-2.6.1b6}/docs/03_concepts/code/04_actor_events.py +0 -0
- {apify-2.6.1b4 → apify-2.6.1b6}/docs/03_concepts/code/05_apify_proxy.py +0 -0
- {apify-2.6.1b4 → apify-2.6.1b6}/docs/03_concepts/code/05_apify_proxy_config.py +0 -0
- {apify-2.6.1b4 → apify-2.6.1b6}/docs/03_concepts/code/05_custom_proxy.py +0 -0
- {apify-2.6.1b4 → apify-2.6.1b6}/docs/03_concepts/code/05_custom_proxy_function.py +0 -0
- {apify-2.6.1b4 → apify-2.6.1b6}/docs/03_concepts/code/05_proxy_actor_input.py +0 -0
- {apify-2.6.1b4 → apify-2.6.1b6}/docs/03_concepts/code/05_proxy_httpx.py +0 -0
- {apify-2.6.1b4 → apify-2.6.1b6}/docs/03_concepts/code/05_proxy_rotation.py +0 -0
- {apify-2.6.1b4 → apify-2.6.1b6}/docs/03_concepts/code/06_interacting_call.py +0 -0
- {apify-2.6.1b4 → apify-2.6.1b6}/docs/03_concepts/code/06_interacting_call_task.py +0 -0
- {apify-2.6.1b4 → apify-2.6.1b6}/docs/03_concepts/code/06_interacting_metamorph.py +0 -0
- {apify-2.6.1b4 → apify-2.6.1b6}/docs/03_concepts/code/06_interacting_start.py +0 -0
- {apify-2.6.1b4 → apify-2.6.1b6}/docs/03_concepts/code/07_webhook.py +0 -0
- {apify-2.6.1b4 → apify-2.6.1b6}/docs/03_concepts/code/07_webhook_preventing.py +0 -0
- {apify-2.6.1b4 → apify-2.6.1b6}/docs/03_concepts/code/08_actor_client.py +0 -0
- {apify-2.6.1b4 → apify-2.6.1b6}/docs/03_concepts/code/08_actor_new_client.py +0 -0
- {apify-2.6.1b4 → apify-2.6.1b6}/docs/03_concepts/code/09_webserver.py +0 -0
- {apify-2.6.1b4 → apify-2.6.1b6}/docs/03_concepts/code/10_log_config.py +0 -0
- {apify-2.6.1b4 → apify-2.6.1b6}/docs/03_concepts/code/10_logger_usage.py +0 -0
- {apify-2.6.1b4 → apify-2.6.1b6}/docs/03_concepts/code/11_config.py +0 -0
- {apify-2.6.1b4 → apify-2.6.1b6}/docs/03_concepts/code/actor_charge.py +0 -0
- {apify-2.6.1b4 → apify-2.6.1b6}/docs/03_concepts/code/conditional_actor_charge.py +0 -0
- {apify-2.6.1b4 → apify-2.6.1b6}/docs/04_upgrading/upgrading_to_v2.md +0 -0
- {apify-2.6.1b4 → apify-2.6.1b6}/docs/pyproject.toml +0 -0
- {apify-2.6.1b4 → apify-2.6.1b6}/renovate.json +0 -0
- {apify-2.6.1b4 → apify-2.6.1b6}/src/apify/__init__.py +0 -0
- {apify-2.6.1b4 → apify-2.6.1b6}/src/apify/_configuration.py +0 -0
- {apify-2.6.1b4 → apify-2.6.1b6}/src/apify/_consts.py +0 -0
- {apify-2.6.1b4 → apify-2.6.1b6}/src/apify/_crypto.py +0 -0
- {apify-2.6.1b4 → apify-2.6.1b6}/src/apify/_models.py +0 -0
- {apify-2.6.1b4 → apify-2.6.1b6}/src/apify/_platform_event_manager.py +0 -0
- {apify-2.6.1b4 → apify-2.6.1b6}/src/apify/_proxy_configuration.py +0 -0
- {apify-2.6.1b4 → apify-2.6.1b6}/src/apify/_utils.py +0 -0
- {apify-2.6.1b4 → apify-2.6.1b6}/src/apify/apify_storage_client/__init__.py +0 -0
- {apify-2.6.1b4 → apify-2.6.1b6}/src/apify/apify_storage_client/_apify_storage_client.py +0 -0
- {apify-2.6.1b4 → apify-2.6.1b6}/src/apify/apify_storage_client/_dataset_client.py +0 -0
- {apify-2.6.1b4 → apify-2.6.1b6}/src/apify/apify_storage_client/_dataset_collection_client.py +0 -0
- {apify-2.6.1b4 → apify-2.6.1b6}/src/apify/apify_storage_client/_key_value_store_client.py +0 -0
- {apify-2.6.1b4 → apify-2.6.1b6}/src/apify/apify_storage_client/_key_value_store_collection_client.py +0 -0
- {apify-2.6.1b4 → apify-2.6.1b6}/src/apify/apify_storage_client/_request_queue_client.py +0 -0
- {apify-2.6.1b4 → apify-2.6.1b6}/src/apify/apify_storage_client/_request_queue_collection_client.py +0 -0
- {apify-2.6.1b4 → apify-2.6.1b6}/src/apify/apify_storage_client/py.typed +0 -0
- {apify-2.6.1b4 → apify-2.6.1b6}/src/apify/log.py +0 -0
- {apify-2.6.1b4 → apify-2.6.1b6}/src/apify/py.typed +0 -0
- {apify-2.6.1b4 → apify-2.6.1b6}/src/apify/scrapy/__init__.py +0 -0
- {apify-2.6.1b4 → apify-2.6.1b6}/src/apify/scrapy/_actor_runner.py +0 -0
- {apify-2.6.1b4 → apify-2.6.1b6}/src/apify/scrapy/_async_thread.py +0 -0
- {apify-2.6.1b4 → apify-2.6.1b6}/src/apify/scrapy/_logging_config.py +0 -0
- {apify-2.6.1b4 → apify-2.6.1b6}/src/apify/scrapy/extensions/__init__.py +0 -0
- {apify-2.6.1b4 → apify-2.6.1b6}/src/apify/scrapy/extensions/_httpcache.py +0 -0
- {apify-2.6.1b4 → apify-2.6.1b6}/src/apify/scrapy/middlewares/__init__.py +0 -0
- {apify-2.6.1b4 → apify-2.6.1b6}/src/apify/scrapy/middlewares/apify_proxy.py +0 -0
- {apify-2.6.1b4 → apify-2.6.1b6}/src/apify/scrapy/middlewares/py.typed +0 -0
- {apify-2.6.1b4 → apify-2.6.1b6}/src/apify/scrapy/pipelines/__init__.py +0 -0
- {apify-2.6.1b4 → apify-2.6.1b6}/src/apify/scrapy/pipelines/actor_dataset_push.py +0 -0
- {apify-2.6.1b4 → apify-2.6.1b6}/src/apify/scrapy/pipelines/py.typed +0 -0
- {apify-2.6.1b4 → apify-2.6.1b6}/src/apify/scrapy/py.typed +0 -0
- {apify-2.6.1b4 → apify-2.6.1b6}/src/apify/scrapy/requests.py +0 -0
- {apify-2.6.1b4 → apify-2.6.1b6}/src/apify/scrapy/scheduler.py +0 -0
- {apify-2.6.1b4 → apify-2.6.1b6}/src/apify/scrapy/utils.py +0 -0
- {apify-2.6.1b4 → apify-2.6.1b6}/src/apify/storages/__init__.py +0 -0
- {apify-2.6.1b4 → apify-2.6.1b6}/src/apify/storages/_request_list.py +0 -0
- {apify-2.6.1b4 → apify-2.6.1b6}/src/apify/storages/py.typed +0 -0
- {apify-2.6.1b4 → apify-2.6.1b6}/tests/integration/README.md +0 -0
- {apify-2.6.1b4 → apify-2.6.1b6}/tests/integration/__init__.py +0 -0
- {apify-2.6.1b4 → apify-2.6.1b6}/tests/integration/_utils.py +0 -0
- {apify-2.6.1b4 → apify-2.6.1b6}/tests/integration/actor_source_base/Dockerfile +0 -0
- {apify-2.6.1b4 → apify-2.6.1b6}/tests/integration/actor_source_base/requirements.txt +0 -0
- {apify-2.6.1b4 → apify-2.6.1b6}/tests/integration/actor_source_base/src/__init__.py +0 -0
- {apify-2.6.1b4 → apify-2.6.1b6}/tests/integration/actor_source_base/src/__main__.py +0 -0
- {apify-2.6.1b4 → apify-2.6.1b6}/tests/integration/actor_source_base/src/main.py +0 -0
- {apify-2.6.1b4 → apify-2.6.1b6}/tests/integration/conftest.py +0 -0
- {apify-2.6.1b4 → apify-2.6.1b6}/tests/integration/test_actor_api_helpers.py +0 -0
- {apify-2.6.1b4 → apify-2.6.1b6}/tests/integration/test_actor_call_timeouts.py +0 -0
- {apify-2.6.1b4 → apify-2.6.1b6}/tests/integration/test_actor_charge.py +0 -0
- {apify-2.6.1b4 → apify-2.6.1b6}/tests/integration/test_actor_create_proxy_configuration.py +0 -0
- {apify-2.6.1b4 → apify-2.6.1b6}/tests/integration/test_actor_dataset.py +0 -0
- {apify-2.6.1b4 → apify-2.6.1b6}/tests/integration/test_actor_events.py +0 -0
- {apify-2.6.1b4 → apify-2.6.1b6}/tests/integration/test_actor_key_value_store.py +0 -0
- {apify-2.6.1b4 → apify-2.6.1b6}/tests/integration/test_actor_lifecycle.py +0 -0
- {apify-2.6.1b4 → apify-2.6.1b6}/tests/integration/test_actor_log.py +0 -0
- {apify-2.6.1b4 → apify-2.6.1b6}/tests/integration/test_actor_request_queue.py +0 -0
- {apify-2.6.1b4 → apify-2.6.1b6}/tests/integration/test_actor_scrapy.py +0 -0
- {apify-2.6.1b4 → apify-2.6.1b6}/tests/integration/test_fixtures.py +0 -0
- {apify-2.6.1b4 → apify-2.6.1b6}/tests/integration/test_request_queue.py +0 -0
- {apify-2.6.1b4 → apify-2.6.1b6}/tests/unit/__init__.py +0 -0
- {apify-2.6.1b4 → apify-2.6.1b6}/tests/unit/actor/__init__.py +0 -0
- {apify-2.6.1b4 → apify-2.6.1b6}/tests/unit/actor/test_actor_create_proxy_configuration.py +0 -0
- {apify-2.6.1b4 → apify-2.6.1b6}/tests/unit/actor/test_actor_dataset.py +0 -0
- {apify-2.6.1b4 → apify-2.6.1b6}/tests/unit/actor/test_actor_env_helpers.py +0 -0
- {apify-2.6.1b4 → apify-2.6.1b6}/tests/unit/actor/test_actor_helpers.py +0 -0
- {apify-2.6.1b4 → apify-2.6.1b6}/tests/unit/actor/test_actor_key_value_store.py +0 -0
- {apify-2.6.1b4 → apify-2.6.1b6}/tests/unit/actor/test_actor_lifecycle.py +0 -0
- {apify-2.6.1b4 → apify-2.6.1b6}/tests/unit/actor/test_actor_log.py +0 -0
- {apify-2.6.1b4 → apify-2.6.1b6}/tests/unit/actor/test_actor_non_default_instance.py +0 -0
- {apify-2.6.1b4 → apify-2.6.1b6}/tests/unit/actor/test_actor_request_queue.py +0 -0
- {apify-2.6.1b4 → apify-2.6.1b6}/tests/unit/actor/test_configuration.py +0 -0
- {apify-2.6.1b4 → apify-2.6.1b6}/tests/unit/actor/test_request_list.py +0 -0
- {apify-2.6.1b4 → apify-2.6.1b6}/tests/unit/conftest.py +0 -0
- {apify-2.6.1b4 → apify-2.6.1b6}/tests/unit/scrapy/__init__.py +0 -0
- {apify-2.6.1b4 → apify-2.6.1b6}/tests/unit/scrapy/extensions/__init__.py +0 -0
- {apify-2.6.1b4 → apify-2.6.1b6}/tests/unit/scrapy/extensions/test_httpcache.py +0 -0
- {apify-2.6.1b4 → apify-2.6.1b6}/tests/unit/scrapy/middlewares/__init__.py +0 -0
- {apify-2.6.1b4 → apify-2.6.1b6}/tests/unit/scrapy/middlewares/test_apify_proxy.py +0 -0
- {apify-2.6.1b4 → apify-2.6.1b6}/tests/unit/scrapy/pipelines/__init__.py +0 -0
- {apify-2.6.1b4 → apify-2.6.1b6}/tests/unit/scrapy/pipelines/test_actor_dataset_push.py +0 -0
- {apify-2.6.1b4 → apify-2.6.1b6}/tests/unit/scrapy/requests/__init__.py +0 -0
- {apify-2.6.1b4 → apify-2.6.1b6}/tests/unit/scrapy/requests/test_to_apify_request.py +0 -0
- {apify-2.6.1b4 → apify-2.6.1b6}/tests/unit/scrapy/requests/test_to_scrapy_request.py +0 -0
- {apify-2.6.1b4 → apify-2.6.1b6}/tests/unit/scrapy/utils/__init__.py +0 -0
- {apify-2.6.1b4 → apify-2.6.1b6}/tests/unit/scrapy/utils/test_apply_apify_settings.py +0 -0
- {apify-2.6.1b4 → apify-2.6.1b6}/tests/unit/scrapy/utils/test_get_basic_auth_header.py +0 -0
- {apify-2.6.1b4 → apify-2.6.1b6}/tests/unit/test_crypto.py +0 -0
- {apify-2.6.1b4 → apify-2.6.1b6}/tests/unit/test_platform_event_manager.py +0 -0
- {apify-2.6.1b4 → apify-2.6.1b6}/tests/unit/test_proxy_configuration.py +0 -0
- {apify-2.6.1b4 → apify-2.6.1b6}/website/.eslintrc.json +0 -0
- {apify-2.6.1b4 → apify-2.6.1b6}/website/babel.config.js +0 -0
- {apify-2.6.1b4 → apify-2.6.1b6}/website/build_api_reference.sh +0 -0
- {apify-2.6.1b4 → apify-2.6.1b6}/website/docusaurus.config.js +0 -0
- {apify-2.6.1b4 → apify-2.6.1b6}/website/generate_module_shortcuts.py +0 -0
- {apify-2.6.1b4 → apify-2.6.1b6}/website/package-lock.json +0 -0
- {apify-2.6.1b4 → apify-2.6.1b6}/website/package.json +0 -0
- {apify-2.6.1b4 → apify-2.6.1b6}/website/sidebars.js +0 -0
- {apify-2.6.1b4 → apify-2.6.1b6}/website/src/components/ApiLink.jsx +0 -0
- {apify-2.6.1b4 → apify-2.6.1b6}/website/src/components/Gradients.jsx +0 -0
- {apify-2.6.1b4 → apify-2.6.1b6}/website/src/components/Highlights.jsx +0 -0
- {apify-2.6.1b4 → apify-2.6.1b6}/website/src/components/Highlights.module.css +0 -0
- {apify-2.6.1b4 → apify-2.6.1b6}/website/src/components/RunnableCodeBlock.jsx +0 -0
- {apify-2.6.1b4 → apify-2.6.1b6}/website/src/components/RunnableCodeBlock.module.css +0 -0
- {apify-2.6.1b4 → apify-2.6.1b6}/website/src/css/custom.css +0 -0
- {apify-2.6.1b4 → apify-2.6.1b6}/website/src/pages/home_page_example.py +0 -0
- {apify-2.6.1b4 → apify-2.6.1b6}/website/src/pages/index.js +0 -0
- {apify-2.6.1b4 → apify-2.6.1b6}/website/src/pages/index.module.css +0 -0
- {apify-2.6.1b4 → apify-2.6.1b6}/website/static/.nojekyll +0 -0
- {apify-2.6.1b4 → apify-2.6.1b6}/website/static/img/docs-og.png +0 -0
- {apify-2.6.1b4 → apify-2.6.1b6}/website/tools/docs-prettier.config.js +0 -0
- {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.
|
|
3
|
+
Version: 2.6.1b6
|
|
4
4
|
Summary: Apify SDK for Python
|
|
5
|
-
Project-URL: Homepage, https://
|
|
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:
|
|
9
|
-
Project-URL:
|
|
10
|
-
Project-URL:
|
|
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.
|
|
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://
|
|
55
|
-
"Apify homepage" = "https://apify.com"
|
|
55
|
+
"Apify Homepage" = "https://apify.com"
|
|
56
56
|
"Changelog" = "https://docs.apify.com/sdk/python/docs/changelog"
|
|
57
|
-
"
|
|
58
|
-
"
|
|
59
|
-
"
|
|
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-
|
|
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.
|
|
75
|
-
"setuptools",
|
|
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(
|
|
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-
|
|
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-
|
|
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.
|
|
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-
|
|
1973
|
-
version = "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/
|
|
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/
|
|
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.
|
|
2109
|
-
source = { registry = "https://pypi.org/simple" }
|
|
2110
|
-
sdist = { url = "https://files.pythonhosted.org/packages/
|
|
2111
|
-
wheels = [
|
|
2112
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
2113
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
2114
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
2115
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
2116
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
2117
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
2118
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
2119
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
2120
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
2121
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
2122
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
2123
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
2124
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
2125
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
2126
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
2127
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
2128
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
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
|
|
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
|
|
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
|
|
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
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{apify-2.6.1b4 → apify-2.6.1b6}/src/apify/apify_storage_client/_dataset_collection_client.py
RENAMED
|
File without changes
|
|
File without changes
|
{apify-2.6.1b4 → apify-2.6.1b6}/src/apify/apify_storage_client/_key_value_store_collection_client.py
RENAMED
|
File without changes
|
|
File without changes
|
{apify-2.6.1b4 → apify-2.6.1b6}/src/apify/apify_storage_client/_request_queue_collection_client.py
RENAMED
|
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
|
|
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
|
|
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
|
|
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
|