Metadata-Version: 2.3
Name: ximea-py
Version: 4.27.13.2
Summary: XIMEA camera API
Author: Jacob Feder
Author-email: jacobsfeder@gmail.com
Requires-Python: >=3.7,<4.0
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Project-URL: Repository, https://github.com/jacobfeder/ximea-py
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 their page](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. Windows support was added too by including xiAPI's Windows libraries.

# Prerequisites

## Windows

1. Download and install [XIMEA Windows Software Package](https://www.ximea.com/support/wiki/apis/XIMEA_Windows_Software_Package)
2. Make sure the camera is connected and recognized in xiCOP (XIMEA CameraControl Tool)

## Linux

1. Download and install [XIMEA Linux Software Package](https://www.ximea.com/support/wiki/apis/XIMEA_Linux_Software_Package)
2. Add users that will use the camera to the "plugdev" group:

    ```bash
    sudo usermod -aG plugdev <myuser>
    ```

# Installation

Install with:

```bash
pip install ximea-py
```

and use like so:

```python
import ximea.xiapi

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

