Thingiverse Python SDK
A Python SDK for the Thingiverse API.
Installation
Quick start
from thingiverse import AuthenticatedClient, BASE_URL_PRODUCTION
client = AuthenticatedClient(
base_url=BASE_URL_PRODUCTION,
token="YOUR_ACCESS_TOKEN",
)
# Use client with the generated API modules
Using the staging API
from thingiverse import AuthenticatedClient, BASE_URL_STAGING
client = AuthenticatedClient(base_url=BASE_URL_STAGING, token="...")
See Getting started for more details.