Geodesic Basics
The general workflow for using the Geodesic Python API is as follows:
- Import the Geodesic Python API
import geodesic
- Authenticate your account. You will not need to log in each time you use the API. The credentials stored are long lived.
geodesic.authenticate()
- 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.