# Moku Scripting API
The Moku device family from Liquid Instruments is the next generation of Test. With the Moku Scripting API, command and control of your test has never been easier.
To start, install the API for Python, MATLAB or LabVIEW.
For Moku:Lab versions <= 511, please refer to our legacy APIs
- For Python, pymoku (opens new window)
- For MATLAB, MATLAB Legacy (opens new window)
# Get Started
# Python
The Moku Scripting API for Python requires Python 3.5 or newer.
WARNING
Starting with firmware version 600, there are some breaking changes that require you to update your Python client package to version 3.3.1. Read more
# MATLAB
The Moku Scripting API for MATLAB requires MATLAB 2014b or newer.
# Features
# RESTful API
The Moku Scripting API is built around a RESTful HTTP interface, allowing for access from a wide range of programming languages. It makes remote access easy, as the standard HTTP protocol is low bandwidth and commonly allowed to traverse firewalls.
Support for the next generation of Moku products. The Scripting API supports almost all the same features of the Moku iPad and Desktop Applications; if you need something that's missing, visit the Knowledge Base (opens new window) for further information and support.
Python and MATLAB libraries are provided that wrap the RESTful API in a way that feels natural to programmers of all levels.
# Device Discovery
The Python Scripting API comes bundled with the moku
command line tool for device discovery. Quickly find and connect to the right device without worrying about network configurations.
# Known Issues
# Firmware Updates
The Scripting API is not currently able to update the firmware on Moku devices. Please use either the Moku Desktop software or iPad App. Updating firmware through the applications may also require that you update your Scripting API libraries.
# File Conversion
The LI File Converter application is available with installation of the Moku Desktop software or as a standalone application. Conversion cannot currently be done through the Scripting API.
# Other Languages
The Moku Scripting API is built around an HTTP/REST interface. This allows easy interfacing from any programming language, however full documentation of this REST interface is still underway. If you have specific needs, again, reach out to our Support Engineers.
# USB and IPv6 Supported Environments
You may wish to use IPv6 on your network, and it must be noted that the USB Connection uses IPv6 internally. IPv6 is not universally supported, and as such the API cannot be used over USB in some environments. A non-exhaustive list is
- Windows Subsystem for Linux Version 2 (WSL2), as discussed with workarounds here (opens new window)
- LabVIEW, as discussed here (opens new window)
If you require API connectivity from these environments, you must use a network connection like Ethernet or WiFi, including a point-to-point network with Static IPs if security is a concern.
Overview →