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 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.GetValue() - camera.Width.GetInc()
if new_width >= camera.Width.GetMin():
    camera.Width.SetValue(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()

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

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 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.
  • (**) 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-2.3.0-cp311-cp311-win_amd64.whl (105.2 MB view details)

Uploaded CPython 3.11Windows x86-64

pypylon-2.3.0-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (9.1 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.27+ x86-64manylinux: glibc 2.28+ x86-64

pypylon-2.3.0-cp311-cp311-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl (9.0 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.27+ ARM64manylinux: glibc 2.28+ ARM64

pypylon-2.3.0-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-2.3.0-cp311-cp311-macosx_11_0_x86_64.whl (11.9 MB view details)

Uploaded CPython 3.11macOS 11.0+ x86-64

pypylon-2.3.0-cp311-cp311-macosx_11_0_arm64.whl (42.8 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

pypylon-2.3.0-cp310-cp310-win_amd64.whl (105.2 MB view details)

Uploaded CPython 3.10Windows x86-64

pypylon-2.3.0-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (9.1 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.27+ x86-64manylinux: glibc 2.28+ x86-64

pypylon-2.3.0-cp310-cp310-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl (9.0 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.27+ ARM64manylinux: glibc 2.28+ ARM64

pypylon-2.3.0-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-2.3.0-cp310-cp310-macosx_11_0_x86_64.whl (11.9 MB view details)

Uploaded CPython 3.10macOS 11.0+ x86-64

pypylon-2.3.0-cp310-cp310-macosx_11_0_arm64.whl (42.8 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

pypylon-2.3.0-cp39-cp39-win_amd64.whl (105.3 MB view details)

Uploaded CPython 3.9Windows x86-64

pypylon-2.3.0-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (9.1 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.27+ x86-64manylinux: glibc 2.28+ x86-64

pypylon-2.3.0-cp39-cp39-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl (9.0 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.27+ ARM64manylinux: glibc 2.28+ ARM64

pypylon-2.3.0-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-2.3.0-cp39-cp39-macosx_11_0_x86_64.whl (11.9 MB view details)

Uploaded CPython 3.9macOS 11.0+ x86-64

pypylon-2.3.0-cp39-cp39-macosx_11_0_arm64.whl (42.8 MB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

pypylon-2.3.0-cp38-cp38-win_amd64.whl (105.3 MB view details)

Uploaded CPython 3.8Windows x86-64

pypylon-2.3.0-cp38-cp38-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (9.1 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.27+ x86-64manylinux: glibc 2.28+ x86-64

pypylon-2.3.0-cp38-cp38-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl (9.0 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.27+ ARM64manylinux: glibc 2.28+ ARM64

pypylon-2.3.0-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-2.3.0-cp38-cp38-macosx_11_0_x86_64.whl (11.9 MB view details)

Uploaded CPython 3.8macOS 11.0+ x86-64

pypylon-2.3.0-cp38-cp38-macosx_11_0_arm64.whl (42.8 MB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

pypylon-2.3.0-cp37-cp37m-win_amd64.whl (105.3 MB view details)

Uploaded CPython 3.7mWindows x86-64

pypylon-2.3.0-cp37-cp37m-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (9.1 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.27+ x86-64manylinux: glibc 2.28+ x86-64

pypylon-2.3.0-cp37-cp37m-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl (9.0 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.27+ ARM64manylinux: glibc 2.28+ ARM64

pypylon-2.3.0-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-2.3.0-cp37-cp37m-macosx_11_0_x86_64.whl (11.9 MB view details)

Uploaded CPython 3.7mmacOS 11.0+ x86-64

pypylon-2.3.0-cp36-cp36m-win_amd64.whl (105.3 MB view details)

Uploaded CPython 3.6mWindows x86-64

pypylon-2.3.0-cp36-cp36m-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (9.1 MB view details)

Uploaded CPython 3.6mmanylinux: glibc 2.27+ x86-64manylinux: glibc 2.28+ x86-64

pypylon-2.3.0-cp36-cp36m-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl (9.0 MB view details)

Uploaded CPython 3.6mmanylinux: glibc 2.27+ ARM64manylinux: glibc 2.28+ ARM64

pypylon-2.3.0-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-2.3.0-cp36-cp36m-macosx_11_0_x86_64.whl (11.9 MB view details)

Uploaded CPython 3.6mmacOS 11.0+ x86-64

File details

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

File metadata

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

File hashes

Hashes for pypylon-2.3.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 78156a11793325ad363c0b6308a64eaacfa9badb3d911e82b079fe2c31722243
MD5 c14f80521188b86800a9150a0d8b9b94
BLAKE2b-256 140d788ad1b95403f9ac5a4520c41e95997617b6b57149be3e444e5c847ed79e

See more details on using hashes here.

File details

Details for the file pypylon-2.3.0-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pypylon-2.3.0-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 8eb87a2361d28b567c3091439d6046419abb264d03007f9edca339a2688d7db6
MD5 5311607bb448b01b2543465dce43b100
BLAKE2b-256 2f23beb8ae9fcb7f45ab620447fb10a94d312b5508962a0f952854622d893e9f

See more details on using hashes here.

File details

Details for the file pypylon-2.3.0-cp311-cp311-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pypylon-2.3.0-cp311-cp311-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 fdc2f4a7e0f2feb9f5a6dfb70d96f80003a2413dd0f07c1d68d347dd083b5c8b
MD5 982e07c80e516310acbd4262a68783f1
BLAKE2b-256 7fa8cd14af27697a3666741ae282142aa65ef2a5ba81a7d1b85fc94f13c22ac7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pypylon-2.3.0-cp311-cp311-manylinux_2_24_armv7l.manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 70c0948998cfbd352746bdf52cf4790e739dc6bd147e263e5af437f940c7ea6b
MD5 799b50de35c35bd6714d090b3166758d
BLAKE2b-256 72512dd9612c078c87f68b61804dc6470c15b50ae0074f15c3faef35aa134372

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pypylon-2.3.0-cp311-cp311-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 849ac4615e4a10bf717610e6ae2b46798d0cd7a85002b7605b43a9dbcdc5521b
MD5 2034f0253c8f21ba2126d60303cc6c41
BLAKE2b-256 613289f5ab484917da63a17f73af19d576247dafbfc2aea3e674327c09a74c73

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pypylon-2.3.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 eda23136a85b6e73d35a066e3d6d7772dde03f22862c3d57c2a4e012d11ef94d
MD5 e966c137a5611bd1ab723a8626d8567b
BLAKE2b-256 d379153b00484b019010148f7782569a2848d0d822833404655ae6c3837e97bc

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pypylon-2.3.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 0083b260c98089026ba24e50487fcc40aa908c0cdfff6d912091112906924081
MD5 4ba8028d59d782d8c6cad6209ff02eaf
BLAKE2b-256 ac97b01144b6ee20cdc4461d29d97742eb20b0c65fbf86dc4873b050d59770a0

See more details on using hashes here.

File details

Details for the file pypylon-2.3.0-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pypylon-2.3.0-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 0a0e6aa1eaffd89787503c944ad46183992683eb74d9c64e8e26b97e9d9b2560
MD5 64b27aea4783f1fc183bc974eaa873a9
BLAKE2b-256 af98c107b777c9ad9fe88627ac0cdb41032057ccdbba55667c413a7070c7c48a

See more details on using hashes here.

File details

Details for the file pypylon-2.3.0-cp310-cp310-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pypylon-2.3.0-cp310-cp310-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 c690f761e2eac021b9c934115e3094dd0bf5d2b9c03868ba970311e8843d0bf5
MD5 e77c13c7bba8356fe27b8c96859db9a1
BLAKE2b-256 853576b8f6125fe14b61e8875471f784ca2520e63c38a3fee747d3dbbb6f0571

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pypylon-2.3.0-cp310-cp310-manylinux_2_24_armv7l.manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 6ae71ee8588bcfe9637634327dfd51787c08ed1ea626e3caffca9405dede3a0f
MD5 3c754bfe0013f852afd8d44001a52e1a
BLAKE2b-256 fa091bec39c0982a52562e73e275a340438dbbe7864c82cd14fd306a94b801cd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pypylon-2.3.0-cp310-cp310-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 ab41b8294faf358349a7cde570aea81f111ff040e0ec185f7d55ef6c6a769ae7
MD5 aad588e3dd059ef66533437bd3162973
BLAKE2b-256 c5983deff1715164706fa0e07a9e70ad4f1b60dd44fcfb9a550b825803837491

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pypylon-2.3.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0bbd92e78e42ae5f3bbcd20c0fc686009dae8f85538c823f022b9c5c59240d2d
MD5 25d3b05da6c240effbb70c576cbc0744
BLAKE2b-256 70b68105a1d310892bbd955fb8798b4a513826fd93b67102b8e21117ad9a09bb

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pypylon-2.3.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 dbf4d43ffa13ef87fdfb2ca500b4c2735de14bf4061e5d37faa5c30a18d47e42
MD5 8aaf51a843185c323b52ea3a4dd8eb66
BLAKE2b-256 57d22ebf41f2f631c02fe927708505b1110fbb2cf964666fab28dd1d3b7c81a9

See more details on using hashes here.

File details

Details for the file pypylon-2.3.0-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pypylon-2.3.0-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 cc7a5dc98fcc422bc96901f41ce9a2d7b7494d5145c097c1cdbd475616c1b85a
MD5 a5289004082e3eb120e2ac7b4ef945ce
BLAKE2b-256 6add34e623dfcec3f607a5197013fda2e118ac2b2de12ee36e6171709015b0ec

See more details on using hashes here.

File details

Details for the file pypylon-2.3.0-cp39-cp39-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pypylon-2.3.0-cp39-cp39-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 7c0ceca38a23191e5fda42b1f6211f00438983b97df162df6732ec8b0357f0a9
MD5 a08f7f5dc319d0d734cd581eced5c333
BLAKE2b-256 38769780b3c64a7ad3b1ef82c00920f2fef4bbf3e219e291c4ae921f8893b171

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pypylon-2.3.0-cp39-cp39-manylinux_2_24_armv7l.manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 298f9dcc283ad7ef9e614d00ccdf1a14379d681edb64b9e68b1597ac331adc33
MD5 1837c76d4c36d35601a9b150f469e299
BLAKE2b-256 35c6b3d0377c21f6f7bf72eb962df44a29f1637a92c6e88db73bd8da9779a844

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pypylon-2.3.0-cp39-cp39-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 568a0fe249e73d93741cad10584d354e728d9e107041b0e9188b6fd0b94a023d
MD5 63e0ee627fc674d3c41fc4d2b2527ea8
BLAKE2b-256 33e0b5436cff196f73664916659513b0f10dbe2315a99235ca845b728e14fffb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pypylon-2.3.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 45be38ca9ecc05bf2c03c42fd583b003d2edca6bf793ddcb214d4b429d190066
MD5 94890e85b8f65faf8b8eb03e8b7be5d0
BLAKE2b-256 6c3ddd3c36787ac9aff748c6779593ac8fa6670392955c26e901060cf844162b

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pypylon-2.3.0-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 953f6d9a5c9e19c88ab010b803ca07fd33f7db48b408f5f95ac174aac4c41815
MD5 49272471c6d6c11912eca9d707b99536
BLAKE2b-256 ea662b39ace836fd06d89ddb681fe41edcf0dcab36cadb602c00c2ee3f0cc13a

See more details on using hashes here.

File details

Details for the file pypylon-2.3.0-cp38-cp38-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pypylon-2.3.0-cp38-cp38-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 de11c13facefc8384433232ed4dace2d68ab850ff7d7ecec38cd947bf16e633a
MD5 616ebb55bcbf7f1a416025b2c7c41679
BLAKE2b-256 9752dadf1ef59ded9a5aea6972bb5b9065f99866c84ef8429eac728d3970ece0

See more details on using hashes here.

File details

Details for the file pypylon-2.3.0-cp38-cp38-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pypylon-2.3.0-cp38-cp38-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 91335e24f2801550795aca98ff4cced7fcc810077621705af11de2359968cc1e
MD5 c562800b9741b9359215569b84c064f1
BLAKE2b-256 e0863b2c9c6a4216ab458956a9ce96faf17e1e3aed409c5f10277b132fb80f67

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pypylon-2.3.0-cp38-cp38-manylinux_2_24_armv7l.manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 d75da6554c94c42ff7db005060083c65e83c6668e5808da536eb62db87c72070
MD5 e721107d269c163c7af7e290c1e5ab1e
BLAKE2b-256 4947ffc0407bf81c53c21296c9a19036db279f8bd1b77dcef570629f2cfb2769

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pypylon-2.3.0-cp38-cp38-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 f782269f56c99302e347a84d6f20d39b846286e0b1b423a0a72f5dccfae21c30
MD5 26393c3e332f4b79c6d7f16bbf012640
BLAKE2b-256 24c223e44c13da2ec4df0bc475b365c881b47a02d10aa4aa319f0167ab7130f2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pypylon-2.3.0-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8eec8afdf121fa1897bc998d0c3a0de7a5cb23b48fc3271c1d11dbc732887a1c
MD5 fcb8237cb595f89a8926aca5f37d3ad6
BLAKE2b-256 7f08e5c86ea608fd642fdd0028026d7b5f621ed9ce319b1cc8b78f07fd442f45

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pypylon-2.3.0-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 91065c2c586591c12b0adb197213611d9d54030c6fa98e6f6699d684d70ab634
MD5 51c4ac349b0effb53058d4acea29a799
BLAKE2b-256 adf60565aa1f5ab37e70fa6dcded0b6610b22ad25508a020d8d378a232303145

See more details on using hashes here.

File details

Details for the file pypylon-2.3.0-cp37-cp37m-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pypylon-2.3.0-cp37-cp37m-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 8d384acb182551e809ea11f6c456259a208d3261e1f79e6d0f11fef77d2ccb22
MD5 9348667d8fd72f7e461fe60ec9fe2a5b
BLAKE2b-256 d26b1fe587369fd3fe8a2248800097f52381a445176f3f8f6c06b27cebf58ff2

See more details on using hashes here.

File details

Details for the file pypylon-2.3.0-cp37-cp37m-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pypylon-2.3.0-cp37-cp37m-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 78da948efdd1a14f8e79c85b23d8be8077ec093126322a8bb723247380a7856b
MD5 38116a44397939e6678e923d8f92c281
BLAKE2b-256 56d94c6656b23adfa9ff521e0c42ec2a6b88f5610ca06cc93e16d995dc491513

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pypylon-2.3.0-cp37-cp37m-manylinux_2_24_armv7l.manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 2f94509cfcf11afa20fad80cd940fa1aab2610c19f90491ef2c18ab0bb0c954b
MD5 4fc07e714c8be915fd39b34a3a593c6e
BLAKE2b-256 589e024393fe96891c1ab9729395bfefe5cccc843954dfb0bb53b06da05ff9fb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pypylon-2.3.0-cp37-cp37m-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 cbb46b74c31fdf0f1179a313c520d1870113d712ea5ddc190abeb54043eb5d6c
MD5 71a3f8c53ccf45e9f13a31d5242c595d
BLAKE2b-256 48aa5136cd32151337fe7509635f4455037ba57d259c9f27e60672792da6f2e0

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pypylon-2.3.0-cp36-cp36m-win_amd64.whl
  • Upload date:
  • Size: 105.3 MB
  • Tags: CPython 3.6m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.9.6 readme-renderer/24.0 requests/2.27.1 requests-toolbelt/1.0.0 urllib3/1.26.16 tqdm/4.64.1 importlib-metadata/4.8.3 keyring/23.4.1 rfc3986/1.5.0 colorama/0.4.5 CPython/3.6.8

File hashes

Hashes for pypylon-2.3.0-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 3c463f106b0b0f7c9905f9698d4a2f11f4355621916b7017af6ca79d11ad8890
MD5 6947e7c2d0c3912f7696b00f7f49787a
BLAKE2b-256 af91a152e05b2020deab4a214c9d5356ddc2c1d9df179221b95435c7cefd6f22

See more details on using hashes here.

File details

Details for the file pypylon-2.3.0-cp36-cp36m-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pypylon-2.3.0-cp36-cp36m-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 5975e388b808702d923ba56fd7104b4e1da77800d969b634dd3676050296abf8
MD5 d88f7cf3ce967da6ab00fcdb6d016a42
BLAKE2b-256 6f2bfa708c37aab24f747f3de22c9eee0a0d3d2c06790689da024c8e7bacbb50

See more details on using hashes here.

File details

Details for the file pypylon-2.3.0-cp36-cp36m-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pypylon-2.3.0-cp36-cp36m-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 1d987c7ccccc9c1aa6e24fe16c85e7e7d592f688e07c8464876442bf269e4815
MD5 9f55060f20e307919f44695e506f669e
BLAKE2b-256 f2b788a0d5596eee931da7d7006566fdf13eaa928edf729ad1de6ca0a0d45561

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pypylon-2.3.0-cp36-cp36m-manylinux_2_24_armv7l.manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 2dca4c3f25d95f4f8c925afb76e540be5b1f3dd4cd07cf3b7ee9bc14f969b171
MD5 d001c13e24f8a2109382d0dc254bc5aa
BLAKE2b-256 9c49c3b1bf6873d9065d34da1e322c2a58f771c84ac3f82225954d02db33c05d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pypylon-2.3.0-cp36-cp36m-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 db1be50ace35d168354fbd6ed01a89fbe2257dd5ccc14aceea245eca279c72a4
MD5 be536a4ed5443949e6f2b6542326b1f9
BLAKE2b-256 dc4e999b4fc4da1091d4b3225442efb4986abf66e4860442892704f0df850003

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