You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I used this code without problems earlier this year. Now I keep getting the error "Error : CSRF_Token not found”. If I change line 68:
m = re.search(r'<input .?name="csrf_token".?value="(.?)"', data)
to
m = re.search(r'<input .?name="csrf".?value="(.?)"', data)
I don't get the error. But the download still doesn't work.
The text was updated successfully, but these errors were encountered:
Thanks, this solves the token issue, but the whole structure of storage of the LANDSAT site seems to have changed. I have not found yet where the LANDSAT data are stored, with permanent links. I am afraid they have changed to an object based storage wich does not allow to guess the location of data
Hi,
I used this code without problems earlier this year. Now I keep getting the error "Error : CSRF_Token not found”. If I change line 68:
m = re.search(r'<input .?name="csrf_token".?value="(.?)"', data)
to
m = re.search(r'<input .?name="csrf".?value="(.?)"', data)
I don't get the error. But the download still doesn't work.
The text was updated successfully, but these errors were encountered: