Metadata-Version: 2.1
Name: storage3
Version: 0.3.0
Summary: Supabase Storage client for Python.
Home-page: https://github.com/supabase-community/storage-py
License: MIT
Author: Joel Lee
Author-email: joel@joellee.org
Requires-Python: >=3.7,<4.0
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
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
Requires-Dist: httpx (>=0.19,<0.22)
Requires-Dist: typing-extensions (>=4.2.0,<5.0.0)
Project-URL: Documentation, https://github.com/supabase-community/storage-py
Project-URL: Repository, https://github.com/supabase-community/storage-py
Description-Content-Type: text/markdown

# Storage-py

Python Client library to interact with Supabase Storage.



## How to use

As it takes some effort to get the headers. We suggest that you use the storage functionality through the main [Supabase Python Client](https://github.com/supabase-community/supabase-py)


```python3
from storage3 import create_client

url = "https://<your_supabase_id>.supabase.co/storage/v1"
key = "<your api key>"

# pass in is_async=True to create an async client
storage_client = create_client(url, key, is_async=False)

storage_client.list_buckets()
```

