Metadata-Version: 2.1
Name: viazoom
Version: 0.1.4
Classifier: Programming Language :: Rust
Classifier: Programming Language :: Python :: Implementation :: CPython
Classifier: Programming Language :: Python :: Implementation :: PyPy
Author: Spencer Neveux <spencer.neveux@viasat.com>
Author-email: Spencer Neveux <spencer.neveux@viasat.com>
Requires-Python: >=3.7
Description-Content-Type: text/markdown; charset=UTF-8; variant=GFM

# ViaZoom

An API wrapper for Zoom.

## Installation

Install viazoom with pip

```bash
  pip install viazoom
```

## Usage/Examples

```python
from viazoom import ZoomOAuthClient

client = ZoomOAuthClient(account_id="YOUR_ACCOUNT_ID", client_id="YOUR_CLIENT_ID", client_secret="YOUR_CLIENT_SECRET")
access_token = client.get_access_token()
print(access_token)
```

