apify 1.7.2__tar.gz → 1.7.2b1__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.2 → apify-1.7.2b1}/PKG-INFO +8 -9
  2. {apify-1.7.2 → apify-1.7.2b1}/pyproject.toml +9 -10
  3. {apify-1.7.2 → apify-1.7.2b1}/src/apify/config.py +0 -3
  4. {apify-1.7.2 → apify-1.7.2b1}/src/apify.egg-info/PKG-INFO +8 -9
  5. {apify-1.7.2 → apify-1.7.2b1}/src/apify.egg-info/requires.txt +7 -8
  6. {apify-1.7.2 → apify-1.7.2b1}/LICENSE +0 -0
  7. {apify-1.7.2 → apify-1.7.2b1}/README.md +0 -0
  8. {apify-1.7.2 → apify-1.7.2b1}/setup.cfg +0 -0
  9. {apify-1.7.2 → apify-1.7.2b1}/src/apify/__init__.py +0 -0
  10. {apify-1.7.2 → apify-1.7.2b1}/src/apify/_crypto.py +0 -0
  11. {apify-1.7.2 → apify-1.7.2b1}/src/apify/_memory_storage/__init__.py +0 -0
  12. {apify-1.7.2 → apify-1.7.2b1}/src/apify/_memory_storage/file_storage_utils.py +0 -0
  13. {apify-1.7.2 → apify-1.7.2b1}/src/apify/_memory_storage/memory_storage_client.py +0 -0
  14. {apify-1.7.2 → apify-1.7.2b1}/src/apify/_memory_storage/resource_clients/__init__.py +0 -0
  15. {apify-1.7.2 → apify-1.7.2b1}/src/apify/_memory_storage/resource_clients/base_resource_client.py +0 -0
  16. {apify-1.7.2 → apify-1.7.2b1}/src/apify/_memory_storage/resource_clients/base_resource_collection_client.py +0 -0
  17. {apify-1.7.2 → apify-1.7.2b1}/src/apify/_memory_storage/resource_clients/dataset.py +0 -0
  18. {apify-1.7.2 → apify-1.7.2b1}/src/apify/_memory_storage/resource_clients/dataset_collection.py +0 -0
  19. {apify-1.7.2 → apify-1.7.2b1}/src/apify/_memory_storage/resource_clients/key_value_store.py +0 -0
  20. {apify-1.7.2 → apify-1.7.2b1}/src/apify/_memory_storage/resource_clients/key_value_store_collection.py +0 -0
  21. {apify-1.7.2 → apify-1.7.2b1}/src/apify/_memory_storage/resource_clients/request_queue.py +0 -0
  22. {apify-1.7.2 → apify-1.7.2b1}/src/apify/_memory_storage/resource_clients/request_queue_collection.py +0 -0
  23. {apify-1.7.2 → apify-1.7.2b1}/src/apify/_utils.py +0 -0
  24. {apify-1.7.2 → apify-1.7.2b1}/src/apify/actor.py +0 -0
  25. {apify-1.7.2 → apify-1.7.2b1}/src/apify/consts.py +0 -0
  26. {apify-1.7.2 → apify-1.7.2b1}/src/apify/event_manager.py +0 -0
  27. {apify-1.7.2 → apify-1.7.2b1}/src/apify/log.py +0 -0
  28. {apify-1.7.2 → apify-1.7.2b1}/src/apify/proxy_configuration.py +0 -0
  29. {apify-1.7.2 → apify-1.7.2b1}/src/apify/py.typed +0 -0
  30. {apify-1.7.2 → apify-1.7.2b1}/src/apify/scrapy/__init__.py +0 -0
  31. {apify-1.7.2 → apify-1.7.2b1}/src/apify/scrapy/middlewares/__init__.py +0 -0
  32. {apify-1.7.2 → apify-1.7.2b1}/src/apify/scrapy/middlewares/apify_proxy.py +0 -0
  33. {apify-1.7.2 → apify-1.7.2b1}/src/apify/scrapy/pipelines/__init__.py +0 -0
  34. {apify-1.7.2 → apify-1.7.2b1}/src/apify/scrapy/pipelines/actor_dataset_push.py +0 -0
  35. {apify-1.7.2 → apify-1.7.2b1}/src/apify/scrapy/requests.py +0 -0
  36. {apify-1.7.2 → apify-1.7.2b1}/src/apify/scrapy/scheduler.py +0 -0
  37. {apify-1.7.2 → apify-1.7.2b1}/src/apify/scrapy/utils.py +0 -0
  38. {apify-1.7.2 → apify-1.7.2b1}/src/apify/storages/__init__.py +0 -0
  39. {apify-1.7.2 → apify-1.7.2b1}/src/apify/storages/base_storage.py +0 -0
  40. {apify-1.7.2 → apify-1.7.2b1}/src/apify/storages/dataset.py +0 -0
  41. {apify-1.7.2 → apify-1.7.2b1}/src/apify/storages/key_value_store.py +0 -0
  42. {apify-1.7.2 → apify-1.7.2b1}/src/apify/storages/request_queue.py +0 -0
  43. {apify-1.7.2 → apify-1.7.2b1}/src/apify/storages/storage_client_manager.py +0 -0
  44. {apify-1.7.2 → apify-1.7.2b1}/src/apify.egg-info/SOURCES.txt +0 -0
  45. {apify-1.7.2 → apify-1.7.2b1}/src/apify.egg-info/dependency_links.txt +0 -0
  46. {apify-1.7.2 → apify-1.7.2b1}/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.2
