Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions docs/batch-client-reference.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# ZenRows Batch — Python SDK Reference
# Zenrows Batch — Python SDK Reference

_Auto-generated from the SDK docstrings via `make docs`. Do not edit by hand. Everything below is imported from the top-level `zenrows.batch` package (`from zenrows.batch import ...`)._

Expand Down Expand Up @@ -39,7 +39,7 @@ don't have further-actions to chain).
class ZenRowsBatchClient()
```

Synchronous, typed client for the ZenRows Batch API.
Synchronous, typed client for the Zenrows Batch API.

`api_key` is required. Most users read it from a secrets store or
environment variable at the call site:
Expand Down Expand Up @@ -2156,7 +2156,7 @@ Vocabulary (the only keys that appear):
- `bad_target` — target URL is the problem (bad host, 404, 410, too large)
- `rate_limited` — target throttled the request
- `timeout` — the scrape didn't complete in time
- `gateway_error` — ZenRows-side transport / 5xx
- `gateway_error` — Zenrows-side transport / 5xx
- `other` — anything else

<a id="RunStats.spend"></a>
Expand Down
2 changes: 1 addition & 1 deletion docs/openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -1522,7 +1522,7 @@ components:
- `bad_target` — target URL is the problem (bad host, 404, 410, too large)
- `rate_limited` — target throttled the request
- `timeout` — the scrape didn't complete in time
- `gateway_error` — ZenRows-side transport / 5xx
- `gateway_error` — Zenrows-side transport / 5xx
- `other` — anything else
additionalProperties:
type: integer
Expand Down
2 changes: 1 addition & 1 deletion scripts/build_reference.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
]

HEADER = (
"# ZenRows Batch — Python SDK Reference\n\n"
"# Zenrows Batch — Python SDK Reference\n\n"
"_Auto-generated from the SDK docstrings via `make docs`. Do not edit by "
"hand. Everything below is imported from the top-level `zenrows.batch` "
"package (`from zenrows.batch import ...`)._\n"
Expand Down
2 changes: 1 addition & 1 deletion src/zenrows/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
"""ZenRows Python SDK.
"""Zenrows Python SDK.

Two clients live here:

Expand Down
2 changes: 1 addition & 1 deletion src/zenrows/batch/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
"""Public surface for the ZenRows Batch (async-job) API.
"""Public surface for the Zenrows Batch (async-job) API.

What's where:
- `client.ZenRowsBatchClient` — the friendly typed facade. One
Expand Down
2 changes: 1 addition & 1 deletion src/zenrows/batch/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@


class ZenRowsBatchClient:
"""Synchronous, typed client for the ZenRows Batch API.
"""Synchronous, typed client for the Zenrows Batch API.

`api_key` is required. Most users read it from a secrets store or
environment variable at the call site:
Expand Down
4 changes: 2 additions & 2 deletions src/zenrows/batch/models.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# generated by datamodel-codegen:
# filename: openapi.yaml
# timestamp: 2026-07-27T07:37:28+00:00
# timestamp: 2026-08-21T10:17:51+00:00

from __future__ import annotations

Expand Down Expand Up @@ -290,7 +290,7 @@ class RunStats(BaseModel):
- `bad_target` — target URL is the problem (bad host, 404, 410, too large)
- `rate_limited` — target throttled the request
- `timeout` — the scrape didn't complete in time
- `gateway_error` — ZenRows-side transport / 5xx
- `gateway_error` — Zenrows-side transport / 5xx
- `other` — anything else

"""
Expand Down
Loading