-
Notifications
You must be signed in to change notification settings - Fork 0
Home
TheBoomerDev edited this page May 28, 2026
·
3 revisions
Bienvenido a la wiki oficial de TRANSCEND SDK. Aquí encontrarás tutoriales prácticos para resolver los problemas diarios del transporte profesional.
- Calcular Peajes España — aprende a calcular peajes antes de viajar
- Gasolinera Más Barata — encuentra combustible al mejor precio
- Optimizar Ruta con IA — reduce costes con inteligencia artificial
- Clima en Ruta — consulta condiciones climáticas
- Control Horas Conductor — cumple la normativa legalmente
- Áreas Descanso — encuentra dónde descansar
- eCMR Digital — documento de transporte electrónico
pip install transcend-sdkfrom 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}")