Metadata-Version: 2.1
Name: Zoom-py-client
Version: 0.2.0
Summary: A python zoom client for generating links using python
Home-page: https://github.com/your_username/your_package
Author: Kaleb Abiy
Author-email: kalebabiy2012@gmail.com
License: MIT
Keywords: Python,Zoom,Meeting,Link,Meeting Link
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Requires-Python: >=3.8
Description-Content-Type: text/markdown

# Python Zoom client

## what does this package do

- Authenticate Zooom Credentials
- Generate Zoom link

## Quick Start

```
$pip install Zoom-py-client
```

```
from client import Client

client_instance = Client()
```

## Methods

1. `set_account_id(account_id: str)`
2. `set_client_id(client_id: str)`
3. `set_client_secret(client_secret: str)`
4. `authenticate()`
5. `set_date(date: str)`
6. `set_time(time: str)`
7. `set_topic(topic: str)`
8. `generate_link()`

## License

Usage is provided under the [MIT License](http://opensource.org/licenses/mit-license.php). See LICENSE for the full details.

