Metadata-Version: 2.4
Name: fast-pixel
Version: 1.0.1
Summary: A highly optimised, cross-platform mouse position and pixel color reader
Author-email: Leo Frachet <leofrachet1@gmail.com>
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: MacOS
Classifier: Operating System :: Microsoft :: Windows
Requires-Python: >=3.7
Description-Content-Type: text/markdown
Requires-Dist: pyobjc>=9.0; sys_platform == "darwin"

# Fast Pixel Scanner

A highly optimized, cross-platform mouse position and pixel color reader for Windows and macOS.

## Installation

```bash
pip install fast-pixel
```

## Usage

```python
import fast_pixel
import time

while True:
    x, y = fast_pixel.get_position()
    r, g, b = fast_pixel.get_color(x, y)
    print(f'X: {x} Y: {y} | RGB: {r}, {g}, {b}', end = '\r')
    time.sleep(0.1)
```
