Metadata-Version: 2.4
Name: lecloud-python
Version: 1.0.5
Summary: Python SDK for LeCloud.
Author-email: ricer0ll <brianle17360@gmail.com>
License-Expression: MIT
Requires-Python: >=3.10
Description-Content-Type: text/markdown
Requires-Dist: requests>=2.34.2

# LeCloud Python SDK

Python SDK for LeCloud.  

Installation:  
```bash
pip install lecloud-python
```  

Usage example:  
```python
from lecloud import Credentials, LeCloudClient

credentials = Credentials("example@email.com", "yourpass", "uuidgoeshere")
client = LeCloudClient(credentials, "apikeygoeshere")

try:
    secret = client.get_secret("uuidgoeshere")
    print(secret)
except Exception as e:
    print(e)
```
