Skip to content

Latest commit

 

History

History
19 lines (13 loc) · 992 Bytes

README.md

File metadata and controls

19 lines (13 loc) · 992 Bytes

python-sdk

This repository contains support for interacting with the Turnkey API using Python

Unlike other languages (Typescript, Ruby), we do not yet offer a full SDK for Rust.

If you are working on a project in Python and would benefit from a Python SDK please open an issue or get in touch with us ([email protected]) and we can discuss prioritizing this.

Stamper

The stamper utility stamps requests to the Turnkey API and authenticates the requests. In order to use the stamper to successfully make API calls you need to have a Turnkey organization and an associated API key that is authorized to make requests.

Fill out the fields at the beginning of the python stamper script with the correct information.

ENDPOINT = "https://api.turnkey.com/public/v1/whoami"
API_PUBLIC_KEY="<Turnkey API Public Key (that starts with 02 or 03)>"
API_PRIVATE_KEY="<Turnkey API Private Key>"
ORG_ID = "<your org ID>"