Skip to content

Commit 3248d7e

Browse files
chore(internal): codegen related update (#132)
1 parent 1be828d commit 3248d7e

File tree

2 files changed

+46
-0
lines changed

2 files changed

+46
-0
lines changed

README.md

+44
Original file line numberDiff line numberDiff line change
@@ -90,6 +90,50 @@ Nested request parameters are [TypedDicts](https://docs.python.org/3/library/typ
9090

9191
Typed requests and responses provide autocomplete and documentation within your editor. If you would like to see type errors in VS Code to help catch bugs earlier, set `python.analysis.typeCheckingMode` to `basic`.
9292

93+
## Nested params
94+
95+
Nested parameters are dictionaries, typed using `TypedDict`, for example:
96+
97+
```python
98+
from browserbase import Browserbase
99+
100+
client = Browserbase()
101+
102+
session = client.sessions.create(
103+
project_id="projectId",
104+
browser_settings={
105+
"advanced_stealth": True,
106+
"block_ads": True,
107+
"context": {
108+
"id": "id",
109+
"persist": True,
110+
},
111+
"extension_id": "extensionId",
112+
"fingerprint": {
113+
"browsers": ["chrome"],
114+
"devices": ["desktop"],
115+
"http_version": 1,
116+
"locales": ["string"],
117+
"operating_systems": ["android"],
118+
"screen": {
119+
"max_height": 0,
120+
"max_width": 0,
121+
"min_height": 0,
122+
"min_width": 0,
123+
},
124+
},
125+
"log_session": True,
126+
"record_session": True,
127+
"solve_captchas": True,
128+
"viewport": {
129+
"height": 0,
130+
"width": 0,
131+
},
132+
},
133+
)
134+
print(session.browser_settings)
135+
```
136+
93137
## File uploads
94138

95139
Request parameters that correspond to file uploads can be passed as `bytes`, a [`PathLike`](https://docs.python.org/3/library/os.html#os.PathLike) instance or a tuple of `(filename, contents, media type)`.

scripts/test

+2
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,8 @@ else
5252
echo
5353
fi
5454

55+
export DEFER_PYDANTIC_BUILD=false
56+
5557
echo "==> Running tests"
5658
rye run pytest "$@"
5759

0 commit comments

Comments
 (0)