Metadata-Version: 2.4
Name: pyrend
Version: 0.1.4
Summary: Audio/video overlay, recording, input automation, and window/file management utilities
Author-email: Caleb Keenan <caleb.keenan145@gmail.com>
License: MIT License
        
        Copyright (c) 2025 Caleb Keenan
        
        Permission is hereby granted, free of charge, to any person obtaining a copy
        of this software and associated documentation files (the "Software"), to deal
        in the Software without restriction, including without limitation the rights
        to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
        copies of the Software, and to permit persons to whom the Software is
        furnished to do so, subject to the following conditions:
        
        The above copyright notice and this permission notice shall be included in
        all copies or substantial portions of the Software.
        
        THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
        IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
        FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
        AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
        LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
        OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
        THE SOFTWARE.
        
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.8
Classifier: Topic :: Multimedia :: Sound/Audio
Classifier: Topic :: Software Development :: Libraries
Classifier: Topic :: Utilities
Requires-Python: >=3.8
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: PyQt5>=5.15
Requires-Dist: opencv-python>=4.5
Requires-Dist: sounddevice>=0.4.7
Requires-Dist: numpy>=1.24
Requires-Dist: soundfile>=0.11
Requires-Dist: librosa>=0.10
Requires-Dist: moviepy>=2.0
Requires-Dist: pygetwindow>=0.0.9
Requires-Dist: requests>=2.28
Requires-Dist: Pillow>=9.0
Requires-Dist: mss>=7.0
Requires-Dist: pywin32>=311
Provides-Extra: dev
Requires-Dist: pytest>=7.0; extra == "dev"
Requires-Dist: flake8>=5.0; extra == "dev"
Requires-Dist: build; extra == "dev"
Requires-Dist: twine; extra == "dev"
Dynamic: license-file

# PyRend

**PyRend** is a Python library for rendering invisible overlays on top of the desktop. It allows you to draw shapes, images, video, and text over any running application, including windowed or borderless windowed games, without showing a visible window or stealing focus.

It also includes support for playing and recording audio, handling video playback, and capturing/controlling keyboard input. PyRend is designed for scenarios where you want full control over what is drawn on screen, without creating a traditional GUI application, plus many more features.

You can check out the PyRend documentation [here](https://pyrend.readthedocs.io/en/latest/).

---

## Features

- Draw shapes (rectangles, circles, lines) and text over the screen
- Render images and video into the overlay
- Invisible overlay window that is always on top and does not appear in the taskbar or alt-tab list
- Keyboard input handling (e.g., listen for keypresses globally)
- Control keyboard and mouse input via simple functions
- Play and record sound
- Works in borderless windowed mode across most applications

---

## Installation

```bash
pip install pyrend
