crawlora 1.5.0.dev1__tar.gz → 1.5.0.dev2__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.
- {crawlora-1.5.0.dev1/crawlora.egg-info → crawlora-1.5.0.dev2}/PKG-INFO +9 -10
- {crawlora-1.5.0.dev1 → crawlora-1.5.0.dev2}/README.md +5 -7
- {crawlora-1.5.0.dev1 → crawlora-1.5.0.dev2}/crawlora/client.py +1 -1
- {crawlora-1.5.0.dev1 → crawlora-1.5.0.dev2/crawlora.egg-info}/PKG-INFO +9 -10
- {crawlora-1.5.0.dev1 → crawlora-1.5.0.dev2}/pyproject.toml +4 -3
- {crawlora-1.5.0.dev1 → crawlora-1.5.0.dev2}/LICENSE +0 -0
- {crawlora-1.5.0.dev1 → crawlora-1.5.0.dev2}/MANIFEST.in +0 -0
- {crawlora-1.5.0.dev1 → crawlora-1.5.0.dev2}/crawlora/__init__.py +0 -0
- {crawlora-1.5.0.dev1 → crawlora-1.5.0.dev2}/crawlora/_pagination.py +0 -0
- {crawlora-1.5.0.dev1 → crawlora-1.5.0.dev2}/crawlora/_transport_sync.py +0 -0
- {crawlora-1.5.0.dev1 → crawlora-1.5.0.dev2}/crawlora/async_client.py +0 -0
- {crawlora-1.5.0.dev1 → crawlora-1.5.0.dev2}/crawlora/client.pyi +0 -0
- {crawlora-1.5.0.dev1 → crawlora-1.5.0.dev2}/crawlora/operations.py +0 -0
- {crawlora-1.5.0.dev1 → crawlora-1.5.0.dev2}/crawlora/py.typed +0 -0
- {crawlora-1.5.0.dev1 → crawlora-1.5.0.dev2}/crawlora.egg-info/SOURCES.txt +0 -0
- {crawlora-1.5.0.dev1 → crawlora-1.5.0.dev2}/crawlora.egg-info/dependency_links.txt +0 -0
- {crawlora-1.5.0.dev1 → crawlora-1.5.0.dev2}/crawlora.egg-info/requires.txt +0 -0
- {crawlora-1.5.0.dev1 → crawlora-1.5.0.dev2}/crawlora.egg-info/top_level.txt +0 -0
- {crawlora-1.5.0.dev1 → crawlora-1.5.0.dev2}/docs/operations.md +0 -0
- {crawlora-1.5.0.dev1 → crawlora-1.5.0.dev2}/docs/recipes.md +0 -0
- {crawlora-1.5.0.dev1 → crawlora-1.5.0.dev2}/examples/async_search.py +0 -0
- {crawlora-1.5.0.dev1 → crawlora-1.5.0.dev2}/examples/bing_search.py +0 -0
- {crawlora-1.5.0.dev1 → crawlora-1.5.0.dev2}/examples/paginate.py +0 -0
- {crawlora-1.5.0.dev1 → crawlora-1.5.0.dev2}/examples/youtube_transcript.py +0 -0
- {crawlora-1.5.0.dev1 → crawlora-1.5.0.dev2}/setup.cfg +0 -0
- {crawlora-1.5.0.dev1 → crawlora-1.5.0.dev2}/tests/test_async_httpx.py +0 -0
- {crawlora-1.5.0.dev1 → crawlora-1.5.0.dev2}/tests/test_client.py +0 -0
- {crawlora-1.5.0.dev1 → crawlora-1.5.0.dev2}/tests/test_examples.py +0 -0
- {crawlora-1.5.0.dev1 → crawlora-1.5.0.dev2}/tests/test_v14_features.py +0 -0
- {crawlora-1.5.0.dev1 → crawlora-1.5.0.dev2}/tests/test_v15_features.py +0 -0
- {crawlora-1.5.0.dev1 → crawlora-1.5.0.dev2}/tests/test_w2_features.py +0 -0
|
@@ -1,10 +1,11 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: crawlora
|
|
3
|
-
Version: 1.5.0.
|
|
4
|
-
Summary: Python SDK for the public
|
|
3
|
+
Version: 1.5.0.dev2
|
|
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
|
|
7
|
-
Project-URL: Homepage, https://
|
|
7
|
+
Project-URL: Homepage, https://crawlora.net/
|
|
8
|
+
Project-URL: Documentation, https://crawlora.net/docs
|
|
8
9
|
Project-URL: Repository, https://github.com/Crawlora-org/crawlora-python-sdk
|
|
9
10
|
Project-URL: Issues, https://github.com/Crawlora-org/crawlora-python-sdk/issues
|
|
10
11
|
Keywords: crawlora,sdk,web-scraping,api-client
|
|
@@ -36,17 +37,15 @@ type stubs for editor and type-checker support.
|
|
|
36
37
|
|
|
37
38
|
## Install
|
|
38
39
|
|
|
39
|
-
|
|
40
|
+
Published on [PyPI](https://pypi.org/project/crawlora/). The current release is a
|
|
41
|
+
prerelease (`1.5.0.dev1`), so install it with `--pre`:
|
|
40
42
|
|
|
41
43
|
```sh
|
|
42
|
-
pip install
|
|
44
|
+
pip install --pre crawlora
|
|
43
45
|
```
|
|
44
46
|
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
```sh
|
|
48
|
-
pip install "git+https://github.com/Crawlora-org/crawlora-python-sdk.git@TAG"
|
|
49
|
-
```
|
|
47
|
+
(Git installs from beta tags also work, e.g.
|
|
48
|
+
`pip install "git+https://github.com/Crawlora-org/crawlora-python-sdk.git@latest"`.)
|
|
50
49
|
|
|
51
50
|
## API Key
|
|
52
51
|
|
|
@@ -11,17 +11,15 @@ type stubs for editor and type-checker support.
|
|
|
11
11
|
|
|
12
12
|
## Install
|
|
13
13
|
|
|
14
|
-
|
|
14
|
+
Published on [PyPI](https://pypi.org/project/crawlora/). The current release is a
|
|
15
|
+
prerelease (`1.5.0.dev1`), so install it with `--pre`:
|
|
15
16
|
|
|
16
17
|
```sh
|
|
17
|
-
pip install
|
|
18
|
+
pip install --pre crawlora
|
|
18
19
|
```
|
|
19
20
|
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
```sh
|
|
23
|
-
pip install "git+https://github.com/Crawlora-org/crawlora-python-sdk.git@TAG"
|
|
24
|
-
```
|
|
21
|
+
(Git installs from beta tags also work, e.g.
|
|
22
|
+
`pip install "git+https://github.com/Crawlora-org/crawlora-python-sdk.git@latest"`.)
|
|
25
23
|
|
|
26
24
|
## API Key
|
|
27
25
|
|
|
@@ -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.5.0-sdk.
|
|
23
|
+
VERSION = "1.5.0-sdk.2"
|
|
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)
|
|
@@ -1,10 +1,11 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: crawlora
|
|
3
|
-
Version: 1.5.0.
|
|
4
|
-
Summary: Python SDK for the public
|
|
3
|
+
Version: 1.5.0.dev2
|
|
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
|
|
7
|
-
Project-URL: Homepage, https://
|
|
7
|
+
Project-URL: Homepage, https://crawlora.net/
|
|
8
|
+
Project-URL: Documentation, https://crawlora.net/docs
|
|
8
9
|
Project-URL: Repository, https://github.com/Crawlora-org/crawlora-python-sdk
|
|
9
10
|
Project-URL: Issues, https://github.com/Crawlora-org/crawlora-python-sdk/issues
|
|
10
11
|
Keywords: crawlora,sdk,web-scraping,api-client
|
|
@@ -36,17 +37,15 @@ type stubs for editor and type-checker support.
|
|
|
36
37
|
|
|
37
38
|
## Install
|
|
38
39
|
|
|
39
|
-
|
|
40
|
+
Published on [PyPI](https://pypi.org/project/crawlora/). The current release is a
|
|
41
|
+
prerelease (`1.5.0.dev1`), so install it with `--pre`:
|
|
40
42
|
|
|
41
43
|
```sh
|
|
42
|
-
pip install
|
|
44
|
+
pip install --pre crawlora
|
|
43
45
|
```
|
|
44
46
|
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
```sh
|
|
48
|
-
pip install "git+https://github.com/Crawlora-org/crawlora-python-sdk.git@TAG"
|
|
49
|
-
```
|
|
47
|
+
(Git installs from beta tags also work, e.g.
|
|
48
|
+
`pip install "git+https://github.com/Crawlora-org/crawlora-python-sdk.git@latest"`.)
|
|
50
49
|
|
|
51
50
|
## API Key
|
|
52
51
|
|
|
@@ -4,8 +4,8 @@ build-backend = "setuptools.build_meta"
|
|
|
4
4
|
|
|
5
5
|
[project]
|
|
6
6
|
name = "crawlora"
|
|
7
|
-
version = "1.5.0.
|
|
8
|
-
description = "Python SDK for the public
|
|
7
|
+
version = "1.5.0.dev2"
|
|
8
|
+
description = "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."
|
|
9
9
|
readme = "README.md"
|
|
10
10
|
requires-python = ">=3.10"
|
|
11
11
|
license = "MIT"
|
|
@@ -32,7 +32,8 @@ dependencies = [
|
|
|
32
32
|
async = ["httpx>=0.27"]
|
|
33
33
|
|
|
34
34
|
[project.urls]
|
|
35
|
-
Homepage = "https://
|
|
35
|
+
Homepage = "https://crawlora.net/"
|
|
36
|
+
Documentation = "https://crawlora.net/docs"
|
|
36
37
|
Repository = "https://github.com/Crawlora-org/crawlora-python-sdk"
|
|
37
38
|
Issues = "https://github.com/Crawlora-org/crawlora-python-sdk/issues"
|
|
38
39
|
|
|
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
|
|
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
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|