crawlora 1.8.0.dev1__tar.gz → 1.9.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.8.0.dev1/crawlora.egg-info → crawlora-1.9.0.dev1}/PKG-INFO +2 -2
  2. {crawlora-1.8.0.dev1 → crawlora-1.9.0.dev1}/README.md +1 -1
  3. {crawlora-1.8.0.dev1 → crawlora-1.9.0.dev1}/crawlora/client.py +1 -1
  4. {crawlora-1.8.0.dev1 → crawlora-1.9.0.dev1}/crawlora/client.pyi +1548 -80
  5. {crawlora-1.8.0.dev1 → crawlora-1.9.0.dev1}/crawlora/operations.py +543 -37
  6. {crawlora-1.8.0.dev1 → crawlora-1.9.0.dev1/crawlora.egg-info}/PKG-INFO +2 -2
  7. {crawlora-1.8.0.dev1 → crawlora-1.9.0.dev1}/docs/operations.md +39 -13
  8. {crawlora-1.8.0.dev1 → crawlora-1.9.0.dev1}/pyproject.toml +1 -1
  9. {crawlora-1.8.0.dev1 → crawlora-1.9.0.dev1}/tests/test_client.py +2 -2
  10. {crawlora-1.8.0.dev1 → crawlora-1.9.0.dev1}/LICENSE +0 -0
  11. {crawlora-1.8.0.dev1 → crawlora-1.9.0.dev1}/MANIFEST.in +0 -0
  12. {crawlora-1.8.0.dev1 → crawlora-1.9.0.dev1}/crawlora/__init__.py +0 -0
  13. {crawlora-1.8.0.dev1 → crawlora-1.9.0.dev1}/crawlora/_pagination.py +0 -0
  14. {crawlora-1.8.0.dev1 → crawlora-1.9.0.dev1}/crawlora/_transport_sync.py +0 -0
  15. {crawlora-1.8.0.dev1 → crawlora-1.9.0.dev1}/crawlora/async_client.py +0 -0
  16. {crawlora-1.8.0.dev1 → crawlora-1.9.0.dev1}/crawlora/py.typed +0 -0
  17. {crawlora-1.8.0.dev1 → crawlora-1.9.0.dev1}/crawlora.egg-info/SOURCES.txt +0 -0
  18. {crawlora-1.8.0.dev1 → crawlora-1.9.0.dev1}/crawlora.egg-info/dependency_links.txt +0 -0
  19. {crawlora-1.8.0.dev1 → crawlora-1.9.0.dev1}/crawlora.egg-info/requires.txt +0 -0
  20. {crawlora-1.8.0.dev1 → crawlora-1.9.0.dev1}/crawlora.egg-info/top_level.txt +0 -0
  21. {crawlora-1.8.0.dev1 → crawlora-1.9.0.dev1}/docs/recipes.md +0 -0
  22. {crawlora-1.8.0.dev1 → crawlora-1.9.0.dev1}/examples/async_search.py +0 -0
  23. {crawlora-1.8.0.dev1 → crawlora-1.9.0.dev1}/examples/bing_search.py +0 -0
  24. {crawlora-1.8.0.dev1 → crawlora-1.9.0.dev1}/examples/paginate.py +0 -0
  25. {crawlora-1.8.0.dev1 → crawlora-1.9.0.dev1}/examples/youtube_transcript.py +0 -0
  26. {crawlora-1.8.0.dev1 → crawlora-1.9.0.dev1}/setup.cfg +0 -0
  27. {crawlora-1.8.0.dev1 → crawlora-1.9.0.dev1}/tests/test_async_httpx.py +0 -0
  28. {crawlora-1.8.0.dev1 → crawlora-1.9.0.dev1}/tests/test_examples.py +0 -0
  29. {crawlora-1.8.0.dev1 → crawlora-1.9.0.dev1}/tests/test_v14_features.py +0 -0
  30. {crawlora-1.8.0.dev1 → crawlora-1.9.0.dev1}/tests/test_v15_features.py +0 -0
  31. {crawlora-1.8.0.dev1 → crawlora-1.9.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.8.0.dev1
3
+ Version: 1.9.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
@@ -27,7 +27,7 @@ Dynamic: license-file
27
27
  # Crawlora Python SDK
28
28
 
29
29
  Python client for the public Crawlora API. Use it to call Crawlora scraping,
30
- search, social, marketplace, media, maps, finance, prediction-market, brand, and usage endpoints
30
+ search, social, developer, marketplace, media, maps, finance, prediction-market, brand, and usage endpoints
31
31
  with generated type stubs for editor and type-checker support.
32
32
 
33
33
  - Runtime: Python 3.10+
@@ -1,7 +1,7 @@
1
1
  # Crawlora Python SDK
2
2
 
3
3
  Python client for the public Crawlora API. Use it to call Crawlora scraping,
4
- search, social, marketplace, media, maps, finance, prediction-market, brand, and usage endpoints
4
+ search, social, developer, marketplace, media, maps, finance, prediction-market, brand, and usage endpoints
5
5
  with generated type stubs for editor and type-checker support.
6
6
 
7
7
  - Runtime: Python 3.10+
@@ -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.8.0-sdk.1"
23
+ VERSION = "1.9.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)