Skip to content

Commit

Permalink
feat(files): add support for Files API (personal and shared spaces) (#46
Browse files Browse the repository at this point in the history
)

* feat(files): add support for Files API (personal and shared spaces)

* feat(files): add unit tests
  • Loading branch information
nunogoncalves03 authored Dec 2, 2024
1 parent 9f2fc6d commit cd2fbb9
Show file tree
Hide file tree
Showing 6 changed files with 908 additions and 3 deletions.
2 changes: 1 addition & 1 deletion singlestoredb/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
DataError, ManagementError,
)
from .management import (
manage_cluster, manage_workspaces,
manage_cluster, manage_workspaces, manage_files,
)
from .types import (
Date, Time, Timestamp, DateFromTicks, TimeFromTicks, TimestampFromTicks,
Expand Down
1 change: 1 addition & 0 deletions singlestoredb/management/__init__.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
#!/usr/bin/env python
from .cluster import manage_cluster
from .files import manage_files
from .manager import get_token
from .workspace import get_organization
from .workspace import get_secret
Expand Down
Loading

0 comments on commit cd2fbb9

Please sign in to comment.