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.create_project() method and set the active project using the geodesic.set_active_project() method.

geodesic.create_project(name="cookbook-examples", alias="Cookbooks Example Project", description="Test project for illustration purposes")
geodesic.set_active_project("cookbook-examples")

You can also add other users to your project using the geodesic.geodesic.update_permission() method.

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