crawlora 1.5.0.dev2__tar.gz → 1.5.0.dev3__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.dev2/crawlora.egg-info → crawlora-1.5.0.dev3}/PKG-INFO +5 -5
- {crawlora-1.5.0.dev2 → crawlora-1.5.0.dev3}/README.md +4 -4
- {crawlora-1.5.0.dev2 → crawlora-1.5.0.dev3}/crawlora/client.py +1 -1
- {crawlora-1.5.0.dev2 → crawlora-1.5.0.dev3/crawlora.egg-info}/PKG-INFO +5 -5
- {crawlora-1.5.0.dev2 → crawlora-1.5.0.dev3}/pyproject.toml +1 -1
- {crawlora-1.5.0.dev2 → crawlora-1.5.0.dev3}/LICENSE +0 -0
- {crawlora-1.5.0.dev2 → crawlora-1.5.0.dev3}/MANIFEST.in +0 -0
- {crawlora-1.5.0.dev2 → crawlora-1.5.0.dev3}/crawlora/__init__.py +0 -0
- {crawlora-1.5.0.dev2 → crawlora-1.5.0.dev3}/crawlora/_pagination.py +0 -0
- {crawlora-1.5.0.dev2 → crawlora-1.5.0.dev3}/crawlora/_transport_sync.py +0 -0
- {crawlora-1.5.0.dev2 → crawlora-1.5.0.dev3}/crawlora/async_client.py +0 -0
- {crawlora-1.5.0.dev2 → crawlora-1.5.0.dev3}/crawlora/client.pyi +0 -0
- {crawlora-1.5.0.dev2 → crawlora-1.5.0.dev3}/crawlora/operations.py +0 -0
- {crawlora-1.5.0.dev2 → crawlora-1.5.0.dev3}/crawlora/py.typed +0 -0
- {crawlora-1.5.0.dev2 → crawlora-1.5.0.dev3}/crawlora.egg-info/SOURCES.txt +0 -0
- {crawlora-1.5.0.dev2 → crawlora-1.5.0.dev3}/crawlora.egg-info/dependency_links.txt +0 -0
- {crawlora-1.5.0.dev2 → crawlora-1.5.0.dev3}/crawlora.egg-info/requires.txt +0 -0
- {crawlora-1.5.0.dev2 → crawlora-1.5.0.dev3}/crawlora.egg-info/top_level.txt +0 -0
- {crawlora-1.5.0.dev2 → crawlora-1.5.0.dev3}/docs/operations.md +0 -0
- {crawlora-1.5.0.dev2 → crawlora-1.5.0.dev3}/docs/recipes.md +0 -0
- {crawlora-1.5.0.dev2 → crawlora-1.5.0.dev3}/examples/async_search.py +0 -0
- {crawlora-1.5.0.dev2 → crawlora-1.5.0.dev3}/examples/bing_search.py +0 -0
- {crawlora-1.5.0.dev2 → crawlora-1.5.0.dev3}/examples/paginate.py +0 -0
- {crawlora-1.5.0.dev2 → crawlora-1.5.0.dev3}/examples/youtube_transcript.py +0 -0
- {crawlora-1.5.0.dev2 → crawlora-1.5.0.dev3}/setup.cfg +0 -0
- {crawlora-1.5.0.dev2 → crawlora-1.5.0.dev3}/tests/test_async_httpx.py +0 -0
- {crawlora-1.5.0.dev2 → crawlora-1.5.0.dev3}/tests/test_client.py +0 -0
- {crawlora-1.5.0.dev2 → crawlora-1.5.0.dev3}/tests/test_examples.py +0 -0
- {crawlora-1.5.0.dev2 → crawlora-1.5.0.dev3}/tests/test_v14_features.py +0 -0
- {crawlora-1.5.0.dev2 → crawlora-1.5.0.dev3}/tests/test_v15_features.py +0 -0
- {crawlora-1.5.0.dev2 → crawlora-1.5.0.dev3}/tests/test_w2_features.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: crawlora
|
|
3
|
-
Version: 1.5.0.
|
|
3
|
+
Version: 1.5.0.dev3
|
|
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
|
|
@@ -38,7 +38,7 @@ type stubs for editor and type-checker support.
|
|
|
38
38
|
## Install
|
|
39
39
|
|
|
40
40
|
Published on [PyPI](https://pypi.org/project/crawlora/). The current release is a
|
|
41
|
-
prerelease (`1.5.0.
|
|
41
|
+
prerelease (`1.5.0.dev3`), so install it with `--pre`:
|
|
42
42
|
|
|
43
43
|
```sh
|
|
44
44
|
pip install --pre crawlora
|
|
@@ -207,6 +207,6 @@ The import name is `crawlora`:
|
|
|
207
207
|
from crawlora import CrawloraClient
|
|
208
208
|
```
|
|
209
209
|
|
|
210
|
-
The
|
|
211
|
-
|
|
212
|
-
moving `latest` tag as shown above.
|
|
210
|
+
The package is published on [PyPI](https://pypi.org/project/crawlora/) as
|
|
211
|
+
`crawlora` (a prerelease — `pip install --pre crawlora`). Git beta tags and the
|
|
212
|
+
moving `latest` tag also work, as shown above.
|
|
@@ -12,7 +12,7 @@ type stubs for editor and type-checker support.
|
|
|
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.
|
|
15
|
+
prerelease (`1.5.0.dev3`), so install it with `--pre`:
|
|
16
16
|
|
|
17
17
|
```sh
|
|
18
18
|
pip install --pre crawlora
|
|
@@ -181,6 +181,6 @@ The import name is `crawlora`:
|
|
|
181
181
|
from crawlora import CrawloraClient
|
|
182
182
|
```
|
|
183
183
|
|
|
184
|
-
The
|
|
185
|
-
|
|
186
|
-
moving `latest` tag as shown above.
|
|
184
|
+
The package is published on [PyPI](https://pypi.org/project/crawlora/) as
|
|
185
|
+
`crawlora` (a prerelease — `pip install --pre crawlora`). Git beta tags and the
|
|
186
|
+
moving `latest` tag also work, as shown above.
|
|
@@ -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.3"
|
|
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,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: crawlora
|
|
3
|
-
Version: 1.5.0.
|
|
3
|
+
Version: 1.5.0.dev3
|
|
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
|
|
@@ -38,7 +38,7 @@ type stubs for editor and type-checker support.
|
|
|
38
38
|
## Install
|
|
39
39
|
|
|
40
40
|
Published on [PyPI](https://pypi.org/project/crawlora/). The current release is a
|
|
41
|
-
prerelease (`1.5.0.
|
|
41
|
+
prerelease (`1.5.0.dev3`), so install it with `--pre`:
|
|
42
42
|
|
|
43
43
|
```sh
|
|
44
44
|
pip install --pre crawlora
|
|
@@ -207,6 +207,6 @@ The import name is `crawlora`:
|
|
|
207
207
|
from crawlora import CrawloraClient
|
|
208
208
|
```
|
|
209
209
|
|
|
210
|
-
The
|
|
211
|
-
|
|
212
|
-
moving `latest` tag as shown above.
|
|
210
|
+
The package is published on [PyPI](https://pypi.org/project/crawlora/) as
|
|
211
|
+
`crawlora` (a prerelease — `pip install --pre crawlora`). Git beta tags and the
|
|
212
|
+
moving `latest` tag also work, as shown above.
|
|
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
|
|
|
4
4
|
|
|
5
5
|
[project]
|
|
6
6
|
name = "crawlora"
|
|
7
|
-
version = "1.5.0.
|
|
7
|
+
version = "1.5.0.dev3"
|
|
8
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"
|
|
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
|