Metadata-Version: 2.2
Name: ufsdk
Version: 0.1.0
Summary: UCloud UFile SDK for Python
Home-page: https://github.com/benakaben10/ufsdk
Author: Ben
Author-email: benluu.fpt@gmail.com
Classifier: Programming Language :: Python :: 3
Classifier: Operating System :: OS Independent
Requires-Python: >=3.7
Description-Content-Type: text/markdown
Dynamic: author
Dynamic: author-email
Dynamic: classifier
Dynamic: description
Dynamic: description-content-type
Dynamic: home-page
Dynamic: requires-python
Dynamic: summary

# ufsdk

A lightweight SDK for signing UCloud UFile presigned URLs (GET, PUT).

## Example

```python
from ufsdk import UCloudClient
client = UCloudClient(...)
url = client.gen_presigned_get_url("myfile.txt", timedelta(hours=1))
```
