REPOSITORY OVERVIEWLive repository statistics
★ 52Stars
⑂ 34Forks
◯ 27Open issues
◉ 52Watchers
34/100
OPENREPOHUB HEALTH SIGNALLimited signals
A transparent discovery signal based on current public GitHub metadata.
Recent activity35% weight
10 Community adoption25% weight
35 Maintenance state20% weight
40 License clarity10% weight
100 Project information10% weight
35 This score does not audit code, security, maintainers, documentation quality, or suitability. Verify the repository and its current documentation before adoption.
README preview
PyPylon
An experimental python wrapper around the Basler Pylon 5 library.
Its initial ideas were inspired by the python-pylon which is also a cython based wrapper around the Basler pylon library.
However, in contrast to python-pylon this code directly instanciates the Pylon C++ classes inside the cython code instead of adding another C++ abstraction layer. In addition it tries to automagically configure your build environment and to provide you with a PEP8 conform pythonic access to your camera.
While the basic code seems to work, I'd like to point out, that it still in early alpha stage. You will probably stumble over bugs.
Current TODO list and development targets
Simple usage example
>>> import pypylon
>>> pypylon.pylon_version.version
'5.0.1.build_6388'
>>> available_cameras = pypylon.factory.find_devices()
>>> available_cameras
[<DeviceInfo Basler acA2040-90um (xxxxxxx)>]
>>> cam = pypylon.factory.create_device(available_cameras[0])
>>> cam.opened
False
>>> cam.open()
>>> cam.properties['ExposureTime']
10000.0
>>> cam.properties['ExposureTime'] = 1000
>>> # Go to full available speed
... cam.properties['DeviceLinkThroughputLimitMode'] = 'Off'
>>>
>>> import matplotlib.pyplot as plt
>>> for image in cam.grab_images(1):
... plt.imshow(image)
... plt.show()
ALGORITHMICALLY RELATEDSimilar Open-Source Projects
Selected from shared topics, language and repository description—not editorial ratings.
Single Underwater Image Enhancement and Color Restoration, which is Python implementation for a comprehensive review paper "An Experimental-based Review of Image Enhancement and Image Restoration Methods for Underwater Imaging"
73/100 healthRecently updatedActive repository
PythonNo license
⑂ 157 forks◯ 4 issuesUpdated 3 days ago
An experimental Python-to-C transpiler and domain specific language for embedded high-performance computing
73/100 healthActive repository
PythonBSD-2-Clause#c#compiler#domain-specific-language#embedded-systems
⑂ 34 forks◯ 7 issuesUpdated Jun 14, 2026