There was an error while loading. Please reload this page.
Bienvenido a la wiki oficial de TRANSCEND SDK. Aquí encontrarás tutoriales prácticos para resolver los problemas diarios del transporte profesional.
pip install transcend-sdk
from transcend_sdk import TranscendClient client = TranscendClient(api_key="TU_API_KEY") # Optimize ruta route = client.route.optimize( origin={"lat": 40.4168, "lon": -3.7038}, destination={"lat": 41.3851, "lon": 2.1734} ) print(f"Coste: {route.total_cost}")