Skip to main content

The python wrapper for the Basler pylon Camera Software Suite.

Project description

pypylon

The official python wrapper for the Basler pylon Camera Software Suite.

Background information about usage of pypylon, programming samples and jupyter notebooks can also be found at pypylon-samples.

Please Note: This project is offered with no technical support by Basler AG. You are welcome to post any questions or issues on GitHub or on ImagingHub.

Build Status

Getting Started

  • Install pylon This is strongly recommended but not mandatory. See known issues for further details.
  • Install pypylon: pip3 install pypylon For more installation options and the supported systems please read the Installation paragraph.
  • Look at samples/grab.py or use the following snippet:
from pypylon import pylon

camera = pylon.InstantCamera(pylon.TlFactory.GetInstance().CreateFirstDevice())
camera.Open()

# demonstrate some feature access
new_width = camera.Width.Value - camera.Width.Inc
if new_width >= camera.Width.Min:
    camera.Width.Value = new_width

numberOfImagesToGrab = 100
camera.StartGrabbingMax(numberOfImagesToGrab)

while camera.IsGrabbing():
    grabResult = camera.RetrieveResult(5000, pylon.TimeoutHandling_ThrowException)

    if grabResult.GrabSucceeded():
        # Access the image data.
        print("SizeX: ", grabResult.Width)
        print("SizeY: ", grabResult.Height)
        img = grabResult.Array
        print("Gray value of first pixel: ", img[0, 0])

    grabResult.Release()
camera.Close()

Getting Started with pylon Data Processing

from pypylon import pylondataprocessing
import os

resultCollector = pylondataprocessing.GenericOutputObserver()
recipe = pylondataprocessing.Recipe()
recipe.Load('dataprocessing_barcode.precipe')
recipe.RegisterAllOutputsObserver(resultCollector, pylon.RegistrationMode_Append);
recipe.Start()

for i in range(0, 100):
    if resultCollector.GetWaitObject().Wait(5000):
        result = resultCollector.RetrieveResult()
        # Print the barcodes
        variant = result["Barcodes"]
        if not variant.HasError():
            # Print result data
            for barcodeIndex in range(0, variant.NumArrayValues):
                print(variant.GetArrayValue(barcodeIndex).ToString())
        else:
            print("Error: " + variant.GetErrorDescription())
    else:
        print("Result timeout")
        break

recipe.Unload()

Update your code to pypylon >= 3.0.0

The current pypylon implementation allows direct feature assignment:

cam.Gain = 42

This assignment style is deprecated with pypylon 3.0.0, as it prevents full typing support for pypylon.

The recommended assignment style is now:

cam.Gain.Value = 42

To identify the locations in your code that have to be updated, run with enabled warnings:

PYTHONWARNINGS=default python script.py

Installation

Prerequisites

  • Installed pylon For the binary installation this is not mandatory but strongly recommended. See known issues for further details.
  • Installed python with pip
  • Installed CodeMeter Runtime when you want to use pylon vTools and the pylon Data Processing API extension on your platform.

pylon OS Versions and Features

Please note that the pylon Camera Software Suite may support different operating system versions and features than pypylon. For latest information on pylon refer to: https://www.baslerweb.com/en/software/pylon/ In addition, check the release notes of your pylon installation. For instance:

  • pylon 7.4.0 supports Windows 10/11 64 bit, Linux x86_64 and Linux aarch64 with glibc version >= 2.31 or newer.
  • pylon vTools are supported on pylon 7.0.0 and newer.
  • pylon vTools are supported on pypylon 3.0 and newer only on Windows 10/11 64 bit, Linux x86_64 and Linux aarch64.
  • For pylon vTools that require a license refer to: https://www.baslerweb.com/en/software/pylon-vtools/

Binary Installation

The easiest way to get pypylon is to install a prebuild wheel. Binary releases for most architectures are available on pypi**. To install pypylon open your favourite terminal and run:

