CAST Planet Python API

The CAST Planet python API is a wrapper for the Planet Rest API. Currently, the API allows for interfacing with the Data, Basemaps, and portions of the Orders APIs

Installation

pip install cast-planet-api

Usage

Below is a simple use case for fetching item types, to see more use cases, please view the documentation for the individual modules.

from cast_planet import DataAPI

api = DataAPI(api_key='your-api-key')

# Get a list of available item types
# https://developers.planet.com/docs/apis/data/items-assets/#item-types
item_types = api.item_types()

Modules

Data

Orders

Basemaps

Examples