scraper-rust 0.4.1__tar.gz → 0.4.3__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.
- {scraper_rust-0.4.1 → scraper_rust-0.4.3}/.github/workflows/release.yml +64 -16
- {scraper_rust-0.4.1 → scraper_rust-0.4.3}/Cargo.lock +1 -1
- {scraper_rust-0.4.1 → scraper_rust-0.4.3}/Cargo.toml +1 -1
- {scraper_rust-0.4.1 → scraper_rust-0.4.3}/PKG-INFO +1 -1
- {scraper_rust-0.4.1 → scraper_rust-0.4.3}/pyproject.toml +1 -1
- {scraper_rust-0.4.1 → scraper_rust-0.4.3}/tests/test_scraper.py +3 -1
- {scraper_rust-0.4.1 → scraper_rust-0.4.3}/uv.lock +35 -35
- {scraper_rust-0.4.1 → scraper_rust-0.4.3}/.github/workflows/benchmark.yml +0 -0
- {scraper_rust-0.4.1 → scraper_rust-0.4.3}/.github/workflows/bump-version.yml +0 -0
- {scraper_rust-0.4.1 → scraper_rust-0.4.3}/.github/workflows/tests.yml +0 -0
- {scraper_rust-0.4.1 → scraper_rust-0.4.3}/.gitignore +0 -0
- {scraper_rust-0.4.1 → scraper_rust-0.4.3}/AGENTS.md +0 -0
- {scraper_rust-0.4.1 → scraper_rust-0.4.3}/LICENSE +0 -0
- {scraper_rust-0.4.1 → scraper_rust-0.4.3}/README.md +0 -0
- {scraper_rust-0.4.1 → scraper_rust-0.4.3}/benchmarks/README.md +0 -0
- {scraper_rust-0.4.1 → scraper_rust-0.4.3}/benchmarks/bench_parse_memory.py +0 -0
- {scraper_rust-0.4.1 → scraper_rust-0.4.3}/benchmarks/bench_sync_async.py +0 -0
- {scraper_rust-0.4.1 → scraper_rust-0.4.3}/benchmarks/bench_vs_markupever.py +0 -0
- {scraper_rust-0.4.1 → scraper_rust-0.4.3}/docs/README.md +0 -0
- {scraper_rust-0.4.1 → scraper_rust-0.4.3}/docs/api.md +0 -0
- {scraper_rust-0.4.1 → scraper_rust-0.4.3}/docs/architecture.md +0 -0
- {scraper_rust-0.4.1 → scraper_rust-0.4.3}/docs/async-api.md +0 -0
- {scraper_rust-0.4.1 → scraper_rust-0.4.3}/docs/development.md +0 -0
- {scraper_rust-0.4.1 → scraper_rust-0.4.3}/docs/limits-and-errors.md +0 -0
- {scraper_rust-0.4.1 → scraper_rust-0.4.3}/examples/demo.py +0 -0
- {scraper_rust-0.4.1 → scraper_rust-0.4.3}/examples/demo_async_document.py +0 -0
- {scraper_rust-0.4.1 → scraper_rust-0.4.3}/examples/demo_asyncio.py +0 -0
- {scraper_rust-0.4.1 → scraper_rust-0.4.3}/examples/demo_prettify_url.py +0 -0
- {scraper_rust-0.4.1 → scraper_rust-0.4.3}/justfile +0 -0
- {scraper_rust-0.4.1 → scraper_rust-0.4.3}/py.typed +0 -0
- {scraper_rust-0.4.1 → scraper_rust-0.4.3}/scraper_rs/__init__.py +0 -0
- {scraper_rust-0.4.1 → scraper_rust-0.4.3}/scraper_rs/asyncio.py +0 -0
- {scraper_rust-0.4.1 → scraper_rust-0.4.3}/scraper_rs/asyncio.pyi +0 -0
- {scraper_rust-0.4.1 → scraper_rust-0.4.3}/scraper_rs.pyi +0 -0
- {scraper_rust-0.4.1 → scraper_rust-0.4.3}/src/lib.rs +0 -0
- {scraper_rust-0.4.1 → scraper_rust-0.4.3}/tests/test_asyncio.py +0 -0
- {scraper_rust-0.4.1 → scraper_rust-0.4.3}/tests/test_performance.py +0 -0
|
@@ -10,12 +10,24 @@ permissions:
|
|
|
10
10
|
|
|
11
11
|
jobs:
|
|
12
12
|
build-wheels:
|
|
13
|
-
name: Build wheels on ${{ matrix.
|
|
14
|
-
runs-on: ${{ matrix.
|
|
13
|
+
name: Build wheels on ${{ matrix.name }}
|
|
14
|
+
runs-on: ${{ matrix.runner }}
|
|
15
15
|
strategy:
|
|
16
16
|
fail-fast: false
|
|
17
17
|
matrix:
|
|
18
|
-
|
|
18
|
+
include:
|
|
19
|
+
- name: linux-x86_64
|
|
20
|
+
runner: ubuntu-latest
|
|
21
|
+
platform: linux
|
|
22
|
+
- name: linux-arm64
|
|
23
|
+
runner: ubuntu-24.04-arm
|
|
24
|
+
platform: linux
|
|
25
|
+
- name: windows
|
|
26
|
+
runner: windows-latest
|
|
27
|
+
platform: windows
|
|
28
|
+
- name: macos
|
|
29
|
+
runner: macos-latest
|
|
30
|
+
platform: macos
|
|
19
31
|
|
|
20
32
|
steps:
|
|
21
33
|
- name: Checkout repository
|
|
@@ -26,16 +38,40 @@ jobs:
|
|
|
26
38
|
with:
|
|
27
39
|
python-version: '3.10'
|
|
28
40
|
|
|
41
|
+
- name: Install zig (for Linux manylinux builds)
|
|
42
|
+
if: matrix.platform == 'linux'
|
|
43
|
+
uses: goto-bus-stop/setup-zig@v2
|
|
44
|
+
with:
|
|
45
|
+
version: 0.11.0
|
|
46
|
+
|
|
29
47
|
- name: Build wheels (Linux)
|
|
30
|
-
if: matrix.
|
|
48
|
+
if: matrix.platform == 'linux'
|
|
31
49
|
uses: PyO3/maturin-action@v1
|
|
32
50
|
with:
|
|
33
51
|
command: build
|
|
34
|
-
args: --release --strip --out dist
|
|
35
|
-
|
|
52
|
+
args: --release --strip --out dist --zig --interpreter python3.10
|
|
53
|
+
|
|
54
|
+
- name: Verify Linux wheels are abi3
|
|
55
|
+
if: matrix.platform == 'linux'
|
|
56
|
+
shell: bash
|
|
57
|
+
run: |
|
|
58
|
+
shopt -s nullglob
|
|
59
|
+
wheels=(dist/*.whl)
|
|
60
|
+
if [ ${#wheels[@]} -eq 0 ]; then
|
|
61
|
+
echo "No wheels were built in dist/" >&2
|
|
62
|
+
exit 1
|
|
63
|
+
fi
|
|
64
|
+
|
|
65
|
+
for wheel in "${wheels[@]}"; do
|
|
66
|
+
name="$(basename "$wheel")"
|
|
67
|
+
if [[ "$name" != *abi3* ]]; then
|
|
68
|
+
echo "Expected abi3 Linux wheel, got: $name" >&2
|
|
69
|
+
exit 1
|
|
70
|
+
fi
|
|
71
|
+
done
|
|
36
72
|
|
|
37
73
|
- name: Build wheels (Windows/macOS)
|
|
38
|
-
if: matrix.
|
|
74
|
+
if: matrix.platform == 'windows' || matrix.platform == 'macos'
|
|
39
75
|
uses: PyO3/maturin-action@v1
|
|
40
76
|
with:
|
|
41
77
|
command: build
|
|
@@ -44,7 +80,7 @@ jobs:
|
|
|
44
80
|
- name: Upload wheels as artifacts
|
|
45
81
|
uses: actions/upload-artifact@v7
|
|
46
82
|
with:
|
|
47
|
-
name: wheels-${{ matrix.
|
|
83
|
+
name: wheels-${{ matrix.name }}
|
|
48
84
|
path: dist/*.whl
|
|
49
85
|
|
|
50
86
|
- name: Upload wheels to release
|
|
@@ -56,13 +92,25 @@ jobs:
|
|
|
56
92
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
57
93
|
|
|
58
94
|
build-free-threaded-wheels:
|
|
59
|
-
name: Build free-threaded wheels on ${{ matrix.
|
|
60
|
-
runs-on: ${{ matrix.
|
|
95
|
+
name: Build free-threaded wheels on ${{ matrix.name }} (Python ${{ matrix.python-version }})
|
|
96
|
+
runs-on: ${{ matrix.runner }}
|
|
61
97
|
strategy:
|
|
62
98
|
fail-fast: false
|
|
63
99
|
matrix:
|
|
64
|
-
os: [ubuntu-latest, windows-latest, macos-latest]
|
|
65
100
|
python-version: ['3.13t', '3.14t']
|
|
101
|
+
include:
|
|
102
|
+
- name: linux-x86_64
|
|
103
|
+
runner: ubuntu-latest
|
|
104
|
+
platform: linux
|
|
105
|
+
- name: linux-arm64
|
|
106
|
+
runner: ubuntu-24.04-arm
|
|
107
|
+
platform: linux
|
|
108
|
+
- name: windows
|
|
109
|
+
runner: windows-latest
|
|
110
|
+
platform: windows
|
|
111
|
+
- name: macos
|
|
112
|
+
runner: macos-latest
|
|
113
|
+
platform: macos
|
|
66
114
|
|
|
67
115
|
steps:
|
|
68
116
|
- name: Checkout repository
|
|
@@ -75,20 +123,20 @@ jobs:
|
|
|
75
123
|
allow-prereleases: true
|
|
76
124
|
|
|
77
125
|
- name: Install zig (for Linux manylinux builds)
|
|
78
|
-
if: matrix.
|
|
126
|
+
if: matrix.platform == 'linux'
|
|
79
127
|
uses: goto-bus-stop/setup-zig@v2
|
|
80
128
|
with:
|
|
81
129
|
version: 0.11.0
|
|
82
130
|
|
|
83
131
|
- name: Build free-threaded wheels (Linux - using zig for manylinux)
|
|
84
|
-
if: matrix.
|
|
132
|
+
if: matrix.platform == 'linux'
|
|
85
133
|
uses: PyO3/maturin-action@v1
|
|
86
134
|
with:
|
|
87
135
|
command: build
|
|
88
|
-
args: --release --strip --out dist --zig
|
|
136
|
+
args: --release --strip --out dist --zig --interpreter python
|
|
89
137
|
|
|
90
138
|
- name: Build free-threaded wheels (Windows/macOS)
|
|
91
|
-
if: matrix.
|
|
139
|
+
if: matrix.platform == 'windows' || matrix.platform == 'macos'
|
|
92
140
|
uses: PyO3/maturin-action@v1
|
|
93
141
|
with:
|
|
94
142
|
command: build
|
|
@@ -97,7 +145,7 @@ jobs:
|
|
|
97
145
|
- name: Upload free-threaded wheels as artifacts
|
|
98
146
|
uses: actions/upload-artifact@v7
|
|
99
147
|
with:
|
|
100
|
-
name: wheels-free-threaded-${{ matrix.
|
|
148
|
+
name: wheels-free-threaded-${{ matrix.name }}-${{ matrix.python-version }}
|
|
101
149
|
path: dist/*.whl
|
|
102
150
|
|
|
103
151
|
- name: Upload free-threaded wheels to release
|
|
@@ -4,7 +4,7 @@ build-backend = "maturin"
|
|
|
4
4
|
|
|
5
5
|
[project]
|
|
6
6
|
name = "scraper-rust"
|
|
7
|
-
version = "0.4.
|
|
7
|
+
version = "0.4.3"
|
|
8
8
|
description = "Python bindings around rust-scraper/scraper with PyO3"
|
|
9
9
|
authors = [{ name = "Yehor Smoliakov", email = "egorsmkv@gmail.com" }]
|
|
10
10
|
requires-python = ">=3.10"
|
|
@@ -234,7 +234,9 @@ def test_parse_document_to_dict(sample_html: str) -> None:
|
|
|
234
234
|
|
|
235
235
|
|
|
236
236
|
def test_parse_fragment_to_dict() -> None:
|
|
237
|
-
parsed = parse_fragment(
|
|
237
|
+
parsed = parse_fragment(
|
|
238
|
+
'<div class="item">Hello <span>world</span><!-- note --></div>'
|
|
239
|
+
)
|
|
238
240
|
|
|
239
241
|
assert parsed["node_type"] == "document_fragment"
|
|
240
242
|
assert parsed["errors"] == []
|
|
@@ -43,26 +43,26 @@ wheels = [
|
|
|
43
43
|
|
|
44
44
|
[[package]]
|
|
45
45
|
name = "maturin"
|
|
46
|
-
version = "1.12.
|
|
46
|
+
version = "1.12.6"
|
|
47
47
|
source = { registry = "https://pypi.org/simple" }
|
|
48
48
|
dependencies = [
|
|
49
49
|
{ name = "tomli", marker = "python_full_version < '3.11'" },
|
|
50
50
|
]
|
|
51
|
-
sdist = { url = "https://files.pythonhosted.org/packages/
|
|
51
|
+
sdist = { url = "https://files.pythonhosted.org/packages/0c/18/8b2eebd3ea086a5ec73d7081f95ec64918ceda1900075902fc296ea3ad55/maturin-1.12.6.tar.gz", hash = "sha256:d37be3a811a7f2ee28a0fa0964187efa50e90f21da0c6135c27787fa0b6a89db", size = 269165, upload-time = "2026-03-01T14:54:04.21Z" }
|
|
52
52
|
wheels = [
|
|
53
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
54
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
55
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
56
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
57
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
58
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
59
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
60
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
61
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
62
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
63
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
64
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
65
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
53
|
+
{ url = "https://files.pythonhosted.org/packages/71/8b/9ddfde8a485489e3ebdc50ee3042ef1c854f00dfea776b951068f6ffe451/maturin-1.12.6-py3-none-linux_armv6l.whl", hash = "sha256:6892b4176992fcc143f9d1c1c874a816e9a041248eef46433db87b0f0aff4278", size = 9789847, upload-time = "2026-03-01T14:54:09.172Z" },
|
|
54
|
+
{ url = "https://files.pythonhosted.org/packages/ef/e8/5f7fd3763f214a77ac0388dbcc71cc30aec5490016bd0c8e6bd729fc7b0a/maturin-1.12.6-py3-none-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl", hash = "sha256:c0c742beeeef7fb93b6a81bd53e75507887e396fd1003c45117658d063812dad", size = 19023833, upload-time = "2026-03-01T14:53:46.743Z" },
|
|
55
|
+
{ url = "https://files.pythonhosted.org/packages/e0/7f/706ff3839c8b2046436d4c2bc97596c558728264d18abc298a1ad862a4be/maturin-1.12.6-py3-none-macosx_10_12_x86_64.whl", hash = "sha256:2cb41139295eed6411d3cdafc7430738094c2721f34b7eeb44f33cac516115dc", size = 9821620, upload-time = "2026-03-01T14:54:12.04Z" },
|
|
56
|
+
{ url = "https://files.pythonhosted.org/packages/0e/9c/70917fb123c8dd6b595e913616c9c72d730cbf4a2b6cac8077dc02a12586/maturin-1.12.6-py3-none-manylinux_2_12_i686.manylinux2010_i686.musllinux_1_1_i686.whl", hash = "sha256:351f3af1488a7cbdcff3b6d8482c17164273ac981378a13a4a9937a49aec7d71", size = 9849107, upload-time = "2026-03-01T14:53:48.971Z" },
|
|
57
|
+
{ url = "https://files.pythonhosted.org/packages/59/ea/f1d6ad95c0a12fbe761a7c28a57540341f188564dbe8ad730a4d1788cd32/maturin-1.12.6-py3-none-manylinux_2_12_x86_64.manylinux2010_x86_64.musllinux_1_1_x86_64.whl", hash = "sha256:6dbddfe4dc7ddee60bbac854870bd7cfec660acb54d015d24597d59a1c828f61", size = 10242855, upload-time = "2026-03-01T14:53:44.605Z" },
|
|
58
|
+
{ url = "https://files.pythonhosted.org/packages/93/1b/2419843a4f1d2fb4747f3dc3d9c4a2881cd97a3274dd94738fcdf0835e79/maturin-1.12.6-py3-none-manylinux_2_17_aarch64.manylinux2014_aarch64.musllinux_1_1_aarch64.whl", hash = "sha256:8fdb0f63e77ee3df0f027a120e9af78dbc31edf0eb0f263d55783c250c33b728", size = 9674972, upload-time = "2026-03-01T14:53:52.763Z" },
|
|
59
|
+
{ url = "https://files.pythonhosted.org/packages/71/46/b60ab2fc996d904b40e55bd475599dcdccd8f7ad3e649bf95e87970df466/maturin-1.12.6-py3-none-manylinux_2_17_armv7l.manylinux2014_armv7l.musllinux_1_1_armv7l.whl", hash = "sha256:fa84b7493a2e80759cacc2e668fa5b444d55b9994e90707c42904f55d6322c1e", size = 9645755, upload-time = "2026-03-01T14:53:58.497Z" },
|
|
60
|
+
{ url = "https://files.pythonhosted.org/packages/a4/96/03f2b55a8c226805115232fc23c4a4f33f0c9d39e11efab8166dc440f80d/maturin-1.12.6-py3-none-manylinux_2_17_ppc64le.manylinux2014_ppc64le.musllinux_1_1_ppc64le.whl", hash = "sha256:e90dc12bc6a38e9495692a36c9e231c4d7e0c9bfde60719468ab7d8673db3c45", size = 12737612, upload-time = "2026-03-01T14:54:05.393Z" },
|
|
61
|
+
{ url = "https://files.pythonhosted.org/packages/2b/c2/648667022c5b53cdccefa67c245e8a984970f3045820f00c2e23bdb2aff4/maturin-1.12.6-py3-none-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:06fc8d089f98623ce924c669b70911dfed30f9a29956c362945f727f9abc546b", size = 10455028, upload-time = "2026-03-01T14:54:07.349Z" },
|
|
62
|
+
{ url = "https://files.pythonhosted.org/packages/63/d6/5b5efe3ca0c043357ed3f8d2b2d556169fdbf1ff75e50e8e597708a359d2/maturin-1.12.6-py3-none-manylinux_2_31_riscv64.musllinux_1_1_riscv64.whl", hash = "sha256:75133e56274d43b9227fd49dca9a86e32f1fd56a7b55544910c4ce978c2bb5aa", size = 10014531, upload-time = "2026-03-01T14:53:54.548Z" },
|
|
63
|
+
{ url = "https://files.pythonhosted.org/packages/68/d5/39c594c27b1a8b32a0cb95fff9ad60b888c4352d1d1c389ac1bd20dc1e16/maturin-1.12.6-py3-none-win32.whl", hash = "sha256:3f32e0a3720b81423c9d35c14e728cb1f954678124749776dc72d533ea1115e8", size = 8553012, upload-time = "2026-03-01T14:53:50.706Z" },
|
|
64
|
+
{ url = "https://files.pythonhosted.org/packages/94/66/b262832a91747e04051e21f986bd01a8af81fbffafacc7d66a11e79aab5f/maturin-1.12.6-py3-none-win_amd64.whl", hash = "sha256:977290159d252db946054a0555263c59b3d0c7957135c69e690f4b1558ee9983", size = 9890470, upload-time = "2026-03-01T14:53:56.659Z" },
|
|
65
|
+
{ url = "https://files.pythonhosted.org/packages/e3/47/76b8ca470ddc8d7d36aa8c15f5a6aed1841806bb93a0f4ead8ee61e9a088/maturin-1.12.6-py3-none-win_arm64.whl", hash = "sha256:bae91976cdc8148038e13c881e1e844e5c63e58e026e8b9945aa2d19b3b4ae89", size = 8606158, upload-time = "2026-03-01T14:54:02.423Z" },
|
|
66
66
|
]
|
|
67
67
|
|
|
68
68
|
[[package]]
|
|
@@ -126,32 +126,32 @@ wheels = [
|
|
|
126
126
|
|
|
127
127
|
[[package]]
|
|
128
128
|
name = "ruff"
|
|
129
|
-
version = "0.15.
|
|
129
|
+
version = "0.15.7"
|
|
130
130
|
source = { registry = "https://pypi.org/simple" }
|
|
131
|
-
sdist = { url = "https://files.pythonhosted.org/packages/
|
|
131
|
+
sdist = { url = "https://files.pythonhosted.org/packages/a1/22/9e4f66ee588588dc6c9af6a994e12d26e19efbe874d1a909d09a6dac7a59/ruff-0.15.7.tar.gz", hash = "sha256:04f1ae61fc20fe0b148617c324d9d009b5f63412c0b16474f3d5f1a1a665f7ac", size = 4601277, upload-time = "2026-03-19T16:26:22.605Z" }
|
|
132
132
|
wheels = [
|
|
133
|
-
{ url = "https://files.pythonhosted.org/packages/2f/
|
|
134
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
135
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
136
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
137
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
138
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
139
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
140
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
141
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
142
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
143
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
144
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
145
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
146
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
147
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
148
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
149
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
133
|
+
{ url = "https://files.pythonhosted.org/packages/41/2f/0b08ced94412af091807b6119ca03755d651d3d93a242682bf020189db94/ruff-0.15.7-py3-none-linux_armv6l.whl", hash = "sha256:a81cc5b6910fb7dfc7c32d20652e50fa05963f6e13ead3c5915c41ac5d16668e", size = 10489037, upload-time = "2026-03-19T16:26:32.47Z" },
|
|
134
|
+
{ url = "https://files.pythonhosted.org/packages/91/4a/82e0fa632e5c8b1eba5ee86ecd929e8ff327bbdbfb3c6ac5d81631bef605/ruff-0.15.7-py3-none-macosx_10_12_x86_64.whl", hash = "sha256:722d165bd52403f3bdabc0ce9e41fc47070ac56d7a91b4e0d097b516a53a3477", size = 10955433, upload-time = "2026-03-19T16:27:00.205Z" },
|
|
135
|
+
{ url = "https://files.pythonhosted.org/packages/ab/10/12586735d0ff42526ad78c049bf51d7428618c8b5c467e72508c694119df/ruff-0.15.7-py3-none-macosx_11_0_arm64.whl", hash = "sha256:7fbc2448094262552146cbe1b9643a92f66559d3761f1ad0656d4991491af49e", size = 10269302, upload-time = "2026-03-19T16:26:26.183Z" },
|
|
136
|
+
{ url = "https://files.pythonhosted.org/packages/eb/5d/32b5c44ccf149a26623671df49cbfbd0a0ae511ff3df9d9d2426966a8d57/ruff-0.15.7-py3-none-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:6b39329b60eba44156d138275323cc726bbfbddcec3063da57caa8a8b1d50adf", size = 10607625, upload-time = "2026-03-19T16:27:03.263Z" },
|
|
137
|
+
{ url = "https://files.pythonhosted.org/packages/5d/f1/f0001cabe86173aaacb6eb9bb734aa0605f9a6aa6fa7d43cb49cbc4af9c9/ruff-0.15.7-py3-none-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:87768c151808505f2bfc93ae44e5f9e7c8518943e5074f76ac21558ef5627c85", size = 10324743, upload-time = "2026-03-19T16:27:09.791Z" },
|
|
138
|
+
{ url = "https://files.pythonhosted.org/packages/7a/87/b8a8f3d56b8d848008559e7c9d8bf367934d5367f6d932ba779456e2f73b/ruff-0.15.7-py3-none-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:fb0511670002c6c529ec66c0e30641c976c8963de26a113f3a30456b702468b0", size = 11138536, upload-time = "2026-03-19T16:27:06.101Z" },
|
|
139
|
+
{ url = "https://files.pythonhosted.org/packages/e4/f2/4fd0d05aab0c5934b2e1464784f85ba2eab9d54bffc53fb5430d1ed8b829/ruff-0.15.7-py3-none-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:e0d19644f801849229db8345180a71bee5407b429dd217f853ec515e968a6912", size = 11994292, upload-time = "2026-03-19T16:26:48.718Z" },
|
|
140
|
+
{ url = "https://files.pythonhosted.org/packages/64/22/fc4483871e767e5e95d1622ad83dad5ebb830f762ed0420fde7dfa9d9b08/ruff-0.15.7-py3-none-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:4806d8e09ef5e84eb19ba833d0442f7e300b23fe3f0981cae159a248a10f0036", size = 11398981, upload-time = "2026-03-19T16:26:54.513Z" },
|
|
141
|
+
{ url = "https://files.pythonhosted.org/packages/b0/99/66f0343176d5eab02c3f7fcd2de7a8e0dd7a41f0d982bee56cd1c24db62b/ruff-0.15.7-py3-none-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:dce0896488562f09a27b9c91b1f58a097457143931f3c4d519690dea54e624c5", size = 11242422, upload-time = "2026-03-19T16:26:29.277Z" },
|
|
142
|
+
{ url = "https://files.pythonhosted.org/packages/5d/3a/a7060f145bfdcce4c987ea27788b30c60e2c81d6e9a65157ca8afe646328/ruff-0.15.7-py3-none-manylinux_2_31_riscv64.whl", hash = "sha256:1852ce241d2bc89e5dc823e03cff4ce73d816b5c6cdadd27dbfe7b03217d2a12", size = 11232158, upload-time = "2026-03-19T16:26:42.321Z" },
|
|
143
|
+
{ url = "https://files.pythonhosted.org/packages/a7/53/90fbb9e08b29c048c403558d3cdd0adf2668b02ce9d50602452e187cd4af/ruff-0.15.7-py3-none-musllinux_1_2_aarch64.whl", hash = "sha256:5f3e4b221fb4bd293f79912fc5e93a9063ebd6d0dcbd528f91b89172a9b8436c", size = 10577861, upload-time = "2026-03-19T16:26:57.459Z" },
|
|
144
|
+
{ url = "https://files.pythonhosted.org/packages/2f/aa/5f486226538fe4d0f0439e2da1716e1acf895e2a232b26f2459c55f8ddad/ruff-0.15.7-py3-none-musllinux_1_2_armv7l.whl", hash = "sha256:b15e48602c9c1d9bdc504b472e90b90c97dc7d46c7028011ae67f3861ceba7b4", size = 10327310, upload-time = "2026-03-19T16:26:35.909Z" },
|
|
145
|
+
{ url = "https://files.pythonhosted.org/packages/99/9e/271afdffb81fe7bfc8c43ba079e9d96238f674380099457a74ccb3863857/ruff-0.15.7-py3-none-musllinux_1_2_i686.whl", hash = "sha256:1b4705e0e85cedc74b0a23cf6a179dbb3df184cb227761979cc76c0440b5ab0d", size = 10840752, upload-time = "2026-03-19T16:26:45.723Z" },
|
|
146
|
+
{ url = "https://files.pythonhosted.org/packages/bf/29/a4ae78394f76c7759953c47884eb44de271b03a66634148d9f7d11e721bd/ruff-0.15.7-py3-none-musllinux_1_2_x86_64.whl", hash = "sha256:112c1fa316a558bb34319282c1200a8bf0495f1b735aeb78bfcb2991e6087580", size = 11336961, upload-time = "2026-03-19T16:26:39.076Z" },
|
|
147
|
+
{ url = "https://files.pythonhosted.org/packages/26/6b/8786ba5736562220d588a2f6653e6c17e90c59ced34a2d7b512ef8956103/ruff-0.15.7-py3-none-win32.whl", hash = "sha256:6d39e2d3505b082323352f733599f28169d12e891f7dd407f2d4f54b4c2886de", size = 10582538, upload-time = "2026-03-19T16:26:15.992Z" },
|
|
148
|
+
{ url = "https://files.pythonhosted.org/packages/2b/e9/346d4d3fffc6871125e877dae8d9a1966b254fbd92a50f8561078b88b099/ruff-0.15.7-py3-none-win_amd64.whl", hash = "sha256:4d53d712ddebcd7dace1bc395367aec12c057aacfe9adbb6d832302575f4d3a1", size = 11755839, upload-time = "2026-03-19T16:26:19.897Z" },
|
|
149
|
+
{ url = "https://files.pythonhosted.org/packages/8f/e8/726643a3ea68c727da31570bde48c7a10f1aa60eddd628d94078fec586ff/ruff-0.15.7-py3-none-win_arm64.whl", hash = "sha256:18e8d73f1c3fdf27931497972250340f92e8c861722161a9caeb89a58ead6ed2", size = 11023304, upload-time = "2026-03-19T16:26:51.669Z" },
|
|
150
150
|
]
|
|
151
151
|
|
|
152
152
|
[[package]]
|
|
153
153
|
name = "scraper-rust"
|
|
154
|
-
version = "0.4.
|
|
154
|
+
version = "0.4.3"
|
|
155
155
|
source = { editable = "." }
|
|
156
156
|
|
|
157
157
|
[package.optional-dependencies]
|
|
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
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|