Skip to content

Commit 3cbd467

Browse files
docs: Version docs for v3.0.4 [skip ci]
1 parent 882cfd8 commit 3cbd467

4 files changed

Lines changed: 14721 additions & 15395 deletions

File tree

website/versioned_docs/version-3.0/02_concepts/04_error_handling.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ When you use the Apify client, it automatically extracts all relevant data from
1919
The Apify client provides dedicated error subclasses based on the HTTP status code of the failed response, so you can branch on error kind without inspecting `status_code` or `type`:
2020

2121
| Status | Subclass |
22-
|---|---|
22+
| --- | --- |
2323
| 400 | <ApiLink to="class/InvalidRequestError">`InvalidRequestError`</ApiLink> |
2424
| 401 | <ApiLink to="class/UnauthorizedError">`UnauthorizedError`</ApiLink> |
2525
| 403 | <ApiLink to="class/ForbiddenError">`ForbiddenError`</ApiLink> |

website/versioned_docs/version-3.0/02_concepts/10_custom_http_clients.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ It must return an object satisfying the <ApiLink to="class/HttpResponse">`HttpRe
7878
<ApiLink to="class/HttpResponse">`HttpResponse`</ApiLink> is not a concrete class. Any object with the following attributes and methods will work:
7979

8080
| Property / Method | Description |
81-
|---|---|
81+
| --- | --- |
8282
| `status_code: int` | HTTP status code |
8383
| `text: str` | Response body as text |
8484
| `content: bytes` | Raw response body |

website/versioned_docs/version-3.0/02_concepts/11_timeouts.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ import TimeoutsSyncExample from '!!raw-loader!./code/11_timeouts_sync.py';
1515
The Apify client uses a tiered timeout system to set appropriate time limits for different types of API requests. Each tier has a default value suited to its use case:
1616

1717
| Tier | Default | Purpose |
18-
|---|---|---|
18+
| --- | --- | --- |
1919
| `short` | 5 seconds | Fast CRUD operations (get, update, delete) |
2020
| `medium` | 30 seconds | Batch, list, and data transfer operations |
2121
| `long` | 360 seconds | Long-polling, streaming, and heavy operations |

0 commit comments

Comments
 (0)