s3fs is a convenient Python filesystem-like interface for S3, built on top of botocore. To access S3 using asyncio, aiobotocore is an alternative to botocore. Is it possible to use s3fs with asyncio/aiobotocore rather than vanilla botocore?
My use case is that I need to collect three items: one is coming from a tape archive, one from S3, and one is calculated with CPU. They all take 10-30 minutes but concurrency should be possible here.