Metadata-Version: 2.1
Name: blobster
Version: 0.0.2
Summary: A convenient way to manage your Azure Data Storage with Python.
Home-page: https://github.com/tkanngiesser/blobster
Author: Tino Kanngiesser
Author-email: tinokanngiesser@gmail.com
License: Apache Software License 2.0
Keywords: Azure Blob Storage data managing
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Natural Language :: English
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Requires-Python: >=3.6
Description-Content-Type: text/markdown
Requires-Dist: pandas
Requires-Dist: fastcore
Requires-Dist: azure-storage-blob (==2.1.0)

# Blobster
> A convenient way to manage your Azure Data Storage with Python.


## Install

`pip install blobster`

## How to use

### Loading credentials
Edit the `blob_storage_credentials.json` and enter your blob storage `account` and `key` information.

```python
azure_blob_storage = AzureBlobStorage(credential_file='blob_storage_credentials.json')
```

### Connnect to Azure Blob Storage
Once the credentials have been loaded with `load_credentials` 
a connection can be established by calling the `connect`method.

```python
azure_blob_storage.connect()
```


