apify 2.0.0b3__py3-none-any.whl → 2.0.0b5__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of apify might be problematic. Click here for more details.
- apify/_actor.py +1 -1
- apify/_platform_event_manager.py +1 -1
- apify/_proxy_configuration.py +1 -1
- apify/apify_storage_client/py.typed +0 -0
- apify/{_log.py → log.py} +1 -1
- apify/scrapy/middlewares/py.typed +0 -0
- apify/scrapy/pipelines/py.typed +0 -0
- apify/scrapy/py.typed +0 -0
- apify/storages/py.typed +0 -0
- {apify-2.0.0b3.dist-info → apify-2.0.0b5.dist-info}/METADATA +10 -16
- {apify-2.0.0b3.dist-info → apify-2.0.0b5.dist-info}/RECORD +13 -8
- {apify-2.0.0b3.dist-info → apify-2.0.0b5.dist-info}/LICENSE +0 -0
- {apify-2.0.0b3.dist-info → apify-2.0.0b5.dist-info}/WHEEL +0 -0
apify/_actor.py
CHANGED
|
@@ -19,11 +19,11 @@ from crawlee.events._types import Event, EventPersistStateData
|
|
|
19
19
|
from apify._configuration import Configuration
|
|
20
20
|
from apify._consts import EVENT_LISTENERS_TIMEOUT
|
|
21
21
|
from apify._crypto import decrypt_input_secrets, load_private_key
|
|
22
|
-
from apify._log import logger
|
|
23
22
|
from apify._platform_event_manager import EventManager, LocalEventManager, PlatformEventManager
|
|
24
23
|
from apify._proxy_configuration import ProxyConfiguration
|
|
25
24
|
from apify._utils import get_system_info, is_running_in_ipython
|
|
26
25
|
from apify.apify_storage_client import ApifyStorageClient
|
|
26
|
+
from apify.log import logger
|
|
27
27
|
from apify.storages import Dataset, KeyValueStore, RequestQueue
|
|
28
28
|
|
|
29
29
|
if TYPE_CHECKING:
|
apify/_platform_event_manager.py
CHANGED
apify/_proxy_configuration.py
CHANGED
|
@@ -16,7 +16,7 @@ from crawlee.proxy_configuration import ProxyInfo as CrawleeProxyInfo
|
|
|
16
16
|
from crawlee.proxy_configuration import _NewUrlFunction
|
|
17
17
|
|
|
18
18
|
from apify._configuration import Configuration
|
|
19
|
-
from apify.
|
|
19
|
+
from apify.log import logger
|
|
20
20
|
|
|
21
21
|
if TYPE_CHECKING:
|
|
22
22
|
from apify_client import ApifyClientAsync
|
|
File without changes
|
apify/{_log.py → log.py}
RENAMED
|
File without changes
|
|
File without changes
|
apify/scrapy/py.typed
ADDED
|
File without changes
|
apify/storages/py.typed
ADDED
|
File without changes
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: apify
|
|
3
|
-
Version: 2.0.
|
|
3
|
+
Version: 2.0.0b5
|
|
4
4
|
Summary: Apify SDK for Python
|
|
5
5
|
License: Apache-2.0
|
|
6
6
|
Keywords: apify,sdk,automation,chrome,crawlee,crawler,headless,scraper,scraping
|
|
@@ -18,21 +18,15 @@ Classifier: Programming Language :: Python :: 3.11
|
|
|
18
18
|
Classifier: Programming Language :: Python :: 3.12
|
|
19
19
|
Classifier: Topic :: Software Development :: Libraries
|
|
20
20
|
Provides-Extra: scrapy
|
|
21
|
-
Requires-Dist:
|
|
22
|
-
Requires-Dist:
|
|
23
|
-
Requires-Dist:
|
|
24
|
-
Requires-Dist:
|
|
25
|
-
Requires-Dist:
|
|
26
|
-
Requires-Dist:
|
|
27
|
-
Requires-Dist:
|
|
28
|
-
Requires-Dist:
|
|
29
|
-
Requires-Dist:
|
|
30
|
-
Requires-Dist: psutil (>=6.0.0,<7.0.0)
|
|
31
|
-
Requires-Dist: pyee (>=11.0.0,<12.0.0)
|
|
32
|
-
Requires-Dist: scrapy (>=2.11.0,<3.0.0) ; extra == "scrapy"
|
|
33
|
-
Requires-Dist: sortedcollections (>=2.0.0,<3.0.0)
|
|
34
|
-
Requires-Dist: typing-extensions (>=4.1.0,<5.0.0)
|
|
35
|
-
Requires-Dist: websockets (>=10.1,<11.0)
|
|
21
|
+
Requires-Dist: apify-client (>=1.7.1)
|
|
22
|
+
Requires-Dist: apify-shared (>=1.1.2)
|
|
23
|
+
Requires-Dist: crawlee (>=0.3.0)
|
|
24
|
+
Requires-Dist: cryptography (>=42.0.0)
|
|
25
|
+
Requires-Dist: httpx (>=0.27.0)
|
|
26
|
+
Requires-Dist: lazy-object-proxy (>=1.10.0)
|
|
27
|
+
Requires-Dist: scrapy (>=2.11.0) ; extra == "scrapy"
|
|
28
|
+
Requires-Dist: typing-extensions (>=4.1.0)
|
|
29
|
+
Requires-Dist: websockets (>=10.0)
|
|
36
30
|
Project-URL: Apify Homepage, https://apify.com
|
|
37
31
|
Project-URL: Changelog, https://docs.apify.com/sdk/python/docs/changelog
|
|
38
32
|
Project-URL: Documentation, https://docs.apify.com/sdk/python/
|
|
@@ -1,11 +1,10 @@
|
|
|
1
1
|
apify/__init__.py,sha256=sZis2RN6B5wlkpF-fS4ludmwAl9KOiFbKGLsRQYx2AQ,358
|
|
2
|
-
apify/_actor.py,sha256=
|
|
2
|
+
apify/_actor.py,sha256=SoBDV-15FrStxqf8iGmeg0GOZQDVR-19g2V3l0i3LUw,40748
|
|
3
3
|
apify/_configuration.py,sha256=gf7YOun32Whc9DamhoWDLmcUeNwtWVmmBPrl4oq6s4I,8997
|
|
4
4
|
apify/_consts.py,sha256=_Xq4hOfOA1iZ3n1P967YWdyncKivpbX6RTlp_qanUoE,330
|
|
5
5
|
apify/_crypto.py,sha256=b4Czs1NLPkaNzkPjovObjSIbsKnRrgtBkM9JvOysUMA,5612
|
|
6
|
-
apify/
|
|
7
|
-
apify/
|
|
8
|
-
apify/_proxy_configuration.py,sha256=5iCzdyd2juOS3cRAPrso65Ds_mcQidpAjQCkzb9Rr6Q,13075
|
|
6
|
+
apify/_platform_event_manager.py,sha256=ZZuTXY1UndqCqJSe3qIFZhUvGvv_a3fAZUqnouPAsOo,7344
|
|
7
|
+
apify/_proxy_configuration.py,sha256=VdKh_AyCwaCUlpCyaCe30L2S9OZ-vL1SN1g8oLwSeYA,13074
|
|
9
8
|
apify/_utils.py,sha256=x4lnR9RNulySiEQTft-GeQqUcJsRr0k8p0Sv9NTeWFg,638
|
|
10
9
|
apify/apify_storage_client/__init__.py,sha256=-UbR68bFsDR6ln8OFs4t50eqcnY36hujO-SeOt-KmcA,114
|
|
11
10
|
apify/apify_storage_client/_apify_storage_client.py,sha256=xi4OFchxhe-1-sykanH6Zcya4OcBhn2uf7OQ1pV4Ins,2338
|
|
@@ -15,17 +14,23 @@ apify/apify_storage_client/_key_value_store_client.py,sha256=uyeQgb75sGFsqIS4sq4
|
|
|
15
14
|
apify/apify_storage_client/_key_value_store_collection_client.py,sha256=vCtMTI-jx89Qp5WHILDNkCthwLuv0MAwm1J_5E4aypU,1519
|
|
16
15
|
apify/apify_storage_client/_request_queue_client.py,sha256=jAiFkaJ38_myHFGTw-Rk21wmpbN0UCR2w2SFoimFGFc,5826
|
|
17
16
|
apify/apify_storage_client/_request_queue_collection_client.py,sha256=NnO73UJ9ZrjV8xoudo30wfaM-SojRkG0guhxDyB-K1g,1527
|
|
17
|
+
apify/apify_storage_client/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
18
|
+
apify/log.py,sha256=Shns441HqiMC9FDdtmftgQmnJWQL3DAKHBRA0E7lbdQ,390
|
|
18
19
|
apify/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
19
20
|
apify/scrapy/__init__.py,sha256=qDPV_zTRFaUqoFOyS5g4uBfz-UCkmWYJ82VXQ_3Cw6k,348
|
|
20
21
|
apify/scrapy/middlewares/__init__.py,sha256=tfW-d3WFWLeNEjL8fTmon6NwgD-OXx1Bw2fBdU-wPy4,114
|
|
21
22
|
apify/scrapy/middlewares/apify_proxy.py,sha256=6iUmbg40vX5bGoBr88hi3VdaAUUeJT9qbPHCfJjC5Kw,5838
|
|
23
|
+
apify/scrapy/middlewares/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
22
24
|
apify/scrapy/pipelines/__init__.py,sha256=GWPeLN_Zwj8vRBWtXW6DaxdB7mvyQ7Jw5Tz1ccgWlZI,119
|
|
23
25
|
apify/scrapy/pipelines/actor_dataset_push.py,sha256=QERmmExQOGIKQ70-p-lCj5qyE-c-fnYplEqd4mgaB1Q,953
|
|
26
|
+
apify/scrapy/pipelines/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
27
|
+
apify/scrapy/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
24
28
|
apify/scrapy/requests.py,sha256=pmm2M-cwrTXyI3t1nRBo9pS6nHfc4zkzS25-NXxzd9I,7637
|
|
25
29
|
apify/scrapy/scheduler.py,sha256=AAIKY5i1QxkC1mtmix6n3M2eQaOw-d1T56Noue9xToc,6013
|
|
26
30
|
apify/scrapy/utils.py,sha256=tz_Y8CTqe6KbyMMhLF3m7qqR46jtNH5U7Ty7e19roPU,2814
|
|
27
31
|
apify/storages/__init__.py,sha256=-9tEYJVabVs_eRVhUehxN58GH0UG8OfuGjGwuDieP2M,122
|
|
28
|
-
apify
|
|
29
|
-
apify-2.0.
|
|
30
|
-
apify-2.0.
|
|
31
|
-
apify-2.0.
|
|
32
|
+
apify/storages/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
33
|
+
apify-2.0.0b5.dist-info/LICENSE,sha256=AsFjHssKjj4LGd2ZCqXn6FBzMqcWdjQre1byPPSypVw,11355
|
|
34
|
+
apify-2.0.0b5.dist-info/METADATA,sha256=z_W0-vtp4hW7Xrj7vN514hWCotUIOSXAoVoUzIYmubo,5231
|
|
35
|
+
apify-2.0.0b5.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
|
|
36
|
+
apify-2.0.0b5.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|