PyPalmSens 1.8.0
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())
NEXUS24C0029For more information, see the documentation.
What's Changed
- Update PalmSens.Core libraries to 5.13.011 by @stefsmeets in #281
- Fix rare crash when deleting Zone.Identifier by @stefsmeets in #309
- Add generic structure/unstructure using type adapter by @stefsmeets in #303
- Add seperate dependencies for assemblies by @stefsmeets in #308
- Add Nexus support by @stefsmeets in #328
Full Changelog: python-1.7.1...python-1.8.0