apify 2.1.0b7__py3-none-any.whl → 2.1.0b9__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/__init__.py +1 -1
- apify/_configuration.py +1 -1
- apify/_proxy_configuration.py +1 -1
- apify/scrapy/__init__.py +2 -2
- apify/storages/__init__.py +1 -1
- {apify-2.1.0b7.dist-info → apify-2.1.0b9.dist-info}/METADATA +2 -2
- {apify-2.1.0b7.dist-info → apify-2.1.0b9.dist-info}/RECORD +9 -9
- {apify-2.1.0b7.dist-info → apify-2.1.0b9.dist-info}/LICENSE +0 -0
- {apify-2.1.0b7.dist-info → apify-2.1.0b9.dist-info}/WHEEL +0 -0
apify/__init__.py
CHANGED
apify/_configuration.py
CHANGED
|
@@ -323,4 +323,4 @@ class Configuration(CrawleeConfiguration):
|
|
|
323
323
|
|
|
324
324
|
|
|
325
325
|
# Monkey-patch the base class so that it works with the extended configuration
|
|
326
|
-
CrawleeConfiguration.get_global_configuration = Configuration.get_global_configuration # type: ignore
|
|
326
|
+
CrawleeConfiguration.get_global_configuration = Configuration.get_global_configuration # type: ignore[method-assign]
|
apify/_proxy_configuration.py
CHANGED
|
@@ -280,7 +280,7 @@ class ProxyConfiguration(CrawleeProxyConfiguration):
|
|
|
280
280
|
return
|
|
281
281
|
|
|
282
282
|
status = None
|
|
283
|
-
async with httpx.AsyncClient(
|
|
283
|
+
async with httpx.AsyncClient(proxy=proxy_info.url, timeout=10) as client:
|
|
284
284
|
for _ in range(2):
|
|
285
285
|
try:
|
|
286
286
|
response = await client.get(proxy_status_url)
|
apify/scrapy/__init__.py
CHANGED
|
@@ -3,9 +3,9 @@ from apify.scrapy.scheduler import ApifyScheduler
|
|
|
3
3
|
from apify.scrapy.utils import get_basic_auth_header, get_running_event_loop_id
|
|
4
4
|
|
|
5
5
|
__all__ = [
|
|
6
|
-
'to_apify_request',
|
|
7
|
-
'to_scrapy_request',
|
|
8
6
|
'ApifyScheduler',
|
|
9
7
|
'get_basic_auth_header',
|
|
10
8
|
'get_running_event_loop_id',
|
|
9
|
+
'to_apify_request',
|
|
10
|
+
'to_scrapy_request',
|
|
11
11
|
]
|
apify/storages/__init__.py
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: apify
|
|
3
|
-
Version: 2.1.
|
|
3
|
+
Version: 2.1.0b9
|
|
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
|
|
@@ -23,7 +23,7 @@ Requires-Dist: apify-client (>=1.8.1)
|
|
|
23
23
|
Requires-Dist: apify-shared (>=1.1.2)
|
|
24
24
|
Requires-Dist: crawlee (>=0.4.0,<0.5.0)
|
|
25
25
|
Requires-Dist: cryptography (>=42.0.0)
|
|
26
|
-
Requires-Dist: httpx (>=0.27.0)
|
|
26
|
+
Requires-Dist: httpx (>=0.27.0,<0.28.0)
|
|
27
27
|
Requires-Dist: lazy-object-proxy (>=1.10.0)
|
|
28
28
|
Requires-Dist: scrapy (>=2.11.0) ; extra == "scrapy"
|
|
29
29
|
Requires-Dist: typing-extensions (>=4.1.0)
|
|
@@ -1,11 +1,11 @@
|
|
|
1
|
-
apify/__init__.py,sha256=
|
|
1
|
+
apify/__init__.py,sha256=99ynaDWBLEcCjdLq7R0Exy_iACsXiXoQ8VUZKmbzTeM,550
|
|
2
2
|
apify/_actor.py,sha256=AUviY4qrX4UoN7fSZtXXSHqEk4rrQwBymMLjkgb4Mzg,41887
|
|
3
|
-
apify/_configuration.py,sha256=
|
|
3
|
+
apify/_configuration.py,sha256=WC9X5gQ-e5r4BGQw-Kaq77oxLlPx7vtq0M-L4VlKrIc,9633
|
|
4
4
|
apify/_consts.py,sha256=_Xq4hOfOA1iZ3n1P967YWdyncKivpbX6RTlp_qanUoE,330
|
|
5
5
|
apify/_crypto.py,sha256=e0_aM3l9_5Osk-jszYOOjrAKK60OggSHbiw5c30QnsU,5638
|
|
6
6
|
apify/_models.py,sha256=Btlz-23obKY5tJ75JnUwkVNC2lmU1IEBbdU3HvWaVhg,5748
|
|
7
7
|
apify/_platform_event_manager.py,sha256=44xyV0Lpzf4h4VZ0rkyYg_nhbQkEONNor8_Z9gIKO40,7899
|
|
8
|
-
apify/_proxy_configuration.py,sha256
|
|
8
|
+
apify/_proxy_configuration.py,sha256=vdDiE5dfyNQYEXKXnj0jcgL3rG3-qanwNSybrVl1xT8,13167
|
|
9
9
|
apify/_utils.py,sha256=CCLkpAsZKp00ykm88Z_Fbck5PNT0j6mJYOuD0RxzZUs,1620
|
|
10
10
|
apify/apify_storage_client/__init__.py,sha256=-UbR68bFsDR6ln8OFs4t50eqcnY36hujO-SeOt-KmcA,114
|
|
11
11
|
apify/apify_storage_client/_apify_storage_client.py,sha256=NsZBleJNHLBXVyG__bVjdCGEI30cnmVZngCbQaVekfk,2397
|
|
@@ -18,7 +18,7 @@ apify/apify_storage_client/_request_queue_collection_client.py,sha256=NnO73UJ9Zr
|
|
|
18
18
|
apify/apify_storage_client/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
19
19
|
apify/log.py,sha256=zElFyEp2RJN0kiHEwJhcjSCAuHrba5zYiq4pK2xsL_o,1450
|
|
20
20
|
apify/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
21
|
-
apify/scrapy/__init__.py,sha256=
|
|
21
|
+
apify/scrapy/__init__.py,sha256=HE5wCN7-DZKPydLCOvjNyLuL3CvN2fUFweXfrDfe1Ss,348
|
|
22
22
|
apify/scrapy/middlewares/__init__.py,sha256=tfW-d3WFWLeNEjL8fTmon6NwgD-OXx1Bw2fBdU-wPy4,114
|
|
23
23
|
apify/scrapy/middlewares/apify_proxy.py,sha256=9_-hJqTwQ4yVMjvN9zkJ_GXJADzrrYu8QoHZ6IX6fDs,5764
|
|
24
24
|
apify/scrapy/middlewares/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -29,10 +29,10 @@ apify/scrapy/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
|
29
29
|
apify/scrapy/requests.py,sha256=yZ9hIsz2YyqOoOwzN9F1h76wG4qwawrI6h_6xq0I7Iw,7599
|
|
30
30
|
apify/scrapy/scheduler.py,sha256=03kZxejWWb-TofJ-vpSZuQ28rT-qNjhhpC-QeO2OzoU,5977
|
|
31
31
|
apify/scrapy/utils.py,sha256=758DcHCSAgCTProY0QX74uJ1XrzVsQwvCmFanj2f_3Q,2928
|
|
32
|
-
apify/storages/__init__.py,sha256=
|
|
32
|
+
apify/storages/__init__.py,sha256=FW-z6ubuPnHGM-Wp15T8mR5q6lnpDGrCW-IkgZd5L30,177
|
|
33
33
|
apify/storages/_request_list.py,sha256=4nrvSdMUF-kiwGVIPEfIOygLKgjUpO37Jl8Om-jRbIU,5858
|
|
34
34
|
apify/storages/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
35
|
-
apify-2.1.
|
|
36
|
-
apify-2.1.
|
|
37
|
-
apify-2.1.
|
|
38
|
-
apify-2.1.
|
|
35
|
+
apify-2.1.0b9.dist-info/LICENSE,sha256=AsFjHssKjj4LGd2ZCqXn6FBzMqcWdjQre1byPPSypVw,11355
|
|
36
|
+
apify-2.1.0b9.dist-info/METADATA,sha256=dKhhf_vZ7xZfzCjmEkJh-KE-GrgH4OTLQqu7vh5kF2Q,8680
|
|
37
|
+
apify-2.1.0b9.dist-info/WHEEL,sha256=Nq82e9rUAnEjt98J6MlVmMCZb-t9cYE2Ir1kpBmnWfs,88
|
|
38
|
+
apify-2.1.0b9.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|