Go to account settings, and make sure that your API key have admin permissions.Here are examples of how to use Bright Data’s SDK functions from your IDE.
Copy
from brightdata import bdclientclient = bdclient(api_token="your-api-token") # Can also be taken from .env fileresults = client.search(query=["pizza", "tech updates", "new ziland"])# Try adding parameters like: search_engine="bing"print (results)
When working with multiple queries or URLs, requests are handled concurrently for optimal performance.