Nidaqmx

Latest version: v1.0.2

Safety actively analyzes 701507 Python packages for vulnerabilities to keep your Python projects secure.

Scan your dependencies

Page 1 of 4

1.1.0

* Merged Pull Requests
* ...

* Resolved Issues
* ...

* Known Issues
* ...

1.0.2

* Merged Pull Requests
* [Full changelog: 1.0.1...1.0.2](https://github.com/ni/nidaqmx-python/compare/1.0.1...1.0.2)

* Resolved Issues
* [644: nidaqmx doesn't support Python 3.13+](https://github.com/ni/nidaqmx-python/issues/644)
* [641: No devices found](https://github.com/ni/nidaqmx-python/issues/641)
* Fall back to ASCII encoding if the system locale is not set.

* Known Issues
* [639: first_samp_timestamp_val property does not work because LibraryInterpreter is missing a method](https://github.com/ni/nidaqmx-python/issues/639)

1.0.1

* Merged Pull Requests
* [Full changelog: 1.0.0...1.0.1](https://github.com/ni/nidaqmx-python/compare/1.0.0...1.0.1)

* Resolved Issues
* [540: Task.wait_for_valid_timestamp doesn't return the timestamp](https://github.com/ni/nidaqmx-python/issues/540)
* [606: CERTIFICATE_VERIFY_FAILED occurs when executing installdriver command on Windows system](https://github.com/ni/nidaqmx-python/issues/606)
* [615: Onboard device memory overflow](https://github.com/ni/nidaqmx-python/issues/615)
* [623: installdriver CLI doesn't prompt or indicate what versions are being downloaded/installed on a clean system](https://github.com/ni/nidaqmx-python/issues/623)

* Known Issues
* [613: InStream.logging_file_path setter type hint is not effective](https://github.com/ni/nidaqmx-python/issues/613)
* [620: InStream.get_channels_buffer_size uses wrong encoding](https://github.com/ni/nidaqmx-python/issues/620)
* [621: InStream.get_channels_buffer_size should not be public](https://github.com/ni/nidaqmx-python/issues/621)

1.0.0

* Merged Pull Requests
* [Full changelog: 0.9.0...1.0.0](https://github.com/ni/nidaqmx-python/compare/0.9.0...1.0.0)

* Resolved Issues
* [38: No spacing in raw-read function names](https://github.com/ni/nidaqmx-python/issues/38)
* [384: Support internationalization](https://github.com/ni/nidaqmx-python/issues/384)
* [392: Indexing PhysicalChannelCollection fails for slices and strings containing a list/range of channels](https://github.com/ni/nidaqmx-python/issues/392)
* [482: Default argument values for bridge create channel functions are unusable](https://github.com/ni/nidaqmx-python/issues/482)

* Major Changes
* Add support for strain calibration (offset nulling and shunt calibration)
* Add support for DAQmx calibration info properties
* Add support for WaitForValidTimestamp
* Fix naming issues:
* Rename `ShuntCalSelect.AAND_B` to `A_AND_B`.
* Automate Driver Install Experience within nidaqmx Module
* Update libtime to accept time before 1970

* Known Issues
* ...

0.9.0

* Merged Pull Requests
* [460: enabled support for DAQmxSelfCal](https://github.com/ni/nidaqmx-python/pull/460)
* Major Changes
* `nidaqmx.errors.DaqNotFoundError`, `nidaqmx.errors.DaqNotSupportedError`, and
`nidaqmx.errors.DaqFunctionNotSupportedError` are now public exceptions.
* Consistently return `nidaqmx.errors.DaqNotFoundError` on all platforms when the NI-DAQmx
driver is not installed.
* Updated supported Python versions to 3.8, 3.9, 3.10, 3.11, and 3.12
* Known Issues
* ...

0.8.0

* Merged Pull Requests
* [Full changelog: 0.7.0...0.8.0](https://github.com/ni/nidaqmx-python/compare/0.7.0...0.8.0)
* [Query: Closed PRs with the label: interpreter_implementation](https://github.com/ni/nidaqmx-python/pulls?q=label%3Ainterpreter_implementation+is%3Aclosed)
* [Query: Closed PRs with the label: library_interpreter](https://github.com/ni/nidaqmx-python/pulls?q=label%3Alibrary_interpreter+is%3Aclosed)
* [Query: Closed PRs with the label: grpc_interpreter](https://github.com/ni/nidaqmx-python/pulls?q=label%3Agrpc_interpreter+is%3Aclosed)
* [Query: Closed PRs with the label: test_improvements](https://github.com/ni/nidaqmx-python/pulls?q=label%3Atest_improvements+is%3Aclosed)
* [Query: Closed PRs with the label: interpreter_fixes](https://github.com/ni/nidaqmx-python/pulls?q=label%3Ainterpreter_fixes+is%3Aclosed)
* [Query: Closed PRs with the label: interpreter_testcase_update](https://github.com/ni/nidaqmx-python/pulls?q=label%3Ainterpreter_testcase_updates+is%3Aclosed)
* [Query: Closed PRs with the label: event_handling](https://github.com/ni/nidaqmx-python/pulls?q=label%3Aevent_handling+is%3Aclosed)

* Major Changes

* Added support for communicating with DAQmx devices through gRPC using [NI gRPC Device Server](https://github.com/ni/grpc-device). This enables using DAQmx with the MeasurementLink session management service.
* The initialization methods for `Task`, `Scale`, and other classes now accept a keyword-only `grpc_options` parameter. Pass a `GrpcSessionsOptions` object to enable gRPC support.
* The `System` class now has a `remote()` method which accepts a `GrpcSessionOptions` object.
* [NI gRPC Device Server](https://github.com/ni/grpc-device) version 2.2 or later is required. Older versions of NI gRPC Device Server are unsupported because they are missing bug fixes needed to support nidaqmx-python.
* The following functions now emit `DeprecationWarning` when called:
* `nidaqmx.errors` module: `check_for_error`, `is_string_buffer_too_small`, and `is_array_buffer_too_small` are `ctypes`-specific helper functions, so they have been moved to an internal module.
* `System` class: `set_analog_power_up_states` does not support `PowerUpStates.TRISTATE` and `get_analog_power_up_states` has design issues that make the previous implementation unworkable, so they have been deprecated in favor of `set_analog_power_up_states_with_output_type` and `get_analog_power_up_states_with_output_type`.
* The internals of the `nidaqmx` package have been refactored to support gRPC:
* Access to the DAQmx driver is now handled by the internal `BaseInterpreter` abstract base class. There are separate implementations of this abstract base class for `ctypes` vs. gRPC.
* Internal initialization methods now accept an `interpreter` parameter. Methods that take an `interpreter` are not part of the public API.
* Added a stub generator which will generate the gRPC stub files based on the proto files present in `src/codegen/protos`. The files will be generated into `generator/nidaqmx/_stubs`.
* The internal `nidaqmx._task_modules.read_functions` and `nidaqmx._task_modules.write_functions` modules have been removed. If your application uses these modules, you must update it to use public APIs such as `task.read()`/`task.write()`, `task.in_stream.read()`/`task.out_stream.write()`, or `nidaqmx.stream_readers`/`nidaqmx.stream_writers`.
* Updated the existing tests to run with and without gRPC support.
* Added multiple test cases to improve the overall test coverage.

* Known Issues
* Comparisons between DAQmx object instances do not take gRPC remoting into account. For example, `Device("Dev1")` refers to a local device and `Device("Dev1", grpc_options=...)` refers to a remote device, but they are considered equal. Likewise, two instances of `Device("Dev1", grpc_options=...)` with different remote hosts are considered equal.

Page 1 of 4

© 2025 Safety CLI Cybersecurity Inc. All Rights Reserved.