apify 0.2.0b19__tar.gz → 0.2.0b21__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 (41) hide show
  1. {apify-0.2.0b19 → apify-0.2.0b21}/PKG-INFO +7 -4
  2. {apify-0.2.0b19 → apify-0.2.0b21}/README.md +5 -2
  3. {apify-0.2.0b19 → apify-0.2.0b21}/setup.py +1 -1
  4. apify-0.2.0b21/src/apify/_version.py +1 -0
  5. {apify-0.2.0b19 → apify-0.2.0b21}/src/apify.egg-info/PKG-INFO +7 -4
  6. apify-0.2.0b19/src/apify/_version.py +0 -1
  7. {apify-0.2.0b19 → apify-0.2.0b21}/LICENSE +0 -0
  8. {apify-0.2.0b19 → apify-0.2.0b21}/setup.cfg +0 -0
  9. {apify-0.2.0b19 → apify-0.2.0b21}/src/apify/__init__.py +0 -0
  10. {apify-0.2.0b19 → apify-0.2.0b21}/src/apify/_crypto.py +0 -0
  11. {apify-0.2.0b19 → apify-0.2.0b21}/src/apify/_memory_storage/__init__.py +0 -0
  12. {apify-0.2.0b19 → apify-0.2.0b21}/src/apify/_memory_storage/file_storage_utils.py +0 -0
  13. {apify-0.2.0b19 → apify-0.2.0b21}/src/apify/_memory_storage/memory_storage_client.py +0 -0
  14. {apify-0.2.0b19 → apify-0.2.0b21}/src/apify/_memory_storage/resource_clients/__init__.py +0 -0
  15. {apify-0.2.0b19 → apify-0.2.0b21}/src/apify/_memory_storage/resource_clients/base_resource_client.py +0 -0
  16. {apify-0.2.0b19 → apify-0.2.0b21}/src/apify/_memory_storage/resource_clients/base_resource_collection_client.py +0 -0
  17. {apify-0.2.0b19 → apify-0.2.0b21}/src/apify/_memory_storage/resource_clients/dataset.py +0 -0
  18. {apify-0.2.0b19 → apify-0.2.0b21}/src/apify/_memory_storage/resource_clients/dataset_collection.py +0 -0
  19. {apify-0.2.0b19 → apify-0.2.0b21}/src/apify/_memory_storage/resource_clients/key_value_store.py +0 -0
  20. {apify-0.2.0b19 → apify-0.2.0b21}/src/apify/_memory_storage/resource_clients/key_value_store_collection.py +0 -0
  21. {apify-0.2.0b19 → apify-0.2.0b21}/src/apify/_memory_storage/resource_clients/request_queue.py +0 -0
  22. {apify-0.2.0b19 → apify-0.2.0b21}/src/apify/_memory_storage/resource_clients/request_queue_collection.py +0 -0
  23. {apify-0.2.0b19 → apify-0.2.0b21}/src/apify/_types.py +0 -0
  24. {apify-0.2.0b19 → apify-0.2.0b21}/src/apify/_utils.py +0 -0
  25. {apify-0.2.0b19 → apify-0.2.0b21}/src/apify/actor.py +0 -0
  26. {apify-0.2.0b19 → apify-0.2.0b21}/src/apify/config.py +0 -0
  27. {apify-0.2.0b19 → apify-0.2.0b21}/src/apify/consts.py +0 -0
  28. {apify-0.2.0b19 → apify-0.2.0b21}/src/apify/event_manager.py +0 -0
  29. {apify-0.2.0b19 → apify-0.2.0b21}/src/apify/log.py +0 -0
  30. {apify-0.2.0b19 → apify-0.2.0b21}/src/apify/proxy_configuration.py +0 -0
  31. {apify-0.2.0b19 → apify-0.2.0b21}/src/apify/py.typed +0 -0
  32. {apify-0.2.0b19 → apify-0.2.0b21}/src/apify/storages/__init__.py +0 -0
  33. {apify-0.2.0b19 → apify-0.2.0b21}/src/apify/storages/base_storage.py +0 -0
  34. {apify-0.2.0b19 → apify-0.2.0b21}/src/apify/storages/dataset.py +0 -0
  35. {apify-0.2.0b19 → apify-0.2.0b21}/src/apify/storages/key_value_store.py +0 -0
  36. {apify-0.2.0b19 → apify-0.2.0b21}/src/apify/storages/request_queue.py +0 -0
  37. {apify-0.2.0b19 → apify-0.2.0b21}/src/apify/storages/storage_client_manager.py +0 -0
  38. {apify-0.2.0b19 → apify-0.2.0b21}/src/apify.egg-info/SOURCES.txt +0 -0
  39. {apify-0.2.0b19 → apify-0.2.0b21}/src/apify.egg-info/dependency_links.txt +0 -0
  40. {apify-0.2.0b19 → apify-0.2.0b21}/src/apify.egg-info/requires.txt +0 -0
  41. {apify-0.2.0b19 → apify-0.2.0b21}/src/apify.egg-info/top_level.txt +0 -0
