K-Scale's library for programmatically interacting with OnShape
Project description
K-Scale OnShape Library
This library is what we use at K-Scale for interacting with OnShape. It is a wrapper around the OnShape API that allows us to easily import parts from OnShape into our projects.
Getting Started
Install the library using pip:
pip install kscale-onshape-library
pip install 'kscale-onshape-library @ git+https://github.com/kscalelabs/onshape.git@master' # Install from Github
pip install 'kscale-onshape-library[all]' # Install all dependencies
In order to access the OnShape API, you need to define ONSHAPE_ACCESS_KEY
and ONSHAPE_SECRET_KEY
using a key generated here.
Usage
To download and postprocess an assembly, run:
kol run https://cad.onshape.com/documents/DDDDDDDD/w/WWWWWWWW/e/EEEEEEEE
By default, this will automatically generate both a URDF and MJCF file
You can visualize the resulting artifacts using MuJoCo Viewer:
python -m mujoco.viewer
For URDF files it's sometimes necessary to first drag the file into the meshes folder before viewing it.
You can also visualize the resulting URDF using PyBullet:
pip install pybullet
kol pybullet robot/<urdf-name>.urdf
Simulation
The output of the onshape library is simply a robot floating in space. Luckily, most simulators which support URDFs are able to define an environment within code. More changes are needed to make MJCF files simulation ready. We have support for adapting MJCF files to isaac sim here: https://github.com/kscalelabs/sim/blob/master/sim/scripts/create_mjcf.py.
It will be useful to create more automatic scripts for adapting raw URDF and MJCF to various simulators. Feel free to contribute! Support for other file formats like USD files for IsaacLab will be helpful as well.
Tips and Suggestions
- To avoid mishaps from occuring due to cached files, if making big changes in a single export, or if the robot has undergone major changes since the last export, it's good to start fresh with a new
/robot/
folder. - There's no guarantee that the robot's starting pose (when all joint positions are set to 0) will be good, or even matching what you see on onshape. It's reccomended to use MuJoCo Viewer to find a good starting position for each joint.
- Robots function much better in simulation when they have less parts. It's very good to make sure that link names are descriptive in onshape so small parts can be better removed using
--skip-small-parts
. This will also make export faster. - When using functions that can be destructive like
simplify-meshes
,merge-joints
, and especiallycleanup-mesh-dir
, it's good to make copies of the STL files elsewhere first.
Development
Since this is a library, it's necessary to upversion after big changes. You can do this by changing the version number in kol/__init__.py
, then running the Github Action to publish a new version.
Please keep this repo well linted! Specifically, it is quite easy to run into errors with mypy since many of the functions and variables have ambiguous types. To check which files have issues locally, run mypy kol
and make static-checks
. Many mypy issues can be alleviated with one of the following:
- Ensure that type annotations properly include
None
when necessary. This is especially important for functions. - Make good use of classes to ensure everything is well typed. See
kol/onshape/schema/assembly.py
. - When using functions such as
dict.find
, use aNone
check to guarantee that variable accesses are safe - Make sure docstrings are descriptive and that there's one for every function, even if it seems trivial. This makes mouseovers and references to those functions much easier elsewhere.
- Save often to make sure that black and ruff don't get confused.
If creating new features, new files that get created that are large/have too many of them should be added to the .gitignore
.
Notes
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Hashes for kscale_onshape_library-0.0.22.tar.gz
Algorithm | Hash digest | |
---|---|---|
SHA256 | a6ca36fa891415b863716ba452f1ff24f3ecb349d0b48f4e4fd7181432647771 |
|
MD5 | 7611b8ca564d5758da198c86518c23a8 |
|
BLAKE2b-256 | 5101859daf79c9f10e585af593b7a030b0215588453c72ab22f9084f2109632b |
Hashes for kscale_onshape_library-0.0.22-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 53d0fe511f84eb039ca2eb5357aa5715527edf5e55bba34516ebe727697920a9 |
|
MD5 | 0eb6da89ce4b5f28c4de20bad919d0dd |
|
BLAKE2b-256 | fbd83b0abcf2fc853be27a74291f39ae170425161a96aa6e05c0a6259934656c |