Python SDK snippets on all endpoint pages. If you want to go deeper into the code, check out these files.
Installation
To install the SDK, run the following command in your terminal:Quick Start
Initialize the client with your API key:Working with Queries
You will commonly work with theQueryBase class which can be created like this:
QueryBase and all properties can be found in this file.
Executing Queries
Execute a query and get results:Working with Results
Other classes such as execution results can be found here, detailing operations likeResultsResponse.get_rows() for getting the data out of a GET request.