@@ -1,12 +1,12 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: apify
3
- Version: 0.2.0b19
3
+ Version: 0.2.0b21
4
4
  Summary: Apify SDK for Python
5
5
  Home-page: https://github.com/apify/apify-sdk-python
6
6
  Author: Apify Technologies s.r.o.
7
7
  Author-email: support@apify.com
8
8
  License: Apache Software License
9
- Project-URL: Documentation, https://docs.apify.com/apify-sdk-python
9
+ Project-URL: Documentation, https://docs.apify.com/sdk/python/
10
10
  Project-URL: Source, https://github.com/apify/apify-sdk-python
11
11
  Project-URL: Issue tracker, https://github.com/apify/apify-sdk-python/issues
12
12
  Project-URL: Apify Homepage, https://apify.com
@@ -27,8 +27,11 @@ License-File: LICENSE
27
27
 
28
28
  # Apify SDK for Python
29
29
 
30
- Apify SDK is the core set of tools and utilities that we've built to help make your interaction with the [Apify Platform](https://apify.com) easier.
31
- It's still under heavy development, check back in a few weeks if you want to use it!
30
+ The Apify SDK for Python is the official library to create [Apify Actors](https://docs.apify.com/platform/actors) in Python.
31
+ It provides useful features like actor lifecycle management, local storage emulation, and actor event handling.
32
+
33
+ If you just need to access the [Apify API](https://docs.apify.com/api/v2) from your Python applications,
34
+ check out the [Apify Client for Python](https://docs.apify.com/api/client/python) instead.
32
35
 
33
36
  ## Installation
34
37
 
@@ -1,7 +1,10 @@
1
1
  # Apify SDK for Python
2
2
 
3
- Apify SDK is the core set of tools and utilities that we've built to help make your interaction with the [Apify Platform](https://apify.com) easier.
4
- It's still under heavy development, check back in a few weeks if you want to use it!
3
+ The Apify SDK for Python is the official library to create [Apify Actors](https://docs.apify.com/platform/actors) in Python.
4
+ It provides useful features like actor lifecycle management, local storage emulation, and actor event handling.
5
+
6
+ If you just need to access the [Apify API](https://docs.apify.com/api/v2) from your Python applications,
7
+ check out the [Apify Client for Python](https://docs.apify.com/api/client/python) instead.
5
8
 
6
9
  ## Installation
7
10
 
@@ -24,7 +24,7 @@ setup(
24
24
  author_email='support@apify.com',
25
25
  url='https://github.com/apify/apify-sdk-python',
26
26
  project_urls={
27
- 'Documentation': 'https://docs.apify.com/apify-sdk-python',
27
+ 'Documentation': 'https://docs.apify.com/sdk/python/',
28
28
  'Source': 'https://github.com/apify/apify-sdk-python',
29
29
  'Issue tracker': 'https://github.com/apify/apify-sdk-python/issues',
30
30
  'Apify Homepage': 'https://apify.com',
@@ -0,0 +1 @@
1
+ __version__ = '0.2.0b21'
@@ -1,12 +1,12 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: apify
3
- Version: 0.2.0b19
3
+ Version: 0.2.0b21
4
4
  Summary: Apify SDK for Python
5
5
  Home-page: https://github.com/apify/apify-sdk-python
6
6
  Author: Apify Technologies s.r.o.
7
7
  Author-email: support@apify.com
8
8
  License: Apache Software License
9
- Project-URL: Documentation, https://docs.apify.com/apify-sdk-python
9
+ Project-URL: Documentation, https://docs.apify.com/sdk/python/
10
10
  Project-URL: Source, https://github.com/apify/apify-sdk-python
11
11
  Project-URL: Issue tracker, https://github.com/apify/apify-sdk-python/issues
12
12
  Project-URL: Apify Homepage, https://apify.com
@@ -27,8 +27,11 @@ License-File: LICENSE
27
27
 
28
28
  # Apify SDK for Python
29
29
 
30
- Apify SDK is the core set of tools and utilities that we've built to help make your interaction with the [Apify Platform](https://apify.com) easier.
31
- It's still under heavy development, check back in a few weeks if you want to use it!
30
+ The Apify SDK for Python is the official library to create [Apify Actors](https://docs.apify.com/platform/actors) in Python.
31
+ It provides useful features like actor lifecycle management, local storage emulation, and actor event handling.
32
+
33
+ If you just need to access the [Apify API](https://docs.apify.com/api/v2) from your Python applications,
34
+ check out the [Apify Client for Python](https://docs.apify.com/api/client/python) instead.
32
35
 
33
36
  ## Installation
34
37
 
@@ -1 +0,0 @@
1
- __version__ = '0.2.0b19'
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