3
+ Version: 1.7.2b1
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,21 +24,21 @@ 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.0
28
- Requires-Dist: apify-shared~=1.1.2
27
+ Requires-Dist: apify-client~=1.6.2
28
+ Requires-Dist: apify-shared~=1.1.1
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.0
34
- Requires-Dist: psutil>=5.9.0
35
- Requires-Dist: pyee>=11.0.0
36
- Requires-Dist: sortedcollections>=2.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
37
37
  Requires-Dist: typing-extensions>=4.1.0
38
38
  Requires-Dist: websockets>=10.1
39
39
  Provides-Extra: dev
40
40
  Requires-Dist: build~=1.2.0; extra == "dev"
41
- Requires-Dist: filelock~=3.15.1; extra == "dev"
41
+ Requires-Dist: filelock~=3.14.0; extra == "dev"
42
42
  Requires-Dist: mypy~=1.10.0; extra == "dev"
43
43
  Requires-Dist: pre-commit~=3.5.0; extra == "dev"
44
44
  Requires-Dist: pydoc-markdown~=4.8.0; extra == "dev"
@@ -50,7 +50,6 @@ 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.1.0; extra == "dev"
54
53
  Requires-Dist: twine~=5.1.0; extra == "dev"
55
54
  Requires-Dist: types-aiofiles~=23.2.0.20240403; extra == "dev"
56
55
  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.2"
3
+ version = "1.7.2b1"
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.0",
30
- "apify-shared ~= 1.1.2",
29
+ "apify-client ~= 1.6.2",
30
+ "apify-shared ~= 1.1.1",
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.0",
36
- "psutil >= 5.9.0",
37
- "pyee >= 11.0.0",
38
- "sortedcollections >= 2.0.0",
35
+ "httpx >= 0.24.1",
36
+ "psutil >= 5.9.5",
37
+ "pyee >= 11.0.1",
38
+ "sortedcollections >= 2.0.1",
39
39
  "typing-extensions >= 4.1.0",
40
40
  "websockets >= 10.1",
41
41
  ]
