A async aliyun OSS library.
Project description
Based on aiohttp and oss2, Require python3.6+
Installing
pip install asyncoss
Getting started
import asyncoss import asyncio endpoint = 'http://oss-cn-beijing.aliyuncs.com' auth = asyncoss.Auth('<Your AccessKeyID>', '<Your AccessKeySecret>') async def main(): # The object key in the bucket is story.txt async with asyncoss.Bucket(auth, endpoint, '<your bucket name>') as bucket: key = 'story.txt' # Upload await bucket.put_object(key, 'Ali Baba is a happy youth.') # Download result = await bucket.get_object(key) await result.resp.read() # Delete await bucket.delete_object(key) loop = asyncio.get_event_loop() loop.run_until_complete(main())
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Filename, size | File type | Python version | Upload date | Hashes |
---|---|---|---|---|
Filename, size asyncoss-0.0.4-py3-none-any.whl (25.5 kB) | File type Wheel | Python version py3 | Upload date | Hashes View |
Filename, size asyncoss-0.0.4.tar.gz (23.0 kB) | File type Source | Python version None | Upload date | Hashes View |