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

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

pypylon-1.7.0-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.0-cp39-cp39-manylinux_2_24_i686.whl (9.4 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.24+ i686

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

Uploaded CPython 3.9manylinux: glibc 2.24+ ARMv7l

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

Uploaded CPython 3.9manylinux: glibc 2.24+ ARM64

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

Uploaded CPython 3.9macOS 10.14+ x86-64

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

Uploaded CPython 3.8Windows x86-64

pypylon-1.7.0-cp38-cp38-win32.whl (13.2 MB view details)

Uploaded CPython 3.8Windows x86

pypylon-1.7.0-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.0-cp38-cp38-manylinux_2_24_i686.whl (9.4 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.24+ i686

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

Uploaded CPython 3.8manylinux: glibc 2.24+ ARMv7l

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

Uploaded CPython 3.8manylinux: glibc 2.24+ ARM64

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

Uploaded CPython 3.8macOS 10.14+ x86-64

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

Uploaded CPython 3.7mWindows x86-64

pypylon-1.7.0-cp37-cp37m-win32.whl (13.2 MB view details)

Uploaded CPython 3.7mWindows x86

pypylon-1.7.0-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.0-cp37-cp37m-manylinux_2_24_i686.whl (9.3 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.24+ i686

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

Uploaded CPython 3.7mmanylinux: glibc 2.24+ ARMv7l

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

Uploaded CPython 3.7mmanylinux: glibc 2.24+ ARM64

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

Uploaded CPython 3.7mmacOS 10.14+ x86-64

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

Uploaded CPython 3.6mWindows x86-64

pypylon-1.7.0-cp36-cp36m-win32.whl (13.2 MB view details)

Uploaded CPython 3.6mWindows x86

pypylon-1.7.0-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.0-cp36-cp36m-manylinux_2_24_i686.whl (9.3 MB view details)

Uploaded CPython 3.6mmanylinux: glibc 2.24+ i686

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

Uploaded CPython 3.6mmanylinux: glibc 2.24+ ARMv7l

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

Uploaded CPython 3.6mmanylinux: glibc 2.24+ ARM64

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

Uploaded CPython 3.6mmacOS 10.14+ x86-64

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

Uploaded CPython 3.5mWindows x86-64

pypylon-1.7.0-cp35-cp35m-win32.whl (13.2 MB view details)

Uploaded CPython 3.5mWindows x86

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

Uploaded CPython 3.4mWindows x86-64

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

Uploaded CPython 3.4mWindows x86

File details

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

File metadata

  • Download URL: pypylon-1.7.0-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.0-cp39-cp39-manylinux_2_24_x86_64.whl
Algorithm Hash digest
SHA256 e0b7b2c9af4e72eede3e492380d87f1e2d3c1115b64f49c5047fbe31407ec52e
MD5 394647987c77b39ee76b8dcbc857bf6b
BLAKE2b-256 457033f84be59854b0ce601ddd436ec5d745c2f58e5ebd5ada9556f61740d037

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pypylon-1.7.0-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.0-cp39-cp39-manylinux_2_24_i686.whl
Algorithm Hash digest
SHA256 a37ab53166c43443654b933497415f443bef034f8d7570742d7cd5eefc3dbdbb
MD5 92bf71bf85e913ec71e64373057d6565
BLAKE2b-256 1fde68c8d75910fc6032610d5b111b50683fd9889d00350c70461cbcb691355f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pypylon-1.7.0-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.0-cp39-cp39-manylinux_2_24_armv7l.whl
Algorithm Hash digest
SHA256 641d03061d2240622d0ef18b0d7f4ac43fe781a3dee9a96e6ac3f7a2a6caf99b
MD5 55d8100828a22e31b4a7274444a10114
BLAKE2b-256 b11b4bff8d5913458f2bad81239908fe30fce03f1f5ffafc00dfe9d344a0eac7

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pypylon-1.7.0-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.0-cp39-cp39-manylinux_2_24_aarch64.whl
Algorithm Hash digest
SHA256 57083f280326e7dc28a93ffca8eac3d74a5e430ed68191ddc8752b714f8f29cf
MD5 b754c3eead60e079c11bb533bbba44c7
BLAKE2b-256 87665ec0d4fe8d89b53a899d3e343f834c7296b4d325af1a54dea3be6daf4cf7

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pypylon-1.7.0-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.0-cp39-cp39-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 f5bc7c478d55b409fd3c9d2601556e928317959c9d29838fe6f8418feecc2b34
MD5 9c7cdba40760c78ae1e8b8c30400c18d
BLAKE2b-256 4f1e550ca16ac4b533c2be2f120fdd148c8d2bd4689b1fcb33e12c49793c7ab2

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pypylon-1.7.0-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/41.2.0 requests-toolbelt/0.9.1 tqdm/4.57.0 CPython/3.8.0

File hashes

Hashes for pypylon-1.7.0-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 0e04998bf3166f0a7ff63ba843f794151656c50b36c6f3a243c6dbfb44c4183b
MD5 163a1260c6b6127f13c2df751644a550
BLAKE2b-256 7d26374050d3f5c41ccf6b318e7aade0e717447cf1d084157ef11f53cfc23ddc

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pypylon-1.7.0-cp38-cp38-win32.whl
  • Upload date:
  • Size: 13.2 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/41.2.0 requests-toolbelt/0.9.1 tqdm/4.57.0 CPython/3.8.0

File hashes

Hashes for pypylon-1.7.0-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 2b730eda9ed6b763aa3255fc0b7c9990daa958e4035da92bf1ae2abdde703e78
MD5 51ed3f6bc4671204a88697a412e1bee3
BLAKE2b-256 5864b1d15805df6845111d9facdae7bf0be306281434b7d24833e5d712af8a15

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pypylon-1.7.0-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.0-cp38-cp38-manylinux_2_24_x86_64.whl
Algorithm Hash digest
SHA256 a5356401058e690dde824f086a750decd02d7f39992739d03db487cc97b209cb
MD5 83861616b60704a614c0565b69c761b4
BLAKE2b-256 0bdadf5630f00af28c3b4571b1c84419277bb89e3bd91e5fb1cc63401f6b0e34

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pypylon-1.7.0-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.0-cp38-cp38-manylinux_2_24_i686.whl
Algorithm Hash digest
SHA256 e29912dc4e67e362b19037a4f72270173d25dc736a76283a559469cd3a3f8ef1
MD5 755fa3c30b4a89bc1d96196b5ad60f84
BLAKE2b-256 c9f1d0dd326f6e6a9ed38715502bc82dd4c8a7b819fbd96ea8f6a75c5401073f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pypylon-1.7.0-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.0-cp38-cp38-manylinux_2_24_armv7l.whl
Algorithm Hash digest
SHA256 d9086bf9b295357f3dc2b272c1fdbecc0fc1891bbc21b8c42d1f842261de73a6
MD5 8710970ca13553a4543856d971cd4344
BLAKE2b-256 371773e95331058e5143edf33dd3aa6db7160e72cde06229d45371b58a58ae24

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pypylon-1.7.0-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.0-cp38-cp38-manylinux_2_24_aarch64.whl
Algorithm Hash digest
SHA256 46521d46f6c05127de8a6e886f40c877f333d481803b35a8d5d9267347729d55
MD5 c2645bf3c15db8ae5a910c46fad9b3e6
BLAKE2b-256 fc3cff1060095feb7add6b5b6bfdfd03c94dbe5dad7cbb1e6ee5739a6d4ef834

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pypylon-1.7.0-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.0-cp38-cp38-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 a1db01c113bd19c7b2344f1ab0f19937fd5eac44fb5748427c06052c35b8bc1f
MD5 b3197c2d53c6a54b8b17d346004af039
BLAKE2b-256 e1f827e98178b02059097019e150b2de5d5cead8bc080630492f1b4b9869e4c8

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pypylon-1.7.0-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/41.2.0 requests-toolbelt/0.9.1 tqdm/4.57.0 CPython/3.7.5

File hashes

Hashes for pypylon-1.7.0-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 0b85df0d85f9ed16c9a09ca2f0b3727b623c3ee6ce6245161729dcf33ad71f3c
MD5 5c9e757acfe613f5c111f5915f7cdadc
BLAKE2b-256 d90cdd948cb4f7f2bcbb0cce8adc484b37c89825fa468c7adac65c3e1befc265

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pypylon-1.7.0-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 13.2 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/41.2.0 requests-toolbelt/0.9.1 tqdm/4.57.0 CPython/3.7.5

File hashes

Hashes for pypylon-1.7.0-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 75d8ab5d17e2de828156b9020e669ea7fab007ad9da7d4664bcf3ef5e78a6cc7
MD5 5888113712e2453231157545950b132b
BLAKE2b-256 5363d8835ae8dc9e2a21a317fb894ff07c31fe33275e82bf9ccc1c7085f291c6

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pypylon-1.7.0-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.0-cp37-cp37m-manylinux_2_24_x86_64.whl
Algorithm Hash digest
SHA256 fd3470ec506e9cc301f27c8c8508e997c5f08df49f87cee58d65870e728fe572
MD5 2371e40c9c0664d27db21a5124b441ed
BLAKE2b-256 8ff72e86133da158b0c500dcf96db325cec5002b3185c201739564ed8a382fa7

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pypylon-1.7.0-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.0-cp37-cp37m-manylinux_2_24_i686.whl
Algorithm Hash digest
SHA256 f1e44594dc84b29f01206ecb704b94cec8c82845be2420cbf8d00c3d1c33e90f
MD5 941be3ba9bb4aa534782760b6e8e819f
BLAKE2b-256 135096b4dbe96871d368d97c761e68cdc8298b2405f80fbd8990258f0e8b9c79

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pypylon-1.7.0-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.0-cp37-cp37m-manylinux_2_24_armv7l.whl
Algorithm Hash digest
SHA256 8b1348958e1242a4fbaafee9d6fd29f85a72db74abfc742ec08de09fe0e06f8d
MD5 5d350912fd95ff0258a73c5d3d47a267
BLAKE2b-256 8b676c26dc914bcd6c1a0d3dbe69620276414d7309055c31e5a3e2b965aef049

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pypylon-1.7.0-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.0-cp37-cp37m-manylinux_2_24_aarch64.whl
Algorithm Hash digest
SHA256 eb0e716a56f0ba3b5fa7631f3cdf33a93fe8cc66eddf7489ba15c8bfebbfa68a
MD5 2768e3995ca99c4b16a41206150eaf5a
BLAKE2b-256 7e72374dfacadf6d025b527611104122f994b9ad831c6bfa4f52831460e9664c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pypylon-1.7.0-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.0-cp37-cp37m-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 ea54979ae353f7c03ddc9b7d2467ef2ea72d07c0cbce69a12dc35e1af6b35879
MD5 4a605f248a97d54d2d4445393ce58385
BLAKE2b-256 eeff738f0ce6e30f535f6ac79abb44f31c3d00c324e4b1325982afd833b10056

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pypylon-1.7.0-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.0-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 ac8aca2bb1481c7df772531b2c8231ac21880da01c1157f0531e47e4429a76d2
MD5 3abbcc6c6be0cf9a34597f3b4b03fa6a
BLAKE2b-256 f4b12442812af9afc15bfa193e9192eb56100f028222584baa2a304185d838f7

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pypylon-1.7.0-cp36-cp36m-win32.whl
  • Upload date:
  • Size: 13.2 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.0-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 b9f45ed0c95feb916eabcc0c88e0b0a57df012e9e5a304790a024a837da1c5f7
MD5 b5871f9b4bf20b7cbfae9b0bec395966
BLAKE2b-256 072b35a7ff21efa6463a699dc5fce3fa2dfb81cd88ef5b8f1865e7da7cea3214

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pypylon-1.7.0-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.0-cp36-cp36m-manylinux_2_24_x86_64.whl
Algorithm Hash digest
SHA256 fe0df7c36bdd0909e67d782c6acfd4303eee559c8cd122e0d1316e14c51b71ce
MD5 cd32abe368b3e6701f4979f34017f013
BLAKE2b-256 3e6b5a9a3a35e3a57d3f0673dd81def0bfefd432b70537feefc0620804bbbd71

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pypylon-1.7.0-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.0-cp36-cp36m-manylinux_2_24_i686.whl
Algorithm Hash digest
SHA256 7214883e72f680278b6248a9c52c8f1993e65be6b33b443bd8026fa4a7f6e431
MD5 e7f6b269e76838c45a1b29037d648473
BLAKE2b-256 9821c9344a555ff156201212abaabe5c4b0a70c7b95d813f66198a276b937d4b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pypylon-1.7.0-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.0-cp36-cp36m-manylinux_2_24_armv7l.whl
Algorithm Hash digest
SHA256 a30026c318dd31b398fb77397f5921e7719b2564217e8143e2a35c43716ae478
MD5 af939f5caeeddfb0ee4c355f861340e7
BLAKE2b-256 456c2bbf3d20e715ee584c62266ecc9a4e43b28445ac5ead5d054038818c4a67

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pypylon-1.7.0-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.0-cp36-cp36m-manylinux_2_24_aarch64.whl
Algorithm Hash digest
SHA256 c438ef4346c51e8f4b0eac96a24450943b411229587cadf8449e1efc291bf0c3
MD5 0e47ee94c54bcf87c0fca9772f73e6d9
BLAKE2b-256 7e98de9f201b9f08ec7fc95cfff915eb3c5aaf767fd5aea5ec617c7453f5ed64

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pypylon-1.7.0-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.0-cp36-cp36m-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 5447c1a01dc6da1920d107a9d0ac2a5cc8bc9cf8834210afca08e6a944af6c4f
MD5 9b4a54277df688e89c938ed46b4f4220
BLAKE2b-256 db19beb80917f63c875fd876f33f63d3c8cc3a0fe76e5e875352faf705cccf86

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pypylon-1.7.0-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.0-cp35-cp35m-win_amd64.whl
Algorithm Hash digest
SHA256 88e7fcbc7824ae3bb28078543f9777842e5a99185247151307f21006e822cf8c
MD5 64f67e75efc13f2e2d15291aa0e84b72
BLAKE2b-256 b686b8972e19795d39122bea61591e4c97862d8011593f3a351ffdc807bfb487

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pypylon-1.7.0-cp35-cp35m-win32.whl
  • Upload date:
  • Size: 13.2 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.0-cp35-cp35m-win32.whl
Algorithm Hash digest
SHA256 61b493ab6b7257edd79591d237a0b31d5b7cb6118c5908f5a6a32ad38a6e5133
MD5 de90bcdadf70771735ed92c968859ba5
BLAKE2b-256 ba8ab3c9c0fb8be41ae63395ad1222be8b6c6dda1daa49cc9194dad5f0ddec89

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pypylon-1.7.0-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.0-cp34-cp34m-win_amd64.whl
Algorithm Hash digest
SHA256 ca86e4d15f1046adbf092eca757bc37bacc4b24a663a7e23707843c372338bba
MD5 fb69f2ee2378fe218be3d8ac2ca91e6f
BLAKE2b-256 73676b585888060a35a95f39c79be663d40f9d03ac156bfa1a2a7356ed0b07e7

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pypylon-1.7.0-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.0-cp34-cp34m-win32.whl
Algorithm Hash digest
SHA256 08d2bbad06309154be8cd8d921482f18c7deb4b0a8abb04b05459f7ddca93859
MD5 cb0b3fd3607e8f1e37827c21c130f0d9
BLAKE2b-256 28ab25050c1f5171193fbd74dc4853944d30d1c0541a3741e20ad4e4d99a9fb6

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