Library to control Zahner IM7 potentiostats
Project description
zahner_link
The zahner_link library provides comprehensive programmatic control of the Zahner IM7/c/x Electrochemical Workstations. Available for both Python and C++, this job-based library enables you to automate complex measurement protocols and integrate electrochemical experiments into your data analysis workflows.
What makes this library particularly powerful is that it uses the exact same C++ core library as Zahner Lab itself. This means you get identical functionality whether you're working in the GUI or writing code, no feature compromises or compatibility issues to worry about.
📚 Documentation
The complete documentation is available on the API documentation website, including:
- A detailed reference for every job, class, and function
- Dedicated sections for the Python and C++ APIs
- The examples from this repository, rendered for online browsing
✨ Features
- Job-based API - build measurements from composable jobs instead of low-level commands
- Identical core to Zahner Lab - uses the exact same C++ core library as the GUI, so results and capabilities match
- Python and C++ - the same API available as a Python package and a C++ library
- Cross-platform - pre-built wheels for Windows, Linux (glibc/musl), and macOS
Measurement Techniques
- Electrochemical Impedance Spectroscopy (auto-generated or custom frequency tables)
- Potentiostatic and galvanostatic polarization
- Pulse voltammetry (NPV, DPV, SWV)
- Current-voltage curves (e.g. Cyclic Voltammetry)
- Measurements with arbitrary, freely defined excitation signals
Data and Control
- Live DC and EIS data via callbacks
- Stop conditions to extend measurement primitives
- Access to raw EIS waveform data
- Export to Zahner XML (
.zmx), directly openable in Zahner Analysis - Exception-based and return-value-based API variants with connection-loss recovery
Supported Hardware
- IM7/c/x Electrochemical Workstations
- Extension cards: PAD42, TEMP-U2, RMUX16, MIO, EPC42
🔧 Installation
The package can be installed via pip.
pip install zahner_link
✅ Requirements
- Python 3.11 or later
Pre-built wheels are available for:
- Windows: x86_64
- Linux: x86_64 and ARM64 (glibc and musl)
- macOS: ARM64
🔨 Basic Usage
The Jupyter notebook BasicIntroduction.ipynb explains the fundamentals of using the library. The equivalent C++ example is available in cpp/BasicIntroduction/main.cpp.
import zahner_link as zl
"""
Connect to the Zahner IM7 via its IP address and port.
"""
link = zl.ZahnerLinkExc("10.10.253.150", "1994")
link.connect()
"""
Switch on the main potentiostat in potentiostatic mode at 1 V DC.
All values use SI base units (volts, amperes, seconds).
"""
switch_on_job = zl.control.SwitchOnJob(
potentiostat="MAIN:1:POT",
coupling=zl.PotentiostatCoupling.POTENTIOSTATIC,
bias=1.0,
voltage_range_index=0,
compliance_range_index=0,
)
link.do_job(switch_on_job)
"""
EIS measurement at 1 V DC with 10 mV amplitude.
The frequency points are generated automatically from start_frequency
up to max_frequency, then down to min_frequency.
"""
eis_generate_job = zl.meas.EisGenerateJob(
bias=1.0,
min_frequency=10,
max_frequency=1e5,
start_frequency=10e3,
points_per_decade_upper=8,
points_per_decade_lower=5,
pre_duration=0,
pre_waves=1,
meas_duration=0.1,
meas_waves=4,
amplitude=10e-3,
)
link.do_job(eis_generate_job)
"""
Read out the measured frequency and complex impedance.
"""
eis_generate_data = link.get_job_result_data(eis_generate_job)
print("Frequency: " + str(eis_generate_data.get_frequencies()))
print("Impedance: " + str(eis_generate_data.get_impedance_data().get_calculated_complex_impedance_track()))
"""
Export the measurement to Zahner XML format, which can be opened in Zahner Analysis.
"""
xml_measurement = zl.xml.Measurement(eis_generate_data)
exporter = zl.xml.ZXmlExporter()
exporter.set_compact_xml(False)
exporter.save_as_file_standalone(xml_measurement, "eis_generate_job.zmx")
"""
Switch off the potentiostat and disconnect.
"""
link.do_job(zl.control.SwitchOffJob(potentiostat="MAIN:1:POT"))
link.disconnect()
📖 Examples
The examples are part of this repository as Jupyter notebooks under python/ and are also rendered in the documentation.
| Example | Description |
|---|---|
| BasicIntroduction | First steps: connecting, DC calibration, switching on, a simple measurement and data export |
| Polarizations | Potentiostatic and galvanostatic polarization measurements and data handling |
| Eis | Electrochemical Impedance Spectroscopy with generated and custom frequency tables |
| PulseVoltammetry | Pulse voltammetry techniques (NPV, DPV, SWV) |
| CurrentVoltageCurves | Recording current-voltage curves such as cyclic voltammetry |
| CurrentDependentCharacterization | Characterizing a device as a function of the DC bias current |
| ArbitrarySignal | Measurements with arbitrary, freely defined excitation signals |
| EisWaves | Accessing and visualizing the raw EIS waveform data |
| StopConditions | Extending measurement primitives with stop conditions |
| LiveDataCallbacks | Receiving live DC and EIS data through callbacks |
| ChannelConfiguration | Advanced channel configuration, including PAD4 cards |
| TempuRmuxMio | Using the TEMP-U2, RMUX16, and MIO extension cards |
| ErrorHandling | Error handling, connection loss recovery, and job inspection |
📧 Having a question?
Send a mail to our support team.
⁉️ Found a bug or missing a specific feature?
Feel free to create a new issue with an appropriate title and description in the zahner_link repository issue tracker. Or send a mail to our support team.
⚖️ License
The zahner_link library is licensed under the Zahner Software License.
This project also includes third-party software components. The licenses for these components can be found in the zahner_link/third_party_licenses directory of the installed package.
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distributions
Built Distributions
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file zahner_link-26.26.0-cp314-cp314t-win_amd64.whl.
File metadata
- Download URL: zahner_link-26.26.0-cp314-cp314t-win_amd64.whl
- Upload date:
- Size: 3.9 MB
- Tags: CPython 3.14t, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6b8b7d077c34f4180b6542d779a95889f61292bf0652a91a70b78c714959c7b4
|
|
| MD5 |
d8234081eab66767ee7e0bb4c08ddcb5
|
|
| BLAKE2b-256 |
01663d8ea2b73f7e51cb49c7bafb579d94dbd827b225ce6eafa0e258687a5bfb
|
File details
Details for the file zahner_link-26.26.0-cp314-cp314t-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: zahner_link-26.26.0-cp314-cp314t-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 6.8 MB
- Tags: CPython 3.14t, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
29d48faf17cb5b01e085649a019146f16b37604c26b7bfb216cfc679c2904718
|
|
| MD5 |
aa9fc9b225621dc864b466d2fa7a6942
|
|
| BLAKE2b-256 |
94728d5f857fa222481cf71e799ff1e43128da4bfbc9dcb52f664556298f43e3
|
File details
Details for the file zahner_link-26.26.0-cp314-cp314t-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: zahner_link-26.26.0-cp314-cp314t-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 6.8 MB
- Tags: CPython 3.14t, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5404f46a52f2a6819d04e2b9ee9b3888a38683c9a3f1a15f3e1e350753830f1c
|
|
| MD5 |
ddfa2aa3acddfb04a3548349382784a2
|
|
| BLAKE2b-256 |
947c73e529f9839c5aa6a39210d70470b161de14140614e54c2f50d8369d36b2
|
File details
Details for the file zahner_link-26.26.0-cp314-cp314t-manylinux_2_34_x86_64.whl.
File metadata
- Download URL: zahner_link-26.26.0-cp314-cp314t-manylinux_2_34_x86_64.whl
- Upload date:
- Size: 6.2 MB
- Tags: CPython 3.14t, manylinux: glibc 2.34+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2b4b50678ab325b1f3f9862a39d0e913e5a055ff1078086cb75204300591beeb
|
|
| MD5 |
94fdea10703ec4f3f82e615c4dbae5b7
|
|
| BLAKE2b-256 |
b3a02ffdc54bb20e3ba046ab55bcb93af2acb5a1b3795d02df7f3584a2f49f01
|
File details
Details for the file zahner_link-26.26.0-cp314-cp314t-manylinux_2_34_aarch64.whl.
File metadata
- Download URL: zahner_link-26.26.0-cp314-cp314t-manylinux_2_34_aarch64.whl
- Upload date:
- Size: 5.7 MB
- Tags: CPython 3.14t, manylinux: glibc 2.34+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
eb9070cd20b105de556fcdbb408a2cfdfc4b57c85bd79c12d618a38d6d6ff705
|
|
| MD5 |
9de024b4ec215c74a2be75f9a1040ba0
|
|
| BLAKE2b-256 |
7e4d08c80c1c0656eed0374ac3ac76f89f6ca7c68e0283b12104aca24f6f3968
|
File details
Details for the file zahner_link-26.26.0-cp314-cp314-win_amd64.whl.
File metadata
- Download URL: zahner_link-26.26.0-cp314-cp314-win_amd64.whl
- Upload date:
- Size: 3.8 MB
- Tags: CPython 3.14, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5453c8a3c7ef90b6828a6ef074653e84adcfdb9ffe04a97a0fcea13be3b7c601
|
|
| MD5 |
77a50647193ab9f9a25c093533527e37
|
|
| BLAKE2b-256 |
cbf7956dee7000ee585f507689cc8701bf99f7ba2f36abe8b181f11284abfc18
|
File details
Details for the file zahner_link-26.26.0-cp314-cp314-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: zahner_link-26.26.0-cp314-cp314-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 6.8 MB
- Tags: CPython 3.14, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1aca3503192ebb8a9185273478a39c634b0b1d11edeea1fd495a54316b25c729
|
|
| MD5 |
69d3f60a756bf425fc8607b8adff55b9
|
|
| BLAKE2b-256 |
8e65673ad09cdd0ed748756e60078210d2055efc7300aee7e9a500655f0e5690
|
File details
Details for the file zahner_link-26.26.0-cp314-cp314-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: zahner_link-26.26.0-cp314-cp314-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 6.8 MB
- Tags: CPython 3.14, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
37c1c7232d8b953f07d56d6412328eb506041b02192d15c2200cf6857fda1f3c
|
|
| MD5 |
174b98bcdb3d7579d982054f14812385
|
|
| BLAKE2b-256 |
4086d1e07bca2c6aae68e7c425ead1cfba67825367e41d4cdfbbbd359b3984a6
|
File details
Details for the file zahner_link-26.26.0-cp314-cp314-manylinux_2_34_x86_64.whl.
File metadata
- Download URL: zahner_link-26.26.0-cp314-cp314-manylinux_2_34_x86_64.whl
- Upload date:
- Size: 6.2 MB
- Tags: CPython 3.14, manylinux: glibc 2.34+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
adb70a8d841a5b955a8b92543e46f1ab91b34dfbd2ebff52c30619504fe17dfa
|
|
| MD5 |
da9d62bcc8b59445dbd51b9f3920e393
|
|
| BLAKE2b-256 |
7117e52902898173f961a59a9ab4e7d2f0afc8b7412c5e858b29b09a2175f7d6
|
File details
Details for the file zahner_link-26.26.0-cp314-cp314-manylinux_2_34_aarch64.whl.
File metadata
- Download URL: zahner_link-26.26.0-cp314-cp314-manylinux_2_34_aarch64.whl
- Upload date:
- Size: 5.7 MB
- Tags: CPython 3.14, manylinux: glibc 2.34+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
08aca9a120c90f071eca26ef666214e1a97694a565d9aef3b6343773010fff06
|
|
| MD5 |
2535cfe04377dd03c499e7d8be912994
|
|
| BLAKE2b-256 |
e43a26536c263539923147f51e56090a4388d170b88d12bf62761a755cbdeb35
|
File details
Details for the file zahner_link-26.26.0-cp314-cp314-macosx_26_0_arm64.whl.
File metadata
- Download URL: zahner_link-26.26.0-cp314-cp314-macosx_26_0_arm64.whl
- Upload date:
- Size: 5.2 MB
- Tags: CPython 3.14, macOS 26.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
817b1151270be48f441402691413d25e2e250be8216d4bcac22ccb0099f82ae9
|
|
| MD5 |
9272b767636f608e13ca11fd20d555e3
|
|
| BLAKE2b-256 |
30c34bc74ff51ab17366423e72e83e9d4c12a4b866ac9a3571a1351395c20483
|
File details
Details for the file zahner_link-26.26.0-cp313-cp313-win_amd64.whl.
File metadata
- Download URL: zahner_link-26.26.0-cp313-cp313-win_amd64.whl
- Upload date:
- Size: 3.7 MB
- Tags: CPython 3.13, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
84db84229ee9edf5071f7ccc27055fa38337a097af31c2cc3439f3c5b19a9e9d
|
|
| MD5 |
2ee4dbdbab82225ed195d7673911caac
|
|
| BLAKE2b-256 |
8464adc0318866f3d5a4cae20e6c8f8f1b203efb10e8afa26bb8f54c5bb23cbb
|
File details
Details for the file zahner_link-26.26.0-cp313-cp313-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: zahner_link-26.26.0-cp313-cp313-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 6.8 MB
- Tags: CPython 3.13, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
314cad5ed3b349123e02b4c35c46bee8e1a46b01d51df3971e65271f8256de1d
|
|
| MD5 |
687fdfa8e3be15082b8b54cc6815b39f
|
|
| BLAKE2b-256 |
158b9de6726d7963ce369d706916822196eee3ed5f57fbb9cb26b5213eac9113
|
File details
Details for the file zahner_link-26.26.0-cp313-cp313-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: zahner_link-26.26.0-cp313-cp313-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 6.8 MB
- Tags: CPython 3.13, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
74bb867601ec5b26f05ee6c1090f694871a66c4e53add1c84055476f110d3be1
|
|
| MD5 |
21784b8427583e81246d00ca6ba2087e
|
|
| BLAKE2b-256 |
4e50bce39d65b96ba6fd58f0aa756342019fbb1b6919ac62a4313a8e583a6d0f
|
File details
Details for the file zahner_link-26.26.0-cp313-cp313-manylinux_2_34_x86_64.whl.
File metadata
- Download URL: zahner_link-26.26.0-cp313-cp313-manylinux_2_34_x86_64.whl
- Upload date:
- Size: 6.2 MB
- Tags: CPython 3.13, manylinux: glibc 2.34+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
cb27d3cb0ebe38bc9cbe1057c3b8652009c5faf32d9668210eb6a1320fd50e0d
|
|
| MD5 |
6b2281239f3a884a69c544f3f96abad2
|
|
| BLAKE2b-256 |
7c96c8c88dcb399e95cb9be9a54f278a70c5e510b4d06d62145c6081abe9a151
|
File details
Details for the file zahner_link-26.26.0-cp313-cp313-manylinux_2_34_aarch64.whl.
File metadata
- Download URL: zahner_link-26.26.0-cp313-cp313-manylinux_2_34_aarch64.whl
- Upload date:
- Size: 5.7 MB
- Tags: CPython 3.13, manylinux: glibc 2.34+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d1c4424ede5faae2e93d31fd483bff8b0976ee6f8e829962b46f66e73470ba80
|
|
| MD5 |
699302725af582cec7f6c9a05ae7e78b
|
|
| BLAKE2b-256 |
458a4b22770d45bcbdd0d914a8372d278a457f56c1ce066285e58435a04f138a
|
File details
Details for the file zahner_link-26.26.0-cp313-cp313-macosx_26_0_arm64.whl.
File metadata
- Download URL: zahner_link-26.26.0-cp313-cp313-macosx_26_0_arm64.whl
- Upload date:
- Size: 5.2 MB
- Tags: CPython 3.13, macOS 26.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
89e247ef7ddc823a6160fbd7086100229dde9a3ed3d3249e3d0838102926383e
|
|
| MD5 |
68809fb055c7510550b625d4e936f74c
|
|
| BLAKE2b-256 |
76b420fb2fca04fb2cafc6d9d633de4ef93f4ffa7acd208524d02c9801382822
|
File details
Details for the file zahner_link-26.26.0-cp312-cp312-win_amd64.whl.
File metadata
- Download URL: zahner_link-26.26.0-cp312-cp312-win_amd64.whl
- Upload date:
- Size: 3.7 MB
- Tags: CPython 3.12, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3c5010d47f555b4342c7777d2fcc4b8cc0158d592ca4ca17db8186cf281dfdb1
|
|
| MD5 |
8b03635a7bf97addd92acbf87b34945c
|
|
| BLAKE2b-256 |
f09cba03af1e6bf3f9accce83b84c221d8be6d6731d0ba2ed9928395d42791af
|
File details
Details for the file zahner_link-26.26.0-cp312-cp312-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: zahner_link-26.26.0-cp312-cp312-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 6.8 MB
- Tags: CPython 3.12, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d80cbc60efd6e4396f2034a42a3ca7f9a8bfaa7d101e70142aff3c38f43ce1d0
|
|
| MD5 |
7bd1f25624ff4ddf68cca9cebf4a133b
|
|
| BLAKE2b-256 |
ca6e498064a8ff31226984afc599714afc76e2e59a27f0b6809f4e3c1ba64f8b
|
File details
Details for the file zahner_link-26.26.0-cp312-cp312-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: zahner_link-26.26.0-cp312-cp312-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 6.8 MB
- Tags: CPython 3.12, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b549820c2f4890a44112063772856e1128339653921e5ca56ff5503c2d851004
|
|
| MD5 |
858a2613dbdab2ad2fee7ec01095b5ac
|
|
| BLAKE2b-256 |
c642dd505ee00abc5ac82d18e07abf07d217446cc5764db7fb30f6748a8e476b
|
File details
Details for the file zahner_link-26.26.0-cp312-cp312-manylinux_2_34_x86_64.whl.
File metadata
- Download URL: zahner_link-26.26.0-cp312-cp312-manylinux_2_34_x86_64.whl
- Upload date:
- Size: 6.1 MB
- Tags: CPython 3.12, manylinux: glibc 2.34+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
69c2a81c8c57fa3068bdab30e3b76c63ec97125e8f581a23610f3a674cdbdaf1
|
|
| MD5 |
f64c0f501d6a812a02d002533483b748
|
|
| BLAKE2b-256 |
ea84454de487e3c64810ab4776584f6159fb2786d2cfc2ce4e775bc1bcb40603
|
File details
Details for the file zahner_link-26.26.0-cp312-cp312-manylinux_2_34_aarch64.whl.
File metadata
- Download URL: zahner_link-26.26.0-cp312-cp312-manylinux_2_34_aarch64.whl
- Upload date:
- Size: 5.7 MB
- Tags: CPython 3.12, manylinux: glibc 2.34+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
663fca8deba2e65be3a7a86b4f4d211933bdf31301f88b2cf7e72610c0460ff7
|
|
| MD5 |
11f3b87865ff99e5d3298e2822ccf6c8
|
|
| BLAKE2b-256 |
1b4a165eeca073ad016236dd9809714573a43049e04372d5c6da982fa5e29001
|
File details
Details for the file zahner_link-26.26.0-cp312-cp312-macosx_26_0_arm64.whl.
File metadata
- Download URL: zahner_link-26.26.0-cp312-cp312-macosx_26_0_arm64.whl
- Upload date:
- Size: 5.2 MB
- Tags: CPython 3.12, macOS 26.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f43866bd5c5b6d6bcfaf17fd841cbb260dcb7c8a4c66293d96cc90843d9c1263
|
|
| MD5 |
314b939582ec70cd6fecf2a5ef4231b7
|
|
| BLAKE2b-256 |
40a8267e60e281d9934b5dfd4b9880b5420ec9012e04db6d294af5873192742e
|
File details
Details for the file zahner_link-26.26.0-cp311-cp311-win_amd64.whl.
File metadata
- Download URL: zahner_link-26.26.0-cp311-cp311-win_amd64.whl
- Upload date:
- Size: 3.7 MB
- Tags: CPython 3.11, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a479f8fb4b9831f35e34420219f8d458539f2cd41d89e8fcd200f1f06c89ff29
|
|
| MD5 |
d009de3cd0ae6514c62b5e846e3517d3
|
|
| BLAKE2b-256 |
d4c699eb1a68be77f164e4bb1de060e40b66dbb9c36f84c666b94590359a25db
|
File details
Details for the file zahner_link-26.26.0-cp311-cp311-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: zahner_link-26.26.0-cp311-cp311-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 6.8 MB
- Tags: CPython 3.11, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
614cde6c2e3c6bad113b80ab5ab2e7d12e1698ca7adcaf2b719bd927126d7c78
|
|
| MD5 |
c133dd562ff13a4f51d24acf9fa6a035
|
|
| BLAKE2b-256 |
94aa65326c04d4a44b2449c7f3ef3118d3297558459ef5f2b16260c323bc5be7
|
File details
Details for the file zahner_link-26.26.0-cp311-cp311-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: zahner_link-26.26.0-cp311-cp311-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 6.8 MB
- Tags: CPython 3.11, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2705a4eacb0abffde7d6ef15f9de083a0fd578c562618fdbc7d9b2d356576cea
|
|
| MD5 |
1dd64861523dba4b2163a5633aa19d08
|
|
| BLAKE2b-256 |
b547bfdd4d87e6b7adf44d9cfbb83c2677fc3ee0d67a848c539359b500059def
|
File details
Details for the file zahner_link-26.26.0-cp311-cp311-manylinux_2_34_x86_64.whl.
File metadata
- Download URL: zahner_link-26.26.0-cp311-cp311-manylinux_2_34_x86_64.whl
- Upload date:
- Size: 6.1 MB
- Tags: CPython 3.11, manylinux: glibc 2.34+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c76a4b617678bfae7d2c0989bef97912a3c65b15c9828441ec9cf138c6a9e47c
|
|
| MD5 |
0bee4b47cc84cc198e2d67425cc01108
|
|
| BLAKE2b-256 |
5ca30d537dc5ca2cddb6103b3b1d530fcf2404d837760134cc19405e0cb1e4fc
|
File details
Details for the file zahner_link-26.26.0-cp311-cp311-manylinux_2_34_aarch64.whl.
File metadata
- Download URL: zahner_link-26.26.0-cp311-cp311-manylinux_2_34_aarch64.whl
- Upload date:
- Size: 5.7 MB
- Tags: CPython 3.11, manylinux: glibc 2.34+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ddb1fedc388545ab01fe34f1acadc980899b33196aca692d2dc935a73094ec77
|
|
| MD5 |
207084b9d3a50ed11b5ba660cf89e61b
|
|
| BLAKE2b-256 |
4fb47c2566cb1b3fe0814d8ddafe018fe7e59177f7375d7db7ce65f87bdff9c6
|
File details
Details for the file zahner_link-26.26.0-cp311-cp311-macosx_26_0_arm64.whl.
File metadata
- Download URL: zahner_link-26.26.0-cp311-cp311-macosx_26_0_arm64.whl
- Upload date:
- Size: 5.2 MB
- Tags: CPython 3.11, macOS 26.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d713a6c98b77f07a72ffe844916e892554455a9cf36aae01ffad124e1e222867
|
|
| MD5 |
4eceb617504db21470f551cb740524dc
|
|
| BLAKE2b-256 |
f1f68473533164e7fc9b25dfee52e5106d99c976cdc0968ea07e11f20a131660
|