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.
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-devon 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.
Release files for pypylon 1.7.1
For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.
Built distributions (wheels)
| File | Reset | |||
|---|---|---|---|---|
| pypylon-1.7.1-cp39-cp39-win_amd64.whl | CPython 3.9 | CPython 3.9 | Windows x86-64 | Details |
| pypylon-1.7.1-cp39-cp39-win32.whl | CPython 3.9 | CPython 3.9 | Windows x86-32 | Details |
| pypylon-1.7.1-cp39-cp39-manylinux_2_24_x86_64.whl | CPython 3.9 | CPython 3.9 | Linux glibc 2.24+ x86-64 | Details |
| pypylon-1.7.1-cp39-cp39-manylinux_2_24_i686.whl | CPython 3.9 | CPython 3.9 | Linux glibc 2.24+ x86-32 | Details |
| pypylon-1.7.1-cp39-cp39-manylinux_2_24_armv7l.whl | CPython 3.9 | CPython 3.9 | Linux glibc 2.24+ ARMv7l | Details |
| pypylon-1.7.1-cp39-cp39-manylinux_2_24_aarch64.whl | CPython 3.9 | CPython 3.9 | Linux glibc 2.24+ ARM64 | Details |
| pypylon-1.7.1-cp39-cp39-macosx_10_14_x86_64.whl | CPython 3.9 | CPython 3.9 | macOS 10.14+ x86-64 | Details |
| pypylon-1.7.1-cp38-cp38-win_amd64.whl | CPython 3.8 | CPython 3.8 | Windows x86-64 | Details |
| pypylon-1.7.1-cp38-cp38-win32.whl | CPython 3.8 | CPython 3.8 | Windows x86-32 | Details |
| pypylon-1.7.1-cp38-cp38-manylinux_2_24_x86_64.whl | CPython 3.8 | CPython 3.8 | Linux glibc 2.24+ x86-64 | Details |
| pypylon-1.7.1-cp38-cp38-manylinux_2_24_i686.whl | CPython 3.8 | CPython 3.8 | Linux glibc 2.24+ x86-32 | Details |
| pypylon-1.7.1-cp38-cp38-manylinux_2_24_armv7l.whl | CPython 3.8 | CPython 3.8 | Linux glibc 2.24+ ARMv7l | Details |
| pypylon-1.7.1-cp38-cp38-manylinux_2_24_aarch64.whl | CPython 3.8 | CPython 3.8 | Linux glibc 2.24+ ARM64 | Details |
| pypylon-1.7.1-cp38-cp38-macosx_10_14_x86_64.whl | CPython 3.8 | CPython 3.8 | macOS 10.14+ x86-64 | Details |
| pypylon-1.7.1-cp37-cp37m-win_amd64.whl | CPython 3.7 | CPython 3.7 pymalloc | Windows x86-64 | Details |
| pypylon-1.7.1-cp37-cp37m-win32.whl | CPython 3.7 | CPython 3.7 pymalloc | Windows x86-32 | Details |
| pypylon-1.7.1-cp37-cp37m-manylinux_2_24_x86_64.whl | CPython 3.7 | CPython 3.7 pymalloc | Linux glibc 2.24+ x86-64 | Details |
| pypylon-1.7.1-cp37-cp37m-manylinux_2_24_i686.whl | CPython 3.7 | CPython 3.7 pymalloc | Linux glibc 2.24+ x86-32 | Details |
| pypylon-1.7.1-cp37-cp37m-manylinux_2_24_armv7l.whl | CPython 3.7 | CPython 3.7 pymalloc | Linux glibc 2.24+ ARMv7l | Details |
| pypylon-1.7.1-cp37-cp37m-manylinux_2_24_aarch64.whl | CPython 3.7 | CPython 3.7 pymalloc | Linux glibc 2.24+ ARM64 | Details |
| pypylon-1.7.1-cp37-cp37m-macosx_10_14_x86_64.whl | CPython 3.7 | CPython 3.7 pymalloc | macOS 10.14+ x86-64 | Details |
| pypylon-1.7.1-cp36-cp36m-win_amd64.whl | CPython 3.6 | CPython 3.6 pymalloc | Windows x86-64 | Details |
| pypylon-1.7.1-cp36-cp36m-win32.whl | CPython 3.6 | CPython 3.6 pymalloc | Windows x86-32 | Details |
| pypylon-1.7.1-cp36-cp36m-manylinux_2_24_x86_64.whl | CPython 3.6 | CPython 3.6 pymalloc | Linux glibc 2.24+ x86-64 | Details |
| pypylon-1.7.1-cp36-cp36m-manylinux_2_24_i686.whl | CPython 3.6 | CPython 3.6 pymalloc | Linux glibc 2.24+ x86-32 | Details |
| pypylon-1.7.1-cp36-cp36m-manylinux_2_24_armv7l.whl | CPython 3.6 | CPython 3.6 pymalloc | Linux glibc 2.24+ ARMv7l | Details |
| pypylon-1.7.1-cp36-cp36m-manylinux_2_24_aarch64.whl | CPython 3.6 | CPython 3.6 pymalloc | Linux glibc 2.24+ ARM64 | Details |
| pypylon-1.7.1-cp36-cp36m-macosx_10_14_x86_64.whl | CPython 3.6 | CPython 3.6 pymalloc | macOS 10.14+ x86-64 | Details |
| pypylon-1.7.1-cp35-cp35m-win_amd64.whl | CPython 3.5 | CPython 3.5 pymalloc | Windows x86-64 | Details |
| pypylon-1.7.1-cp35-cp35m-win32.whl | CPython 3.5 | CPython 3.5 pymalloc | Windows x86-32 | Details |
| pypylon-1.7.1-cp34-cp34m-win_amd64.whl | CPython 3.4 | CPython 3.4 pymalloc | Windows x86-64 | Details |
| pypylon-1.7.1-cp34-cp34m-win32.whl | CPython 3.4 | CPython 3.4 pymalloc | Windows x86-32 | Details |
Total release size: 381.0 MB
Release files / pypylon-1.7.1-cp39-cp39-win_amd64.whl
| Download URL | pypylon-1.7.1-cp39-cp39-win_amd64.whl |
|---|---|
| Size | 15.3 MB |
| Tags | CPython 3.9 Windows x86-64 |
|
SHA-256 checksum How to use checksums |
d68b2b9be3b67c73bb0d97e411f892a1fbacba1ba9acc873ab4cd6d165c9c035
|
|
BLAKE2b-256 checksum How to use checksums |
e4b934edd421de8d0bc33aaf8e7a1ef1709c59ea7e665f0c30c314ce34f211b2
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is 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
|
Release files / pypylon-1.7.1-cp39-cp39-win32.whl
| Download URL | pypylon-1.7.1-cp39-cp39-win32.whl |
|---|---|
| Size | 13.3 MB |
| Tags | CPython 3.9 Windows x86-32 |
|
SHA-256 checksum How to use checksums |
3e82d6d6e1f7a296298cea00c5129b22eac4231c3ae183dd1c4707e3583dfe50
|
|
BLAKE2b-256 checksum How to use checksums |
5e39c417030a63f5bbd6446217313d85992b8111dd5e2ab3f4d0ad265dc85cf2
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is 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
|
Release files / pypylon-1.7.1-cp39-cp39-manylinux_2_24_x86_64.whl
| Download URL | pypylon-1.7.1-cp39-cp39-manylinux_2_24_x86_64.whl |
|---|---|
| Size | 9.7 MB |
| Tags | CPython 3.9 Linux glibc 2.24+ x86-64 |
|
SHA-256 checksum How to use checksums |
868b03652a605aa0357a3c473789760e7fc6b51db3578eb25620339b29785cd8
|
|
BLAKE2b-256 checksum How to use checksums |
497cce96ac2e2ff8dedd150cf437635784f35a6dab2ae72ab4cdf60fd28fb907
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is 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
|
Release files / pypylon-1.7.1-cp39-cp39-manylinux_2_24_i686.whl
| Download URL | pypylon-1.7.1-cp39-cp39-manylinux_2_24_i686.whl |
|---|---|
| Size | 9.4 MB |
| Tags | CPython 3.9 Linux glibc 2.24+ x86-32 |
|
SHA-256 checksum How to use checksums |
c4cf6e13653e500936d2b8b279b141d405198165fb7874d2e89cec88408e6c15
|
|
BLAKE2b-256 checksum How to use checksums |
08a476ba5a617a907c4a24079a8a1f10b0e4711eb776e953525dab8a0047a39b
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is 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
|
Release files / pypylon-1.7.1-cp39-cp39-manylinux_2_24_armv7l.whl
| Download URL | pypylon-1.7.1-cp39-cp39-manylinux_2_24_armv7l.whl |
|---|---|
| Size | 7.5 MB |
| Tags | CPython 3.9 Linux glibc 2.24+ ARMv7l |
|
SHA-256 checksum How to use checksums |
d52e43b736b60ef87837ae006460eca0e51a2a74e52e613ca6e06928de16a445
|
|
BLAKE2b-256 checksum How to use checksums |
868bd2956eb535d454466b9b0318e3ad8c89b8f9b3770fe3b15e749493d6cb78
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is 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
|
Release files / pypylon-1.7.1-cp39-cp39-manylinux_2_24_aarch64.whl
| Download URL | pypylon-1.7.1-cp39-cp39-manylinux_2_24_aarch64.whl |
|---|---|
| Size | 9.1 MB |
| Tags | CPython 3.9 Linux glibc 2.24+ ARM64 |
|
SHA-256 checksum How to use checksums |
9af2b36e362be20329b493bdd58ed87daeef31b36f36c88aceec2371194fbc4e
|
|
BLAKE2b-256 checksum How to use checksums |
36ef2f031da9f41ac92b711e2ce34f9344fa0fc9bfbb3224553c41cfc6d859a5
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is 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
|
Release files / pypylon-1.7.1-cp39-cp39-macosx_10_14_x86_64.whl
| Download URL | pypylon-1.7.1-cp39-cp39-macosx_10_14_x86_64.whl |
|---|---|
| Size | 16.8 MB |
| Tags | CPython 3.9 macOS 10.14+ x86-64 |
|
SHA-256 checksum How to use checksums |
e3cb1c88409e37ccea85909ea68b5c1024a3dc067f9c052b1819ee723e9f9a25
|
|
BLAKE2b-256 checksum How to use checksums |
1f2d8dbac2b44c337a1937531c239905ab89fe9a83b4cb0104461277b46923bf
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is 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
|
Release files / pypylon-1.7.1-cp38-cp38-win_amd64.whl
| Download URL | pypylon-1.7.1-cp38-cp38-win_amd64.whl |
|---|---|
| Size | 15.3 MB |
| Tags | CPython 3.8 Windows x86-64 |
|
SHA-256 checksum How to use checksums |
645f0bef0f615d3220b53df9fd18bdd6b503df756f0304ab87f1c2970638d78c
|
|
BLAKE2b-256 checksum How to use checksums |
556ac3fd9a87095df3fb7fb815e714e62c910d66ac02ea803e9aee963ee05562
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is 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
|
Release files / pypylon-1.7.1-cp38-cp38-win32.whl
| Download URL | pypylon-1.7.1-cp38-cp38-win32.whl |
|---|---|
| Size | 13.3 MB |
| Tags | CPython 3.8 Windows x86-32 |
|
SHA-256 checksum How to use checksums |
26e5b9c6ca33db921371e46be960418ce46af370c1a04e310eb3a993a4596f38
|
|
BLAKE2b-256 checksum How to use checksums |
56ecb5b7f8af56570fe537e414ac1aeeac8372e001bedc03e34e61832ce9cbcf
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is 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
|
Release files / pypylon-1.7.1-cp38-cp38-manylinux_2_24_x86_64.whl
| Download URL | pypylon-1.7.1-cp38-cp38-manylinux_2_24_x86_64.whl |
|---|---|
| Size | 9.7 MB |
| Tags | CPython 3.8 Linux glibc 2.24+ x86-64 |
|
SHA-256 checksum How to use checksums |
0eb0bd6d4e28abf0ea6c62d0274c17533543fda5544f393e972f0505610657a7
|
|
BLAKE2b-256 checksum How to use checksums |
5a2d0ed2b3d994a04bb76696554662c6f792e058e5716362240efdb2a3f55658
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is 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
|
Release files / pypylon-1.7.1-cp38-cp38-manylinux_2_24_i686.whl
| Download URL | pypylon-1.7.1-cp38-cp38-manylinux_2_24_i686.whl |
|---|---|
| Size | 9.4 MB |
| Tags | CPython 3.8 Linux glibc 2.24+ x86-32 |
|
SHA-256 checksum How to use checksums |
1487592e6e1e8cc966742d8666061bd2d6ac4b3b33d694260a1000f49b847466
|
|
BLAKE2b-256 checksum How to use checksums |
5900ed839f4bd15e579d8940ebd71afb28e1e388573e4be533b4e4f206c391c1
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is 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
|
Release files / pypylon-1.7.1-cp38-cp38-manylinux_2_24_armv7l.whl
| Download URL | pypylon-1.7.1-cp38-cp38-manylinux_2_24_armv7l.whl |
|---|---|
| Size | 7.5 MB |
| Tags | CPython 3.8 Linux glibc 2.24+ ARMv7l |
|
SHA-256 checksum How to use checksums |
7e4c4eb2750957427d1d2346e4c60055a515cd8dfbe35a947697468702a1a673
|
|
BLAKE2b-256 checksum How to use checksums |
dfa7f702a72c2a1c5d5c15309ed8349d5d7ad3845f5f467ff950894369d1eb40
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is 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
|
Release files / pypylon-1.7.1-cp38-cp38-manylinux_2_24_aarch64.whl
| Download URL | pypylon-1.7.1-cp38-cp38-manylinux_2_24_aarch64.whl |
|---|---|
| Size | 9.1 MB |
| Tags | CPython 3.8 Linux glibc 2.24+ ARM64 |
|
SHA-256 checksum How to use checksums |
5301fba24d5e32fa9d9b4e834f3f2113f5417c2895b4cff7dfb265dd5cf69ca1
|
|
BLAKE2b-256 checksum How to use checksums |
17070e0a9ee346d8f448eee4a6a4d4b23394753710b6f6e7dd1623af31a8b079
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is 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
|
Release files / pypylon-1.7.1-cp38-cp38-macosx_10_14_x86_64.whl
| Download URL | pypylon-1.7.1-cp38-cp38-macosx_10_14_x86_64.whl |
|---|---|
| Size | 16.8 MB |
| Tags | CPython 3.8 macOS 10.14+ x86-64 |
|
SHA-256 checksum How to use checksums |
ddee237d975d279eddc4cc1ccb6553646ce6ef2ef6f4c482f90dfda6c08c35c2
|
|
BLAKE2b-256 checksum How to use checksums |
d354a2a6b6b2bd62fdd7c10150841adbf143601414be296caf4b8e88b9b8ebb1
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is 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
|
Release files / pypylon-1.7.1-cp37-cp37m-win_amd64.whl
| Download URL | pypylon-1.7.1-cp37-cp37m-win_amd64.whl |
|---|---|
| Size | 15.3 MB |
| Tags | CPython 3.7 CPython 3.7 pymalloc Windows x86-64 |
|
SHA-256 checksum How to use checksums |
b03797eea627ba5abff2fbdee4153b0da13fd451b5ea900f3732efac9e7722bb
|
|
BLAKE2b-256 checksum How to use checksums |
c27050300fea3cb6272c3bc3436dda24838e750d6ebda1a51637af43ff09d074
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is 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
|
Release files / pypylon-1.7.1-cp37-cp37m-win32.whl
| Download URL | pypylon-1.7.1-cp37-cp37m-win32.whl |
|---|---|
| Size | 13.3 MB |
| Tags | CPython 3.7 CPython 3.7 pymalloc Windows x86-32 |
|
SHA-256 checksum How to use checksums |
1198a62cb6985e678c4d77b8e3c88f55e9cbf2f190371ccd6efc30fc1509dac9
|
|
BLAKE2b-256 checksum How to use checksums |
49c7ac577d7d875b0ef4adba7a4713d9f9b751a73f6bfe66a5abfdc4006bacde
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is 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
|
Release files / pypylon-1.7.1-cp37-cp37m-manylinux_2_24_x86_64.whl
| Download URL | pypylon-1.7.1-cp37-cp37m-manylinux_2_24_x86_64.whl |
|---|---|
| Size | 9.7 MB |
| Tags | CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.24+ x86-64 |
|
SHA-256 checksum How to use checksums |
4e0bde499eb206f07b7081af19977aee186b882bc449cd01482c6f279a118b4a
|
|
BLAKE2b-256 checksum How to use checksums |
74a5fdea375d726a3ebe5279867d4f6bb7b0cce49411dcdfbb94da8315333757
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is 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
|
Release files / pypylon-1.7.1-cp37-cp37m-manylinux_2_24_i686.whl
| Download URL | pypylon-1.7.1-cp37-cp37m-manylinux_2_24_i686.whl |
|---|---|
| Size | 9.3 MB |
| Tags | CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.24+ x86-32 |
|
SHA-256 checksum How to use checksums |
65ba15f086fb2a8c88723ea1f13785e74828c1d9ee77b6b049a73564d66e24dc
|
|
BLAKE2b-256 checksum How to use checksums |
ad041db472da025d140b9fe9ef3a138aa19c3d8107daec5b2c6a6e42b7d8dd1c
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is 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
|
Release files / pypylon-1.7.1-cp37-cp37m-manylinux_2_24_armv7l.whl
| Download URL | pypylon-1.7.1-cp37-cp37m-manylinux_2_24_armv7l.whl |
|---|---|
| Size | 7.5 MB |
| Tags | CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.24+ ARMv7l |
|
SHA-256 checksum How to use checksums |
ea3a0ad424a09cdef446e9d8581b1c208c3d22bdfdc70f278054566dd6bdbeaa
|
|
BLAKE2b-256 checksum How to use checksums |
2adcb6553095cd28984f9c88a7197cdf44df257c20b88a04f9c106d425f5d1c4
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is 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
|
Release files / pypylon-1.7.1-cp37-cp37m-manylinux_2_24_aarch64.whl
| Download URL | pypylon-1.7.1-cp37-cp37m-manylinux_2_24_aarch64.whl |
|---|---|
| Size | 9.1 MB |
| Tags | CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.24+ ARM64 |
|
SHA-256 checksum How to use checksums |
bfa4434e8167b94b2e5d2f1e7c43d825da70f4313007d7621fafe6b91f1da708
|
|
BLAKE2b-256 checksum How to use checksums |
7caaead1836242a9c06408c1505b9324ca899160d26ac85cd4252a2b62de08d5
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is 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
|
Release files / pypylon-1.7.1-cp37-cp37m-macosx_10_14_x86_64.whl
| Download URL | pypylon-1.7.1-cp37-cp37m-macosx_10_14_x86_64.whl |
|---|---|
| Size | 16.8 MB |
| Tags | CPython 3.7 CPython 3.7 pymalloc macOS 10.14+ x86-64 |
|
SHA-256 checksum How to use checksums |
93ab9b72c68e1440e71257a5a8aa9d8bd5754f204848f482e2eb19713918e7fd
|
|
BLAKE2b-256 checksum How to use checksums |
6a32e69e95c94ff257e004da483a17b81e663a42f8a613bf44c123c15c194acd
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is 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
|
Release files / pypylon-1.7.1-cp36-cp36m-win_amd64.whl
| Download URL | pypylon-1.7.1-cp36-cp36m-win_amd64.whl |
|---|---|
| Size | 15.3 MB |
| Tags | CPython 3.6 CPython 3.6 pymalloc Windows x86-64 |
|
SHA-256 checksum How to use checksums |
04d92d59dcf1b2c8ec95d6de05bb25a708ac10b68b7b84fb37785a9da2ccd5e6
|
|
BLAKE2b-256 checksum How to use checksums |
8c2e12aa72c85129702a396ee7df57535ae145f563a00e82340174d6b9e17ed5
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is 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
|
Release files / pypylon-1.7.1-cp36-cp36m-win32.whl
| Download URL | pypylon-1.7.1-cp36-cp36m-win32.whl |
|---|---|
| Size | 13.3 MB |
| Tags | CPython 3.6 CPython 3.6 pymalloc Windows x86-32 |
|
SHA-256 checksum How to use checksums |
48f790e0392de8200d46122269644c7509abfb0477fb8b2cf4baa034aca39029
|
|
BLAKE2b-256 checksum How to use checksums |
20888564960e6f2b08b049775e8e5677e6abcad3bb0b588c80f0f81aedf1af97
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is 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
|
Release files / pypylon-1.7.1-cp36-cp36m-manylinux_2_24_x86_64.whl
| Download URL | pypylon-1.7.1-cp36-cp36m-manylinux_2_24_x86_64.whl |
|---|---|
| Size | 9.7 MB |
| Tags | CPython 3.6 CPython 3.6 pymalloc Linux glibc 2.24+ x86-64 |
|
SHA-256 checksum How to use checksums |
74fd4a9b000e7b0252e875812830dac7f769231a48fec7c6c4b7635a45deb1da
|
|
BLAKE2b-256 checksum How to use checksums |
fdf0190255a090de7851a310a80c4328174d41b912e420b3ed437881c370b9d0
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is 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
|
Release files / pypylon-1.7.1-cp36-cp36m-manylinux_2_24_i686.whl
| Download URL | pypylon-1.7.1-cp36-cp36m-manylinux_2_24_i686.whl |
|---|---|
| Size | 9.3 MB |
| Tags | CPython 3.6 CPython 3.6 pymalloc Linux glibc 2.24+ x86-32 |
|
SHA-256 checksum How to use checksums |
b48771804a1d57e9e6aabb45568b1c7160fafd64337be20138d77bdd3651534a
|
|
BLAKE2b-256 checksum How to use checksums |
f17ffab17de436e5b2851e924741b75aa8d927f7b4b9880a3d9fd6414bb25cb5
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is 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
|
Release files / pypylon-1.7.1-cp36-cp36m-manylinux_2_24_armv7l.whl
| Download URL | pypylon-1.7.1-cp36-cp36m-manylinux_2_24_armv7l.whl |
|---|---|
| Size | 7.5 MB |
| Tags | CPython 3.6 CPython 3.6 pymalloc Linux glibc 2.24+ ARMv7l |
|
SHA-256 checksum How to use checksums |
e024ff62a4603b2c2077b66ceb8559d1bdc8cb2f37eba1a3490c67f83a073b57
|
|
BLAKE2b-256 checksum How to use checksums |
b03fe6f7364b0fd6eee4f34fc0b7dc98be700b495872e39747d3b7e1d8caaf7d
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is 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
|
Release files / pypylon-1.7.1-cp36-cp36m-manylinux_2_24_aarch64.whl
| Download URL | pypylon-1.7.1-cp36-cp36m-manylinux_2_24_aarch64.whl |
|---|---|
| Size | 9.1 MB |
| Tags | CPython 3.6 CPython 3.6 pymalloc Linux glibc 2.24+ ARM64 |
|
SHA-256 checksum How to use checksums |
987c19762fa758ce19b69fdb7564433cef6851fddeffcbb72d9615a4ea30ed46
|
|
BLAKE2b-256 checksum How to use checksums |
3afd5418d6e97228b68e05a0bc054bd1d8c27e34eca778a254bb2460f546a281
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is 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
|
Release files / pypylon-1.7.1-cp36-cp36m-macosx_10_14_x86_64.whl
| Download URL | pypylon-1.7.1-cp36-cp36m-macosx_10_14_x86_64.whl |
|---|---|
| Size | 16.8 MB |
| Tags | CPython 3.6 CPython 3.6 pymalloc macOS 10.14+ x86-64 |
|
SHA-256 checksum How to use checksums |
cf3d261f987c8c10ed5c39fc7b628a0dc9f0cf96ffde9cf843aff434fb370ed1
|
|
BLAKE2b-256 checksum How to use checksums |
ca8aaa415a36c02b09500b87376b9fe5dd37d9a7c5899e41d9070bcb3b28077d
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is 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
|
Release files / pypylon-1.7.1-cp35-cp35m-win_amd64.whl
| Download URL | pypylon-1.7.1-cp35-cp35m-win_amd64.whl |
|---|---|
| Size | 15.3 MB |
| Tags | CPython 3.5 CPython 3.5 pymalloc Windows x86-64 |
|
SHA-256 checksum How to use checksums |
f62b5c5131d749ab291ebd2f1fb81c57a60dbe2f868b3b95ffc40ff9ef2144c5
|
|
BLAKE2b-256 checksum How to use checksums |
09994ce56c93ba7d7c8661fe6c32d7ab9afc7320bdc766204ecfb4ca1fa2d275
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is 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
|
Release files / pypylon-1.7.1-cp35-cp35m-win32.whl
| Download URL | pypylon-1.7.1-cp35-cp35m-win32.whl |
|---|---|
| Size | 13.3 MB |
| Tags | CPython 3.5 CPython 3.5 pymalloc Windows x86-32 |
|
SHA-256 checksum How to use checksums |
f9bbaa5ae4a1a1a2d2ab9b1d5d1215f01b4c255bb849e23c0c820a82c2fc4e77
|
|
BLAKE2b-256 checksum How to use checksums |
babd6b89a546c8daf011be6128a2ad4a91d761d34d287ccc104668af8cd2511b
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is 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
|
Release files / pypylon-1.7.1-cp34-cp34m-win_amd64.whl
| Download URL | pypylon-1.7.1-cp34-cp34m-win_amd64.whl |
|---|---|
| Size | 15.3 MB |
| Tags | CPython 3.4 CPython 3.4 pymalloc Windows x86-64 |
|
SHA-256 checksum How to use checksums |
9ca46d89f8d2e27a0b934d61ccbcd13109335c873452a0cef7970c2d9417b6ae
|
|
BLAKE2b-256 checksum How to use checksums |
a41ce284d7f6679389557c03d61c35f2af803b0f8868c5f560abdb9f26c0b4f5
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is 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
|
Release files / pypylon-1.7.1-cp34-cp34m-win32.whl
| Download URL | pypylon-1.7.1-cp34-cp34m-win32.whl |
|---|---|
| Size | 13.2 MB |
| Tags | CPython 3.4 CPython 3.4 pymalloc Windows x86-32 |
|
SHA-256 checksum How to use checksums |
4eb4b6b91b92b3362d14127e56ded25fad5696963de9931d5110e6be654c701e
|
|
BLAKE2b-256 checksum How to use checksums |
d416052a159364ec88ccddbdc5d860d114c642c4b16a315e82fa54822664a9a0
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is 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
|