apify 1.7.2b1__tar.gz → 1.7.2b2__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.

Files changed (46) hide show
  1. {apify-1.7.2b1 → apify-1.7.2b2}/PKG-INFO +8 -7
  2. {apify-1.7.2b1 → apify-1.7.2b2}/pyproject.toml +9 -8
  3. {apify-1.7.2b1 → apify-1.7.2b2}/src/apify.egg-info/PKG-INFO +8 -7
  4. {apify-1.7.2b1 → apify-1.7.2b2}/src/apify.egg-info/requires.txt +7 -6
  5. {apify-1.7.2b1 → apify-1.7.2b2}/LICENSE +0 -0
  6. {apify-1.7.2b1 → apify-1.7.2b2}/README.md +0 -0
  7. {apify-1.7.2b1 → apify-1.7.2b2}/setup.cfg +0 -0
  8. {apify-1.7.2b1 → apify-1.7.2b2}/src/apify/__init__.py +0 -0
  9. {apify-1.7.2b1 → apify-1.7.2b2}/src/apify/_crypto.py +0 -0
  10. {apify-1.7.2b1 → apify-1.7.2b2}/src/apify/_memory_storage/__init__.py +0 -0
  11. {apify-1.7.2b1 → apify-1.7.2b2}/src/apify/_memory_storage/file_storage_utils.py +0 -0
  12. {apify-1.7.2b1 → apify-1.7.2b2}/src/apify/_memory_storage/memory_storage_client.py +0 -0
  13. {apify-1.7.2b1 → apify-1.7.2b2}/src/apify/_memory_storage/resource_clients/__init__.py +0 -0
  14. {apify-1.7.2b1 → apify-1.7.2b2}/src/apify/_memory_storage/resource_clients/base_resource_client.py +0 -0
  15. {apify-1.7.2b1 → apify-1.7.2b2}/src/apify/_memory_storage/resource_clients/base_resource_collection_client.py +0 -0
  16. {apify-1.7.2b1 → apify-1.7.2b2}/src/apify/_memory_storage/resource_clients/dataset.py +0 -0
  17. {apify-1.7.2b1 → apify-1.7.2b2}/src/apify/_memory_storage/resource_clients/dataset_collection.py +0 -0
  18. {apify-1.7.2b1 → apify-1.7.2b2}/src/apify/_memory_storage/resource_clients/key_value_store.py +0 -0
  19. {apify-1.7.2b1 → apify-1.7.2b2}/src/apify/_memory_storage/resource_clients/key_value_store_collection.py +0 -0
  20. {apify-1.7.2b1 → apify-1.7.2b2}/src/apify/_memory_storage/resource_clients/request_queue.py +0 -0
  21. {apify-1.7.2b1 → apify-1.7.2b2}/src/apify/_memory_storage/resource_clients/request_queue_collection.py +0 -0
  22. {apify-1.7.2b1 → apify-1.7.2b2}/src/apify/_utils.py +0 -0
  23. {apify-1.7.2b1 → apify-1.7.2b2}/src/apify/actor.py +0 -0
  24. {apify-1.7.2b1 → apify-1.7.2b2}/src/apify/config.py +0 -0
  25. {apify-1.7.2b1 → apify-1.7.2b2}/src/apify/consts.py +0 -0
  26. {apify-1.7.2b1 → apify-1.7.2b2}/src/apify/event_manager.py +0 -0
  27. {apify-1.7.2b1 → apify-1.7.2b2}/src/apify/log.py +0 -0
  28. {apify-1.7.2b1 → apify-1.7.2b2}/src/apify/proxy_configuration.py +0 -0
  29. {apify-1.7.2b1 → apify-1.7.2b2}/src/apify/py.typed +0 -0
  30. {apify-1.7.2b1 → apify-1.7.2b2}/src/apify/scrapy/__init__.py +0 -0
  31. {apify-1.7.2b1 → apify-1.7.2b2}/src/apify/scrapy/middlewares/__init__.py +0 -0
  32. {apify-1.7.2b1 → apify-1.7.2b2}/src/apify/scrapy/middlewares/apify_proxy.py +0 -0
  33. {apify-1.7.2b1 → apify-1.7.2b2}/src/apify/scrapy/pipelines/__init__.py +0 -0
  34. {apify-1.7.2b1 → apify-1.7.2b2}/src/apify/scrapy/pipelines/actor_dataset_push.py +0 -0
  35. {apify-1.7.2b1 → apify-1.7.2b2}/src/apify/scrapy/requests.py +0 -0
  36. {apify-1.7.2b1 → apify-1.7.2b2}/src/apify/scrapy/scheduler.py +0 -0
  37. {apify-1.7.2b1 → apify-1.7.2b2}/src/apify/scrapy/utils.py +0 -0
  38. {apify-1.7.2b1 → apify-1.7.2b2}/src/apify/storages/__init__.py +0 -0
  39. {apify-1.7.2b1 → apify-1.7.2b2}/src/apify/storages/base_storage.py +0 -0
  40. {apify-1.7.2b1 → apify-1.7.2b2}/src/apify/storages/dataset.py +0 -0
  41. {apify-1.7.2b1 → apify-1.7.2b2}/src/apify/storages/key_value_store.py +0 -0
  42. {apify-1.7.2b1 → apify-1.7.2b2}/src/apify/storages/request_queue.py +0 -0
  43. {apify-1.7.2b1 → apify-1.7.2b2}/src/apify/storages/storage_client_manager.py +0 -0
  44. {apify-1.7.2b1 → apify-1.7.2b2}/src/apify.egg-info/SOURCES.txt +0 -0
  45. {apify-1.7.2b1 → apify-1.7.2b2}/src/apify.egg-info/dependency_links.txt +0 -0
  46. {apify-1.7.2b1 → apify-1.7.2b2}/src/apify.egg-info/top_level.txt +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: apify
