Metadata-Version: 2.1
Name: ximea-py
Version: 4.27.2
Summary: XIMEA camera API
Author: Jacob Feder
Author-email: jacobsfeder@gmail.com
Requires-Python: >=3.9,<4.0
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Description-Content-Type: text/markdown

# ximea-py

This module provides a python interface to XIMEA cameras. It is simply a repackaging of XIMEA's python drivers available at https://www.ximea.com/downloads/recent/XIMEA_Linux_SP.tgz (package/api/Python/v3/ximea) in order to allow for easier installation with pip, e.g. into virtual or conda environments.

# Installation

On Linux, add users that will use the camera to the "plugdev" group:

`sudo usermod -aG plugdev <myuser>`

Install with:

`pip install git+https://github.com/jacobfeder/ximea-py.git`

and use like so:

```
import ximea.xiapi

ximea.xiapi.Camera()
...
```

