├── .editorconfig ├── .gitignore ├── LICENSE ├── Node ├── README.md ├── config │ ├── apikeyexample.js │ └── errors.js ├── example │ └── blobexample.txt ├── expensiveDoNothing.js ├── exportStl.js ├── getDocuments.js ├── lib │ ├── app.js │ ├── onshape.js │ └── util.js ├── massByMaterial.js ├── package-lock.json ├── package.json └── uploadBlob.js ├── README.md └── python ├── .python-version ├── LICENSE ├── README.md ├── apikey ├── __init__.py ├── client.py ├── onshape.py └── utils.py ├── app.py ├── blob.json ├── exportstl.py ├── requirements-win.txt ├── requirements.txt ├── setup.cfg └── setup.py /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onshape-public/apikey/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onshape-public/apikey/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onshape-public/apikey/HEAD/LICENSE -------------------------------------------------------------------------------- /Node/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onshape-public/apikey/HEAD/Node/README.md -------------------------------------------------------------------------------- /Node/config/apikeyexample.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onshape-public/apikey/HEAD/Node/config/apikeyexample.js -------------------------------------------------------------------------------- /Node/config/errors.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onshape-public/apikey/HEAD/Node/config/errors.js -------------------------------------------------------------------------------- /Node/example/blobexample.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onshape-public/apikey/HEAD/Node/example/blobexample.txt -------------------------------------------------------------------------------- /Node/expensiveDoNothing.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onshape-public/apikey/HEAD/Node/expensiveDoNothing.js -------------------------------------------------------------------------------- /Node/exportStl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onshape-public/apikey/HEAD/Node/exportStl.js -------------------------------------------------------------------------------- /Node/getDocuments.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onshape-public/apikey/HEAD/Node/getDocuments.js -------------------------------------------------------------------------------- /Node/lib/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onshape-public/apikey/HEAD/Node/lib/app.js -------------------------------------------------------------------------------- /Node/lib/onshape.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onshape-public/apikey/HEAD/Node/lib/onshape.js -------------------------------------------------------------------------------- /Node/lib/util.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onshape-public/apikey/HEAD/Node/lib/util.js -------------------------------------------------------------------------------- /Node/massByMaterial.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onshape-public/apikey/HEAD/Node/massByMaterial.js -------------------------------------------------------------------------------- /Node/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onshape-public/apikey/HEAD/Node/package-lock.json -------------------------------------------------------------------------------- /Node/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onshape-public/apikey/HEAD/Node/package.json -------------------------------------------------------------------------------- /Node/uploadBlob.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onshape-public/apikey/HEAD/Node/uploadBlob.js -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onshape-public/apikey/HEAD/README.md -------------------------------------------------------------------------------- /python/.python-version: -------------------------------------------------------------------------------- 1 | 2.7.11 2 | -------------------------------------------------------------------------------- /python/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onshape-public/apikey/HEAD/python/LICENSE -------------------------------------------------------------------------------- /python/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onshape-public/apikey/HEAD/python/README.md -------------------------------------------------------------------------------- /python/apikey/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onshape-public/apikey/HEAD/python/apikey/__init__.py -------------------------------------------------------------------------------- /python/apikey/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onshape-public/apikey/HEAD/python/apikey/client.py -------------------------------------------------------------------------------- /python/apikey/onshape.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onshape-public/apikey/HEAD/python/apikey/onshape.py -------------------------------------------------------------------------------- /python/apikey/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onshape-public/apikey/HEAD/python/apikey/utils.py -------------------------------------------------------------------------------- /python/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onshape-public/apikey/HEAD/python/app.py -------------------------------------------------------------------------------- /python/blob.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onshape-public/apikey/HEAD/python/blob.json -------------------------------------------------------------------------------- /python/exportstl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onshape-public/apikey/HEAD/python/exportstl.py -------------------------------------------------------------------------------- /python/requirements-win.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onshape-public/apikey/HEAD/python/requirements-win.txt -------------------------------------------------------------------------------- /python/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onshape-public/apikey/HEAD/python/requirements.txt -------------------------------------------------------------------------------- /python/setup.cfg: -------------------------------------------------------------------------------- 1 | [metadata] 2 | description-file = README.md 3 | 4 | [pep8] 5 | max-line-length = 120 6 | -------------------------------------------------------------------------------- /python/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onshape-public/apikey/HEAD/python/setup.py --------------------------------------------------------------------------------