Skip to main content

Geodesic Projects

Projects are like your personal work area within the SeerAI Graph. You can store datasets and other objects and connections here and they will only be visible to those that you share them with.

You create a new project using the

geodesic.account.projects.create_project method and set the active project using the geodesic.account.projects.set_active_project method.

geodesic.create_project(name="tutorials", alias="tutorials Example Project", description="Test project for illustration purposes")
geodesic.set_active_project("tutorials")

You can also add other users to your project using the

geodesic.Project.update_permission method.

dd = geodesic.get_project("tutorials")
dd.update_permission("auth0|611c3d206a08f0006c8a9290", {'read': True, 'write': True})