pip3 install pypylon

The following versions are available on pypi:

3.6 3.7 3.8 3.9 3.10 3.11
Windows 64bit x x x x x x
Linux x86_64*** x x x x x x
Linux armv7l* x x x x x x
Linux aarch64*** x x x x x x
macOS x86_64** x x x x x x
macOS arm64** x x x x

Additional Notes on binary packages:

  • (*) The linux 32bit binaries are manylinux_2_28 conformant. This is roughly equivalent to a minimum glibc version >= 2.28. :warning: You need at least pip 20.3 to install them.
  • (***) The linux 64bit binaries are manylinux_2_31 conformant. This is roughly equivalent to a minimum glibc version >= 2.31. :warning: You need at least pip 20.3 to install them.
  • (**) macOS binaries are built for macOS >= 11.0 (Big-Sur)

Installation from Source

Building the pypylon bindings is supported and tested on Windows, Linux and macOS

You need a few more things to compile pypylon:

  • An installation of pylon SDK for your platform
  • A compiler for your system (Visual Studio on Windows, gcc on linux, xCode commandline tools on macOS)
  • Python development files (e.g. sudo apt install python-dev on linux)
  • swig >= 4.0
    • For all 64bit platforms you can install the tool via pip install swig

To build pypylon from source:

git clone https://github.com/basler/pypylon.git
cd pypylon
pip install .

If pylon SDK is not installed in a default location you have to specify the location from the environment

  • on Linux: export PYLON_ROOT=<installation directory of pylon SDK>
  • on macOS: export PYLON_FRAMEWORK_LOCATION=<framework base folder that contains pylon.framework>

Development

Pull requests to pypylon are very welcome. To help you getting started with pypylon improvements, here are some hints:

Starting Development

python setup.py develop

This will "link" the local pypylon source directory into your python installation. It will not package the pylon libraries and always use the installed pylon. After changing pypylon, execute python setup.py build and test...

Running Unit Tests

NOTE: The unit tests try to import pypylon...., so they run against the installed version of pypylon.

pytest tests/....

Known Issues

  • For USB 3.0 cameras to work on Linux, you need to install appropriate udev rules. The easiest way to get them is to install the official pylon 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

No source distribution files available for this release.See tutorial on generating distribution archives.

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

pypylon-3.0.1-cp311-cp311-win_amd64.whl (145.7 MB view details)

Uploaded CPython 3.11Windows x86-64

