The folia CLI and Python client. A thin API client for the folia declarative geospatial platform.
pip install folia# authenticate
folia auth login
# scaffold a workspace
folia init my-workspace
cd my-workspace
# edit folia.yaml, then deploy
folia deploy
# check status
folia status| Command | Description |
|---|---|
folia init <name> |
Scaffold a new workspace |
folia deploy |
Deploy workspace to the platform |
folia status |
Show workspace status |
folia runs |
List recent runs |
folia schedule list |
List managed schedules |
folia search <query> |
Search the data catalog |
folia ops |
Browse available operations |
folia auth login |
Authenticate with the platform |
folia profile |
View your profile |
from folia.client import FoliaClient
client = FoliaClient()
results = client.search("terrain dem")
ops = client.list_operations(domain="geo", category="terrain")- Spec: spec.folia.sh
- Catalog: data.folia.sh
Apache 2.0