Metadata-Version: 2.4
Name: blob-service-toolcase
Version: 0.1.0
Summary: Lightweight utility for loading text data from Azure Blob Storage.
Author-email: Shibendra Bhattacharjee <shibendra.b@nihilent.com>
License: MIT
Requires-Python: >=3.10
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: azure-storage-blob>=12.0.0
Dynamic: license-file

# blob-service-toolcase

A lightweight and developer-friendly utility for loading text data from Azure Blob Storage.

---

## Installation

```bash
pip install blob-service-toolcase
```

## Usage

```python
from blob_service_toolcase import BlobLoader

loader = BlobLoader("AZURE_STORAGE_CONNECTION_STRING")

content = loader.load_text(
    container="my-container",
    blob="config.json"
)

print(content)
```
