nislsc 0.1.0__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- nislsc/__init__.py +23 -0
- nislsc/_base_interpreter.py +706 -0
- nislsc/_library_interpreter.py +2352 -0
- nislsc/command.py +141 -0
- nislsc/constants.py +256 -0
- nislsc/error.py +72 -0
- nislsc/error_codes.py +143 -0
- nislsc/library.py +112 -0
- nislsc/property.py +205 -0
- nislsc/session.py +2973 -0
- nislsc/utils.py +68 -0
- nislsc-0.1.0.dist-info/LICENSE +20 -0
- nislsc-0.1.0.dist-info/METADATA +112 -0
- nislsc-0.1.0.dist-info/RECORD +15 -0
- nislsc-0.1.0.dist-info/WHEEL +4 -0
nislsc/__init__.py
ADDED
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
"""Control NI SLSC hardware through Python.
|
|
2
|
+
|
|
3
|
+
This package provides a Python interface for NI SLSC hardware. Import
|
|
4
|
+
the main classes to interact with SLSC devices, sessions, properties,
|
|
5
|
+
and commands.
|
|
6
|
+
|
|
7
|
+
Aliases
|
|
8
|
+
-------
|
|
9
|
+
|
|
10
|
+
The top-level ``nislsc`` package provides aliases for commonly used classes:
|
|
11
|
+
|
|
12
|
+
- :class:`nislsc.Command <nislsc.command.Command>`: Open and execute SLSC device and physical channel commands.
|
|
13
|
+
- :class:`nislsc.Library <nislsc.library.Library>`: Initialize and manage the SLSC library interface.
|
|
14
|
+
- :class:`nislsc.Property <nislsc.property.Property>`: Access SLSC property references and configuration settings.
|
|
15
|
+
- :class:`nislsc.Session <nislsc.session.Session>`: Establish sessions with SLSC devices, channels, and NVMEM areas.
|
|
16
|
+
"""
|
|
17
|
+
|
|
18
|
+
from nislsc.command import Command
|
|
19
|
+
from nislsc.library import Library
|
|
20
|
+
from nislsc.property import Property
|
|
21
|
+
from nislsc.session import Session
|
|
22
|
+
|
|
23
|
+
__all__ = ["Command", "Library", "Property", "Session"]
|