Metadata-Version: 2.4
Name: plugnmeet-sdk
Version: 1.0.2
Summary: Pythonic SDK for PlugNmeet meeting platform
Author-email: vector-mj <mj.hosseini.dev@gmail.com>
Project-URL: Homepage, https://github.com/vector-mj/plugnmeet-sdk
Classifier: Development Status :: 5 - Production/Stable
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3.10
Requires-Python: >=3.8
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: aiohttp>=3.12.0
Requires-Dist: attrs>=25.3.0
Dynamic: license-file

# PlugNMeet SDK

A Pythonic SDK for `PlugNMeet` meeting platform

## Installation

```sh
pip install plugnmeet-sdk
```

## Implemented:

| Functionality         | Implemented | Example                                         |
| --------------------- | :-----------: | :-----------------------------------------------: |
| Create room           | ✅          | [Link](./examples/CreateRoom.py)                |
| Join room             | ✅          | [Link](./examples/GetJoinToken.py)              |
| Room status           | ✅          | [Link](./examples/IsRoomActive.py)              |
| Get active room info  | ✅          | [Link](./examples/GetActiveRoomInfo.py)         |
| Get active rooms info | ✅          | [Link](./examples/GetActiveRoomsInfo.py)        |
| Fetch past rooms info | ✅          | [Link](./examples/FetchPastRoomsInfo.py)        |
| End room              | ✅          | [Link](./examples/EndRoom.py)                   |
| Fetch recordings      | ✅          | [Link](./examples/FetchRecordings.py)           |
| Recording info        | ✅          | [Link](./examples/RecordingInfo.py)             |
| Download recording    | ✅          | [Link](./examples/GetRecordingDownloadToken.py) |
| Delete recording      | ✅          | [Link](./examples/DeleteRecordings.py)          |
| Fetch analytics       | ✅          | [Link](./examples/FetchAnalytics.py)            |
| Download analytics    | ✅          | [Link](./examples/GetAnalyticsDownloadToken.py) |
| Delete analytics      | ✅          | [Link](./examples/DeleteAnalytics.py)           |
| Get client files      | ✅          | [Link](./examples/GetClientFiles.py)            |
