Metadata-Version: 2.1
Name: raspi_tools
Version: 1.0.2
Summary: A Python library for Raspberry Pi tools including GPS and board LED utilities.
Author: Elijah M
Author-email: gichiam22@gmail.com
Classifier: Programming Language :: Python :: 3
Classifier: Operating System :: POSIX :: Linux
Classifier: Topic :: System :: Hardware :: Hardware Drivers
Description-Content-Type: text/markdown
Requires-Dist: gps
Requires-Dist: tinydb

# raspi-tools

A Python library for managing Raspberry Pi tools such as GPS for neo6 and other tools.

## Features

- GPS data management (fetch, save, and query GPS data)
- GPIO control for Raspberry Pi board LEDs
- Modular and extendable design

## Installation

```bash
pip install raspi-tools
```

## Usage

```bash
from raspi_tools import GPSManager

gps_manager = GPSManager()
gps_manager.run()

```
