Skip to content

Latest commit

 

History

History
11 lines (8 loc) · 231 Bytes

README.md

File metadata and controls

11 lines (8 loc) · 231 Bytes

AWS Python Utils

It is only S3 utilities for now

from aws.s3 import Bucket

async def main():
    bucket = Bucket('mybucket')
    await bucket.upload_file('/path/to/my/localfile.txt', 'localfile_in_bucket.txt')