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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11macOS 11.0+ x86-64

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

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10macOS 11.0+ x86-64

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

Uploaded CPython 3.10macOS 11.0+ ARM64

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

Uploaded CPython 3.9Windows x86-64

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

Uploaded CPython 3.9macOS 11.0+ x86-64

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

Uploaded CPython 3.9macOS 11.0+ ARM64

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

Uploaded CPython 3.8Windows x86-64

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

Uploaded CPython 3.8macOS 11.0+ x86-64

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

Uploaded CPython 3.8macOS 11.0+ ARM64

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

Uploaded CPython 3.7mWindows x86-64

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

Uploaded CPython 3.7mmacOS 11.0+ x86-64

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

Uploaded CPython 3.6mWindows x86-64

pypylon-2.2.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.2.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.2.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.2.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.2.0-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: pypylon-2.2.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.3

File hashes

Hashes for pypylon-2.2.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 05ccb4854c486a17c66429412e7ca3974970b486cefd13be466b8aa5438fc5c4
MD5 02b57547f2e9ad5a782ec1ca1aa33c6c
BLAKE2b-256 76380ffbdc80a80e454c0bc107933293a1e709406d0ae9b8737ca6d08f928c22

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pypylon-2.2.0-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 de5fb6bf9f34bf9cd91ed913b38e5790ee98d66f86dba10192e2e364368a4675
MD5 992e8f911a36bac9d048c448113116cd
BLAKE2b-256 45a3160da68cbbe8235774dbfde00141e705e44d6c8142d1761b04f842523da3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pypylon-2.2.0-cp311-cp311-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 deb8d226e890cbbd5e4a61767dc23664ee37264967b8580de964e73325e16746
MD5 e526fd79d1c81c026aa7b4944e548d90
BLAKE2b-256 c1f21b5f88078c63bb8be74607f5675f5d6fcc1614b298cb8dd4ff8a843252c0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pypylon-2.2.0-cp311-cp311-manylinux_2_24_armv7l.manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 9068e459ee3fedae054aa3e4f629ce31c4b0c9d43db2be228cdb4545a2c2c893
MD5 9c0450faa8e50b4b1aa700be4012600e
BLAKE2b-256 5908b47fa38a0f6e9d449a23f6e34b98d3c846168e0d6c4aef42c5211b6621bd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pypylon-2.2.0-cp311-cp311-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 b1bee59d6374736a04cf97375f73ac62809e602b5fdb24271d5457a196202c27
MD5 67a05ea91eed628254ac6961f10607ce
BLAKE2b-256 020ccddf7ab231f5b3c04a5be2ecf55d218983bd341b879b6711123bb1262bcc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pypylon-2.2.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2e0822e484ace5acf06e7830bcd0085a47e96fc882f7e48247b5a7924d1dd9f5
MD5 79de52205116cec991391102349041a9
BLAKE2b-256 f0f63d0e7b424132d7269d81e7d29a28901df65d5378a1cc1ba92fae1acd7eeb

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pypylon-2.2.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.2.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 95e4daa7ce2ad929889cac0ffcf65b9abd8545512780740cca54b28918ba9527
MD5 554c0ff8f2d0b951be0b07fac0e5b978
BLAKE2b-256 5011fea3f03ebf665303bb06646e406d271ba2de9fa0fcffc5120adb09c07557

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pypylon-2.2.0-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 11c1530ce64f3371397708e2257151b3bae72cbc76815e74140f3da8eb19ea18
MD5 ed15b7d90145920a3a3fb8e39def3d9c
BLAKE2b-256 9140d855dda96a1907c372ae5d692ff303793048b0466e2c50b552a7d62ca23c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pypylon-2.2.0-cp310-cp310-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 643f9d375cf13bef324ac5d14063d79767ed310b931f9875180b1c5e15bf204d
MD5 5a3d505735cd0f252d31ff7ac14a17de
BLAKE2b-256 7539ffffee88648e059ad8b75dbaf37f3a409fa752583f0b691f9bee8c54e6da

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pypylon-2.2.0-cp310-cp310-manylinux_2_24_armv7l.manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 9eb23ea5dd01d2420498473d7c4c82e733d65ed42ee3f5c87eab4756860404b9
MD5 61d0e1b7316396a649a1a80d98eab5da
BLAKE2b-256 c39b440ba1fc3f3a2e6f1b70631094133ec0c20d7d80e27585608ad5bdbdbc11

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pypylon-2.2.0-cp310-cp310-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 ff0de5bfafe7f785af1782f7ddd99de111c45edcb69fe08add981f867b16d87b
MD5 dc7e0e9b26f47757a408c849b86522f6
BLAKE2b-256 23d71f722e9561a45709deabee98dc4a2052004a61b045acd3f101af0f4ea446

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pypylon-2.2.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 596582b6cf45f0ee68a56631bb3131e9e66975515e1870cdcfb5ddf726a37803
MD5 36bf8c04429367f926d0cbec3d89016c
BLAKE2b-256 3a0dc788e39dfa26563bf1e1972d61dcae50ade9279535c7184b985ccb5f0630

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pypylon-2.2.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.2.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 7c2eddc27ee2ada196823e31308f3886b390ef07ead6631327858b3cf81ea1f2
MD5 bae2e12ca42e3f9e137303cf7125f283
BLAKE2b-256 67eefdbfd5fe87eaac8c49c80e40f0a80fb32969bb52c7da8fa01d93efdc7b40

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pypylon-2.2.0-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 7fc12574b5aa5f2cf7aa82b39859b59033656d3e7a3717a9d5d3c6598dd36487
MD5 5f603c04f3c2d4f62408d5fc6ed58ea0
BLAKE2b-256 19f91412aa140b0f0054b2df7d34f5ba721ee9185cb11d4ff8eb773e8413bd42

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pypylon-2.2.0-cp39-cp39-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 b9fcaf37b53c674599188a264b56c07c74b75fde88c48c517aafae853e2ae4af
MD5 5ba39cfc4d69ba1891f3b6badde47753
BLAKE2b-256 42037aae90eb1912bd0e0ae6a929f98f8f7a61b05b419284875b8729e05a8bf5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pypylon-2.2.0-cp39-cp39-manylinux_2_24_armv7l.manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 4ab32d9455ec0f83e6df235386b1863853816a427e7849e9aaabd3e2ecf3f97c
MD5 d1118f6e67651b58e8e305779c559dda
BLAKE2b-256 00321711539d6d0a4aed566b514bd4a31709105f46ac8a2a05cec6d822daf052

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pypylon-2.2.0-cp39-cp39-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 fe92d228d5cd2976ea966931660c24c7d389f00d9f3eb507cca3fbdb1ed488a9
MD5 eaffa38e9408664d8286b70dfab7a642
BLAKE2b-256 35977a8d3706b94255acf6c6c38d228f63944e7882d2739b5c84077a8cad137d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pypylon-2.2.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 375a5b1f0d786231cc18e181fc368176d0cb7b8ef38dfdb9114cf75d8b617ab9
MD5 89d13a187c8546938e31f3e3842cebbf
BLAKE2b-256 bf90af5321bb40668ce4005d0d9a8ec3f8962f76b873baf715f0ee45fac4fffc

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pypylon-2.2.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.2.0-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 11445da6969e588fe2c24484c5142e21576366f7fc0ac064dfc181bf327e5bac
MD5 2a761316484bfbdc6283aadb1194486f
BLAKE2b-256 5f410d34b748d1482ee2d2d5dff5f05808a52bd9924daaa9ae2baa3e3aef22c6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pypylon-2.2.0-cp38-cp38-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 7df1bbc53581749c1acd2fa97e89992f802320bd4ad9b31155a2fa52ed71d1fe
MD5 d542732dd8554be11e9b289dbc9a9157
BLAKE2b-256 e85bff289721426815c1c0f64d6ad9005fed56935b0d82bed08944b325712044

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pypylon-2.2.0-cp38-cp38-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 8e4f51574c0325b3cea26134ac44f47082dd361d52d4a13725f63ad1e1748a20
MD5 ec94151c56a8ef76c432420566861727
BLAKE2b-256 d4267591b973a0d2b1eff7d172f180fe718872dc734d982a826d2ecc50507ad8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pypylon-2.2.0-cp38-cp38-manylinux_2_24_armv7l.manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 c1d4fc2c7147a550538f598ea61475a69e4809c658a536707311b59c41c59558
MD5 c9d7976ca59bbdf4b4d1e189d74972e5
BLAKE2b-256 2fc62358c9a40dc2d8957ab1b65a50ea7c588cad75c1b9755c29dbf1f4642b2f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pypylon-2.2.0-cp38-cp38-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 12e865b86cbc4c5f32a215b480481a73b817e3651d3d6ee03594645b57b54b67
MD5 b07e4ea7b18eece3f08d3c12efbdd643
BLAKE2b-256 b2065d364fed9f9b85e3cc645414f6049d2fa3d4b71f75699355cc2d0d792230

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pypylon-2.2.0-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c538f07811911b7bb3c545545fed83bf0f3d4c256e47fdd94a6e550ef6f0d722
MD5 f51e4279dd4895250fb15ad42b651255
BLAKE2b-256 fd09295187af04535891e263b0f6a9954dd8d83d9227157acf813c437acb8d41

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pypylon-2.2.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.2.0-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 9e01c8c8a9efea64231a6cd4adf0da70801695a60079d93b6eff7d83b4566190
MD5 7bb6a4278e316e95d7e50d4a9ae12742
BLAKE2b-256 4818e1c6b3799a5acea6be36707c8c661753a9a5cbcaee5f09f8993f53728cd5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pypylon-2.2.0-cp37-cp37m-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 5ba2c3325f6ff364c131f0735bd66744facf98d2dac83b7dc532c29df480c97a
MD5 5f4df5235322caf5471e8774da1fc6f2
BLAKE2b-256 3b4e73e47060945bf5d9c0a40bda344b79f5503cd9006ee7c6a664047fbafa58

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pypylon-2.2.0-cp37-cp37m-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 25dfc369e10f714888a3d1b726d54b88fdebff50c56ec14ad61aa3023aacd04e
MD5 4473e5c83a99c38e0ff8de0fa256e38d
BLAKE2b-256 8ce93f1c37786649cbb813c22694020a29489ac128ac24f427130a745efff927

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pypylon-2.2.0-cp37-cp37m-manylinux_2_24_armv7l.manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 d46b975600b4d65642f5154bad59d1e3d6441ab2fce9e2f57b3704ffcbb5c0d1
MD5 c05256d172e5c34e93ef134b264d3d88
BLAKE2b-256 5d4c05959c5e3faa1d1359fb55e5c403a38de9f9f321958576d3bd6c851dd558

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pypylon-2.2.0-cp37-cp37m-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 bad74dba129b1042b7a994278bb474783225df764eb396652ce8bd7ac69614db
MD5 5f1a12104350181f7f56c468db9f97c5
BLAKE2b-256 c68baf31200aeaa8377974b253f67054674ac111120dd9ce283a1b7037546121

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pypylon-2.2.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.2.0-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 4e72670f00b3c1af1e09241da99efe875e2b8763bb779a0bfa807e80b50e6442
MD5 1a697f07199493376db4d65d13df3fce
BLAKE2b-256 6ed7c2eaaa400837d8bb4e93b4e6b72a1a57d832d750c812ffe5d788bbe6465a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pypylon-2.2.0-cp36-cp36m-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 8117b169da9654cec0e448bb13d8b46bf089d294524b03503c39c7c1dc2f47dc
MD5 decf34263d1226406ece074a015c1b8c
BLAKE2b-256 8f944add7e52d20900d527842bc992829a9a525f4fc4fb6431284dea1ae800c7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pypylon-2.2.0-cp36-cp36m-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 660e330ef62ba6be84ef649bd77d14266c43b9e83e8e1209b3653b9b91c1fe79
MD5 a654a17bde68132dbc22eb50ccb4f33c
BLAKE2b-256 bbb5c46c7eac2429dfb719fd2c446ed2c17a258b7ca0a5447a3a49c4556366cb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pypylon-2.2.0-cp36-cp36m-manylinux_2_24_armv7l.manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 42a4a1e9c669ffa601be3ced6edc5fd7840a44ef02f4cda58ca7624b3e65ca3d
MD5 593ada60bf81a955c157c81ecd567233
BLAKE2b-256 f8aa4801efed3fe8093a0e208b8e4ea707e6e2be7526c6dd9e76909c8a18d529

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pypylon-2.2.0-cp36-cp36m-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 d5eefde47ada9277cd692355b6381d1dc030f16683da21d870de5e32c3bcd754
MD5 4fd69a30c88b3651ca8959920fbdb57f
BLAKE2b-256 fc87b26da6e3fd6a8d78807bbb8fedcc7b2dcd93a1e09febbccc766907bb5ca6

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