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.

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.4 3.5 3.6 3.6 3.7 3.8 3.9
Windows 32bit x x x x x x x
Windows 64bit x x x x x x x
Linux i686** -* -* x x x x x
Linux x86_64** -* -* x x x x x
Linux armv7l** -* -* x x x x x
Linux aarch64** -* -* x x x x x
Mac OS*** - - x x x x x

Additional Notes on binary packages:

  • (*) The linux wheels for python 3.4 and 3.5 are not available on pypi.
    You can get them from Github Releases.
  • (**) The linux binaries are manylinux_2_24 conformant.
    This is roughly equivalent to a minimum glibc version >= 2.24.
    :warning: You need at least pip 20.3 to install them.
  • (***) MacOS binaries are built for macOS >= 10.14 (Mojave)

Installation from Source

Building the pypylon bindings is supported and tested on Windows and Linux.

You need a few more things to compile pypylon:

  • A compiler for your system (Visual Studio on Windows, gcc on linux)
  • Python development files (e.g. sudo apt install python-dev on linux)
  • swig >= 4.0

To build pypylon from source:

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

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.

python -m unittest tests/....
python 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

pypylon-1.7.1-cp39-cp39-win_amd64.whl (15.3 MB view details)

Uploaded CPython 3.9Windows x86-64

pypylon-1.7.1-cp39-cp39-win32.whl (13.3 MB view details)

Uploaded CPython 3.9Windows x86

