I wish to have my Python script download the Master data (Download, XLSX) Excel file from this Frankfurt stock exchange webpage.
When to retrieve it with urrlib
and wget
, it turns out that the URL leads to a Blob and the file downloaded is only 289 bytes and unreadable.
I'm entirely unfamiliar with Blobs and have these questions:
Can the file "behind the Blob" be successfully retrieved using Python?
If so, is it necessary to uncover the "true" URL behind the Blob – if there is such a thing – and how? My concern here is that the link above won't be static but actually change often.
read
it. – Mccomas