Python API for RoboDK 5.4.0- Printable Version +- RoboDK Forum (//m.sinclairbody.com/forum) +-- Forum: RoboDK (EN) (//m.sinclairbody.com/forum/Forum-RoboDK-EN) +--- Forum: RoboDK API (//m.sinclairbody.com/forum/Forum-RoboDK-API) +--- Thread: Python API for RoboDK 5.4.0 (/Thread-Python-API-for-RoboDK-5-4-0) |
Python API for RoboDK 5.4.0-Sam-02-03-2022 In the intent of providing the best experience and flexibility to our users, we have recently released a new version of our Python API. Version 5.4.0 is mostly restructuring our modules to prepare for future updates. Although backward compatible, the changes are not forward compatible. In other words, you can keep your current Python scripts as-is for past and future versions of RoboDK. However, using the new semantic proposed by this update won't work with previous versions of RoboDK. Effectively, the updates brings the robolink and robodk module into the robodk package, and splits the robodk module into submodules.
Here's the new default Python script when adding a new script to a station:
Code:
# Type help("robodk.robolink") or help("robodk.robomath") for more information
We have updated all our documentations and public examples to reflect these changes. You can find more information in our Python documentation and PyPI page:
|