I get a UserWarning:
*UserWarning: Server down.*
*Retrying for the 1st time.*
* stacklevel=1)*
After ten retries there is a timeout.
My Python code:
import openrouteservice as ors
api_key = ".."
client = ors.Client(key=api_key)
directions = ors.client.directions(client, ((8.681495,49.41461), (8.687872,49.420318)), "foot-walking")
Is there something wrong and do you have any idea when this would be fixed?