Getting Started
Install the SDK and make your first API request.
Installation
pip install spatialflow
Quick Start
import asyncio
from spatialflow import SpatialFlow, models
async def main():
async with SpatialFlow(api_key="sf_xxx") as client:
# List geofences
response = await client.geofences.list()
for geofence in response.geofences:
print(f"{geofence.name}: {geofence.id}")
asyncio.run(main())