s3fs - PyPI
https://pypi.org/project/s3fs01.11.2021 · Project description. S3FS builds on aiobotocore to provide a convenient Python filesystem interface for S3. View the documentation for s3fs. Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
aiobotocore - PyPI
https://pypi.org/project/aiobotocore14.12.2021 · Due to the way boto3 is implemented, its highly likely that even if services are not listed above that you can take any boto3.client(‘service’) and stick await infront of methods to make them async, e.g. await client.list_named_queries() would asynchronous list all of the named Athena queries.. If a service is not listed here and you could do with some tests or examples …
aiobotocore 1.1.2 on PyPI - Libraries.io
https://libraries.io/pypi/aiobotocore01.07.2016 · aiobotocore. Async client for amazon services using botocore and aiohttp / asyncio. Main purpose of this library to support amazon s3 api, but other services should work (may be with minor fixes). For now we have tested only upload/download api for s3, other users report that SQS and Dynamo services work also.
aiobotocore’s documentation! — aiobotocore 2.0.1 ...
https://aiobotocore.readthedocs.ioimport asyncio from aiobotocore.session import get_session AWS_ACCESS_KEY_ID = "xxx" AWS_SECRET_ACCESS_KEY = "xxx" async def go (): bucket = 'dataintake' filename = 'dummy.bin' folder = 'aiobotocore' key = f ' {folder} / {filename} ' session = get_session async with session. create_client ('s3', region_name = 'us-west-2', aws_secret_access_key ...