Get Started with the Shade Python SDK
Easily manage and interact with your data in Shade via our Python SDK
Last updated
Was this helpful?
Easily manage and interact with your data in Shade via our Python SDK
Shade offers a full-featured python SDK that enables you to access any part of your workspace including files, metadata, members, searches, and more.
Our SDK supports Python 3.8+. Once you have successfully installed Python on your machine, you can install below:
pip install shade-python-sdkYou can obtain an API key for the Shade Python SDK from your workspace and generating a new key.
Please keep in mind that this is a secret key and should not be shared publically or stored in a public repository.

You can easily initialize the Shade SDK by initializing a Shade object. This will authenticate and authorize as your user - whatever you have access to, the object will have access to.
Last updated
Was this helpful?
Was this helpful?
API_KEY = 'sk....'
REMOTE_URL = 'https://api.shade.inc'
shade = Shade(remote_url=REMOTE_URL, api_key=API_KEY)
