Skip to main content

Overview

10.5281/zenodo.7324875

PyLabLib aims to provide support for device control and experiment automation. It interfaces with lots of different devices, including several different camera interfaces, translational stages, oscilloscopes, AWGs, sensors, and more. The interface is implemented in a natural way through Python objects, and is easy to understand. For example, here is a complete script which steps Thorlabs KDC101 stage by 10000 steps ten times, and each time grabs a frame with Andor iXon camera:

    from pylablib.devices import Thorlabs, Andor  # import the device libraries
    import numpy as np  # import numpy for saving

    # connect to the devices
    with Thorlabs.KinesisMotor("27000000") as stage, Andor.AndorSDK2Camera() as cam:
        # change some camera parameters
        cam.set_exposure(50E-3)
        cam.set_roi(0, 128, 0, 128, hbin=2, vbin=2)
        # start the stepping loop
        images = []
        for _ in range(10):
            stage.move_by(10000)  # initiate a move
            stage.wait_move()  # wait until it's done
            img = cam.snap()  # grab a single frame
            images.append(img)

    np.array(images).astype("<u2").tofile("frames.bin")  # save frames as raw binary

The list of the devices is constantly expanding.

Additional utilities are added to simplify data acquisition, storage, and processing:

  • Simplified data processing utilities: convenient fitting, filtering, feature detection, FFT (mostly wrappers around NumPy and SciPy).
  • Universal multi-level dictionaries which are convenient for storing heterogeneous data and settings in human-readable format.
  • Assorted functions for dealing with file system (creating, moving and removing folders, zipping/unzipping, path normalization), network (simplified interface for client and server sockets), strings (conversion of various Python objects to and from string), and more.

