zhinst-core 25.4.1.17__cp313-cp313-manylinux2014_aarch64.whl → 25.10.0.274__cp313-cp313-manylinux2014_aarch64.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 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 = "e6a61a2faeb03c66bf166f3b93444f9c"
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.so CHANGED
Binary file
@@ -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]:
@@ -1,10 +1,11 @@
1
- """ ziPython compatibility layer. Use `zhinst.core` instead.
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
1
+ Metadata-Version: 2.4
2
2
  Name: zhinst-core
3
- Version: 25.4.1.17
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=7kcZ-cpfrMCGX9XHt80qoiLREUjiKp4-WQ5YXxpydbQ,177
2
+ zhinst/core/__init__.pyi,sha256=GU-bgW4HTJEaOyFQOefY4q5hhy6OMb2rwHJ7Dzxtz1I,54812
3
+ zhinst/core/_core.so,sha256=Lt3blsNtCzhHI6YNY5lR7VEUuWSQvTPWifF5nDp8IUU,44680296
4
+ zhinst/core/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
5
+ zhinst/core/_tracing/__init__.pyi,sha256=mFZYfRfJ4dIZCuvnfpAV-v4ddbiXl7n-de61znyNBeQ,2431
6
+ zhinst/core/errors/__init__.pyi,sha256=FrIkvsH8m-jQBVtgOss-2uZXVCOBzUnk3q9RX_LkEII,954
7
+ zhinst/ziPython/__init__.py,sha256=0lo3Td5ndqGZp6NYP0gJcMghrmc2I923WHPfwt7abnE,443
8
+ zhinst/ziPython/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
9
+ zhinst/ziPython/errors/__init__.py,sha256=-niezFlzHjQGSqTqRF_9oWaJTJMNdSudEZMsLsoskXk,216
10
+ zhinst_core-25.10.0.274.dist-info/METADATA,sha256=65Gh_PWSTPp5EPrhYsa6UYWUMwQ36x9pKp4jhC1QRQw,2764
11
+ zhinst_core-25.10.0.274.dist-info/WHEEL,sha256=Ucg_rYDKjGUoklX8D9pFQnqkIAQ2Xye7VB01xOZMwes,109
12
+ zhinst_core-25.10.0.274.dist-info/licenses/LICENSE.txt,sha256=F4okYREnc372D8C-9kSiGKV3xLE8lMGnhnB0sJHbX70,1065
13
+ zhinst_core-25.10.0.274.dist-info/RECORD,,
@@ -1,4 +1,4 @@
1
1
  Wheel-Version: 1.0
2
- Generator: hatchling 1.20.0
2
+ Generator: hatchling 1.27.0
3
3
  Root-Is-Purelib: false
4
4
  Tag: cp313-cp313-manylinux2014_aarch64
@@ -1,13 +0,0 @@
1
- zhinst/core/__init__.py,sha256=7kcZ-cpfrMCGX9XHt80qoiLREUjiKp4-WQ5YXxpydbQ,177
2
- zhinst/core/__init__.pyi,sha256=JZzpL8zp3m5Q1UuyQyfjUi1QWpDGQoginwYZEf_37QQ,54390
3
- zhinst/core/_core.so,sha256=dn2SmOgvvuELqw7OdzakWPgK4sjyzeJu-NH3wgL2M84,42627920
4
- zhinst/core/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
5
- zhinst/core/_tracing/__init__.pyi,sha256=mFZYfRfJ4dIZCuvnfpAV-v4ddbiXl7n-de61znyNBeQ,2431
6
- zhinst/core/errors/__init__.pyi,sha256=pWrLitRK5FvivD9g3MWGrt2fCSWVtSIRH6LHGS8ZAXE,957
7
- zhinst/ziPython/__init__.py,sha256=so5c173hrgu5vv7DwMGG7alo8pdQc1hkaHKzu97Cm-M,443
8
- zhinst/ziPython/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
9
- zhinst/ziPython/errors/__init__.py,sha256=-niezFlzHjQGSqTqRF_9oWaJTJMNdSudEZMsLsoskXk,216
10
- zhinst_core-25.4.1.17.dist-info/METADATA,sha256=KBEGtLlFT9XpWmf7l2M2V1K2DKShvS0bZSb1-LlULDQ,2041
11
- zhinst_core-25.4.1.17.dist-info/WHEEL,sha256=Bp4cmn5XX9eErEnFYNF_CWoZ70hvTiNscsPZL5b8V-8,109
12
- zhinst_core-25.4.1.17.dist-info/licenses/LICENSE.txt,sha256=F4okYREnc372D8C-9kSiGKV3xLE8lMGnhnB0sJHbX70,1065
13
- zhinst_core-25.4.1.17.dist-info/RECORD,,