crawlora 1.30.0.dev1__tar.gz → 1.34.0.dev1__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.
Files changed (31) hide show
  1. {crawlora-1.30.0.dev1/crawlora.egg-info → crawlora-1.34.0.dev1}/PKG-INFO +2 -2
  2. {crawlora-1.30.0.dev1 → crawlora-1.34.0.dev1}/README.md +1 -1
  3. {crawlora-1.30.0.dev1 → crawlora-1.34.0.dev1}/crawlora/client.py +1 -1
  4. {crawlora-1.30.0.dev1 → crawlora-1.34.0.dev1}/crawlora/client.pyi +10336 -14
  5. {crawlora-1.30.0.dev1 → crawlora-1.34.0.dev1}/crawlora/operations.py +2783 -136
  6. {crawlora-1.30.0.dev1 → crawlora-1.34.0.dev1/crawlora.egg-info}/PKG-INFO +2 -2
  7. {crawlora-1.30.0.dev1 → crawlora-1.34.0.dev1}/docs/operations.md +160 -1
  8. {crawlora-1.30.0.dev1 → crawlora-1.34.0.dev1}/docs/recipes.md +8 -0
  9. {crawlora-1.30.0.dev1 → crawlora-1.34.0.dev1}/pyproject.toml +1 -1
  10. {crawlora-1.30.0.dev1 → crawlora-1.34.0.dev1}/tests/test_client.py +7 -5
  11. {crawlora-1.30.0.dev1 → crawlora-1.34.0.dev1}/LICENSE +0 -0
  12. {crawlora-1.30.0.dev1 → crawlora-1.34.0.dev1}/MANIFEST.in +0 -0
  13. {crawlora-1.30.0.dev1 → crawlora-1.34.0.dev1}/crawlora/__init__.py +0 -0
  14. {crawlora-1.30.0.dev1 → crawlora-1.34.0.dev1}/crawlora/_pagination.py +0 -0
  15. {crawlora-1.30.0.dev1 → crawlora-1.34.0.dev1}/crawlora/_transport_sync.py +0 -0
  16. {crawlora-1.30.0.dev1 → crawlora-1.34.0.dev1}/crawlora/async_client.py +0 -0
  17. {crawlora-1.30.0.dev1 → crawlora-1.34.0.dev1}/crawlora/py.typed +0 -0
  18. {crawlora-1.30.0.dev1 → crawlora-1.34.0.dev1}/crawlora.egg-info/SOURCES.txt +0 -0
  19. {crawlora-1.30.0.dev1 → crawlora-1.34.0.dev1}/crawlora.egg-info/dependency_links.txt +0 -0
  20. {crawlora-1.30.0.dev1 → crawlora-1.34.0.dev1}/crawlora.egg-info/requires.txt +0 -0
  21. {crawlora-1.30.0.dev1 → crawlora-1.34.0.dev1}/crawlora.egg-info/top_level.txt +0 -0
  22. {crawlora-1.30.0.dev1 → crawlora-1.34.0.dev1}/examples/async_search.py +0 -0
  23. {crawlora-1.30.0.dev1 → crawlora-1.34.0.dev1}/examples/bing_search.py +0 -0
  24. {crawlora-1.30.0.dev1 → crawlora-1.34.0.dev1}/examples/paginate.py +0 -0
  25. {crawlora-1.30.0.dev1 → crawlora-1.34.0.dev1}/examples/youtube_transcript.py +0 -0
  26. {crawlora-1.30.0.dev1 → crawlora-1.34.0.dev1}/setup.cfg +0 -0
  27. {crawlora-1.30.0.dev1 → crawlora-1.34.0.dev1}/tests/test_async_httpx.py +0 -0
  28. {crawlora-1.30.0.dev1 → crawlora-1.34.0.dev1}/tests/test_examples.py +0 -0
  29. {crawlora-1.30.0.dev1 → crawlora-1.34.0.dev1}/tests/test_v14_features.py +0 -0
  30. {crawlora-1.30.0.dev1 → crawlora-1.34.0.dev1}/tests/test_v15_features.py +0 -0
  31. {crawlora-1.30.0.dev1 → crawlora-1.34.0.dev1}/tests/test_w2_features.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: crawlora
3
- Version: 1.30.0.dev1
3
+ Version: 1.34.0.dev1
4
4
  Summary: Official Python SDK for the Crawlora web-scraping API: typed grouped and dynamic operation calls for every public endpoint, with retries, pagination, hooks, and an async client.
5
5
  Author: Crawlora
6
6
  License-Expression: MIT
@@ -39,7 +39,7 @@ with generated type stubs for editor and type-checker support.
39
39
  ## Install
40
40
 
41
41
  Published on [PyPI](https://pypi.org/project/crawlora/). The current release is a
42
- prerelease (`1.18.0.dev1`), so install it with `--pre`:
42
+ prerelease (`1.33.0.dev1`), so install it with `--pre`:
43
43
 
44
44
  ```sh
45
45
  pip install --pre crawlora
@@ -13,7 +13,7 @@ with generated type stubs for editor and type-checker support.
13
13
  ## Install
14
14
 
15
15
  Published on [PyPI](https://pypi.org/project/crawlora/). The current release is a
16
- prerelease (`1.18.0.dev1`), so install it with `--pre`:
16
+ prerelease (`1.33.0.dev1`), so install it with `--pre`:
17
17
 
18
18
  ```sh
19
19
  pip install --pre crawlora
@@ -20,7 +20,7 @@ from ._transport_sync import KeepAliveTransport
20
20
  from .operations import GROUPS, OPERATIONS
21
21
 
22
22
  DEFAULT_BASE_URL = "https://api.crawlora.net/api/v1"
23
- VERSION = "1.30.0-sdk.1"
23
+ VERSION = "1.34.0-sdk.1"
24
24
  DEFAULT_USER_AGENT = f"crawlora-python-sdk/{VERSION}"
25
25
  DEFAULT_MAX_RETRY_DELAY = 30.0
26
26
  DEFAULT_RETRY_STATUSES = (408, 409, 425, 429)