Getting Started with Jupyter Notebooks
Step 1: Download JupyterLab Desktop
Step 2: Create or open a notebook
Step 3: Install the Scanner Python SDK
pip install scanner-clientStep 4: Import and configure the Scanner API Client
from scanner_client import Scannerscanner = Scanner(
api_url=os.environ["SCANNER_API_URL"],
api_key=os.environ["SCANNER_API_KEY"],
)Last updated
Was this helpful?