Skip to main content
  • Sync
  • Async
def list_folders() -> List[Folder]

Returns

  • List[Folder]: Collection of folders the current auth context can access.

Examples

  • Sync
  • Async
from morphik import Morphik

db = Morphik()

for folder in db.list_folders():
    print(folder.name, folder.id)
I