Skip to content

Commit cd2fbb9

Browse files
feat(files): add support for Files API (personal and shared spaces) (#46)
* feat(files): add support for Files API (personal and shared spaces) * feat(files): add unit tests
1 parent 9f2fc6d commit cd2fbb9

File tree

6 files changed

+908
-3
lines changed

6 files changed

+908
-3
lines changed

singlestoredb/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
DataError, ManagementError,
2626
)
2727
from .management import (
28-
manage_cluster, manage_workspaces,
28+
manage_cluster, manage_workspaces, manage_files,
2929
)
3030
from .types import (
3131
Date, Time, Timestamp, DateFromTicks, TimeFromTicks, TimestampFromTicks,

singlestoredb/management/__init__.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
#!/usr/bin/env python
22
from .cluster import manage_cluster
3+
from .files import manage_files
34
from .manager import get_token
45
from .workspace import get_organization
56
from .workspace import get_secret

0 commit comments

Comments
 (0)