The most recent version of the library is available on GitHub (https://github.com/AlexShkarin/pyLabLib), and the documentation can be found at https://pylablib.readthedocs.io/ .

Requirements

  • Python 3 (tested with 3.6+)
  • Most extensively tested with Windows 10 and 64-bit Python. Linux is, in principle, supported, but devices which require manufacturer-provided DLLs (mostly cameras) might, potentially, have problems.
  • Basic version only needs numpy, SciPy and pandas. Advanced device communication packages (such as PyVISA and pySerial) are automatically installed, but can be avoided if necessary.
  • Some devices might require additional software. If this is the case, the requirements are mentioned on the corresponding page.

Installation

You can install the library from PyPi:

pip install pylablib

More options are described in the documentation.

Related projects

Pylablib cam-control - software for universal camera control and frames acquisition.

Release files for pylablib 1.4.5

For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.

Source distribution (sdist)

Source distribution for pylablib 1.4.5
File Size Uploaded
pylablib-1.4.5.tar.gz 2.1 MB Details

Built distributions (wheels)

Table of built distributions (wheels) for pylablib 1.4.5
File
pylablib-1.4.5-cp314-cp314t-win_amd64.whl CPython 3.14 CPython 3.14 free-threading Windows x86-64 Details
pylablib-1.4.5-cp314-cp314t-win32.whl CPython 3.14 CPython 3.14 free-threading Windows x86-32 Details
pylablib-1.4.5-cp314-cp314t-musllinux_1_2_x86_64.whl CPython 3.14 CPython 3.14 free-threading Linux musl 1.2+ x86-64 Details
pylablib-1.4.5-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl CPython 3.14 CPython 3.14 free-threading Linux glibc 2.17+ x86-64, Linux glibc 2.28+ x86-64 Details
pylablib-1.4.5-cp314-cp314t-macosx_11_0_arm64.whl CPython 3.14 CPython 3.14 free-threading macOS 11.0+ ARM64 Details
pylablib-1.4.5-cp314-cp314-win_amd64.whl CPython 3.14 CPython 3.14 Windows x86-64 Details
pylablib-1.4.5-cp314-cp314-win32.whl CPython 3.14 CPython 3.14 Windows x86-32 Details
pylablib-1.4.5-cp314-cp314-musllinux_1_2_x86_64.whl CPython 3.14 CPython 3.14 Linux musl 1.2+ x86-64 Details
pylablib-1.4.5-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl CPython 3.14 CPython 3.14 Linux glibc 2.17+ x86-64, Linux glibc 2.28+ x86-64 Details
pylablib-1.4.5-cp314-cp314-macosx_11_0_arm64.whl CPython 3.14 CPython 3.14 macOS 11.0+ ARM64 Details
pylablib-1.4.5-cp313-cp313-win_amd64.whl CPython 3.13 CPython 3.13 Windows x86-64 Details
pylablib-1.4.5-cp313-cp313-win32.whl CPython 3.13 CPython 3.13 Windows x86-32 Details
pylablib-1.4.5-cp313-cp313-musllinux_1_2_x86_64.whl CPython 3.13 CPython 3.13 Linux musl 1.2+ x86-64 Details
pylablib-1.4.5-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl CPython 3.13 CPython 3.13 Linux glibc 2.28+ x86-64, Linux glibc 2.17+ x86-64 Details
pylablib-1.4.5-cp313-cp313-macosx_11_0_arm64.whl CPython 3.13 CPython 3.13 macOS 11.0+ ARM64 Details
pylablib-1.4.5-cp312-cp312-win_amd64.whl CPython 3.12 CPython 3.12 Windows x86-64 Details
pylablib-1.4.5-cp312-cp312-win32.whl CPython 3.12 CPython 3.12 Windows x86-32 Details
pylablib-1.4.5-cp312-cp312-musllinux_1_2_x86_64.whl CPython 3.12 CPython 3.12 Linux musl 1.2+ x86-64 Details
pylablib-1.4.5-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl CPython 3.12 CPython 3.12 Linux glibc 2.17+ x86-64, Linux glibc 2.28+ x86-64 Details
pylablib-1.4.5-cp312-cp312-macosx_11_0_arm64.whl CPython 3.12 CPython 3.12 macOS 11.0+ ARM64 Details
pylablib-1.4.5-cp311-cp311-win_amd64.whl CPython 3.11 CPython 3.11 Windows x86-64 Details
pylablib-1.4.5-cp311-cp311-win32.whl CPython 3.11 CPython 3.11 Windows x86-32 Details
pylablib-1.4.5-cp311-cp311-musllinux_1_2_x86_64.whl CPython 3.11 CPython 3.11 Linux musl 1.2+ x86-64 Details
pylablib-1.4.5-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl CPython 3.11 CPython 3.11 Linux glibc 2.17+ x86-64, Linux glibc 2.28+ x86-64 Details
pylablib-1.4.5-cp311-cp311-macosx_11_0_arm64.whl CPython 3.11 CPython 3.11 macOS 11.0+ ARM64 Details
pylablib-1.4.5-cp310-cp310-win_amd64.whl CPython 3.10 CPython 3.10 Windows x86-64 Details
pylablib-1.4.5-cp310-cp310-win32.whl CPython 3.10 CPython 3.10 Windows x86-32 Details
pylablib-1.4.5-cp310-cp310-musllinux_1_2_x86_64.whl CPython 3.10 CPython 3.10 Linux musl 1.2+ x86-64 Details
pylablib-1.4.5-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl CPython 3.10 CPython 3.10 Linux glibc 2.17+ x86-64, Linux glibc 2.28+ x86-64 Details
pylablib-1.4.5-cp310-cp310-macosx_11_0_arm64.whl CPython 3.10 CPython 3.10 macOS 11.0+ ARM64 Details
pylablib-1.4.5-cp39-cp39-win_amd64.whl CPython 3.9 CPython 3.9 Windows x86-64 Details
pylablib-1.4.5-cp39-cp39-win32.whl CPython 3.9 CPython 3.9 Windows x86-32 Details
pylablib-1.4.5-cp39-cp39-musllinux_1_2_x86_64.whl CPython 3.9 CPython 3.9 Linux musl 1.2+ x86-64 Details
pylablib-1.4.5-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl CPython 3.9 CPython 3.9 Linux glibc 2.17+ x86-64, Linux glibc 2.28+ x86-64 Details
pylablib-1.4.5-cp39-cp39-macosx_11_0_arm64.whl CPython 3.9 CPython 3.9 macOS 11.0+ ARM64 Details
pylablib-1.4.5-cp38-cp38-win_amd64.whl CPython 3.8 CPython 3.8 Windows x86-64 Details
pylablib-1.4.5-cp38-cp38-win32.whl CPython 3.8 CPython 3.8 Windows x86-32 Details
pylablib-1.4.5-cp38-cp38-musllinux_1_2_x86_64.whl CPython 3.8 CPython 3.8 Linux musl 1.2+ x86-64 Details
pylablib-1.4.5-cp38-cp38-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl CPython 3.8 CPython 3.8 Linux glibc 2.28+ x86-64, Linux glibc 2.17+ x86-64 Details
pylablib-1.4.5-cp38-cp38-macosx_11_0_arm64.whl CPython 3.8 CPython 3.8 macOS 11.0+ ARM64 Details

Total release size:94.6 MB

Release files / pylablib-1.4.5.tar.gz

Download URL pylablib-1.4.5.tar.gz
Size 2.1 MB
Tags Source
SHA-256 checksum
How to use checksums
ea38b4a5a913d045b9228680c9f5fb5be2bfec1b1648441a22cf0a08d234efdb
BLAKE2b-256 checksum
How to use checksums
084889aa65be4a2247b6959f8b01cd06995e2677dd969750ae3badf10bcb32db
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.13.8

Release files / pylablib-1.4.5-cp314-cp314t-win_amd64.whl

Download URL pylablib-1.4.5-cp314-cp314t-win_amd64.whl
Size 2.0 MB
Tags CPython 3.14 CPython 3.14 free-threading Windows x86-64
SHA-256 checksum
How to use checksums
99d4dd529d7acce9967de3ee24b78c4d71b64de79004bbfdf6bebbb4fe93c936
BLAKE2b-256 checksum
How to use checksums
93160ad754641adb896482d15c0021024eb486d9d1a007ebad3d5de26afa60c0
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.13.8

Release files / pylablib-1.4.5-cp314-cp314t-win32.whl

Download URL pylablib-1.4.5-cp314-cp314t-win32.whl
Size 2.0 MB
Tags CPython 3.14 CPython 3.14 free-threading Windows x86-32
SHA-256 checksum
How to use checksums
5b67ee0a17eec11b4beec4e683744f7d90887675c2e4ad211d2a3bcfa8a35b96
BLAKE2b-256 checksum
How to use checksums
b64159f31333d97bcbb5a7928b0ddb3be5aff568859a6146b5337462d5b2260b
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.13.8

Release files / pylablib-1.4.5-cp314-cp314t-musllinux_1_2_x86_64.whl

Download URL pylablib-1.4.5-cp314-cp314t-musllinux_1_2_x86_64.whl
Size 3.0 MB
Tags CPython 3.14 CPython 3.14 free-threading Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
16159bd2d22d6fe4009c6947ada0657aade703523b4dd39c4f876c8aac368e7e
BLAKE2b-256 checksum
How to use checksums
e8de4595f35a450bd43030cf690aa33428f48cbdeb51c08b56e1ae94b9747fae
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.13.8

Release files / pylablib-1.4.5-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl

Download URL pylablib-1.4.5-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Size 3.0 MB
Tags CPython 3.14 CPython 3.14 free-threading Linux glibc 2.17+ x86-64 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
cb000246899e886c3e578bcd2a42cf3e620ddecbac24a61a77db1f150a19221e
BLAKE2b-256 checksum
How to use checksums
92711ae827c8e2527586fe069a591f960f2dda14944c195b96aad4c11aabcde1
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.13.8

Release files / pylablib-1.4.5-cp314-cp314t-macosx_11_0_arm64.whl

Download URL pylablib-1.4.5-cp314-cp314t-macosx_11_0_arm64.whl
Size 2.0 MB
Tags CPython 3.14 CPython 3.14 free-threading macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
6bba7915136a64246215f6796564a8860d091dd3790ceaf822f839abb4f7bcda
BLAKE2b-256 checksum
How to use checksums
4f5082621345b36afe7f40b61cafdb59e09350f7693f49874b77586912493dac
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.13.8

Release files / pylablib-1.4.5-cp314-cp314-win_amd64.whl

Download URL pylablib-1.4.5-cp314-cp314-win_amd64.whl
Size 2.0 MB
Tags CPython 3.14 Windows x86-64
SHA-256 checksum
How to use checksums
2373b1f4a196a8517b11b576a82d7c9c86db0e138545bb15f2ca78c9f89e100a
BLAKE2b-256 checksum
How to use checksums
7ec8fbdab92467a7fe1b85262731a7da17cb3921deb56a884955f9e59de29f28
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.13.8

Release files / pylablib-1.4.5-cp314-cp314-win32.whl

Download URL pylablib-1.4.5-cp314-cp314-win32.whl
Size 2.0 MB
Tags CPython 3.14 Windows x86-32
SHA-256 checksum
How to use checksums
a237e70f61b4764298818ea34db23744110376c6893d1d573890502efd8ec5ce
BLAKE2b-256 checksum
How to use checksums
89f98cd2a1e1ebcfb47fabaea4c18d3b31bb2c8a9f1692746c24fc3410d3a5e9
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.13.8

Release files / pylablib-1.4.5-cp314-cp314-musllinux_1_2_x86_64.whl

Download URL pylablib-1.4.5-cp314-cp314-musllinux_1_2_x86_64.whl
Size 2.8 MB
Tags CPython 3.14 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
e28fa2d7b7a6bcbc1a8058a1323119742b79a7bb7c9f2e6e69c191170e340bc5
BLAKE2b-256 checksum
How to use checksums
a16f22a967f71d18fca82e8c9252ed8493868a457fe334d91a5dc21d7121ea27
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.13.8

Release files / pylablib-1.4.5-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl

Download URL pylablib-1.4.5-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Size 2.8 MB
Tags CPython 3.14 Linux glibc 2.17+ x86-64 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
64365919d33d7ee6c889af7876b2cc0ca275e1ce19a63b60afb46536036e2fc7
BLAKE2b-256 checksum
How to use checksums
f3efdf56d436d5e2cbd447a0503a4bdca6c1cdb35556c438122f2a15c99f191b
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.13.8

Release files / pylablib-1.4.5-cp314-cp314-macosx_11_0_arm64.whl

Download URL pylablib-1.4.5-cp314-cp314-macosx_11_0_arm64.whl
Size 2.0 MB
Tags CPython 3.14 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
9649d222f75ef7ae014c73e41d25604cb96292a423b55cabe4b612cd76ee145b
BLAKE2b-256 checksum
How to use checksums
ad6cd08fd25c162c5fb0bc73440d88de7c5875def6aa409dad89459c0f832abc
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.13.8

Release files / pylablib-1.4.5-cp313-cp313-win_amd64.whl

Download URL pylablib-1.4.5-cp313-cp313-win_amd64.whl
Size 2.0 MB
Tags CPython 3.13 Windows x86-64
SHA-256 checksum
How to use checksums
8291acb45bcb07c490becf0ffd4c62cd687f59cfa7a2d53ee3671a29bace70d8
BLAKE2b-256 checksum
How to use checksums
7801c320a5b240746e5217288057e876e9908f857998fe2d81f48aeb014b06a8
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.13.8

Release files / pylablib-1.4.5-cp313-cp313-win32.whl

Download URL pylablib-1.4.5-cp313-cp313-win32.whl
Size 2.0 MB
Tags CPython 3.13 Windows x86-32
SHA-256 checksum
How to use checksums
af3d9f9a51fe75a2797279cea08833efb60cf93e46647e42423f3a0a3ed12136
BLAKE2b-256 checksum
How to use checksums
ef51c0b2566874da591e841c08c54e83a8167cdeff881116f2fa971289f5a584
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.13.8

Release files / pylablib-1.4.5-cp313-cp313-musllinux_1_2_x86_64.whl

Download URL pylablib-1.4.5-cp313-cp313-musllinux_1_2_x86_64.whl
Size 2.8 MB
Tags CPython 3.13 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
3fe6a01534778b7cfa43c32415038e12ca2197da00f0b8a5a4e904f1e7cd7e62
BLAKE2b-256 checksum
How to use checksums
0f995d4eef0f051d8b107a9f1472e7932aa6bd5ee2fc3ade20bcb04efa6bcee1
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.13.8

Release files / pylablib-1.4.5-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl

Download URL pylablib-1.4.5-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Size 2.8 MB
Tags CPython 3.13 Linux glibc 2.17+ x86-64 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
8a93e42e9315bd4a73a99e84924a5c2793a7ecb391db9770b84f4eb7037be2ea
BLAKE2b-256 checksum
How to use checksums
abcec64462279bfc0b9cd0a5ae0a9d6512f0741ae9fd53a12a56fa322f3f6b66
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.13.8

Release files / pylablib-1.4.5-cp313-cp313-macosx_11_0_arm64.whl

Download URL pylablib-1.4.5-cp313-cp313-macosx_11_0_arm64.whl
Size 2.0 MB
Tags CPython 3.13 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
249b84e9552a3911fea00248437af96e5a3b8b2f0165c90a215a9dc1d0b4e512
BLAKE2b-256 checksum
How to use checksums
74abf2ece1e3264ccd2157d939351d7ffceedce671058c2053db704cda7184d6
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.13.8

Release files / pylablib-1.4.5-cp312-cp312-win_amd64.whl

Download URL pylablib-1.4.5-cp312-cp312-win_amd64.whl
Size 2.0 MB
Tags CPython 3.12 Windows x86-64
SHA-256 checksum
How to use checksums
f67f9cef346c0f0e2eca4a8b558074634b0b8385ded148642e282a231e147cc5
BLAKE2b-256 checksum
How to use checksums
6ed5557b9f87462ba19df56215700ae357cadb28f4d8c01db38518ac940dadbc
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.13.8

Release files / pylablib-1.4.5-cp312-cp312-win32.whl

Download URL pylablib-1.4.5-cp312-cp312-win32.whl
Size 2.0 MB
Tags CPython 3.12 Windows x86-32
SHA-256 checksum
How to use checksums
aae45a96eaf3c58dc91400597ab239bc2f26677d281cddf21509dba0c75f4473
BLAKE2b-256 checksum
How to use checksums
efce632f8242c6cd935f95ba6cd2810a7df93177e3c20209571655a8dcb22b54
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.13.8

Release files / pylablib-1.4.5-cp312-cp312-musllinux_1_2_x86_64.whl

Download URL pylablib-1.4.5-cp312-cp312-musllinux_1_2_x86_64.whl
Size 2.8 MB
Tags CPython 3.12 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
e8ed8bea4ce7ab59d999c6114b713c274f1069365561025d58c63bd7059c778d
BLAKE2b-256 checksum
How to use checksums
1a35cfd521cb94d755b60f9cde257e55e01dafbc616f01a214f9279e4a64deb8
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.13.8

Release files / pylablib-1.4.5-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl

Download URL pylablib-1.4.5-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Size 2.8 MB
Tags CPython 3.12 Linux glibc 2.17+ x86-64 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
ca5c42c5344690e56a9084198c127a5626c5c1aeec561a0b38a25be1723932bd
BLAKE2b-256 checksum
How to use checksums
220b38a05a5be9256b51ad814e5a4ae23b92cf72d7f233398a4b1d0ecdbe27d1
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.13.8

Release files / pylablib-1.4.5-cp312-cp312-macosx_11_0_arm64.whl

Download URL pylablib-1.4.5-cp312-cp312-macosx_11_0_arm64.whl
Size 2.0 MB
Tags CPython 3.12 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
be0962e50a0a9426c24765486bffbe776a07670e769ab699fcf7fab8ca5c6f13
BLAKE2b-256 checksum
How to use checksums
964024642ed2ba496dd41f318f41856174d90d02e4cf3889ce5e064eaa96700f
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.13.8

Release files / pylablib-1.4.5-cp311-cp311-win_amd64.whl

Download URL pylablib-1.4.5-cp311-cp311-win_amd64.whl
Size 2.0 MB
Tags CPython 3.11 Windows x86-64
SHA-256 checksum
How to use checksums
dc7040c03fa175cf8d5a4da8153c08cce15fd6abfe9853b9b33afb9a8971a175
BLAKE2b-256 checksum
How to use checksums
4f47d6feae32d935e1d301b79c3f4d6954f5b07c40a4b7267a3310a17ad11091
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.13.8

Release files / pylablib-1.4.5-cp311-cp311-win32.whl

Download URL pylablib-1.4.5-cp311-cp311-win32.whl
Size 1.9 MB
Tags CPython 3.11 Windows x86-32
SHA-256 checksum
How to use checksums
faad9ca1b51c4562ddafbef3a8c0bd085b52227978094e5c026febea21b076b7
BLAKE2b-256 checksum
How to use checksums
570aee4c2949591b4f6c7eb5884e5ac90fb3ddd8568c4c1d1e8a1c9c8152bb6e
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.13.8

Release files / pylablib-1.4.5-cp311-cp311-musllinux_1_2_x86_64.whl

Download URL pylablib-1.4.5-cp311-cp311-musllinux_1_2_x86_64.whl
Size 2.8 MB
Tags CPython 3.11 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
e3856620f75c5b52235fd1ba20e087c7e49228529450771987f3918c818e7eeb
BLAKE2b-256 checksum
How to use checksums
ed555e1c6060f1a32cf3e0b0ed58cc1178594b92f92615d0f95d92e21108bc18
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.13.8

Release files / pylablib-1.4.5-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl

Download URL pylablib-1.4.5-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Size 2.8 MB
Tags CPython 3.11 Linux glibc 2.17+ x86-64 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
e555aed1b528b886d893346268094a3c5190de973c591d554031ba9e49cc0a8f
BLAKE2b-256 checksum
How to use checksums
4093886f4146b0d17b4c2f18a6a4266dc65462dee39186b288d23034a931bede
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.13.8

Release files / pylablib-1.4.5-cp311-cp311-macosx_11_0_arm64.whl

Download URL pylablib-1.4.5-cp311-cp311-macosx_11_0_arm64.whl
Size 2.0 MB
Tags CPython 3.11 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
e574d58e18a191ea1c71ad8eca31f82352a5626ad87b00fa4042e0b0682dfa5f
BLAKE2b-256 checksum
How to use checksums
33d22e4e22dad2242e5affaf4d9b456f39daba683f75cde7eb3c6194947ff223
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.13.8

Release files / pylablib-1.4.5-cp310-cp310-win_amd64.whl

Download URL pylablib-1.4.5-cp310-cp310-win_amd64.whl
Size 2.0 MB
Tags CPython 3.10 Windows x86-64
SHA-256 checksum
How to use checksums
d0290aa2f2c0f6773dd3bcec39bd18979a7023c0768a22c82e4cadf34fbef8db
BLAKE2b-256 checksum
How to use checksums
ff506bde48e03061bbe1e093b11d092ef77c19bc822dbc957262bfeefe24d1c8
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.13.8

Release files / pylablib-1.4.5-cp310-cp310-win32.whl

Download URL pylablib-1.4.5-cp310-cp310-win32.whl
Size 2.0 MB
Tags CPython 3.10 Windows x86-32
SHA-256 checksum
How to use checksums
b2db6f3434759b9cc8bee3778a56f2961499ddd4895bdfee3fb4cfa113d70a20
BLAKE2b-256 checksum
How to use checksums
8149cfd783abdeb77011746d27213e97984c7057c396b4117bc86bc236567fec
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.13.8

Release files / pylablib-1.4.5-cp310-cp310-musllinux_1_2_x86_64.whl

Download URL pylablib-1.4.5-cp310-cp310-musllinux_1_2_x86_64.whl
Size 2.7 MB
Tags CPython 3.10 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
e7f2da78cd43831d73c98ed6d70a5a79f2380bb019ed284c83b13b52d127eab8
BLAKE2b-256 checksum
How to use checksums
d4e1092e5e116a03969a8f8c852e74e1da447ac89baa9d719f2350449c735eab
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.13.8

Release files / pylablib-1.4.5-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl

Download URL pylablib-1.4.5-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Size 2.7 MB
Tags CPython 3.10 Linux glibc 2.17+ x86-64 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
ffbe370edc3f129dc597d3144b7d1414e1ad63ca1bf78cb4708c96291bb5e663
BLAKE2b-256 checksum
How to use checksums
8385c6689c4675b8bc18a47f54507cc20d98706a914cb8ba581495079d96328b
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.13.8

Release files / pylablib-1.4.5-cp310-cp310-macosx_11_0_arm64.whl

Download URL pylablib-1.4.5-cp310-cp310-macosx_11_0_arm64.whl
Size 2.0 MB
Tags CPython 3.10 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
d709d2352a376ae84459cba11323e5fcb8bb6f2d8a1f313b2b2686dd9b05babc
BLAKE2b-256 checksum
How to use checksums
d16a04795082d240279267738f044944c469ac1a63fd3a12c7d84e40396170d3
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.13.8

Release files / pylablib-1.4.5-cp39-cp39-win_amd64.whl

Download URL pylablib-1.4.5-cp39-cp39-win_amd64.whl
Size 2.0 MB
Tags CPython 3.9 Windows x86-64
SHA-256 checksum
How to use checksums
cd73c45374e904d1f58cc537c1637acb7ac2f4e016df1043930f4a5fb0ca310d
BLAKE2b-256 checksum
How to use checksums
1a2e3143eeece1c72441ee8b270084c7e9690cf03ebe794fe6f9a75460972d89
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.13.8

Release files / pylablib-1.4.5-cp39-cp39-win32.whl

Download URL pylablib-1.4.5-cp39-cp39-win32.whl
Size 2.0 MB
Tags CPython 3.9 Windows x86-32
SHA-256 checksum
How to use checksums
982773b7c86518ee46be725fc41c4c66871bbe8ebaabffcbdf52322b74814d61
BLAKE2b-256 checksum
How to use checksums
93b9a2f9446e8275fc24fe7c68b67ec8c1618d99d35b14abb603d7c816b08160
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.13.8

Release files / pylablib-1.4.5-cp39-cp39-musllinux_1_2_x86_64.whl

Download URL pylablib-1.4.5-cp39-cp39-musllinux_1_2_x86_64.whl
Size 2.7 MB
Tags CPython 3.9 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
227250d1486f69def7f7b8d8e62d39ef0b1b09e4aeaecb56c601ffd7cfb199f3
BLAKE2b-256 checksum
How to use checksums
8a9ce170626458b1d19e89b4839ad3d720b0cbea3ecdb6e7df8ec3480efd471b
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.13.8

Release files / pylablib-1.4.5-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl

Download URL pylablib-1.4.5-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Size 2.7 MB
Tags CPython 3.9 Linux glibc 2.17+ x86-64 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
982b6dee9ca3603cf27a861f6089296b1d1fe2688812d5b95c1d07aeb7a09adf
BLAKE2b-256 checksum
How to use checksums
fc0fa039bc2b290e1e429ecfb0ccaf475f7597df06aa25bb020886da8bf89a29
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.13.8

Release files / pylablib-1.4.5-cp39-cp39-macosx_11_0_arm64.whl

Download URL pylablib-1.4.5-cp39-cp39-macosx_11_0_arm64.whl
Size 2.0 MB
Tags CPython 3.9 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
22c595815aafd9096aa8761c4f6246e4efbf914f6b5cddfaa30c8f4c27fb25cf
BLAKE2b-256 checksum
How to use checksums
8b963c44b451fe022b9809e2ed134de78a38270ba02372788208285bc0493ebf
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.13.8

Release files / pylablib-1.4.5-cp38-cp38-win_amd64.whl

Download URL pylablib-1.4.5-cp38-cp38-win_amd64.whl
Size 2.0 MB
Tags CPython 3.8 Windows x86-64
SHA-256 checksum
How to use checksums
7b2b0446dc2ff2ad7970a0943386ad30e3ca5d2f6415fe82ce4b97ca0505acfd
BLAKE2b-256 checksum
How to use checksums
cabc45db9a0b44a333f91bc0a412222bea79cafdcc7520cce67e2c67c4ac4204
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.13.8

Release files / pylablib-1.4.5-cp38-cp38-win32.whl

Download URL pylablib-1.4.5-cp38-cp38-win32.whl
Size 2.0 MB
Tags CPython 3.8 Windows x86-32
SHA-256 checksum
How to use checksums
0364adf62764a1d34cb60d28b43f08ce026133647e0f362ce9351e5f639a54d1
BLAKE2b-256 checksum
How to use checksums
a00349a28604ac330a98d6e12f6105e7d4eb4ea5d176d211881a8a7e4858bdf5
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.13.8

Release files / pylablib-1.4.5-cp38-cp38-musllinux_1_2_x86_64.whl

Download URL pylablib-1.4.5-cp38-cp38-musllinux_1_2_x86_64.whl
Size 2.7 MB
Tags CPython 3.8 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
e179e8496d90cfd9823171a44799058a1fb7cc58b0806063b7afe2ec91357f86
BLAKE2b-256 checksum
How to use checksums
77d885520cebffc270c63e35c86f07b23b01889412d1215c64f4693a42c6871f
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.13.8

Release files / pylablib-1.4.5-cp38-cp38-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl

Download URL pylablib-1.4.5-cp38-cp38-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Size 2.7 MB
Tags CPython 3.8 Linux glibc 2.17+ x86-64 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
52791620e58836a66be3003fbdbbd581b041640d4f41b1fdbd8cde1776a5ebb2
BLAKE2b-256 checksum
How to use checksums
c5e2778368afdb1572fcd1864a21e8ada4e2ff747249038aa8401685b84e7e81
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.13.8

Release files / pylablib-1.4.5-cp38-cp38-macosx_11_0_arm64.whl

Download URL pylablib-1.4.5-cp38-cp38-macosx_11_0_arm64.whl
Size 2.0 MB
Tags CPython 3.8 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
e255126de449ee0da8fc8e1be4b0e99b46904c4c47d8818253b539eb9a3fdeb8
BLAKE2b-256 checksum
How to use checksums
3a576c46dce6e04d313e8d63763b7b783fe26ca5f5c5112984efe5a644ecbbcf
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.13.8

Release history Release notifications | RSS feed

This release

1.4.5 This release

41 release files

1.4.1

2 release files

1.4.0

2 release files

1.3.3

2 release files

1.3.2

2 release files

1.3.1

2 release files

1.3.0

2 release files

1.2.1

2 release files

1.2.0

2 release files

1.1.0

2 release files

1.0.0

2 release files

0.4.2

2 release files

0.4.1

2 release files

0.4.0

2 release files

0.3.5

2 release files

0.3.4

2 release files

0.3.3

2 release files

0.3.2

2 release files

0.3.0

2 release files

0.2.0

2 release files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page