3
- Version: 1.7.2b1
3
+ Version: 1.7.2b2
4
4
  Summary: Apify SDK for Python
5
5
  Author-email: "Apify Technologies s.r.o." <support@apify.com>
6
6
  License: Apache Software License
@@ -24,16 +24,16 @@ Classifier: Topic :: Software Development :: Libraries
24
24
  Requires-Python: >=3.8
25
25
  Description-Content-Type: text/markdown
26
26
  License-File: LICENSE
27
- Requires-Dist: apify-client~=1.6.2
28
- Requires-Dist: apify-shared~=1.1.1
27
+ Requires-Dist: apify-client~=1.6.0
28
+ Requires-Dist: apify-shared~=1.1.0
29
29
  Requires-Dist: aiofiles>=22.1.0
30
30
  Requires-Dist: aioshutil>=1.0
31
31
  Requires-Dist: colorama>=0.4.6
32
32
  Requires-Dist: cryptography>=39.0.0
33
- Requires-Dist: httpx>=0.24.1
34
- Requires-Dist: psutil>=5.9.5
35
- Requires-Dist: pyee>=11.0.1
36
- Requires-Dist: sortedcollections>=2.0.1
33
+ Requires-Dist: httpx>=0.24.0
34
+ Requires-Dist: psutil>=5.9.0
35
+ Requires-Dist: pyee>=11.0.0
36
+ Requires-Dist: sortedcollections>=2.0.0
37
37
  Requires-Dist: typing-extensions>=4.1.0
38
38
  Requires-Dist: websockets>=10.1
39
39
  Provides-Extra: dev
@@ -50,6 +50,7 @@ Requires-Dist: pytest-timeout~=2.3.0; extra == "dev"
50
50
  Requires-Dist: pytest-xdist~=3.6.0; extra == "dev"
51
51
  Requires-Dist: respx~=0.21.0; extra == "dev"
52
52
  Requires-Dist: ruff~=0.4.0; extra == "dev"
53
+ Requires-Dist: setuptools~=70.0.0; extra == "dev"
53
54
  Requires-Dist: twine~=5.1.0; extra == "dev"
54
55
  Requires-Dist: types-aiofiles~=23.2.0.20240403; extra == "dev"
55
56
  Requires-Dist: types-colorama~=0.4.15.20240311; extra == "dev"
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "apify"
3
- version = "1.7.2b1"
3
+ version = "1.7.2b2"
4
4
  description = "Apify SDK for Python"
5
5
  readme = "README.md"
6
6
  license = { text = "Apache Software License" }
@@ -26,16 +26,16 @@ requires-python = ">=3.8"
26
26
  # compatibility with a wide range of external packages. This decision was discussed in detail in the following PR:
27
27
  # https://github.com/apify/apify-sdk-python/pull/154
28
28
  dependencies = [
29
- "apify-client ~= 1.6.2",
30
- "apify-shared ~= 1.1.1",
29
+ "apify-client ~= 1.6.0",
30
+ "apify-shared ~= 1.1.0",
31
31
  "aiofiles >= 22.1.0",
32
32
  "aioshutil >= 1.0",
33
33
  "colorama >= 0.4.6",
34
34
  "cryptography >= 39.0.0",
35
- "httpx >= 0.24.1",
36
- "psutil >= 5.9.5",
37
- "pyee >= 11.0.1",
38
- "sortedcollections >= 2.0.1",
35
+ "httpx >= 0.24.0",
36
+ "psutil >= 5.9.0",
37
+ "pyee >= 11.0.0",
38
+ "sortedcollections >= 2.0.0",
39
39
  "typing-extensions >= 4.1.0",
40
40
  "websockets >= 10.1",
41
41
  ]
