Python client quickstart¶
The official client is datalab-api. Use it
rather than hand-rolling HTTP: it tracks server-side changes, and handles auth, pagination and
file uploads for you.
Install¶
Connect¶
from datalab_api import DatalabClient
# Reads DATALAB_API_KEY from the environment.
with DatalabClient("https://demo.datalab-org.io") as client:
info = client.get_info()