pypylon-1.7.1-cp39-cp39-manylinux_2_24_x86_64.whl (9.7 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.24+ x86-64

pypylon-1.7.1-cp39-cp39-manylinux_2_24_i686.whl (9.4 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.24+ i686

pypylon-1.7.1-cp39-cp39-manylinux_2_24_armv7l.whl (7.5 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.24+ ARMv7l

pypylon-1.7.1-cp39-cp39-manylinux_2_24_aarch64.whl (9.1 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.24+ ARM64

pypylon-1.7.1-cp39-cp39-macosx_10_14_x86_64.whl (16.8 MB view details)

Uploaded CPython 3.9macOS 10.14+ x86-64

pypylon-1.7.1-cp38-cp38-win_amd64.whl (15.3 MB view details)

Uploaded CPython 3.8Windows x86-64

pypylon-1.7.1-cp38-cp38-win32.whl (13.3 MB view details)

Uploaded CPython 3.8Windows x86

pypylon-1.7.1-cp38-cp38-manylinux_2_24_x86_64.whl (9.7 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.24+ x86-64

pypylon-1.7.1-cp38-cp38-manylinux_2_24_i686.whl (9.4 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.24+ i686

pypylon-1.7.1-cp38-cp38-manylinux_2_24_armv7l.whl (7.5 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.24+ ARMv7l

pypylon-1.7.1-cp38-cp38-manylinux_2_24_aarch64.whl (9.1 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.24+ ARM64

pypylon-1.7.1-cp38-cp38-macosx_10_14_x86_64.whl (16.8 MB view details)

Uploaded CPython 3.8macOS 10.14+ x86-64

pypylon-1.7.1-cp37-cp37m-win_amd64.whl (15.3 MB view details)

Uploaded CPython 3.7mWindows x86-64

pypylon-1.7.1-cp37-cp37m-win32.whl (13.3 MB view details)

Uploaded CPython 3.7mWindows x86

pypylon-1.7.1-cp37-cp37m-manylinux_2_24_x86_64.whl (9.7 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.24+ x86-64

pypylon-1.7.1-cp37-cp37m-manylinux_2_24_i686.whl (9.3 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.24+ i686

pypylon-1.7.1-cp37-cp37m-manylinux_2_24_armv7l.whl (7.5 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.24+ ARMv7l

pypylon-1.7.1-cp37-cp37m-manylinux_2_24_aarch64.whl (9.1 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.24+ ARM64

pypylon-1.7.1-cp37-cp37m-macosx_10_14_x86_64.whl (16.8 MB view details)

Uploaded CPython 3.7mmacOS 10.14+ x86-64

pypylon-1.7.1-cp36-cp36m-win_amd64.whl (15.3 MB view details)

Uploaded CPython 3.6mWindows x86-64

pypylon-1.7.1-cp36-cp36m-win32.whl (13.3 MB view details)

Uploaded CPython 3.6mWindows x86

pypylon-1.7.1-cp36-cp36m-manylinux_2_24_x86_64.whl (9.7 MB view details)

Uploaded CPython 3.6mmanylinux: glibc 2.24+ x86-64

pypylon-1.7.1-cp36-cp36m-manylinux_2_24_i686.whl (9.3 MB view details)

Uploaded CPython 3.6mmanylinux: glibc 2.24+ i686

pypylon-1.7.1-cp36-cp36m-manylinux_2_24_armv7l.whl (7.5 MB view details)

Uploaded CPython 3.6mmanylinux: glibc 2.24+ ARMv7l

pypylon-1.7.1-cp36-cp36m-manylinux_2_24_aarch64.whl (9.1 MB view details)

Uploaded CPython 3.6mmanylinux: glibc 2.24+ ARM64

pypylon-1.7.1-cp36-cp36m-macosx_10_14_x86_64.whl (16.8 MB view details)

Uploaded CPython 3.6mmacOS 10.14+ x86-64

pypylon-1.7.1-cp35-cp35m-win_amd64.whl (15.3 MB view details)

Uploaded CPython 3.5mWindows x86-64

pypylon-1.7.1-cp35-cp35m-win32.whl (13.3 MB view details)

Uploaded CPython 3.5mWindows x86

pypylon-1.7.1-cp34-cp34m-win_amd64.whl (15.3 MB view details)

Uploaded CPython 3.4mWindows x86-64

pypylon-1.7.1-cp34-cp34m-win32.whl (13.2 MB view details)

Uploaded CPython 3.4mWindows x86

File details

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

File metadata

  • Download URL: pypylon-1.7.1-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 15.3 MB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.57.0 CPython/3.9.1

File hashes

Hashes for pypylon-1.7.1-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 d68b2b9be3b67c73bb0d97e411f892a1fbacba1ba9acc873ab4cd6d165c9c035
MD5 e87fcf6f463bf69d0070960d8304bc8f
BLAKE2b-256 e4b934edd421de8d0bc33aaf8e7a1ef1709c59ea7e665f0c30c314ce34f211b2

See more details on using hashes here.

File details

Details for the file pypylon-1.7.1-cp39-cp39-win32.whl.

File metadata

  • Download URL: pypylon-1.7.1-cp39-cp39-win32.whl
  • Upload date:
  • Size: 13.3 MB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.57.0 CPython/3.9.1

File hashes

Hashes for pypylon-1.7.1-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 3e82d6d6e1f7a296298cea00c5129b22eac4231c3ae183dd1c4707e3583dfe50
MD5 3403313a586709b6cd90cba63c85f62f
BLAKE2b-256 5e39c417030a63f5bbd6446217313d85992b8111dd5e2ab3f4d0ad265dc85cf2

See more details on using hashes here.

File details

Details for the file pypylon-1.7.1-cp39-cp39-manylinux_2_24_x86_64.whl.

File metadata

  • Download URL: pypylon-1.7.1-cp39-cp39-manylinux_2_24_x86_64.whl
  • Upload date:
  • Size: 9.7 MB
  • Tags: CPython 3.9, manylinux: glibc 2.24+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.57.0 CPython/3.6.9

File hashes

Hashes for pypylon-1.7.1-cp39-cp39-manylinux_2_24_x86_64.whl
Algorithm Hash digest
SHA256 868b03652a605aa0357a3c473789760e7fc6b51db3578eb25620339b29785cd8
MD5 7fddcdf4c3845f597c8efdebcc37157d
BLAKE2b-256 497cce96ac2e2ff8dedd150cf437635784f35a6dab2ae72ab4cdf60fd28fb907

See more details on using hashes here.

File details

Details for the file pypylon-1.7.1-cp39-cp39-manylinux_2_24_i686.whl.

File metadata

  • Download URL: pypylon-1.7.1-cp39-cp39-manylinux_2_24_i686.whl
  • Upload date:
  • Size: 9.4 MB
  • Tags: CPython 3.9, manylinux: glibc 2.24+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.57.0 CPython/3.6.9

File hashes

Hashes for pypylon-1.7.1-cp39-cp39-manylinux_2_24_i686.whl
Algorithm Hash digest
SHA256 c4cf6e13653e500936d2b8b279b141d405198165fb7874d2e89cec88408e6c15
MD5 aaa495e6b34019e551f670792ca77343
BLAKE2b-256 08a476ba5a617a907c4a24079a8a1f10b0e4711eb776e953525dab8a0047a39b

See more details on using hashes here.

File details

Details for the file pypylon-1.7.1-cp39-cp39-manylinux_2_24_armv7l.whl.

File metadata

  • Download URL: pypylon-1.7.1-cp39-cp39-manylinux_2_24_armv7l.whl
  • Upload date:
  • Size: 7.5 MB
  • Tags: CPython 3.9, manylinux: glibc 2.24+ ARMv7l
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.57.0 CPython/3.6.9

File hashes

Hashes for pypylon-1.7.1-cp39-cp39-manylinux_2_24_armv7l.whl
Algorithm Hash digest
SHA256 d52e43b736b60ef87837ae006460eca0e51a2a74e52e613ca6e06928de16a445
MD5 42e8bc6f62d564da19f0c632d0cdcff0
BLAKE2b-256 868bd2956eb535d454466b9b0318e3ad8c89b8f9b3770fe3b15e749493d6cb78

See more details on using hashes here.

File details

Details for the file pypylon-1.7.1-cp39-cp39-manylinux_2_24_aarch64.whl.

File metadata

  • Download URL: pypylon-1.7.1-cp39-cp39-manylinux_2_24_aarch64.whl
  • Upload date:
  • Size: 9.1 MB
  • Tags: CPython 3.9, manylinux: glibc 2.24+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.57.0 CPython/3.6.9

File hashes

Hashes for pypylon-1.7.1-cp39-cp39-manylinux_2_24_aarch64.whl
Algorithm Hash digest
SHA256 9af2b36e362be20329b493bdd58ed87daeef31b36f36c88aceec2371194fbc4e
MD5 4bb3bad7630dabe889e2ccd6a25382e5
BLAKE2b-256 36ef2f031da9f41ac92b711e2ce34f9344fa0fc9bfbb3224553c41cfc6d859a5

See more details on using hashes here.

File details

Details for the file pypylon-1.7.1-cp39-cp39-macosx_10_14_x86_64.whl.

File metadata

  • Download URL: pypylon-1.7.1-cp39-cp39-macosx_10_14_x86_64.whl
  • Upload date:
  • Size: 16.8 MB
  • Tags: CPython 3.9, macOS 10.14+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.57.0 CPython/3.9.1

File hashes

Hashes for pypylon-1.7.1-cp39-cp39-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 e3cb1c88409e37ccea85909ea68b5c1024a3dc067f9c052b1819ee723e9f9a25
MD5 9764b53cd9342e5ee4244713ff05bf8d
BLAKE2b-256 1f2d8dbac2b44c337a1937531c239905ab89fe9a83b4cb0104461277b46923bf

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pypylon-1.7.1-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 15.3 MB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.57.0 CPython/3.8.7

File hashes

Hashes for pypylon-1.7.1-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 645f0bef0f615d3220b53df9fd18bdd6b503df756f0304ab87f1c2970638d78c
MD5 5155f29eadff8a97e55b10305562e233
BLAKE2b-256 556ac3fd9a87095df3fb7fb815e714e62c910d66ac02ea803e9aee963ee05562

See more details on using hashes here.

File details

Details for the file pypylon-1.7.1-cp38-cp38-win32.whl.

File metadata

  • Download URL: pypylon-1.7.1-cp38-cp38-win32.whl
  • Upload date:
  • Size: 13.3 MB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.57.0 CPython/3.8.7

File hashes

Hashes for pypylon-1.7.1-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 26e5b9c6ca33db921371e46be960418ce46af370c1a04e310eb3a993a4596f38
MD5 e6e30ae46678b31a23057b2ab676786a
BLAKE2b-256 56ecb5b7f8af56570fe537e414ac1aeeac8372e001bedc03e34e61832ce9cbcf

See more details on using hashes here.

File details

Details for the file pypylon-1.7.1-cp38-cp38-manylinux_2_24_x86_64.whl.

File metadata

  • Download URL: pypylon-1.7.1-cp38-cp38-manylinux_2_24_x86_64.whl
  • Upload date:
  • Size: 9.7 MB
  • Tags: CPython 3.8, manylinux: glibc 2.24+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.57.0 CPython/3.6.9

File hashes

Hashes for pypylon-1.7.1-cp38-cp38-manylinux_2_24_x86_64.whl
Algorithm Hash digest
SHA256 0eb0bd6d4e28abf0ea6c62d0274c17533543fda5544f393e972f0505610657a7
MD5 a062ddc3664ab484eb0259896b998d69
BLAKE2b-256 5a2d0ed2b3d994a04bb76696554662c6f792e058e5716362240efdb2a3f55658

See more details on using hashes here.

File details

Details for the file pypylon-1.7.1-cp38-cp38-manylinux_2_24_i686.whl.

File metadata

  • Download URL: pypylon-1.7.1-cp38-cp38-manylinux_2_24_i686.whl
  • Upload date:
  • Size: 9.4 MB
  • Tags: CPython 3.8, manylinux: glibc 2.24+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.57.0 CPython/3.6.9

File hashes

Hashes for pypylon-1.7.1-cp38-cp38-manylinux_2_24_i686.whl
Algorithm Hash digest
SHA256 1487592e6e1e8cc966742d8666061bd2d6ac4b3b33d694260a1000f49b847466
MD5 ede5294bc35d6520d12ea56f40401ad9
BLAKE2b-256 5900ed839f4bd15e579d8940ebd71afb28e1e388573e4be533b4e4f206c391c1

See more details on using hashes here.

File details

Details for the file pypylon-1.7.1-cp38-cp38-manylinux_2_24_armv7l.whl.

File metadata

  • Download URL: pypylon-1.7.1-cp38-cp38-manylinux_2_24_armv7l.whl
  • Upload date:
  • Size: 7.5 MB
  • Tags: CPython 3.8, manylinux: glibc 2.24+ ARMv7l
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.57.0 CPython/3.6.9

File hashes

Hashes for pypylon-1.7.1-cp38-cp38-manylinux_2_24_armv7l.whl
Algorithm Hash digest
SHA256 7e4c4eb2750957427d1d2346e4c60055a515cd8dfbe35a947697468702a1a673
MD5 d946e02b165444561069eec5069fed14
BLAKE2b-256 dfa7f702a72c2a1c5d5c15309ed8349d5d7ad3845f5f467ff950894369d1eb40

See more details on using hashes here.

File details

Details for the file pypylon-1.7.1-cp38-cp38-manylinux_2_24_aarch64.whl.

File metadata

  • Download URL: pypylon-1.7.1-cp38-cp38-manylinux_2_24_aarch64.whl
  • Upload date:
  • Size: 9.1 MB
  • Tags: CPython 3.8, manylinux: glibc 2.24+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.57.0 CPython/3.6.9

File hashes

Hashes for pypylon-1.7.1-cp38-cp38-manylinux_2_24_aarch64.whl
Algorithm Hash digest
SHA256 5301fba24d5e32fa9d9b4e834f3f2113f5417c2895b4cff7dfb265dd5cf69ca1
MD5 8fe3649688b1a3a76a05877fb081f8dd
BLAKE2b-256 17070e0a9ee346d8f448eee4a6a4d4b23394753710b6f6e7dd1623af31a8b079

See more details on using hashes here.

File details

Details for the file pypylon-1.7.1-cp38-cp38-macosx_10_14_x86_64.whl.

File metadata

  • Download URL: pypylon-1.7.1-cp38-cp38-macosx_10_14_x86_64.whl
  • Upload date:
  • Size: 16.8 MB
  • Tags: CPython 3.8, macOS 10.14+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.57.0 CPython/3.8.7

File hashes

Hashes for pypylon-1.7.1-cp38-cp38-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 ddee237d975d279eddc4cc1ccb6553646ce6ef2ef6f4c482f90dfda6c08c35c2
MD5 58ebaa9580085ff8ff8a85e29502f29f
BLAKE2b-256 d354a2a6b6b2bd62fdd7c10150841adbf143601414be296caf4b8e88b9b8ebb1

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pypylon-1.7.1-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 15.3 MB
  • Tags: CPython 3.7m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/47.1.0 requests-toolbelt/0.9.1 tqdm/4.57.0 CPython/3.7.9

File hashes

Hashes for pypylon-1.7.1-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 b03797eea627ba5abff2fbdee4153b0da13fd451b5ea900f3732efac9e7722bb
MD5 e44159049c250092b0bdb65e27f3c6fb
BLAKE2b-256 c27050300fea3cb6272c3bc3436dda24838e750d6ebda1a51637af43ff09d074

See more details on using hashes here.

File details

Details for the file pypylon-1.7.1-cp37-cp37m-win32.whl.

File metadata

  • Download URL: pypylon-1.7.1-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 13.3 MB
  • Tags: CPython 3.7m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/47.1.0 requests-toolbelt/0.9.1 tqdm/4.57.0 CPython/3.7.9

File hashes

Hashes for pypylon-1.7.1-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 1198a62cb6985e678c4d77b8e3c88f55e9cbf2f190371ccd6efc30fc1509dac9
MD5 790719b72b6aa74331230c9b0dd1579d
BLAKE2b-256 49c7ac577d7d875b0ef4adba7a4713d9f9b751a73f6bfe66a5abfdc4006bacde

See more details on using hashes here.

File details

Details for the file pypylon-1.7.1-cp37-cp37m-manylinux_2_24_x86_64.whl.

File metadata

  • Download URL: pypylon-1.7.1-cp37-cp37m-manylinux_2_24_x86_64.whl
  • Upload date:
  • Size: 9.7 MB
  • Tags: CPython 3.7m, manylinux: glibc 2.24+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.57.0 CPython/3.6.9

File hashes

Hashes for pypylon-1.7.1-cp37-cp37m-manylinux_2_24_x86_64.whl
Algorithm Hash digest
SHA256 4e0bde499eb206f07b7081af19977aee186b882bc449cd01482c6f279a118b4a
MD5 4e9c0d795d2300f0f47528dd32bb42a7
BLAKE2b-256 74a5fdea375d726a3ebe5279867d4f6bb7b0cce49411dcdfbb94da8315333757

See more details on using hashes here.

File details

Details for the file pypylon-1.7.1-cp37-cp37m-manylinux_2_24_i686.whl.

File metadata

  • Download URL: pypylon-1.7.1-cp37-cp37m-manylinux_2_24_i686.whl
  • Upload date:
  • Size: 9.3 MB
  • Tags: CPython 3.7m, manylinux: glibc 2.24+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.57.0 CPython/3.6.9

File hashes

Hashes for pypylon-1.7.1-cp37-cp37m-manylinux_2_24_i686.whl
Algorithm Hash digest
SHA256 65ba15f086fb2a8c88723ea1f13785e74828c1d9ee77b6b049a73564d66e24dc
MD5 dfb6b11ae2406cf5d6f5eecd51e15555
BLAKE2b-256 ad041db472da025d140b9fe9ef3a138aa19c3d8107daec5b2c6a6e42b7d8dd1c

See more details on using hashes here.

File details

Details for the file pypylon-1.7.1-cp37-cp37m-manylinux_2_24_armv7l.whl.

File metadata

  • Download URL: pypylon-1.7.1-cp37-cp37m-manylinux_2_24_armv7l.whl
  • Upload date:
  • Size: 7.5 MB
  • Tags: CPython 3.7m, manylinux: glibc 2.24+ ARMv7l
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.57.0 CPython/3.6.9

File hashes

Hashes for pypylon-1.7.1-cp37-cp37m-manylinux_2_24_armv7l.whl
Algorithm Hash digest
SHA256 ea3a0ad424a09cdef446e9d8581b1c208c3d22bdfdc70f278054566dd6bdbeaa
MD5 3d3deeae7947ba313c95f30217ba094d
BLAKE2b-256 2adcb6553095cd28984f9c88a7197cdf44df257c20b88a04f9c106d425f5d1c4

See more details on using hashes here.

File details

Details for the file pypylon-1.7.1-cp37-cp37m-manylinux_2_24_aarch64.whl.

File metadata

  • Download URL: pypylon-1.7.1-cp37-cp37m-manylinux_2_24_aarch64.whl
  • Upload date:
  • Size: 9.1 MB
  • Tags: CPython 3.7m, manylinux: glibc 2.24+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.57.0 CPython/3.6.9

File hashes

Hashes for pypylon-1.7.1-cp37-cp37m-manylinux_2_24_aarch64.whl
Algorithm Hash digest
SHA256 bfa4434e8167b94b2e5d2f1e7c43d825da70f4313007d7621fafe6b91f1da708
MD5 07808ee4397086daef1e35918037a961
BLAKE2b-256 7caaead1836242a9c06408c1505b9324ca899160d26ac85cd4252a2b62de08d5

See more details on using hashes here.

File details

Details for the file pypylon-1.7.1-cp37-cp37m-macosx_10_14_x86_64.whl.

File metadata

  • Download URL: pypylon-1.7.1-cp37-cp37m-macosx_10_14_x86_64.whl
  • Upload date:
  • Size: 16.8 MB
  • Tags: CPython 3.7m, macOS 10.14+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/47.1.0 requests-toolbelt/0.9.1 tqdm/4.57.0 CPython/3.7.9

File hashes

Hashes for pypylon-1.7.1-cp37-cp37m-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 93ab9b72c68e1440e71257a5a8aa9d8bd5754f204848f482e2eb19713918e7fd
MD5 fb256aa75e1b3e992a3567b52a65b2dc
BLAKE2b-256 6a32e69e95c94ff257e004da483a17b81e663a42f8a613bf44c123c15c194acd

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pypylon-1.7.1-cp36-cp36m-win_amd64.whl
  • Upload date:
  • Size: 15.3 MB
  • Tags: CPython 3.6m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/40.6.2 requests-toolbelt/0.9.1 tqdm/4.57.0 CPython/3.6.8

File hashes

Hashes for pypylon-1.7.1-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 04d92d59dcf1b2c8ec95d6de05bb25a708ac10b68b7b84fb37785a9da2ccd5e6
MD5 c22b071ee35abd54da8c97d9e73ebef3
BLAKE2b-256 8c2e12aa72c85129702a396ee7df57535ae145f563a00e82340174d6b9e17ed5

See more details on using hashes here.

File details

Details for the file pypylon-1.7.1-cp36-cp36m-win32.whl.

File metadata

  • Download URL: pypylon-1.7.1-cp36-cp36m-win32.whl
  • Upload date:
  • Size: 13.3 MB
  • Tags: CPython 3.6m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/40.6.2 requests-toolbelt/0.9.1 tqdm/4.57.0 CPython/3.6.8

File hashes

Hashes for pypylon-1.7.1-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 48f790e0392de8200d46122269644c7509abfb0477fb8b2cf4baa034aca39029
MD5 6521f2aab123eea037d6375e104559c7
BLAKE2b-256 20888564960e6f2b08b049775e8e5677e6abcad3bb0b588c80f0f81aedf1af97

See more details on using hashes here.

File details

Details for the file pypylon-1.7.1-cp36-cp36m-manylinux_2_24_x86_64.whl.

File metadata

  • Download URL: pypylon-1.7.1-cp36-cp36m-manylinux_2_24_x86_64.whl
  • Upload date:
  • Size: 9.7 MB
  • Tags: CPython 3.6m, manylinux: glibc 2.24+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.57.0 CPython/3.6.9

File hashes

Hashes for pypylon-1.7.1-cp36-cp36m-manylinux_2_24_x86_64.whl
Algorithm Hash digest
SHA256 74fd4a9b000e7b0252e875812830dac7f769231a48fec7c6c4b7635a45deb1da
MD5 613d3f3745498465dd49c7a0f0409f30
BLAKE2b-256 fdf0190255a090de7851a310a80c4328174d41b912e420b3ed437881c370b9d0

See more details on using hashes here.

File details

Details for the file pypylon-1.7.1-cp36-cp36m-manylinux_2_24_i686.whl.

File metadata

  • Download URL: pypylon-1.7.1-cp36-cp36m-manylinux_2_24_i686.whl
  • Upload date:
  • Size: 9.3 MB
  • Tags: CPython 3.6m, manylinux: glibc 2.24+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.57.0 CPython/3.6.9

File hashes

Hashes for pypylon-1.7.1-cp36-cp36m-manylinux_2_24_i686.whl
Algorithm Hash digest
SHA256 b48771804a1d57e9e6aabb45568b1c7160fafd64337be20138d77bdd3651534a
MD5 ea5e0350ddb891c9085b054839f7cad2
BLAKE2b-256 f17ffab17de436e5b2851e924741b75aa8d927f7b4b9880a3d9fd6414bb25cb5

See more details on using hashes here.

File details

Details for the file pypylon-1.7.1-cp36-cp36m-manylinux_2_24_armv7l.whl.

File metadata

  • Download URL: pypylon-1.7.1-cp36-cp36m-manylinux_2_24_armv7l.whl
  • Upload date:
  • Size: 7.5 MB
  • Tags: CPython 3.6m, manylinux: glibc 2.24+ ARMv7l
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.57.0 CPython/3.6.9

File hashes

Hashes for pypylon-1.7.1-cp36-cp36m-manylinux_2_24_armv7l.whl
Algorithm Hash digest
SHA256 e024ff62a4603b2c2077b66ceb8559d1bdc8cb2f37eba1a3490c67f83a073b57
MD5 868569b31104c096f27eb615cac4fdbe
BLAKE2b-256 b03fe6f7364b0fd6eee4f34fc0b7dc98be700b495872e39747d3b7e1d8caaf7d

See more details on using hashes here.

File details

Details for the file pypylon-1.7.1-cp36-cp36m-manylinux_2_24_aarch64.whl.

File metadata

  • Download URL: pypylon-1.7.1-cp36-cp36m-manylinux_2_24_aarch64.whl
  • Upload date:
  • Size: 9.1 MB
  • Tags: CPython 3.6m, manylinux: glibc 2.24+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.57.0 CPython/3.6.9

File hashes

Hashes for pypylon-1.7.1-cp36-cp36m-manylinux_2_24_aarch64.whl
Algorithm Hash digest
SHA256 987c19762fa758ce19b69fdb7564433cef6851fddeffcbb72d9615a4ea30ed46
MD5 c234cd73f809d2aed45f9e1fc9026e6a
BLAKE2b-256 3afd5418d6e97228b68e05a0bc054bd1d8c27e34eca778a254bb2460f546a281

See more details on using hashes here.

File details

Details for the file pypylon-1.7.1-cp36-cp36m-macosx_10_14_x86_64.whl.

File metadata

  • Download URL: pypylon-1.7.1-cp36-cp36m-macosx_10_14_x86_64.whl
  • Upload date:
  • Size: 16.8 MB
  • Tags: CPython 3.6m, macOS 10.14+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/40.6.2 requests-toolbelt/0.9.1 tqdm/4.57.0 CPython/3.6.8

File hashes

Hashes for pypylon-1.7.1-cp36-cp36m-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 cf3d261f987c8c10ed5c39fc7b628a0dc9f0cf96ffde9cf843aff434fb370ed1
MD5 75024a447b758d29f78e8f3228d5afa2
BLAKE2b-256 ca8aaa415a36c02b09500b87376b9fe5dd37d9a7c5899e41d9070bcb3b28077d

See more details on using hashes here.

File details

Details for the file pypylon-1.7.1-cp35-cp35m-win_amd64.whl.

File metadata

  • Download URL: pypylon-1.7.1-cp35-cp35m-win_amd64.whl
  • Upload date:
  • Size: 15.3 MB
  • Tags: CPython 3.5m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.7.0 requests/2.25.1 setuptools/50.3.2 requests-toolbelt/0.9.1 tqdm/4.57.0 CPython/3.5.4

File hashes

Hashes for pypylon-1.7.1-cp35-cp35m-win_amd64.whl
Algorithm Hash digest
SHA256 f62b5c5131d749ab291ebd2f1fb81c57a60dbe2f868b3b95ffc40ff9ef2144c5
MD5 a1547b3b3fa88eb4fcb9bd62bbca65f1
BLAKE2b-256 09994ce56c93ba7d7c8661fe6c32d7ab9afc7320bdc766204ecfb4ca1fa2d275

See more details on using hashes here.

File details

Details for the file pypylon-1.7.1-cp35-cp35m-win32.whl.

File metadata

  • Download URL: pypylon-1.7.1-cp35-cp35m-win32.whl
  • Upload date:
  • Size: 13.3 MB
  • Tags: CPython 3.5m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.7.0 requests/2.25.1 setuptools/50.3.2 requests-toolbelt/0.9.1 tqdm/4.57.0 CPython/3.5.4

File hashes

Hashes for pypylon-1.7.1-cp35-cp35m-win32.whl
Algorithm Hash digest
SHA256 f9bbaa5ae4a1a1a2d2ab9b1d5d1215f01b4c255bb849e23c0c820a82c2fc4e77
MD5 48007fb13c89ba134e597f07829c73bf
BLAKE2b-256 babd6b89a546c8daf011be6128a2ad4a91d761d34d287ccc104668af8cd2511b

See more details on using hashes here.

File details

Details for the file pypylon-1.7.1-cp34-cp34m-win_amd64.whl.

File metadata

  • Download URL: pypylon-1.7.1-cp34-cp34m-win_amd64.whl
  • Upload date:
  • Size: 15.3 MB
  • Tags: CPython 3.4m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.7.0 requests/2.21.0 setuptools/43.0.0 requests-toolbelt/0.9.1 tqdm/4.57.0 CPython/3.4.4

File hashes

Hashes for pypylon-1.7.1-cp34-cp34m-win_amd64.whl
Algorithm Hash digest
SHA256 9ca46d89f8d2e27a0b934d61ccbcd13109335c873452a0cef7970c2d9417b6ae
MD5 35062074f948d9bf01a76eeda45d7a7b
BLAKE2b-256 a41ce284d7f6679389557c03d61c35f2af803b0f8868c5f560abdb9f26c0b4f5

See more details on using hashes here.

File details

Details for the file pypylon-1.7.1-cp34-cp34m-win32.whl.

File metadata

  • Download URL: pypylon-1.7.1-cp34-cp34m-win32.whl
  • Upload date:
  • Size: 13.2 MB
  • Tags: CPython 3.4m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.7.0 requests/2.21.0 setuptools/43.0.0 requests-toolbelt/0.9.1 tqdm/4.57.0 CPython/3.4.4

File hashes

Hashes for pypylon-1.7.1-cp34-cp34m-win32.whl
Algorithm Hash digest
SHA256 4eb4b6b91b92b3362d14127e56ded25fad5696963de9931d5110e6be654c701e
MD5 fdb8b8b9a29cf6d14069859ed632915f
BLAKE2b-256 d416052a159364ec88ccddbdc5d860d114c642c4b16a315e82fa54822664a9a0

See more details on using hashes here.

Supported by

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