apify 1.5.0b1__tar.gz → 1.5.1__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-1.5.0b1 → apify-1.5.1}/PKG-INFO +1 -1
- {apify-1.5.0b1 → apify-1.5.1}/pyproject.toml +1 -1
- {apify-1.5.0b1 → apify-1.5.1}/src/apify/scrapy/scheduler.py +0 -10
- {apify-1.5.0b1 → apify-1.5.1}/src/apify.egg-info/PKG-INFO +1 -1
- {apify-1.5.0b1 → apify-1.5.1}/LICENSE +0 -0
- {apify-1.5.0b1 → apify-1.5.1}/README.md +0 -0
- {apify-1.5.0b1 → apify-1.5.1}/setup.cfg +0 -0
- {apify-1.5.0b1 → apify-1.5.1}/src/apify/__init__.py +0 -0
- {apify-1.5.0b1 → apify-1.5.1}/src/apify/_crypto.py +0 -0
- {apify-1.5.0b1 → apify-1.5.1}/src/apify/_memory_storage/__init__.py +0 -0
- {apify-1.5.0b1 → apify-1.5.1}/src/apify/_memory_storage/file_storage_utils.py +0 -0
- {apify-1.5.0b1 → apify-1.5.1}/src/apify/_memory_storage/memory_storage_client.py +0 -0
- {apify-1.5.0b1 → apify-1.5.1}/src/apify/_memory_storage/resource_clients/__init__.py +0 -0
- {apify-1.5.0b1 → apify-1.5.1}/src/apify/_memory_storage/resource_clients/base_resource_client.py +0 -0
- {apify-1.5.0b1 → apify-1.5.1}/src/apify/_memory_storage/resource_clients/base_resource_collection_client.py +0 -0
- {apify-1.5.0b1 → apify-1.5.1}/src/apify/_memory_storage/resource_clients/dataset.py +0 -0
- {apify-1.5.0b1 → apify-1.5.1}/src/apify/_memory_storage/resource_clients/dataset_collection.py +0 -0
- {apify-1.5.0b1 → apify-1.5.1}/src/apify/_memory_storage/resource_clients/key_value_store.py +0 -0
- {apify-1.5.0b1 → apify-1.5.1}/src/apify/_memory_storage/resource_clients/key_value_store_collection.py +0 -0
- {apify-1.5.0b1 → apify-1.5.1}/src/apify/_memory_storage/resource_clients/request_queue.py +0 -0
- {apify-1.5.0b1 → apify-1.5.1}/src/apify/_memory_storage/resource_clients/request_queue_collection.py +0 -0
- {apify-1.5.0b1 → apify-1.5.1}/src/apify/_utils.py +0 -0
- {apify-1.5.0b1 → apify-1.5.1}/src/apify/actor.py +0 -0
- {apify-1.5.0b1 → apify-1.5.1}/src/apify/config.py +0 -0
- {apify-1.5.0b1 → apify-1.5.1}/src/apify/consts.py +0 -0
- {apify-1.5.0b1 → apify-1.5.1}/src/apify/event_manager.py +0 -0
- {apify-1.5.0b1 → apify-1.5.1}/src/apify/log.py +0 -0
- {apify-1.5.0b1 → apify-1.5.1}/src/apify/proxy_configuration.py +0 -0
- {apify-1.5.0b1 → apify-1.5.1}/src/apify/py.typed +0 -0
- {apify-1.5.0b1 → apify-1.5.1}/src/apify/scrapy/__init__.py +0 -0
- {apify-1.5.0b1 → apify-1.5.1}/src/apify/scrapy/middlewares/__init__.py +0 -0
- {apify-1.5.0b1 → apify-1.5.1}/src/apify/scrapy/middlewares/apify_proxy.py +0 -0
- {apify-1.5.0b1 → apify-1.5.1}/src/apify/scrapy/middlewares/apify_retry.py +0 -0
- {apify-1.5.0b1 → apify-1.5.1}/src/apify/scrapy/pipelines.py +0 -0
- {apify-1.5.0b1 → apify-1.5.1}/src/apify/scrapy/utils.py +0 -0
- {apify-1.5.0b1 → apify-1.5.1}/src/apify/storages/__init__.py +0 -0
- {apify-1.5.0b1 → apify-1.5.1}/src/apify/storages/base_storage.py +0 -0
- {apify-1.5.0b1 → apify-1.5.1}/src/apify/storages/dataset.py +0 -0
- {apify-1.5.0b1 → apify-1.5.1}/src/apify/storages/key_value_store.py +0 -0
- {apify-1.5.0b1 → apify-1.5.1}/src/apify/storages/request_queue.py +0 -0
- {apify-1.5.0b1 → apify-1.5.1}/src/apify/storages/storage_client_manager.py +0 -0
- {apify-1.5.0b1 → apify-1.5.1}/src/apify.egg-info/SOURCES.txt +0 -0
- {apify-1.5.0b1 → apify-1.5.1}/src/apify.egg-info/dependency_links.txt +0 -0
- {apify-1.5.0b1 → apify-1.5.1}/src/apify.egg-info/requires.txt +0 -0
- {apify-1.5.0b1 → apify-1.5.1}/src/apify.egg-info/top_level.txt +0 -0
|
@@ -49,16 +49,6 @@ class ApifyScheduler(BaseScheduler):
|
|
|
49
49
|
traceback.print_exc()
|
|
50
50
|
raise
|
|
51
51
|
|
|
52
|
-
def close(self: ApifyScheduler, reason: str) -> None:
|
|
53
|
-
"""Close the scheduler.
|
|
54
|
-
|
|
55
|
-
Args:
|
|
56
|
-
reason: The reason for closing the scheduler.
|
|
57
|
-
"""
|
|
58
|
-
Actor.log.debug(f'ApifyScheduler.close was called (reason={reason})...')
|
|
59
|
-
nested_event_loop.stop()
|
|
60
|
-
nested_event_loop.close()
|
|
61
|
-
|
|
62
52
|
def has_pending_requests(self: ApifyScheduler) -> bool:
|
|
63
53
|
"""Check if the scheduler has any pending requests.
|
|
64
54
|
|
|
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-1.5.0b1 → apify-1.5.1}/src/apify/_memory_storage/resource_clients/base_resource_client.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
{apify-1.5.0b1 → apify-1.5.1}/src/apify/_memory_storage/resource_clients/dataset_collection.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{apify-1.5.0b1 → apify-1.5.1}/src/apify/_memory_storage/resource_clients/request_queue_collection.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
|