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
Release v1.0.1: Replace browser_zone with serp_zone parameter
- Replace browser_zone with serp_zone in bdclient constructor
- Enable serp_zone configuration directly from client
- Add admin permissions requirement in docstring
- Update documentation, examples, and tests
- Version bump to 1.0.1
Copy file name to clipboardExpand all lines: examples/search_example.py
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -5,7 +5,7 @@
5
5
6
6
frombrightdataimportbdclient
7
7
8
-
client=bdclient(api_token="your-api-token") #can also be taken from .env file
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
0 commit comments