Metadata-Version: 2.4
Name: raspi-gpio
Version: 0.1.10
Summary: RPi.GPIO wrapper with mocks for developmennt on any platform
License: MIT
License-File: LICENSE
Keywords: raspberry-pi,gpio,rpi,rpi-gpio,RPi.GPIO
Author: Mark Parker
Author-email: mark@parker-programs.com
Requires-Python: >=3.10,<4.0
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Classifier: Programming Language :: Python :: 3.14
Requires-Dist: rpi-gpio (>=0.7.1,<0.8.0) ; sys_platform == "linux"
Requires-Dist: spidev (>=3.6,<4.0) ; sys_platform == "linux"
Project-URL: Documentation, https://github.com/MarkParker5/raspi-gpio/blob/master/README.md
Project-URL: Homepage, https://pypi.org/project/raspi-gpio/
Project-URL: Repository, https://github.com/MarkParker5/raspi-gpio
Description-Content-Type: text/markdown

<!-- flagship → markparker.me -->
<a href="https://markparker.me" target="_blank">
  <picture>
    <source
      media="(prefers-color-scheme: dark)"
      srcset="https://markparker.me/banners/flagship-dark.webp"
    />
    <img
      alt="A Mark Parker project — see more at markparker.me"
      src="https://markparker.me/banners/flagship-light.webp"
    />
  </picture>
</a>

<!-- coffee -->
<a href="https://buymeacoffee.com/markparker5" target="_blank">
  <picture>
    <source
      media="(prefers-color-scheme: dark)"
      srcset="https://markparker.me/banners/coffee-dark.webp"
    />
    <img
      alt="Did this solve your problem? If it saved your time, you owe me a coffee"
      src="https://markparker.me/banners/coffee-light.webp"
    />
  </picture>
</a>

# raspi-gpio
RPi.GPIO and spidev wrapper with mocks for developmennt on any platform

# Installation
```sh
pip install raspi-gpio
```

# Usage
Replace
```python
import RPi.GPIO as GPIO
from spidev import SpiDev
```
with
```python
from raspi_gpio import GPIO, SpiDev
```

