Metadata-Version: 2.1
Name: raspberry-epaper
Version: 1.0.0
Summary: A tool to easily use waveshare's e-paper module with Raspberry Pi
Home-page: https://github.com/yskoht/raspberry-epaper
License: MIT
Author: yskoht
Author-email: ysk.oht@gmail.com
Requires-Python: >=3.7,<4.0
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Requires-Dist: Pillow (>=8.4.0,<9.0.0)
Requires-Dist: python-box (>=5.4.1,<6.0.0)
Requires-Dist: qrcode (>=7.3.1,<8.0.0)
Requires-Dist: typer (>=0.4.0,<0.5.0)
Requires-Dist: waveshare-epaper (>=1.0.3,<2.0.0)
Project-URL: Repository, https://github.com/yskoht/raspberry-epaper
Description-Content-Type: text/markdown

# Raspberry e-paper utility

A tool to easily use waveshare's e-paper module with Raspberry Pi.

## Install

```sh
pip install raspberry-epaper
```

## Usage

### print

Display the image file.

```sh
# For example, when using 7.5inch e-Paper HAT
$ epaper print --device="epd7in5" picture.png
```

Randomly display the image file in a directory.

```sh
$ epaper print --device="epd7in5" directory
```

Display a text file.

```sh
$ epaper print --device="epd7in5" sentence.txt
```

Overlay the QR code on the image.

```sh
$ epaper print --device="epd7in5" --qr="information about the picture" picture.png
```

### version

Show version.

```sh
$ epaper version
0.1.0
```

## License

This software is released under the MIT License, see LICENSE.
Fonts are licensed under the SIL Open Font License, Version 1.1.