pypylon-3.0.1-cp311-cp311-manylinux_2_31_x86_64.whl (43.9 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.31+ x86-64

pypylon-3.0.1-cp311-cp311-manylinux_2_31_aarch64.whl (40.9 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.31+ ARM64

pypylon-3.0.1-cp311-cp311-manylinux_2_24_armv7l.manylinux_2_28_armv7l.whl (6.8 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.24+ ARMv7lmanylinux: glibc 2.28+ ARMv7l

pypylon-3.0.1-cp311-cp311-macosx_11_0_x86_64.whl (27.6 MB view details)

Uploaded CPython 3.11macOS 11.0+ x86-64

pypylon-3.0.1-cp311-cp311-macosx_11_0_arm64.whl (27.6 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

pypylon-3.0.1-cp310-cp310-win_amd64.whl (145.7 MB view details)

Uploaded CPython 3.10Windows x86-64

pypylon-3.0.1-cp310-cp310-manylinux_2_31_x86_64.whl (43.9 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.31+ x86-64

pypylon-3.0.1-cp310-cp310-manylinux_2_31_aarch64.whl (40.9 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.31+ ARM64

pypylon-3.0.1-cp310-cp310-manylinux_2_24_armv7l.manylinux_2_28_armv7l.whl (6.8 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.24+ ARMv7lmanylinux: glibc 2.28+ ARMv7l

pypylon-3.0.1-cp310-cp310-macosx_11_0_x86_64.whl (27.6 MB view details)

Uploaded CPython 3.10macOS 11.0+ x86-64

pypylon-3.0.1-cp310-cp310-macosx_11_0_arm64.whl (27.6 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

pypylon-3.0.1-cp39-cp39-win_amd64.whl (145.7 MB view details)

Uploaded CPython 3.9Windows x86-64

pypylon-3.0.1-cp39-cp39-manylinux_2_31_x86_64.whl (43.9 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.31+ x86-64

pypylon-3.0.1-cp39-cp39-manylinux_2_31_aarch64.whl (40.9 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.31+ ARM64

pypylon-3.0.1-cp39-cp39-manylinux_2_24_armv7l.manylinux_2_28_armv7l.whl (6.8 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.24+ ARMv7lmanylinux: glibc 2.28+ ARMv7l

pypylon-3.0.1-cp39-cp39-macosx_11_0_x86_64.whl (27.6 MB view details)

Uploaded CPython 3.9macOS 11.0+ x86-64

pypylon-3.0.1-cp39-cp39-macosx_11_0_arm64.whl (27.6 MB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

pypylon-3.0.1-cp38-cp38-win_amd64.whl (145.7 MB view details)

Uploaded CPython 3.8Windows x86-64

pypylon-3.0.1-cp38-cp38-manylinux_2_31_x86_64.whl (43.9 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.31+ x86-64

pypylon-3.0.1-cp38-cp38-manylinux_2_31_aarch64.whl (40.9 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.31+ ARM64

pypylon-3.0.1-cp38-cp38-manylinux_2_24_armv7l.manylinux_2_28_armv7l.whl (6.8 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.24+ ARMv7lmanylinux: glibc 2.28+ ARMv7l

pypylon-3.0.1-cp38-cp38-macosx_11_0_x86_64.whl (27.6 MB view details)

Uploaded CPython 3.8macOS 11.0+ x86-64

pypylon-3.0.1-cp38-cp38-macosx_11_0_arm64.whl (27.6 MB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

pypylon-3.0.1-cp37-cp37m-win_amd64.whl (145.7 MB view details)

Uploaded CPython 3.7mWindows x86-64

pypylon-3.0.1-cp37-cp37m-manylinux_2_31_x86_64.whl (43.9 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.31+ x86-64

pypylon-3.0.1-cp37-cp37m-manylinux_2_31_aarch64.whl (40.9 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.31+ ARM64

pypylon-3.0.1-cp37-cp37m-manylinux_2_24_armv7l.manylinux_2_28_armv7l.whl (6.8 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.24+ ARMv7lmanylinux: glibc 2.28+ ARMv7l

pypylon-3.0.1-cp37-cp37m-macosx_11_0_x86_64.whl (27.7 MB view details)

Uploaded CPython 3.7mmacOS 11.0+ x86-64

pypylon-3.0.1-cp36-cp36m-win_amd64.whl (145.8 MB view details)

Uploaded CPython 3.6mWindows x86-64

pypylon-3.0.1-cp36-cp36m-manylinux_2_31_x86_64.whl (43.9 MB view details)

Uploaded CPython 3.6mmanylinux: glibc 2.31+ x86-64

pypylon-3.0.1-cp36-cp36m-manylinux_2_31_aarch64.whl (40.9 MB view details)

Uploaded CPython 3.6mmanylinux: glibc 2.31+ ARM64

pypylon-3.0.1-cp36-cp36m-manylinux_2_24_armv7l.manylinux_2_28_armv7l.whl (6.8 MB view details)

Uploaded CPython 3.6mmanylinux: glibc 2.24+ ARMv7lmanylinux: glibc 2.28+ ARMv7l

pypylon-3.0.1-cp36-cp36m-macosx_11_0_x86_64.whl (27.7 MB view details)

Uploaded CPython 3.6mmacOS 11.0+ x86-64

File details

Details for the file pypylon-3.0.1-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: pypylon-3.0.1-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 145.7 MB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.11.7

File hashes

Hashes for pypylon-3.0.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 d6fa3d27cd15e605dcd8532045f4fa106dad6133d8d2a67b665ad71f18c2fb7d
MD5 6d3ca0e0b2faef38dc23a0ca619e719d
BLAKE2b-256 9b8eaa91df65337537d165a5e88ece0e524702bd61055da5d6d6153a59cb44f9

See more details on using hashes here.

File details

Details for the file pypylon-3.0.1-cp311-cp311-manylinux_2_31_x86_64.whl.

File metadata

File hashes

Hashes for pypylon-3.0.1-cp311-cp311-manylinux_2_31_x86_64.whl
Algorithm Hash digest
SHA256 a58cb7b6635df112d13ad63660f3e716d5df685c454ab1b3eb434cc3fe179c8c
MD5 758cc3336f9a5e0229662df0a8d82331
BLAKE2b-256 3b5ada593e383dbb2bd23ba65458fe9b9c18414f3b42b5cbd3675410ed2c5c58

See more details on using hashes here.

File details

Details for the file pypylon-3.0.1-cp311-cp311-manylinux_2_31_aarch64.whl.

File metadata

File hashes

Hashes for pypylon-3.0.1-cp311-cp311-manylinux_2_31_aarch64.whl
Algorithm Hash digest
SHA256 418ceb70ecbe47aa39b7426e90e7d7ed0fa5f9f3e88b09d5086e3ffc5b914dc1
MD5 0a31950c6a3e95c519719daff5103eab
BLAKE2b-256 77f0ce6bc85701a77ff5b5a66cc218032a066462323cf45038375ddf8ec19149

See more details on using hashes here.

File details

Details for the file pypylon-3.0.1-cp311-cp311-manylinux_2_24_armv7l.manylinux_2_28_armv7l.whl.

File metadata

File hashes

Hashes for pypylon-3.0.1-cp311-cp311-manylinux_2_24_armv7l.manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 c09ff9e1a3e7b56c678705ec1e82e74c25f71b127dbc5d7abba1be6dd04b0f40
MD5 6769e0855664442b04e5f2a61d0b250e
BLAKE2b-256 8aa09b3d77740a683f97bb1a4a01afe4026d611b0adb63f9e907bfdbd08ca0b5

See more details on using hashes here.

File details

Details for the file pypylon-3.0.1-cp311-cp311-macosx_11_0_x86_64.whl.

File metadata

File hashes

Hashes for pypylon-3.0.1-cp311-cp311-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 c1b35b20acc9750bb26935931e23e8406e53d9e173306529cf774d9e1be81d1e
MD5 c7aa820571c31bfff11941d63daab93e
BLAKE2b-256 a5d7d50176718276ff8ed8c92476c62e67faa445859fa1f5bb016f40cd4789d0

See more details on using hashes here.

File details

Details for the file pypylon-3.0.1-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pypylon-3.0.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 dfee1c944f3aaed9fc11a53d58b0d95e6a595f654fc305b4e140ba9383b4f720
MD5 5920b60f3246817a6c1fe2aa05084dfa
BLAKE2b-256 1088825b2fec759efd8779328ecfd6cbb2d82e153ed8fb0f9e6dcc4adeb385d0

See more details on using hashes here.

File details

Details for the file pypylon-3.0.1-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: pypylon-3.0.1-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 145.7 MB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.11.7

File hashes

Hashes for pypylon-3.0.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 0586be1a32b6023c5c330d2c39979d5afb4affd47ce8a3111d48400b5ab8883e
MD5 5a4b4a0f8797077b581667738caad5d3
BLAKE2b-256 e2fd43ef90d16cfded821a757dcd976f629ce8dc846a46fd7c64596717804f10

See more details on using hashes here.

File details

Details for the file pypylon-3.0.1-cp310-cp310-manylinux_2_31_x86_64.whl.

File metadata

File hashes

Hashes for pypylon-3.0.1-cp310-cp310-manylinux_2_31_x86_64.whl
Algorithm Hash digest
SHA256 d763be300ceb2311ef56fc18b6ecf1ea131cd698d75f0c4da429396433146b34
MD5 0fb5d9845a02de30c401b4bf39bac9d9
BLAKE2b-256 9dba1775c0cb88b00691f538303cd4c72f05acca0baa2820831eb0c5824de06e

See more details on using hashes here.

File details

Details for the file pypylon-3.0.1-cp310-cp310-manylinux_2_31_aarch64.whl.

File metadata

File hashes

Hashes for pypylon-3.0.1-cp310-cp310-manylinux_2_31_aarch64.whl
Algorithm Hash digest
SHA256 5de5a14c18efd3619d4294a10a0e881466a2b67a9f5a37f4d91f68cc14a059c9
MD5 03bd458bc49c2ca305aa6c804219b35d
BLAKE2b-256 285c4551cf5656ebf5604bc2857e4cc4848e7d9138d1fd615450bfcaa1c310e1

See more details on using hashes here.

File details

Details for the file pypylon-3.0.1-cp310-cp310-manylinux_2_24_armv7l.manylinux_2_28_armv7l.whl.

File metadata

File hashes

Hashes for pypylon-3.0.1-cp310-cp310-manylinux_2_24_armv7l.manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 aa397c8077f61634d1c45df15763d4dfe7c86488dd9e3b58bb024205f8f20e32
MD5 72f8f6890efe634b149e756b52430c19
BLAKE2b-256 d350a4e7f14b66feb29d9ef11ccbbf4da8513b5fdac3c39f59f40d99c800ad47

See more details on using hashes here.

File details

Details for the file pypylon-3.0.1-cp310-cp310-macosx_11_0_x86_64.whl.

File metadata

File hashes

Hashes for pypylon-3.0.1-cp310-cp310-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 e4fcca0b574322de70975ae55a8a380f81f158497f5b98b036df31e3423ceda8
MD5 da61dab027f4b9bd3ab4331111b38dfa
BLAKE2b-256 76354763a4241ed60c3dec12223b4a8748897fec277cd90ee8b748affa3dae26

See more details on using hashes here.

File details

Details for the file pypylon-3.0.1-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pypylon-3.0.1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 002f0434b9e14b8c07f239f1d9e75d502a8e8f48cbcda9f61791693cc3e378f2
MD5 8b899e70fd419535bdb333c6dccffe14
BLAKE2b-256 429b92b21e7c2ee59202bbffb793458dc68a4fa8c5ca39072c9d77a2abe46d6a

See more details on using hashes here.

File details

Details for the file pypylon-3.0.1-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: pypylon-3.0.1-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 145.7 MB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.11.7

File hashes

Hashes for pypylon-3.0.1-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 5150159276c82f98fea040c86670c98511aea9ce1ffa99a91b77ffb6f403a378
MD5 ccd1e3e5aa9f160be25b4e89b7ae899b
BLAKE2b-256 4e4f3a84fded2a4fb3f879e0f2c1c12dc08578d42f4250783fc9642051a760d7

See more details on using hashes here.

File details

Details for the file pypylon-3.0.1-cp39-cp39-manylinux_2_31_x86_64.whl.

File metadata

File hashes

Hashes for pypylon-3.0.1-cp39-cp39-manylinux_2_31_x86_64.whl
Algorithm Hash digest
SHA256 c47f723f71f107acc2481e7795d16c4006b50520788aa0310eb20717c103eb1b
MD5 0d3ef732c0a8252700f8e5327c119477
BLAKE2b-256 4b549affd7082d9b775985aa97a41b738a98a140943b1e0684e5bebdb37c0cf9

See more details on using hashes here.

File details

Details for the file pypylon-3.0.1-cp39-cp39-manylinux_2_31_aarch64.whl.

File metadata

File hashes

Hashes for pypylon-3.0.1-cp39-cp39-manylinux_2_31_aarch64.whl
Algorithm Hash digest
SHA256 08fb4cdf985c1b9300183f08e2fc6786befbd5bd3b95c15f94cf12e3c6396789
MD5 466f126d30eb3a4eb43c56ec368506d8
BLAKE2b-256 2bf5e848c8df15c4f10ea1707c8dfeb378876197ef9d8e530a2864329354c6f1

See more details on using hashes here.

File details

Details for the file pypylon-3.0.1-cp39-cp39-manylinux_2_24_armv7l.manylinux_2_28_armv7l.whl.

File metadata

File hashes

Hashes for pypylon-3.0.1-cp39-cp39-manylinux_2_24_armv7l.manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 2b6e9cec28d5fba8ff46e1079f0a381c7e658f1492e7d4d1b378e2ff9cad09e4
MD5 c5373deb0e49e2918bcccd8742f5fc4f
BLAKE2b-256 c092c5b66a10502a922260b24d10cbb7fa0315f69e16a5c6c276e1b4c8ff7d09

See more details on using hashes here.

File details

Details for the file pypylon-3.0.1-cp39-cp39-macosx_11_0_x86_64.whl.

File metadata

File hashes

Hashes for pypylon-3.0.1-cp39-cp39-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 d3189679ce25a06c4b6a85735a45a1fa92af1f57008b05992ef499cd994eb042
MD5 076af5b6ee1a5f79f3ebb04a837af223
BLAKE2b-256 dd22d818b8c3e68b17d524b92b4a368bc4a4f1b43630e39edea5f4e96df677c8

See more details on using hashes here.

File details

Details for the file pypylon-3.0.1-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pypylon-3.0.1-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 dcba81abaca5116171b4e3fb42fc6a1d39d98e5c5b4c2bb3354175832f85bbac
MD5 9be49473a3bfbdc3cac7aaaff62c2414
BLAKE2b-256 ef2da448b53a91a6472b22b03f79da131c3d6a976ca92f2cb724b72643f48852

See more details on using hashes here.

File details

Details for the file pypylon-3.0.1-cp38-cp38-win_amd64.whl.

File metadata

  • Download URL: pypylon-3.0.1-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 145.7 MB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.11.7

File hashes

Hashes for pypylon-3.0.1-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 397b3857d641f380d734e6d5f3e4dcd45c32ae18e155bde054aab6e01c1385bf
MD5 a332ebd32104ec693070a23cd0780b76
BLAKE2b-256 78f58f747cc6a89002dd978c0e963aedcd8644f92449a8a60d7898bd77aa5258

See more details on using hashes here.

File details

Details for the file pypylon-3.0.1-cp38-cp38-manylinux_2_31_x86_64.whl.

File metadata

File hashes

Hashes for pypylon-3.0.1-cp38-cp38-manylinux_2_31_x86_64.whl
Algorithm Hash digest
SHA256 b1b3b6021ff35dc3fa1c8d8c9b31da4a26063b4a4efea2d25bd422562420bcc9
MD5 4622577739889667c1979d32a156202b
BLAKE2b-256 433eff1845b4849f516f7a8d90075bbcecffc4e0581d36e1bca6d352826995a1

See more details on using hashes here.

File details

Details for the file pypylon-3.0.1-cp38-cp38-manylinux_2_31_aarch64.whl.

File metadata

File hashes

Hashes for pypylon-3.0.1-cp38-cp38-manylinux_2_31_aarch64.whl
Algorithm Hash digest
SHA256 3f5d9d637f9bc4fdb3052308549b0314b7cd290c28868bdef5d52f629d12d719
MD5 ee0847ee1dd68706d728003d00756e9d
BLAKE2b-256 6124ab1d20369df07bb210d0e8dd7887d04655f9992b12ae96b59589baf7b173

See more details on using hashes here.

File details

Details for the file pypylon-3.0.1-cp38-cp38-manylinux_2_24_armv7l.manylinux_2_28_armv7l.whl.

File metadata

File hashes

Hashes for pypylon-3.0.1-cp38-cp38-manylinux_2_24_armv7l.manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 537e5046f027283f9e090d2769b5e591c5bc88f00356cc729ea1db26ba67f5c6
MD5 b720e712222da7d5f13c5f59e8bff195
BLAKE2b-256 25fef931d9e9ac6bba3d53d3d102deaa0b9e4abbe2b974e467affe5c7a0e18ab

See more details on using hashes here.

File details

Details for the file pypylon-3.0.1-cp38-cp38-macosx_11_0_x86_64.whl.

File metadata

File hashes

Hashes for pypylon-3.0.1-cp38-cp38-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 a4f1ed4288d38ce5d4cac2d4a380f2bbc5200e2fa186c05ccd21f6581dabc5bb
MD5 af9a301f4639ff0771b462e153fb3e4b
BLAKE2b-256 d77b6146536ec08e5eb8f54090ca650700cd97bffc93af3cd2bd5c4394e41181

See more details on using hashes here.

File details

Details for the file pypylon-3.0.1-cp38-cp38-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pypylon-3.0.1-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6d45f1aeea2d31b7770fbb139042bab94e6a626bba340044894b51408c1d117f
MD5 8749989d218d82049778e8473af689fa
BLAKE2b-256 c4acef1b2b1ff5cc3ec06bef0cf962ad84f648443ac7bdb4fd1560a467949640

See more details on using hashes here.

File details

Details for the file pypylon-3.0.1-cp37-cp37m-win_amd64.whl.

File metadata

  • Download URL: pypylon-3.0.1-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 145.7 MB
  • Tags: CPython 3.7m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.11.7

File hashes

Hashes for pypylon-3.0.1-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 467f5f87fdf5a5b8c9f5fa0223f074ae87a17d1c27304cac2b5f2524c1ff0960
MD5 251ba6b32f0df21760df91d2b8bf40d2
BLAKE2b-256 908aef07997dda0baa668b9f557b14c0ad56590d949336e7319b32106378858d

See more details on using hashes here.

File details

Details for the file pypylon-3.0.1-cp37-cp37m-manylinux_2_31_x86_64.whl.

File metadata

File hashes

Hashes for pypylon-3.0.1-cp37-cp37m-manylinux_2_31_x86_64.whl
Algorithm Hash digest
SHA256 60b0394e62ab937bb68787ae8f632adf6ffb9c40768ca8b56e67198ff31d205c
MD5 075e5f07aba02dc65a00715c94ae36cb
BLAKE2b-256 df1b0ed9e98124e1ad2a0c1cccf5f029a76b756b027371495d26817f6ea785d4

See more details on using hashes here.

File details

Details for the file pypylon-3.0.1-cp37-cp37m-manylinux_2_31_aarch64.whl.

File metadata

File hashes

Hashes for pypylon-3.0.1-cp37-cp37m-manylinux_2_31_aarch64.whl
Algorithm Hash digest
SHA256 09d72fd8d305ce02d3ac3e6072a627e1cae4f11f1dc619caed4c86bf0bf140b7
MD5 4f8c20326590170808c3fb101965ee75
BLAKE2b-256 e3156fa265228322e2d66279969e0511922ad14712a96f0a81fb3e350a9c9653

See more details on using hashes here.

File details

Details for the file pypylon-3.0.1-cp37-cp37m-manylinux_2_24_armv7l.manylinux_2_28_armv7l.whl.

File metadata

File hashes

Hashes for pypylon-3.0.1-cp37-cp37m-manylinux_2_24_armv7l.manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 f58f02b2e38df063f31d62e70c5bfbc51e7dde711d10d5818fc3591df308bff8
MD5 d2385255311bf102497fdfc5fca1a0f3
BLAKE2b-256 b236c46d7eaff29b0db4ad9edf6faf23854c614badf120d655ca5ebc33477c7c

See more details on using hashes here.

File details

Details for the file pypylon-3.0.1-cp37-cp37m-macosx_11_0_x86_64.whl.

File metadata

File hashes

Hashes for pypylon-3.0.1-cp37-cp37m-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 cb4e07f233c95380e9de30bdd88255739b8a3bb0ed1c2a3cba9c2374451c4b9d
MD5 7cb2351fbb47eb58438f89804f2d1ce5
BLAKE2b-256 fa645832942fae7be088ee4408109b1f83aac11e3af274169ee309dbbd92fa2e

See more details on using hashes here.

File details

Details for the file pypylon-3.0.1-cp36-cp36m-win_amd64.whl.

File metadata

  • Download URL: pypylon-3.0.1-cp36-cp36m-win_amd64.whl
  • Upload date:
  • Size: 145.8 MB
  • Tags: CPython 3.6m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.11.7

File hashes

Hashes for pypylon-3.0.1-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 2534e7089b724a8a1ea1618ad22405489d4cab86f1029a0fc0563ebcc8f6a90c
MD5 98e5b3137528782312fd4044ef41038e
BLAKE2b-256 81be57541f0873c4f6289dc12d72ac31504596bc3bb0020a27f9937c2bc466c2

See more details on using hashes here.

File details

Details for the file pypylon-3.0.1-cp36-cp36m-manylinux_2_31_x86_64.whl.

File metadata

File hashes

Hashes for pypylon-3.0.1-cp36-cp36m-manylinux_2_31_x86_64.whl
Algorithm Hash digest
SHA256 94cf38fd69962e41d621cb0b222975a4f7c69d9dbfd2de67e2ae68374123187a
MD5 c22a5ae688fea43f2accd876a8614e6c
BLAKE2b-256 aad9c3f52e1910b420324a028c413e72d17f46e437c622a4873b6c87a9f6b1bb

See more details on using hashes here.

File details

Details for the file pypylon-3.0.1-cp36-cp36m-manylinux_2_31_aarch64.whl.

File metadata

File hashes

Hashes for pypylon-3.0.1-cp36-cp36m-manylinux_2_31_aarch64.whl
Algorithm Hash digest
SHA256 feed73dca793af8c096ac3d2b3a91441c2f1902d243b321449ccba387cc3bf2e
MD5 bc205c2d8dccba141d1b7d824b2b6d58
BLAKE2b-256 18d94a03d4006549d80b383c432afa63d96015ae476058c12920dce9b6b8d60a

See more details on using hashes here.

File details

Details for the file pypylon-3.0.1-cp36-cp36m-manylinux_2_24_armv7l.manylinux_2_28_armv7l.whl.

File metadata

File hashes

Hashes for pypylon-3.0.1-cp36-cp36m-manylinux_2_24_armv7l.manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 ea679a81e2d5f838c64a212f1d4f82f6b1de56e0835d132e8944d37c02e861f2
MD5 1715ffc0f899fef78aa4b46b63cead8f
BLAKE2b-256 0ea05c0b195a2710eb7198c31b859009c28614898e97e3956a8494159b312a5b

See more details on using hashes here.

File details

Details for the file pypylon-3.0.1-cp36-cp36m-macosx_11_0_x86_64.whl.

File metadata

File hashes

Hashes for pypylon-3.0.1-cp36-cp36m-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 aa35b4a62b3b4c7e9d0ea76fa72efad40063d3e965cbfbc42f4bc3af5d29ace9
MD5 bb83feeb0787a0f5b5b5626fc4ecc08f
BLAKE2b-256 55ada24ad670a70d71f58a5f7cbd7cf1a7c4c8c803d98ad2bf5eed12165230d1

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page