Hello i am using pyspeech and googlemaps in python to get direction and i'm trying to make pyspeech say the directions out loud thing is that is say like greater than, less than and b for the "< b >" in the code is there a way to ignore these brackets and just say the rest or the directions?
Code:
from googlemaps import GoogleMaps
import speech
api_key = (my key)
gmaps = GoogleMaps(api_key)
place1 = raw_input("Your address: ")
place = raw_input("Destination: ")
start = place1
end = place
dirs = gmaps.directions(start, end)
time = dirs['Directions']['Duration']['seconds']
dist = dirs['Directions']['Distance']['meters']
route = dirs['Directions']['Routes'][0]
for step in route['Steps']:
print step['descriptionHtml']
speech.say(step['descriptionHtml'])