maps.gurudocs
Documentation

Python SDK

Info

Coming Soon — The Python SDK is not yet available. This page documents the planned SDK surface. Check back soon for updates.

The official Python SDK will provide a simple interface to all maps.guru API services.

Planned Installation

pip install mapsguru

Planned Usage

from mapsguru import MapsGuru

client = MapsGuru(api_key="mapx_your_key")

results = client.geocode("Tokyo Tower")
print(f"{results[0].lat}, {results[0].lng}")