Welcome to the Strangeworks Python SDK documentation!¶
The Strangeworks Python SDK offers access to the Strangeworks platform API. To get an account sign up at strangeworks.com. For access to hardware and other resources sign up for our Back Stage Pass. For more information see our general docs.
To get started you will need to install the SDK and authenticate using your API key.
Installation¶
The Strangeworks SDK is installed using pip
pip install strangeworks
Test your installation by running the following
$ python
>>> import strangeworks_optimization
>>> print(strangeworks_optimization.__version__)
Authentication¶
Authenticate using the strangeworks.authenticate()
method
$ python
>>> import strangeworks
>>> strangeworks.authenticate(api_key="<your-api-key>")