Hello, I am really new to this and I want to connect to the web service of the bank of Mexico to get the exchange rate, which I am doing in Python.
Until now I have managed to connect to the banxico web service with the following code:
from suds.client import Client
client = Client('http://www.banxico.org.mx:80/DgieWSWeb/DgieWS?WSDL')
#print client
response = client.service.tiposDeCambioBanxico()
print response
but he throws me all the exchange rates and I just need the dollar.
I hope someone can guide me to just take that value.
Thank you.