You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Add parse parameter to search function for JSON parsing support
- Add parse parameter to search() method in both API and client
- When parse=True, appends &brd_json=1 to search URLs
- Update documentation to describe the new parameter
- Add unit test to verify URL construction
- Update examples to demonstrate usage
- Bump version to 1.0.4
Copy file name to clipboardExpand all lines: examples/search_example.py
+3-3Lines changed: 3 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -5,12 +5,12 @@
5
5
6
6
frombrightdataimportbdclient
7
7
8
-
client=bdclient(api_token="your-api-key",auto_create_zones=False, serp_zone="your-custom-serp-zone") # zone and API token can also be defined in .env file
8
+
client=bdclient(api_token="your-api-token", auto_create_zones=False, serp_zone="your-custom-serp-zone") # zone and API token can also be defined in .env file
0 commit comments