Metadata-Version: 2.1
Name: cloud-mappings
Version: 0.1.4
Summary: MutableMapping interfaces for common cloud storage providers
Home-page: https://github.com/JJ11teen/cloud-mappings
Author: Lucas Sargent
Author-email: lucas.sargent@eliiza.com.au
License: UNKNOWN
Project-URL: Bug Tracker, https://github.com/JJ11teen/cloud-mappings/issues
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.7
Description-Content-Type: text/markdown

# cloud-mappings
MutableMapping interfaces for common cloud storage providers

For now only, `AzureBlobMapping` is implemented.

## Installation

with pip:
```
pip install cloud-mappings
```

## Basic Usage

AzureBlobMapping:
```python
from cloudmappings import AzureBlobMapping

mutable_mapping = AzureBlobMapping(
    account_url="AZURE_BLOB_STORAGE_URL",
    container_name="CONTAINER_NAME",
    credential=AZURE_CREDENTIAL_OBJECT,
)
```


[![Code style: black](https://img.shields.io/badge/code%20style-black-000000.svg)](https://github.com/psf/black)