@@ -55,6 +55,7 @@ dev = [
55
55
  "pytest-xdist ~= 3.6.0",
56
56
  "respx ~= 0.21.0",
57
57
  "ruff ~= 0.4.0",
58
+ "setuptools ~= 70.0.0", # setuptools are used by pytest, but not explicitly required
58
59
  "twine ~= 5.1.0",
59
60
  "types-aiofiles ~= 23.2.0.20240403",
60
61
  "types-colorama ~= 0.4.15.20240311",
@@ -73,7 +74,7 @@ scrapy = [
73
74
  "Apify Homepage" = "https://apify.com"
74
75
 
75
76
  [build-system]
76
- requires = ["setuptools>=64.0.0", "wheel"]
77
+ requires = ["setuptools ~= 70.0.0", "wheel"]
77
78
  build-backend = "setuptools.build_meta"
78
79
 
79
80
  [tool.setuptools.packages.find]
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: apify
3
- Version: 1.7.2b1
3
+ Version: 1.7.2b2
4
4
  Summary: Apify SDK for Python
5
5
  Author-email: "Apify Technologies s.r.o." <support@apify.com>
6
6
  License: Apache Software License
@@ -24,16 +24,16 @@ Classifier: Topic :: Software Development :: Libraries
24
24
  Requires-Python: >=3.8
25
25
  Description-Content-Type: text/markdown
26
26
  License-File: LICENSE
27
- Requires-Dist: apify-client~=1.6.2
28
- Requires-Dist: apify-shared~=1.1.1
27
+ Requires-Dist: apify-client~=1.6.0
28
+ Requires-Dist: apify-shared~=1.1.0
29
29
  Requires-Dist: aiofiles>=22.1.0
30
30
  Requires-Dist: aioshutil>=1.0
31
31
  Requires-Dist: colorama>=0.4.6
32
32
  Requires-Dist: cryptography>=39.0.0
33
- Requires-Dist: httpx>=0.24.1
34
- Requires-Dist: psutil>=5.9.5
35
- Requires-Dist: pyee>=11.0.1
36
- Requires-Dist: sortedcollections>=2.0.1
33
+ Requires-Dist: httpx>=0.24.0
34
+ Requires-Dist: psutil>=5.9.0
35
+ Requires-Dist: pyee>=11.0.0
36
+ Requires-Dist: sortedcollections>=2.0.0
37
37
  Requires-Dist: typing-extensions>=4.1.0
38
38
  Requires-Dist: websockets>=10.1
39
39
  Provides-Extra: dev
@@ -50,6 +50,7 @@ Requires-Dist: pytest-timeout~=2.3.0; extra == "dev"
50
50
  Requires-Dist: pytest-xdist~=3.6.0; extra == "dev"
51
51
  Requires-Dist: respx~=0.21.0; extra == "dev"
52
52
  Requires-Dist: ruff~=0.4.0; extra == "dev"
53
+ Requires-Dist: setuptools~=70.0.0; extra == "dev"
53
54
  Requires-Dist: twine~=5.1.0; extra == "dev"
54
55
  Requires-Dist: types-aiofiles~=23.2.0.20240403; extra == "dev"
55
56
  Requires-Dist: types-colorama~=0.4.15.20240311; extra == "dev"
@@ -1,13 +1,13 @@
1
- apify-client~=1.6.2
2
- apify-shared~=1.1.1
1
+ apify-client~=1.6.0
2
+ apify-shared~=1.1.0
3
3
  aiofiles>=22.1.0
4
4
  aioshutil>=1.0
5
5
  colorama>=0.4.6
6
6
  cryptography>=39.0.0
7
- httpx>=0.24.1
8
- psutil>=5.9.5
9
- pyee>=11.0.1
10
- sortedcollections>=2.0.1
7
+ httpx>=0.24.0
8
+ psutil>=5.9.0
9
+ pyee>=11.0.0
10
+ sortedcollections>=2.0.0
11
11
  typing-extensions>=4.1.0
12
12
  websockets>=10.1
13
13
 
@@ -25,6 +25,7 @@ pytest-timeout~=2.3.0
25
25
  pytest-xdist~=3.6.0
26
26
  respx~=0.21.0
27
27
  ruff~=0.4.0
28
+ setuptools~=70.0.0
28
29
  twine~=5.1.0
29
30
  types-aiofiles~=23.2.0.20240403
30
31
  types-colorama~=0.4.15.20240311
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