Skip to content

PyPalmSens 1.8.0

Choose a tag to compare

@stefsmeets stefsmeets released this 26 Mar 13:01
30036c5

PyPalmSens 1.8.0 is now available on PyPi.

To upgrade: pip install pypalmsens -U.

This is a relatively small release that adds support for the PalmSens Nexus. This release also updates the PalmSens dotnet libraries to 5.13.011, which brings a bunch of small fixes and improvements.

Nexus support

If you are using a Nexus, you can now connect to it via TCP/IP:

>>> import pypalmsens as ps

>>> instrument = ps.Instrument.from_ip('192.168.1.123')
>>> instrument
Instrument(name='192.168.1.123', interface='tcp')
>>> with ps.connect(instrument) as manager:
...     print(manager.get_instrument_serial())
NEXUS24C0029

For more information, see the documentation.

What's Changed

Full Changelog: python-1.7.1...python-1.8.0