Step 1: Install and Import the SDK

Open your terminal and run:
pip install git+https://github.com/brightdata/bright-data-sdk-python.git
# Ensure pip is installed on your machine
Then, in your IDE, import the package:
from brightdata import bdclient
In your IDE, hover over the brightdata package or any function to view available methods, parameters, and usage examples.
Image05 08 2025at17 25 JP

Step 2: Start Making Requests

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.
from brightdata import bdclient

client = bdclient(api_token="your-api-token") # Can also be taken from .env file

results = 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.

Resources