apify 2.7.2__tar.gz → 3.0.0__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.7.2 → apify-3.0.0}/.github/workflows/build_and_deploy_docs.yaml +4 -4
- {apify-2.7.2 → apify-3.0.0}/.github/workflows/pre_release.yaml +9 -5
- {apify-2.7.2 → apify-3.0.0}/.github/workflows/release.yaml +8 -11
- {apify-2.7.2 → apify-3.0.0}/.github/workflows/run_code_checks.yaml +9 -5
- {apify-2.7.2 → apify-3.0.0}/.github/workflows/update_new_issue.yaml +1 -1
- apify-3.0.0/CHANGELOG.md +602 -0
- {apify-2.7.2 → apify-3.0.0}/CONTRIBUTING.md +1 -1
- {apify-2.7.2 → apify-3.0.0}/Makefile +3 -3
- {apify-2.7.2 → apify-3.0.0}/PKG-INFO +25 -9
- {apify-2.7.2 → apify-3.0.0}/README.md +16 -1
- {apify-2.7.2 → apify-3.0.0}/docs/01_overview/02_running_actors_locally.mdx +1 -1
- {apify-2.7.2/docs/03_concepts → apify-3.0.0/docs/02_concepts}/09_running_webserver.mdx +2 -2
- {apify-2.7.2/docs/03_concepts → apify-3.0.0/docs/02_concepts}/10_logging.mdx +30 -0
- {apify-2.7.2/docs/03_concepts → apify-3.0.0/docs/02_concepts}/12_pay_per_event.mdx +6 -0
- {apify-2.7.2/docs/03_concepts → apify-3.0.0/docs/02_concepts}/code/03_dataset_exports.py +2 -2
- {apify-2.7.2/docs/03_concepts → apify-3.0.0/docs/02_concepts}/code/03_rq.py +1 -4
- {apify-2.7.2/docs/03_concepts → apify-3.0.0/docs/02_concepts}/code/07_webhook_preventing.py +1 -1
- {apify-2.7.2/docs/03_concepts → apify-3.0.0/docs/02_concepts}/code/09_webserver.py +2 -2
- apify-3.0.0/docs/02_concepts/code/10_redirect_log.py +15 -0
- apify-3.0.0/docs/02_concepts/code/10_redirect_log_existing_run.py +24 -0
- {apify-2.7.2/docs/03_concepts → apify-3.0.0/docs/02_concepts}/code/conditional_actor_charge.py +3 -3
- apify-3.0.0/docs/03_guides/01_beautifulsoup_httpx.mdx +30 -0
- apify-3.0.0/docs/03_guides/02_parsel_impit.mdx +28 -0
- apify-3.0.0/docs/03_guides/05_crawlee.mdx +46 -0
- {apify-2.7.2/docs/02_guides → apify-3.0.0/docs/03_guides}/code/01_beautifulsoup_httpx.py +7 -4
- apify-3.0.0/docs/03_guides/code/02_parsel_impit.py +94 -0
- {apify-2.7.2/docs/02_guides → apify-3.0.0/docs/03_guides}/code/03_playwright.py +6 -3
- {apify-2.7.2/docs/02_guides → apify-3.0.0/docs/03_guides}/code/04_selenium.py +5 -3
- apify-3.0.0/docs/03_guides/code/05_crawlee_beautifulsoup.py +55 -0
- apify-3.0.0/docs/03_guides/code/05_crawlee_parsel.py +55 -0
- apify-3.0.0/docs/03_guides/code/05_crawlee_playwright.py +58 -0
- {apify-2.7.2 → apify-3.0.0}/docs/04_upgrading/upgrading_to_v2.md +2 -2
- apify-3.0.0/docs/04_upgrading/upgrading_to_v3.md +159 -0
- {apify-2.7.2 → apify-3.0.0}/pyproject.toml +34 -28
- {apify-2.7.2 → apify-3.0.0}/src/apify/_actor.py +194 -126
- {apify-2.7.2 → apify-3.0.0}/src/apify/_charging.py +34 -9
- {apify-2.7.2 → apify-3.0.0}/src/apify/_configuration.py +79 -6
- {apify-2.7.2 → apify-3.0.0}/src/apify/_crypto.py +0 -6
- {apify-2.7.2 → apify-3.0.0}/src/apify/_models.py +7 -7
- {apify-2.7.2 → apify-3.0.0}/src/apify/_proxy_configuration.py +10 -10
- {apify-2.7.2 → apify-3.0.0}/src/apify/_utils.py +25 -2
- apify-3.0.0/src/apify/events/__init__.py +5 -0
- apify-3.0.0/src/apify/events/_apify_event_manager.py +140 -0
- apify-3.0.0/src/apify/events/_types.py +102 -0
- {apify-2.7.2 → apify-3.0.0}/src/apify/log.py +0 -9
- apify-3.0.0/src/apify/request_loaders/__init__.py +18 -0
- apify-2.7.2/src/apify/storages/_request_list.py → apify-3.0.0/src/apify/request_loaders/_apify_request_list.py +25 -18
- {apify-2.7.2 → apify-3.0.0}/src/apify/scrapy/_logging_config.py +1 -4
- {apify-2.7.2 → apify-3.0.0}/src/apify/scrapy/extensions/_httpcache.py +9 -5
- {apify-2.7.2 → apify-3.0.0}/src/apify/scrapy/requests.py +3 -3
- {apify-2.7.2 → apify-3.0.0}/src/apify/scrapy/scheduler.py +8 -5
- apify-3.0.0/src/apify/storage_clients/__init__.py +12 -0
- apify-3.0.0/src/apify/storage_clients/_apify/__init__.py +11 -0
- apify-3.0.0/src/apify/storage_clients/_apify/_dataset_client.py +328 -0
- apify-3.0.0/src/apify/storage_clients/_apify/_key_value_store_client.py +265 -0
- apify-3.0.0/src/apify/storage_clients/_apify/_models.py +131 -0
- apify-3.0.0/src/apify/storage_clients/_apify/_request_queue_client.py +327 -0
- apify-3.0.0/src/apify/storage_clients/_apify/_request_queue_shared_client.py +527 -0
- apify-3.0.0/src/apify/storage_clients/_apify/_request_queue_single_client.py +399 -0
- apify-3.0.0/src/apify/storage_clients/_apify/_storage_client.py +106 -0
- apify-3.0.0/src/apify/storage_clients/_apify/_utils.py +194 -0
- apify-3.0.0/src/apify/storage_clients/_file_system/__init__.py +2 -0
- apify-3.0.0/src/apify/storage_clients/_file_system/_key_value_store_client.py +57 -0
- apify-3.0.0/src/apify/storage_clients/_file_system/_storage_client.py +41 -0
- apify-3.0.0/src/apify/storage_clients/_smart_apify/__init__.py +1 -0
- apify-3.0.0/src/apify/storage_clients/_smart_apify/_storage_client.py +117 -0
- apify-3.0.0/src/apify/storages/__init__.py +3 -0
- {apify-2.7.2 → apify-3.0.0}/tests/integration/README.md +23 -0
- apify-3.0.0/tests/integration/_utils.py +17 -0
- {apify-2.7.2 → apify-3.0.0}/tests/integration/actor_source_base/Dockerfile +5 -1
- {apify-2.7.2 → apify-3.0.0}/tests/integration/actor_source_base/requirements.txt +2 -0
- apify-3.0.0/tests/integration/actor_source_base/server.py +101 -0
- {apify-2.7.2 → apify-3.0.0}/tests/integration/conftest.py +28 -26
- {apify-2.7.2 → apify-3.0.0}/tests/integration/test_actor_api_helpers.py +4 -6
- {apify-2.7.2 → apify-3.0.0}/tests/integration/test_actor_create_proxy_configuration.py +4 -1
- {apify-2.7.2 → apify-3.0.0}/tests/integration/test_actor_dataset.py +87 -3
- {apify-2.7.2 → apify-3.0.0}/tests/integration/test_actor_events.py +3 -1
- {apify-2.7.2 → apify-3.0.0}/tests/integration/test_actor_key_value_store.py +101 -16
- {apify-2.7.2 → apify-3.0.0}/tests/integration/test_actor_lifecycle.py +41 -0
- apify-3.0.0/tests/integration/test_actor_request_queue.py +491 -0
- {apify-2.7.2 → apify-3.0.0}/tests/integration/test_actor_scrapy.py +1 -1
- apify-3.0.0/tests/integration/test_apify_storages.py +152 -0
- apify-3.0.0/tests/integration/test_crawlers_with_storages.py +113 -0
- apify-3.0.0/tests/integration/test_request_queue.py +1191 -0
- {apify-2.7.2 → apify-3.0.0}/tests/unit/actor/test_actor_create_proxy_configuration.py +37 -28
- {apify-2.7.2 → apify-3.0.0}/tests/unit/actor/test_actor_dataset.py +5 -30
- {apify-2.7.2 → apify-3.0.0}/tests/unit/actor/test_actor_env_helpers.py +3 -27
- {apify-2.7.2 → apify-3.0.0}/tests/unit/actor/test_actor_helpers.py +0 -5
- {apify-2.7.2 → apify-3.0.0}/tests/unit/actor/test_actor_key_value_store.py +25 -45
- {apify-2.7.2 → apify-3.0.0}/tests/unit/actor/test_actor_lifecycle.py +21 -19
- {apify-2.7.2 → apify-3.0.0}/tests/unit/actor/test_actor_log.py +39 -34
- {apify-2.7.2 → apify-3.0.0}/tests/unit/actor/test_actor_non_default_instance.py +1 -1
- {apify-2.7.2 → apify-3.0.0}/tests/unit/actor/test_actor_request_queue.py +3 -4
- apify-3.0.0/tests/unit/actor/test_configuration.py +243 -0
- {apify-2.7.2 → apify-3.0.0}/tests/unit/actor/test_request_list.py +42 -28
- {apify-2.7.2 → apify-3.0.0}/tests/unit/conftest.py +67 -47
- apify-2.7.2/tests/unit/test_platform_event_manager.py → apify-3.0.0/tests/unit/events/test_apify_event_manager.py +13 -11
- {apify-2.7.2 → apify-3.0.0}/tests/unit/scrapy/extensions/test_httpcache.py +1 -1
- apify-3.0.0/tests/unit/scrapy/pipelines/__init__.py +0 -0
- apify-3.0.0/tests/unit/scrapy/requests/__init__.py +0 -0
- {apify-2.7.2 → apify-3.0.0}/tests/unit/scrapy/requests/test_to_apify_request.py +0 -2
- {apify-2.7.2 → apify-3.0.0}/tests/unit/scrapy/requests/test_to_scrapy_request.py +6 -10
- apify-3.0.0/tests/unit/scrapy/utils/__init__.py +0 -0
- apify-3.0.0/tests/unit/storage_clients/__init__.py +0 -0
- apify-3.0.0/tests/unit/storage_clients/test_apify_request_queue_client.py +38 -0
- apify-3.0.0/tests/unit/storage_clients/test_file_system.py +79 -0
- apify-3.0.0/tests/unit/test_apify_storages.py +63 -0
- {apify-2.7.2 → apify-3.0.0}/tests/unit/test_crypto.py +2 -2
- {apify-2.7.2 → apify-3.0.0}/tests/unit/test_proxy_configuration.py +90 -85
- apify-3.0.0/uv.lock +2698 -0
- apify-3.0.0/website/docusaurus.config.js +289 -0
- {apify-2.7.2 → apify-3.0.0}/website/package-lock.json +1528 -1453
- {apify-2.7.2 → apify-3.0.0}/website/package.json +7 -6
- {apify-2.7.2 → apify-3.0.0}/website/sidebars.js +8 -8
- apify-3.0.0/website/src/components/RunnableCodeBlock.jsx +46 -0
- {apify-2.7.2 → apify-3.0.0}/website/src/pages/index.module.css +1 -1
- apify-3.0.0/website/src/theme/DocItem/Content/index.js +6 -0
- apify-3.0.0/website/static/.nojekyll +0 -0
- apify-3.0.0/website/static/img/guides/redirected_logs_example.webp +0 -0
- apify-2.7.2/CHANGELOG.md +0 -218
- apify-2.7.2/docs/02_guides/01_beautifulsoup_httpx.mdx +0 -30
- apify-2.7.2/docs/02_guides/02_crawlee.mdx +0 -37
- apify-2.7.2/docs/02_guides/code/02_crawlee_beautifulsoup.py +0 -55
- apify-2.7.2/docs/02_guides/code/02_crawlee_playwright.py +0 -68
- apify-2.7.2/src/apify/_platform_event_manager.py +0 -231
- apify-2.7.2/src/apify/apify_storage_client/__init__.py +0 -3
- apify-2.7.2/src/apify/apify_storage_client/_apify_storage_client.py +0 -72
- apify-2.7.2/src/apify/apify_storage_client/_dataset_client.py +0 -190
- apify-2.7.2/src/apify/apify_storage_client/_dataset_collection_client.py +0 -51
- apify-2.7.2/src/apify/apify_storage_client/_key_value_store_client.py +0 -109
- apify-2.7.2/src/apify/apify_storage_client/_key_value_store_collection_client.py +0 -51
- apify-2.7.2/src/apify/apify_storage_client/_request_queue_client.py +0 -176
- apify-2.7.2/src/apify/apify_storage_client/_request_queue_collection_client.py +0 -51
- apify-2.7.2/src/apify/storages/__init__.py +0 -5
- apify-2.7.2/tests/integration/_utils.py +0 -9
- apify-2.7.2/tests/integration/test_actor_request_queue.py +0 -88
- apify-2.7.2/tests/integration/test_request_queue.py +0 -113
- apify-2.7.2/tests/unit/actor/test_configuration.py +0 -21
- apify-2.7.2/uv.lock +0 -2855
- apify-2.7.2/website/docusaurus.config.js +0 -145
- apify-2.7.2/website/src/components/RunnableCodeBlock.jsx +0 -44
- {apify-2.7.2 → apify-3.0.0}/.editorconfig +0 -0
- {apify-2.7.2 → apify-3.0.0}/.github/CODEOWNERS +0 -0
- {apify-2.7.2 → apify-3.0.0}/.github/workflows/check_pr_title.yaml +0 -0
- {apify-2.7.2 → apify-3.0.0}/.gitignore +0 -0
- {apify-2.7.2 → apify-3.0.0}/.markdownlint.yaml +0 -0
- {apify-2.7.2 → apify-3.0.0}/.pre-commit-config.yaml +0 -0
- {apify-2.7.2 → apify-3.0.0}/LICENSE +0 -0
- {apify-2.7.2 → apify-3.0.0}/docs/01_overview/01_introduction.mdx +0 -0
- {apify-2.7.2 → apify-3.0.0}/docs/01_overview/03_actor_structure.mdx +0 -0
- {apify-2.7.2 → apify-3.0.0}/docs/01_overview/code/01_introduction.py +0 -0
- {apify-2.7.2 → apify-3.0.0}/docs/01_overview/code/actor_structure/__init__.py +0 -0
- {apify-2.7.2 → apify-3.0.0}/docs/01_overview/code/actor_structure/__main__.py +0 -0
- {apify-2.7.2 → apify-3.0.0}/docs/01_overview/code/actor_structure/main.py +0 -0
- {apify-2.7.2 → apify-3.0.0}/docs/01_overview/code/actor_structure/py.typed +0 -0
- {apify-2.7.2/docs/03_concepts → apify-3.0.0/docs/02_concepts}/01_actor_lifecycle.mdx +0 -0
- {apify-2.7.2/docs/03_concepts → apify-3.0.0/docs/02_concepts}/02_actor_input.mdx +0 -0
- {apify-2.7.2/docs/03_concepts → apify-3.0.0/docs/02_concepts}/03_storages.mdx +0 -0
- {apify-2.7.2/docs/03_concepts → apify-3.0.0/docs/02_concepts}/04_actor_events.mdx +0 -0
- {apify-2.7.2/docs/03_concepts → apify-3.0.0/docs/02_concepts}/05_proxy_management.mdx +0 -0
- {apify-2.7.2/docs/03_concepts → apify-3.0.0/docs/02_concepts}/06_interacting_with_other_actors.mdx +0 -0
- {apify-2.7.2/docs/03_concepts → apify-3.0.0/docs/02_concepts}/07_webhooks.mdx +0 -0
- {apify-2.7.2/docs/03_concepts → apify-3.0.0/docs/02_concepts}/08_access_apify_api.mdx +0 -0
- {apify-2.7.2/docs/03_concepts → apify-3.0.0/docs/02_concepts}/11_configuration.mdx +0 -0
- {apify-2.7.2/docs/03_concepts → apify-3.0.0/docs/02_concepts}/code/01_context_manager.py +0 -0
- {apify-2.7.2/docs/03_concepts → apify-3.0.0/docs/02_concepts}/code/01_init_exit.py +0 -0
- {apify-2.7.2/docs/03_concepts → apify-3.0.0/docs/02_concepts}/code/01_reboot.py +0 -0
- {apify-2.7.2/docs/03_concepts → apify-3.0.0/docs/02_concepts}/code/01_status_message.py +0 -0
- {apify-2.7.2/docs/03_concepts → apify-3.0.0/docs/02_concepts}/code/02_input.py +0 -0
- {apify-2.7.2/docs/03_concepts → apify-3.0.0/docs/02_concepts}/code/03_dataset_read_write.py +0 -0
- {apify-2.7.2/docs/03_concepts → apify-3.0.0/docs/02_concepts}/code/03_deleting_storages.py +0 -0
- {apify-2.7.2/docs/03_concepts → apify-3.0.0/docs/02_concepts}/code/03_kvs_iterating.py +0 -0
- {apify-2.7.2/docs/03_concepts → apify-3.0.0/docs/02_concepts}/code/03_kvs_public_url.py +0 -0
- {apify-2.7.2/docs/03_concepts → apify-3.0.0/docs/02_concepts}/code/03_kvs_read_write.py +0 -0
- {apify-2.7.2/docs/03_concepts → apify-3.0.0/docs/02_concepts}/code/03_opening_storages.py +0 -0
- {apify-2.7.2/docs/03_concepts → apify-3.0.0/docs/02_concepts}/code/04_actor_events.py +0 -0
- {apify-2.7.2/docs/03_concepts → apify-3.0.0/docs/02_concepts}/code/05_apify_proxy.py +0 -0
- {apify-2.7.2/docs/03_concepts → apify-3.0.0/docs/02_concepts}/code/05_apify_proxy_config.py +0 -0
- {apify-2.7.2/docs/03_concepts → apify-3.0.0/docs/02_concepts}/code/05_custom_proxy.py +0 -0
- {apify-2.7.2/docs/03_concepts → apify-3.0.0/docs/02_concepts}/code/05_custom_proxy_function.py +0 -0
- {apify-2.7.2/docs/03_concepts → apify-3.0.0/docs/02_concepts}/code/05_proxy_actor_input.py +0 -0
- {apify-2.7.2/docs/03_concepts → apify-3.0.0/docs/02_concepts}/code/05_proxy_httpx.py +0 -0
- {apify-2.7.2/docs/03_concepts → apify-3.0.0/docs/02_concepts}/code/05_proxy_rotation.py +0 -0
- {apify-2.7.2/docs/03_concepts → apify-3.0.0/docs/02_concepts}/code/06_interacting_call.py +0 -0
- {apify-2.7.2/docs/03_concepts → apify-3.0.0/docs/02_concepts}/code/06_interacting_call_task.py +0 -0
- {apify-2.7.2/docs/03_concepts → apify-3.0.0/docs/02_concepts}/code/06_interacting_metamorph.py +0 -0
- {apify-2.7.2/docs/03_concepts → apify-3.0.0/docs/02_concepts}/code/06_interacting_start.py +0 -0
- {apify-2.7.2/docs/03_concepts → apify-3.0.0/docs/02_concepts}/code/07_webhook.py +0 -0
- {apify-2.7.2/docs/03_concepts → apify-3.0.0/docs/02_concepts}/code/08_actor_client.py +0 -0
- {apify-2.7.2/docs/03_concepts → apify-3.0.0/docs/02_concepts}/code/08_actor_new_client.py +0 -0
- {apify-2.7.2/docs/03_concepts → apify-3.0.0/docs/02_concepts}/code/10_log_config.py +0 -0
- {apify-2.7.2/docs/03_concepts → apify-3.0.0/docs/02_concepts}/code/10_logger_usage.py +0 -0
- {apify-2.7.2/docs/03_concepts → apify-3.0.0/docs/02_concepts}/code/11_config.py +0 -0
- {apify-2.7.2/docs/03_concepts → apify-3.0.0/docs/02_concepts}/code/actor_charge.py +0 -0
- {apify-2.7.2/docs/02_guides → apify-3.0.0/docs/03_guides}/03_playwright.mdx +0 -0
- {apify-2.7.2/docs/02_guides → apify-3.0.0/docs/03_guides}/04_selenium.mdx +0 -0
- /apify-2.7.2/docs/02_guides/05_scrapy.mdx → /apify-3.0.0/docs/03_guides/06_scrapy.mdx +0 -0
- {apify-2.7.2/docs/02_guides → apify-3.0.0/docs/03_guides}/code/scrapy_project/src/__init__.py +0 -0
- {apify-2.7.2/docs/02_guides → apify-3.0.0/docs/03_guides}/code/scrapy_project/src/__main__.py +0 -0
- {apify-2.7.2/docs/02_guides → apify-3.0.0/docs/03_guides}/code/scrapy_project/src/items.py +0 -0
- {apify-2.7.2/docs/02_guides → apify-3.0.0/docs/03_guides}/code/scrapy_project/src/main.py +0 -0
- {apify-2.7.2/docs/02_guides → apify-3.0.0/docs/03_guides}/code/scrapy_project/src/py.typed +0 -0
- {apify-2.7.2/docs/02_guides → apify-3.0.0/docs/03_guides}/code/scrapy_project/src/settings.py +0 -0
- {apify-2.7.2/docs/02_guides → apify-3.0.0/docs/03_guides}/code/scrapy_project/src/spiders/__init__.py +0 -0
- {apify-2.7.2/docs/02_guides → apify-3.0.0/docs/03_guides}/code/scrapy_project/src/spiders/py.typed +0 -0
- {apify-2.7.2/docs/02_guides → apify-3.0.0/docs/03_guides}/code/scrapy_project/src/spiders/title.py +0 -0
- {apify-2.7.2 → apify-3.0.0}/docs/pyproject.toml +0 -0
- {apify-2.7.2 → apify-3.0.0}/renovate.json +0 -0
- {apify-2.7.2 → apify-3.0.0}/src/apify/__init__.py +0 -0
- {apify-2.7.2 → apify-3.0.0}/src/apify/_consts.py +0 -0
- {apify-2.7.2/src/apify/apify_storage_client → apify-3.0.0/src/apify/events}/py.typed +0 -0
- {apify-2.7.2 → apify-3.0.0}/src/apify/py.typed +0 -0
- {apify-2.7.2/src/apify/scrapy/middlewares → apify-3.0.0/src/apify/request_loaders}/py.typed +0 -0
- {apify-2.7.2 → apify-3.0.0}/src/apify/scrapy/__init__.py +0 -0
- {apify-2.7.2 → apify-3.0.0}/src/apify/scrapy/_actor_runner.py +0 -0
- {apify-2.7.2 → apify-3.0.0}/src/apify/scrapy/_async_thread.py +0 -0
- {apify-2.7.2 → apify-3.0.0}/src/apify/scrapy/extensions/__init__.py +0 -0
- {apify-2.7.2 → apify-3.0.0}/src/apify/scrapy/middlewares/__init__.py +0 -0
- {apify-2.7.2 → apify-3.0.0}/src/apify/scrapy/middlewares/apify_proxy.py +0 -0
- {apify-2.7.2/src/apify/scrapy/pipelines → apify-3.0.0/src/apify/scrapy/middlewares}/py.typed +0 -0
- {apify-2.7.2 → apify-3.0.0}/src/apify/scrapy/pipelines/__init__.py +0 -0
- {apify-2.7.2 → apify-3.0.0}/src/apify/scrapy/pipelines/actor_dataset_push.py +0 -0
- {apify-2.7.2/src/apify/scrapy → apify-3.0.0/src/apify/scrapy/pipelines}/py.typed +0 -0
- {apify-2.7.2/src/apify/storages → apify-3.0.0/src/apify/scrapy}/py.typed +0 -0
- {apify-2.7.2 → apify-3.0.0}/src/apify/scrapy/utils.py +0 -0
- /apify-2.7.2/tests/integration/__init__.py → /apify-3.0.0/src/apify/storage_clients/_apify/py.typed +0 -0
- /apify-2.7.2/tests/integration/actor_source_base/src/__init__.py → /apify-3.0.0/src/apify/storage_clients/py.typed +0 -0
- /apify-2.7.2/tests/unit/__init__.py → /apify-3.0.0/src/apify/storages/py.typed +0 -0
- {apify-2.7.2/tests/unit/actor → apify-3.0.0/tests/integration}/__init__.py +0 -0
- {apify-2.7.2/tests/unit/scrapy → apify-3.0.0/tests/integration/actor_source_base/src}/__init__.py +0 -0
- {apify-2.7.2 → apify-3.0.0}/tests/integration/actor_source_base/src/__main__.py +0 -0
- {apify-2.7.2 → apify-3.0.0}/tests/integration/actor_source_base/src/main.py +0 -0
- {apify-2.7.2 → apify-3.0.0}/tests/integration/test_actor_call_timeouts.py +0 -0
- {apify-2.7.2 → apify-3.0.0}/tests/integration/test_actor_charge.py +0 -0
- {apify-2.7.2 → apify-3.0.0}/tests/integration/test_actor_log.py +0 -0
- {apify-2.7.2 → apify-3.0.0}/tests/integration/test_fixtures.py +0 -0
- {apify-2.7.2/tests/unit/scrapy/extensions → apify-3.0.0/tests/unit}/__init__.py +0 -0
- {apify-2.7.2/tests/unit/scrapy/middlewares → apify-3.0.0/tests/unit/actor}/__init__.py +0 -0
- {apify-2.7.2/tests/unit/scrapy/pipelines → apify-3.0.0/tests/unit/events}/__init__.py +0 -0
- {apify-2.7.2/tests/unit/scrapy/requests → apify-3.0.0/tests/unit/scrapy}/__init__.py +0 -0
- {apify-2.7.2/tests/unit/scrapy/utils → apify-3.0.0/tests/unit/scrapy/extensions}/__init__.py +0 -0
- /apify-2.7.2/website/static/.nojekyll → /apify-3.0.0/tests/unit/scrapy/middlewares/__init__.py +0 -0
- {apify-2.7.2 → apify-3.0.0}/tests/unit/scrapy/middlewares/test_apify_proxy.py +0 -0
- {apify-2.7.2 → apify-3.0.0}/tests/unit/scrapy/pipelines/test_actor_dataset_push.py +0 -0
- {apify-2.7.2 → apify-3.0.0}/tests/unit/scrapy/utils/test_apply_apify_settings.py +0 -0
- {apify-2.7.2 → apify-3.0.0}/tests/unit/scrapy/utils/test_get_basic_auth_header.py +0 -0
- {apify-2.7.2 → apify-3.0.0}/website/.eslintrc.json +0 -0
- {apify-2.7.2 → apify-3.0.0}/website/babel.config.js +0 -0
- {apify-2.7.2 → apify-3.0.0}/website/build_api_reference.sh +0 -0
- {apify-2.7.2 → apify-3.0.0}/website/generate_module_shortcuts.py +0 -0
- {apify-2.7.2 → apify-3.0.0}/website/src/components/ApiLink.jsx +0 -0
- {apify-2.7.2 → apify-3.0.0}/website/src/components/Gradients.jsx +0 -0
- {apify-2.7.2 → apify-3.0.0}/website/src/components/Highlights.jsx +0 -0
- {apify-2.7.2 → apify-3.0.0}/website/src/components/Highlights.module.css +0 -0
- {apify-2.7.2 → apify-3.0.0}/website/src/components/RunnableCodeBlock.module.css +0 -0
- {apify-2.7.2 → apify-3.0.0}/website/src/css/custom.css +0 -0
- {apify-2.7.2 → apify-3.0.0}/website/src/pages/home_page_example.py +0 -0
- {apify-2.7.2 → apify-3.0.0}/website/src/pages/index.js +0 -0
- {apify-2.7.2 → apify-3.0.0}/website/static/img/docs-og.png +0 -0
- {apify-2.7.2 → apify-3.0.0}/website/tools/docs-prettier.config.js +0 -0
- {apify-2.7.2 → apify-3.0.0}/website/tools/utils/externalLink.js +0 -0
|
@@ -22,12 +22,12 @@ jobs:
|
|
|
22
22
|
|
|
23
23
|
steps:
|
|
24
24
|
- name: Checkout repository
|
|
25
|
-
uses: actions/checkout@
|
|
25
|
+
uses: actions/checkout@v5
|
|
26
26
|
with:
|
|
27
27
|
token: ${{ secrets.APIFY_SERVICE_ACCOUNT_GITHUB_TOKEN }}
|
|
28
28
|
|
|
29
29
|
- name: Set up Node
|
|
30
|
-
uses: actions/setup-node@
|
|
30
|
+
uses: actions/setup-node@v5
|
|
31
31
|
with:
|
|
32
32
|
node-version: ${{ env.NODE_VERSION }}
|
|
33
33
|
cache: npm
|
|
@@ -50,7 +50,7 @@ jobs:
|
|
|
50
50
|
git push
|
|
51
51
|
|
|
52
52
|
- name: Set up Python
|
|
53
|
-
uses: actions/setup-python@
|
|
53
|
+
uses: actions/setup-python@v6
|
|
54
54
|
with:
|
|
55
55
|
python-version: ${{ env.PYTHON_VERSION }}
|
|
56
56
|
|
|
@@ -72,7 +72,7 @@ jobs:
|
|
|
72
72
|
uses: actions/configure-pages@v5
|
|
73
73
|
|
|
74
74
|
- name: Upload GitHub Pages artifact
|
|
75
|
-
uses: actions/upload-pages-artifact@
|
|
75
|
+
uses: actions/upload-pages-artifact@v4
|
|
76
76
|
with:
|
|
77
77
|
path: ./website/build
|
|
78
78
|
|
|
@@ -11,6 +11,10 @@ on:
|
|
|
11
11
|
# Or it can be triggered manually.
|
|
12
12
|
workflow_dispatch:
|
|
13
13
|
|
|
14
|
+
concurrency:
|
|
15
|
+
group: release
|
|
16
|
+
cancel-in-progress: false
|
|
17
|
+
|
|
14
18
|
jobs:
|
|
15
19
|
release_metadata:
|
|
16
20
|
if: "!startsWith(github.event.head_commit.message, 'docs') && !startsWith(github.event.head_commit.message, 'ci') && startsWith(github.repository, 'apify/')"
|
|
@@ -20,38 +24,38 @@ jobs:
|
|
|
20
24
|
version_number: ${{ steps.release_metadata.outputs.version_number }}
|
|
21
25
|
tag_name: ${{ steps.release_metadata.outputs.tag_name }}
|
|
22
26
|
changelog: ${{ steps.release_metadata.outputs.changelog }}
|
|
23
|
-
existing_changelog_path: CHANGELOG.md
|
|
24
27
|
steps:
|
|
25
28
|
- uses: apify/workflows/git-cliff-release@main
|
|
26
29
|
id: release_metadata
|
|
27
30
|
name: Prepare release metadata
|
|
28
31
|
with:
|
|
29
32
|
release_type: prerelease
|
|
33
|
+
existing_changelog_path: CHANGELOG.md
|
|
30
34
|
|
|
31
35
|
lint_check:
|
|
32
36
|
name: Lint check
|
|
33
37
|
uses: apify/workflows/.github/workflows/python_lint_check.yaml@main
|
|
34
38
|
with:
|
|
35
|
-
python-versions: '["3.
|
|
39
|
+
python-versions: '["3.10", "3.11", "3.12", "3.13"]'
|
|
36
40
|
|
|
37
41
|
type_check:
|
|
38
42
|
name: Type check
|
|
39
43
|
uses: apify/workflows/.github/workflows/python_type_check.yaml@main
|
|
40
44
|
with:
|
|
41
|
-
python-versions: '["3.
|
|
45
|
+
python-versions: '["3.10", "3.11", "3.12", "3.13"]'
|
|
42
46
|
|
|
43
47
|
unit_tests:
|
|
44
48
|
name: Unit tests
|
|
45
49
|
uses: apify/workflows/.github/workflows/python_unit_tests.yaml@main
|
|
46
50
|
with:
|
|
47
|
-
python-versions: '["3.
|
|
51
|
+
python-versions: '["3.10", "3.11", "3.12", "3.13"]'
|
|
48
52
|
|
|
49
53
|
integration_tests:
|
|
50
54
|
name: Integration tests
|
|
51
55
|
uses: apify/workflows/.github/workflows/python_integration_tests.yaml@main
|
|
52
56
|
secrets: inherit
|
|
53
57
|
with:
|
|
54
|
-
python-versions: '["3.
|
|
58
|
+
python-versions: '["3.10", "3.13"]'
|
|
55
59
|
|
|
56
60
|
update_changelog:
|
|
57
61
|
name: Update changelog
|
|
@@ -21,6 +21,10 @@ on:
|
|
|
21
21
|
type: string
|
|
22
22
|
default: ""
|
|
23
23
|
|
|
24
|
+
concurrency:
|
|
25
|
+
group: release
|
|
26
|
+
cancel-in-progress: false
|
|
27
|
+
|
|
24
28
|
jobs:
|
|
25
29
|
release_metadata:
|
|
26
30
|
name: Prepare release metadata
|
|
@@ -43,30 +47,23 @@ jobs:
|
|
|
43
47
|
name: Lint check
|
|
44
48
|
uses: apify/workflows/.github/workflows/python_lint_check.yaml@main
|
|
45
49
|
with:
|
|
46
|
-
python-versions: '["3.
|
|
50
|
+
python-versions: '["3.10", "3.11", "3.12", "3.13"]'
|
|
47
51
|
|
|
48
52
|
type_check:
|
|
49
53
|
name: Type check
|
|
50
54
|
uses: apify/workflows/.github/workflows/python_type_check.yaml@main
|
|
51
55
|
with:
|
|
52
|
-
python-versions: '["3.
|
|
56
|
+
python-versions: '["3.10", "3.11", "3.12", "3.13"]'
|
|
53
57
|
|
|
54
58
|
unit_tests:
|
|
55
59
|
name: Unit tests
|
|
56
60
|
uses: apify/workflows/.github/workflows/python_unit_tests.yaml@main
|
|
57
61
|
with:
|
|
58
|
-
python-versions: '["3.
|
|
59
|
-
|
|
60
|
-
integration_tests:
|
|
61
|
-
name: Integration tests
|
|
62
|
-
uses: apify/workflows/.github/workflows/python_integration_tests.yaml@main
|
|
63
|
-
secrets: inherit
|
|
64
|
-
with:
|
|
65
|
-
python-versions: '["3.9", "3.13"]'
|
|
62
|
+
python-versions: '["3.10", "3.11", "3.12", "3.13"]'
|
|
66
63
|
|
|
67
64
|
update_changelog:
|
|
68
65
|
name: Update changelog
|
|
69
|
-
needs: [release_metadata, lint_check, type_check, unit_tests
|
|
66
|
+
needs: [release_metadata, lint_check, type_check, unit_tests]
|
|
70
67
|
uses: apify/workflows/.github/workflows/python_bump_and_update_changelog.yaml@main
|
|
71
68
|
with:
|
|
72
69
|
version_number: ${{ needs.release_metadata.outputs.version_number }}
|
|
@@ -6,24 +6,29 @@ on:
|
|
|
6
6
|
# step required for PRs from forks. This prevents their potential exposure.
|
|
7
7
|
pull_request:
|
|
8
8
|
|
|
9
|
+
# Trigger for pushing to the master branch is handled by the pre-release workflow.
|
|
10
|
+
|
|
11
|
+
# It should also be possible to trigger checks manually
|
|
12
|
+
workflow_dispatch:
|
|
13
|
+
|
|
9
14
|
jobs:
|
|
10
15
|
lint_check:
|
|
11
16
|
name: Lint check
|
|
12
17
|
uses: apify/workflows/.github/workflows/python_lint_check.yaml@main
|
|
13
18
|
with:
|
|
14
|
-
python-versions: '["3.
|
|
19
|
+
python-versions: '["3.10", "3.11", "3.12", "3.13"]'
|
|
15
20
|
|
|
16
21
|
type_check:
|
|
17
22
|
name: Type check
|
|
18
23
|
uses: apify/workflows/.github/workflows/python_type_check.yaml@main
|
|
19
24
|
with:
|
|
20
|
-
python-versions: '["3.
|
|
25
|
+
python-versions: '["3.10", "3.11", "3.12", "3.13"]'
|
|
21
26
|
|
|
22
27
|
unit_tests:
|
|
23
28
|
name: Unit tests
|
|
24
29
|
uses: apify/workflows/.github/workflows/python_unit_tests.yaml@main
|
|
25
30
|
with:
|
|
26
|
-
python-versions: '["3.
|
|
31
|
+
python-versions: '["3.10", "3.11", "3.12", "3.13"]'
|
|
27
32
|
|
|
28
33
|
docs_check:
|
|
29
34
|
name: Docs check
|
|
@@ -31,8 +36,7 @@ jobs:
|
|
|
31
36
|
|
|
32
37
|
integration_tests:
|
|
33
38
|
name: Integration tests
|
|
34
|
-
needs: [lint_check, type_check, unit_tests]
|
|
35
39
|
uses: apify/workflows/.github/workflows/python_integration_tests.yaml@main
|
|
36
40
|
secrets: inherit
|
|
37
41
|
with:
|
|
38
|
-
python-versions: '["3.
|
|
42
|
+
python-versions: '["3.10", "3.13"]'
|