File tree Expand file tree Collapse file tree 2 files changed +36
-5
lines changed Expand file tree Collapse file tree 2 files changed +36
-5
lines changed Original file line number Diff line number Diff line change 2
2
from postgrest import APIResponse as PostgrestAPIResponse
3
3
from storage3 .utils import StorageException
4
4
5
+ # Version
5
6
from .__version__ import __version__
7
+
8
+ # Async Client
9
+ from ._async .auth_client import AsyncSupabaseAuthClient as ASupabaseAuthClient
10
+ from ._async .client import AsyncClient as AClient
11
+ from ._async .client import AsyncStorageClient as ASupabaseStorageClient
12
+ from ._async .client import ClientOptions as AClientOptions
13
+ from ._async .client import create_client as acreate_client
14
+
15
+ # Sync Client
6
16
from ._sync .auth_client import SyncSupabaseAuthClient as SupabaseAuthClient
7
17
from ._sync .client import ClientOptions
8
18
from ._sync .client import SyncClient as Client
9
19
from ._sync .client import SyncStorageClient as SupabaseStorageClient
10
20
from ._sync .client import create_client
21
+
22
+ # Realtime Client
11
23
from .lib .realtime_client import SupabaseRealtimeClient
12
24
13
25
__all__ = [
26
+ "acreate_client" ,
27
+ "AClient" ,
28
+ "ASupabaseAuthClient" ,
29
+ "ASupabaseStorageClient" ,
14
30
"create_client" ,
15
31
"Client" ,
16
32
"SupabaseAuthClient" ,
Original file line number Diff line number Diff line change 2
2
from postgrest import APIResponse as PostgrestAPIResponse
3
3
from storage3 .utils import StorageException
4
4
5
+ # Version
5
6
from .__version__ import __version__
7
+
8
+ # Async Client
9
+ from ._async .auth_client import AsyncSupabaseAuthClient
10
+ from ._async .client import AsyncClient
11
+ from ._async .client import AsyncStorageClient as AsyncSupabaseStorageClient
12
+ from ._async .client import create_client as create_async_client
13
+
14
+ # Sync Client
6
15
from ._sync .auth_client import SyncSupabaseAuthClient as SupabaseAuthClient
7
- from ._sync .client import ClientOptions
8
16
from ._sync .client import SyncClient as Client
9
17
from ._sync .client import SyncStorageClient as SupabaseStorageClient
10
18
from ._sync .client import create_client
19
+
20
+ # Lib
21
+ from .lib .client_options import ClientOptions
11
22
from .lib .realtime_client import SupabaseRealtimeClient
12
23
13
24
__all__ = [
14
- "PostgrestAPIError" ,
15
- "PostgrestAPIResponse" ,
16
- "StorageException" ,
25
+ "AsyncSupabaseAuthClient" ,
26
+ "create_async_client" ,
27
+ "AsyncClient" ,
28
+ "AsyncSupabaseStorageClient" ,
17
29
"SupabaseAuthClient" ,
18
- "__version__" ,
19
30
"create_client" ,
20
31
"Client" ,
21
32
"ClientOptions" ,
22
33
"SupabaseStorageClient" ,
23
34
"SupabaseRealtimeClient" ,
35
+ "PostgrestAPIError" ,
36
+ "PostgrestAPIResponse" ,
37
+ "StorageException" ,
38
+ "__version__" ,
24
39
]
You can’t perform that action at this time.
0 commit comments