Metadata-Version: 2.4
Name: peerpyrtc
Version: 0.1.5
Summary: A Python-based WebRTC signaling and data channel library
Author-email: Sagnik <sagnify2022@gmail.com>
License: MIT
Requires-Python: >=3.10
Description-Content-Type: text/markdown
Requires-Dist: aiortc>=1.5.0

# PeerPy

PeerPy is a Python library that makes building WebRTC datachannel apps simple.  
It provides signaling, room management, and integration with aiortc.

## Installation

```
pip install peerpy
```
## Usage

```
from peerpy import Room

room = Room("myroom")

# add peers, manage datachannels, etc.
```


## License

This project is open-sourced under the MIT License. See the [LICENSE](LICENSE) file for details.

