zhinst-core 25.4.1.17__cp311-cp311-win_amd64.whl → 25.10.0.274__cp311-cp311-win_amd64.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.
Potentially problematic release.
This version of zhinst-core might be problematic. Click here for more details.
- zhinst/core/__init__.pyi +14 -1
- zhinst/core/_core.pyd +0 -0
- zhinst/core/errors/__init__.pyi +2 -1
- zhinst/ziPython/__init__.py +2 -1
- {zhinst_core-25.4.1.17.dist-info → zhinst_core-25.10.0.274.dist-info}/METADATA +27 -2
- zhinst_core-25.10.0.274.dist-info/RECORD +13 -0
- {zhinst_core-25.4.1.17.dist-info → zhinst_core-25.10.0.274.dist-info}/WHEEL +1 -1
- zhinst_core-25.4.1.17.dist-info/RECORD +0 -13
- {zhinst_core-25.4.1.17.dist-info → zhinst_core-25.10.0.274.dist-info}/licenses/LICENSE.txt +0 -0
zhinst/core/__init__.pyi
CHANGED
|
@@ -21,7 +21,7 @@ __version__: str
|
|
|
21
21
|
LabOneResultAny: TypeAlias = Any
|
|
22
22
|
LabOneResultNested: TypeAlias = Dict[str, Union[LabOneResultNested, LabOneResultAny]]
|
|
23
23
|
|
|
24
|
-
_STUB_VERSION_HASH = "
|
|
24
|
+
_STUB_VERSION_HASH = "cab58d6d54c65423de6d43a7ee796431"
|
|
25
25
|
|
|
26
26
|
class ziListEnum(Enum):
|
|
27
27
|
"""Enumeration for listNodes."""
|
|
@@ -350,6 +350,7 @@ class PrecompensationAdvisorModule(ModuleBase): ...
|
|
|
350
350
|
class QuantumAnalyzerModule(ModuleBase): ...
|
|
351
351
|
class RecorderModule(ModuleBase): ...
|
|
352
352
|
class ScopeModule(ModuleBase): ...
|
|
353
|
+
class StreamingModule(ModuleBase): ...
|
|
353
354
|
class SweeperModule(ModuleBase): ...
|
|
354
355
|
class ZoomFFTModule(ModuleBase): ...
|
|
355
356
|
|
|
@@ -1257,6 +1258,18 @@ class ziDAQServer:
|
|
|
1257
1258
|
value: Vector ((u)int8, (u)int16, (u)int32, (u)int64, float, double)
|
|
1258
1259
|
or string to write."""
|
|
1259
1260
|
|
|
1261
|
+
def streamingModule(self) -> StreamingModule:
|
|
1262
|
+
"""Create a StreamingModule object.
|
|
1263
|
+
|
|
1264
|
+
This will start a thread for running an asynchronous module.
|
|
1265
|
+
|
|
1266
|
+
Note: This is an experimental module. The interface to this
|
|
1267
|
+
module and structure of the output data are subject to change
|
|
1268
|
+
at any time.
|
|
1269
|
+
|
|
1270
|
+
Returns:
|
|
1271
|
+
Created module instance."""
|
|
1272
|
+
|
|
1260
1273
|
def subscribe(self, path: Union[str, List[str]]) -> None:
|
|
1261
1274
|
"""Subscribe to one or several nodes.
|
|
1262
1275
|
|
zhinst/core/_core.pyd
CHANGED
|
Binary file
|
zhinst/core/errors/__init__.pyi
CHANGED
|
@@ -2,13 +2,14 @@ import typing as t
|
|
|
2
2
|
|
|
3
3
|
class CoreError(RuntimeError):
|
|
4
4
|
"""Base error class for all zhinst.core exceptions.
|
|
5
|
-
|
|
5
|
+
|
|
6
6
|
All exceptions raised by this library should inherit from this class.
|
|
7
7
|
|
|
8
8
|
Args:
|
|
9
9
|
message: The error message
|
|
10
10
|
code: Optional internal LabOne error code
|
|
11
11
|
"""
|
|
12
|
+
|
|
12
13
|
def __init__(self, message: str, code: t.Optional[int] = None): ...
|
|
13
14
|
@property
|
|
14
15
|
def code(self) -> t.Optional[int]:
|
zhinst/ziPython/__init__.py
CHANGED
|
@@ -1,10 +1,11 @@
|
|
|
1
|
-
"""
|
|
1
|
+
"""ziPython compatibility layer. Use `zhinst.core` instead.
|
|
2
2
|
|
|
3
3
|
.. deprecated:: 22.08
|
|
4
4
|
Functionality was moved to :mod:`zhinst.core`. This module is a
|
|
5
5
|
compatibility layer to ease migration.
|
|
6
6
|
|
|
7
7
|
"""
|
|
8
|
+
|
|
8
9
|
import warnings
|
|
9
10
|
from zhinst.core import *
|
|
10
11
|
from zhinst.core import __version__
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
Metadata-Version: 2.
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
2
|
Name: zhinst-core
|
|
3
|
-
Version: 25.
|
|
3
|
+
Version: 25.10.0.274
|
|
4
4
|
Summary: Python API for Zurich Instruments Devices
|
|
5
5
|
Project-URL: Documentation, https://docs.zhinst.com/labone_api_user_manual
|
|
6
6
|
Author-email: Zurich Instruments AG <info@zhinst.com>
|
|
@@ -21,6 +21,7 @@ Classifier: Programming Language :: Python :: 3.10
|
|
|
21
21
|
Classifier: Programming Language :: Python :: 3.11
|
|
22
22
|
Classifier: Programming Language :: Python :: 3.12
|
|
23
23
|
Classifier: Programming Language :: Python :: 3.13
|
|
24
|
+
Classifier: Programming Language :: Python :: 3.14
|
|
24
25
|
Classifier: Topic :: Scientific/Engineering
|
|
25
26
|
Classifier: Topic :: Software Development :: Libraries :: Python Modules
|
|
26
27
|
Requires-Python: >=3.9
|
|
@@ -46,3 +47,27 @@ help(zhinst.core)
|
|
|
46
47
|
More information about programming with Zurich Instruments devices is available
|
|
47
48
|
in the [LabOne Programming
|
|
48
49
|
Manual](https://docs.zhinst.com/labone_programming_manual/python.html).
|
|
50
|
+
|
|
51
|
+
# Uploading wheels to PyPI
|
|
52
|
+
|
|
53
|
+
## Requirements:
|
|
54
|
+
- Any Python (this can be performed using any python installation, it does not
|
|
55
|
+
require the installation for a particular Python build).
|
|
56
|
+
- twine package (pip install --upgrade twine)
|
|
57
|
+
|
|
58
|
+
## Accounts
|
|
59
|
+
We have accounts at the main and test PyPI repositories:
|
|
60
|
+
|
|
61
|
+
https://pypi.org
|
|
62
|
+
username: zhinst
|
|
63
|
+
|
|
64
|
+
https://test.pypi.org
|
|
65
|
+
username: zhinst
|
|
66
|
+
|
|
67
|
+
## Testing
|
|
68
|
+
To test, upload to test.pypi.org:
|
|
69
|
+
twine upload --repository-url https://test.pypi.org/legacy/ /home/archive/ziReleases/ci-artifacts/branches-18.05/_latest/*whl
|
|
70
|
+
|
|
71
|
+
## Release
|
|
72
|
+
To release, upload to pypi.org:
|
|
73
|
+
twine upload /home/archive/ziReleases/ci-artifacts/branches-18.05/_latest/*whl
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
zhinst/core/__init__.py,sha256=OciHmsd5nN-4kJ9MRNBW_KOUIIlmuPHVbsXKyGWKVmU,185
|
|
2
|
+
zhinst/core/__init__.pyi,sha256=VSvw4o2m4D_IkamMaAvWelRTsqpRyffSU1JNoU_SpLA,56298
|
|
3
|
+
zhinst/core/_core.pyd,sha256=XSOy3tbQ5xf5XnmqYbDKY-be83ouimli34_4eBcrXdo,24678400
|
|
4
|
+
zhinst/core/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
5
|
+
zhinst/core/_tracing/__init__.pyi,sha256=rqmy0eVRu3NiOf1MCXV17a5mCqHnyYZK3I_IW_zHcts,2516
|
|
6
|
+
zhinst/core/errors/__init__.pyi,sha256=GGNKrw8gc6K1-asKUbPH-em3n79HZwbBouqIQa_iO4g,982
|
|
7
|
+
zhinst/ziPython/__init__.py,sha256=Mo88Xtr6dAR0qX08RU6-4z3knlDgc_bMmIpb6Nv0cz4,460
|
|
8
|
+
zhinst/ziPython/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
9
|
+
zhinst/ziPython/errors/__init__.py,sha256=0eoqb4owjVTvt4iijsAgtxZLWZaTVn3pFbB3dvhtqHg,224
|
|
10
|
+
zhinst_core-25.10.0.274.dist-info/METADATA,sha256=2_2sqtaXazjM_Qk5jRrdF7NJIB3W12DGyDX7ZFF98U4,2764
|
|
11
|
+
zhinst_core-25.10.0.274.dist-info/WHEEL,sha256=hBfdzPpFqdGjAw_HiLXeq0mZQ5PGB410nwD8_9kDykc,97
|
|
12
|
+
zhinst_core-25.10.0.274.dist-info/licenses/LICENSE.txt,sha256=Nfoz6AtS0j6FAswUZ9fxVxQYfhtZDiQw4hmsBk3BgMc,1084
|
|
13
|
+
zhinst_core-25.10.0.274.dist-info/RECORD,,
|
|
@@ -1,13 +0,0 @@
|
|
|
1
|
-
zhinst/core/__init__.py,sha256=OciHmsd5nN-4kJ9MRNBW_KOUIIlmuPHVbsXKyGWKVmU,185
|
|
2
|
-
zhinst/core/__init__.pyi,sha256=qpO2oeyRD5-9SbMZLYg87MCAG_hai_djUoPg_dXmpWs,55863
|
|
3
|
-
zhinst/core/_core.pyd,sha256=Ee2S-tDD9QandWBFkhITq7DfPN9c1EJGJI5c97Btk6Y,24605696
|
|
4
|
-
zhinst/core/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
5
|
-
zhinst/core/_tracing/__init__.pyi,sha256=rqmy0eVRu3NiOf1MCXV17a5mCqHnyYZK3I_IW_zHcts,2516
|
|
6
|
-
zhinst/core/errors/__init__.pyi,sha256=50gg9MFRtkJnGE-yuoSMx-4a19irsFcM8KMVfuoX6uc,984
|
|
7
|
-
zhinst/ziPython/__init__.py,sha256=dNxWYe93j7OHejosS3On2bXOM-SSuO4gwg8zACH8ILM,459
|
|
8
|
-
zhinst/ziPython/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
9
|
-
zhinst/ziPython/errors/__init__.py,sha256=0eoqb4owjVTvt4iijsAgtxZLWZaTVn3pFbB3dvhtqHg,224
|
|
10
|
-
zhinst_core-25.4.1.17.dist-info/METADATA,sha256=bpCjRiuzPO2In1nl7QxD7q1sw_SB23mKfLUljN_qucM,2041
|
|
11
|
-
zhinst_core-25.4.1.17.dist-info/WHEEL,sha256=nDsu6tbi_8dHTxo0Atw1lQ4C97famhB-H0sk3W0-mqA,97
|
|
12
|
-
zhinst_core-25.4.1.17.dist-info/licenses/LICENSE.txt,sha256=Nfoz6AtS0j6FAswUZ9fxVxQYfhtZDiQw4hmsBk3BgMc,1084
|
|
13
|
-
zhinst_core-25.4.1.17.dist-info/RECORD,,
|
|
File without changes
|