Hello,
Some HTTP GET requests that I am doing with python requests library are being somehow cached somewhere between the PA server and the server I am connecting to. It started happening this morning. The same http GET request returns a different thing from the server than in my local, which signals something is cached on PA infrastructure.
-
On the server, if I do:
import requests
requests.get('http://www.elmundo.es/bolsa/datos/valores_indice.html?cod_indice=I.MA').json()['indice']['valores'][0]['hora']
I get as a result: '09:10'
-
On my local python (same environment and thus lib versions), If I execute the exact same code, I get:
'18:00'
I am only getting the correct response on my local, PA is not working, I am getting a response from early in the morning. Please help and let me know how I can disable this caching.