Metadata-Version: 2.1
Name: blobster
Version: 0.0.1
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
Description: # Blobster
        > A convenient way to manage your Azure Data Storage with Python.
        
        
        ```python
        %load_ext autoreload
        %autoreload 2
        ```
        
        ## 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()
        ```
        
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
