This is a python library for wrapping s3 and wabs blob storage through a common interface.
The project is configured to be tested with local docker environment by default, which requires docker installed on the system. On MacOS, docker can be installed with brew cask install docker
, which installs Docker for Mac and docker-compose
utility required for testing. Local tests then can be performed with make test
which setups a tox environment with required pytest plugins and fetches required docker images from docker-hub.
To test various cloud storages, setup following env variables and make test_cloud
WABS_ACCOUNT_NAME
WABS_CONTAINER_NAME
WABS_SAS_TOKEN
S3_AWS_KEY
S3_AWS_SECRET
S3_BUCKET_NAME
- Implement a
download_file_obj
similar toupload_file_obj
function - Configurable
connect_timeout
andread_timeout
for connections