Skip to main content

Geodesic Basics

The general workflow for using the Geodesic Python API is as follows:

  1. Import the Geodesic Python API
import geodesic

  1. Authenticate your account. You will not need to log in each time you use the API. The credentials stored are long lived.
geodesic.authenticate()

  1. Create a new project and activate.
geodesic.create_project(
name="tutorials",
alias="tutorials Example Project",
description="Test project for illustration purposes")
geodesic.get_active_project("tutorials")

For more indepth instructions on installing the python API, please visit our Installing page.