A python class to easily interact with Onshape's Variables API
-
Head over to the onshape developer portal
-
Click on "Create new API key"
- Check the blue boxes and click on "Create API key"
- copy and save both keys in a file (I recommend you save it in a .env file. What is a .env? See this article!)
You can install onshape-variables via pip:
pip install onshape-variables
from onshape_variables.variables import Variables
# create variables object
my_vs = Variables(api_keys, did, wid)
# create a varaible studio
my_vs.create_varaible_studio(name="My Varaible Studio")
Check out the example notebook
Also see Onshape's documentation and API explorer
Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change :)