@@ -43,7 +43,7 @@ dependencies = [
43
43
  [project.optional-dependencies]
44
44
  dev = [
45
45
  "build ~= 1.2.0",
46
- "filelock ~=3.15.1",
46
+ "filelock ~= 3.14.0",
47
47
  "mypy ~= 1.10.0",
48
48
  "pre-commit ~= 3.5.0",
49
49
  "pydoc-markdown ~= 4.8.0",
@@ -55,7 +55,6 @@ dev = [
55
55
  "pytest-xdist ~= 3.6.0",
56
56
  "respx ~= 0.21.0",
57
57
  "ruff ~= 0.4.0",
58
- "setuptools ~= 70.1.0", # setuptools are used by pytest, but not explicitly required
59
58
  "twine ~= 5.1.0",
60
59
  "types-aiofiles ~= 23.2.0.20240403",
61
60
  "types-colorama ~= 0.4.15.20240311",
@@ -74,7 +73,7 @@ scrapy = [
74
73
  "Apify Homepage" = "https://apify.com"
75
74
 
76
75
  [build-system]
77
- requires = ["setuptools ~= 70.1.0", "wheel"]
76
+ requires = ["setuptools>=64.0.0", "wheel"]
78
77
  build-backend = "setuptools.build_meta"
79
78
 
80
79
  [tool.setuptools.packages.find]
@@ -35,7 +35,6 @@ class Configuration:
35
35
  proxy_status_url: str | None = None,
36
36
  purge_on_start: bool | None = None,
37
37
  token: str | None = None,
38
- standby_port: int | None = None,
39
38
  system_info_interval_millis: int | None = None,
40
39
  ) -> None:
41
40
  """Create a `Configuration` instance.
@@ -66,7 +65,6 @@ class Configuration:
66
65
  purge_on_start (str, optional): Whether the actor should purge its default storages on startup, when running locally.
67
66
  token (str, optional): The API token for the Apify API this actor should use.
68
67
  system_info_interval_millis (str, optional): How often should the actor emit the SYSTEM_INFO event when running locally.
69
- standby_port (int, optional): The port on which the container can listen for Actor Standby HTTP requests.
70
68
  """
71
69
  # TODO: Document all these members
72
70
  # https://github.com/apify/apify-sdk-python/issues/147
@@ -105,7 +103,6 @@ class Configuration:
105
103
  self.proxy_port = proxy_port or fetch_and_parse_env_var(ApifyEnvVars.PROXY_PORT, 8000)
106
104
  self.proxy_status_url = proxy_status_url or fetch_and_parse_env_var(ApifyEnvVars.PROXY_STATUS_URL, 'http://proxy.apify.com')
107
105
  self.purge_on_start = purge_on_start or fetch_and_parse_env_var(ApifyEnvVars.PURGE_ON_START, default=False)
108
- self.standby_port = standby_port or fetch_and_parse_env_var(ActorEnvVars.STANDBY_PORT, 4322)
109
106
  self.started_at = fetch_and_parse_env_var(ActorEnvVars.STARTED_AT)
110
107
  self.timeout_at = fetch_and_parse_env_var(ActorEnvVars.TIMEOUT_AT)
111
108
  self.token = token or fetch_and_parse_env_var(ApifyEnvVars.TOKEN)
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: apify
3
- Version: 1.7.2
3
+ Version: 1.7.2b1
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,21 +24,21 @@ 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.0
28
- Requires-Dist: apify-shared~=1.1.2
27
+ Requires-Dist: apify-client~=1.6.2
28
+ Requires-Dist: apify-shared~=1.1.1
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.0
34
- Requires-Dist: psutil>=5.9.0
35
- Requires-Dist: pyee>=11.0.0
36
- Requires-Dist: sortedcollections>=2.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
37
37
  Requires-Dist: typing-extensions>=4.1.0
38
38
  Requires-Dist: websockets>=10.1
39
39
  Provides-Extra: dev
40
40
  Requires-Dist: build~=1.2.0; extra == "dev"
41
- Requires-Dist: filelock~=3.15.1; extra == "dev"
41
+ Requires-Dist: filelock~=3.14.0; extra == "dev"
42
42
  Requires-Dist: mypy~=1.10.0; extra == "dev"
43
43
  Requires-Dist: pre-commit~=3.5.0; extra == "dev"
44
44
  Requires-Dist: pydoc-markdown~=4.8.0; extra == "dev"
@@ -50,7 +50,6 @@ 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.1.0; extra == "dev"
54
53
  Requires-Dist: twine~=5.1.0; extra == "dev"
55
54
  Requires-Dist: types-aiofiles~=23.2.0.20240403; extra == "dev"
56
55
  Requires-Dist: types-colorama~=0.4.15.20240311; extra == "dev"
@@ -1,19 +1,19 @@
1
- apify-client~=1.6.0
2
- apify-shared~=1.1.2
1
+ apify-client~=1.6.2
2
+ apify-shared~=1.1.1
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.0
8
- psutil>=5.9.0
9
- pyee>=11.0.0
10
- sortedcollections>=2.0.0
7
+ httpx>=0.24.1
8
+ psutil>=5.9.5
9
+ pyee>=11.0.1
10
+ sortedcollections>=2.0.1
11
11
  typing-extensions>=4.1.0
12
12
  websockets>=10.1
13
13
 
14
14
  [dev]
15
15
  build~=1.2.0
16
- filelock~=3.15.1
16
+ filelock~=3.14.0
17
17
  mypy~=1.10.0
18
18
  pre-commit~=3.5.0
19
19
  pydoc-markdown~=4.8.0
@@ -25,7 +25,6 @@ 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.1.0
29
28
  twine~=5.1.0
30
29
  types-aiofiles~=23.2.0.20240403
31
30
  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