forked from supabase/storage-py
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathclient.py
60 lines (48 loc) · 1.55 KB
/
client.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
from __future__ import annotations
from storage3.constants import DEFAULT_TIMEOUT
from ..utils import AsyncClient, __version__
from .bucket import AsyncStorageBucketAPI
from .file_api import AsyncBucketProxy
__all__ = [
"AsyncStorageClient",
]
class AsyncStorageClient(AsyncStorageBucketAPI):
"""Manage storage buckets and files."""
def __init__(
self,
url: str,
headers: dict[str, str],
timeout: int = DEFAULT_TIMEOUT,
verify: bool = True,
) -> None:
headers = {
"User-Agent": f"supabase-py/storage3 v{__version__}",
**headers,
}
self.session = self._create_session(url, headers, timeout, verify)
super().__init__(self.session)
def _create_session(
self, base_url: str, headers: dict[str, str], timeout: int, verify: bool = True
) -> AsyncClient:
return AsyncClient(
base_url=base_url,
headers=headers,
timeout=timeout,
verify=bool(verify),
follow_redirects=True,
http2=True,
)
async def __aenter__(self) -> AsyncStorageClient:
return self
async def __aexit__(self, exc_type, exc, tb) -> None:
await self.aclose()
async def aclose(self) -> None:
await self.session.aclose()
def from_(self, id: str) -> AsyncBucketProxy:
"""Run a storage file operation.
Parameters
----------
id
The unique identifier of the bucket
"""
return AsyncBucketProxy(id, self._client)