Metadata-Version: 2.1
Name: auto-scroller
Version: 0.1.2
Summary: A package for detecting hand gestures to control scrolling.
Home-page: https://github.com/neelpopat242/auto-scroller
Author: Neel Popat
Author-email: neelpopat242@gmail.com
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: opencv-python
Requires-Dist: mediapipe
Requires-Dist: pyautogui

# Auto Scroller

**Auto Scroller** is a Python library for controlling screen scrolling using hand gestures. It leverages a webcam to track hand movements, detect the number of fingers raised, and scroll the screen accordingly.

---

## Features

- **Real-time Hand Tracking**: Uses MediaPipe for efficient hand tracking.
- **Gesture-Based Scrolling**:
  - **Two fingers raised**: Scrolls up.
  - **One finger raised**: Scrolls down.
- **Plug-and-Play**: Simply run the example script or integrate the library into your project.

---

## Installation

Install the library using pip:

```bash
pip install auto_scroller
```
