Metadata-Version: 2.3
Name: arcane-storage
Version: 0.4.6
Summary: 
Author: Arcane
Author-email: product@wearcane.com
Requires-Python: >=3.7,<4.0
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Requires-Dist: arcane-core (>=1.6,<2.0)
Requires-Dist: backoff (>=1.10.0)
Requires-Dist: google-cloud-storage (>=2.7,<3.0)
Description-Content-Type: text/markdown

# Arcane Storage

This package is base on [google-cloud-storage](https://pypi.org/project/google-cloud-storage/).

## Get Started

```sh
pip install arcane-storage
```

## Example Usage

```python
from arcane import storage
client = storage.Client()

blobs = client.list_blobs('bucket-id-here')
```

or

```python
from arcane import storage

# Import your configs
from configure import Config

client = storage.Client.from_service_account_json(Config.KEY, project=Config.GCP_PROJECT)

blobs = client.list_blobs('bucket-id-here')
```

