Bigdata.com provides two Python SDKs to simplify authentication and API integration.

We recommend creating a file with environment variables to specify your Bigdata username and password.

import os
from bigdata_client import Bigdata

# Initialize the Bigdata API
username = os.environ.get("BIGDATA_USERNAME")
password = os.environ.get("BIGDATA_PASSWORD")
bigdata = Bigdata(username, password)