I have a URL to a PDF that looks like this:
https://....blob.core.windows.net/../.../../signedefiles/.....pdf?sv=date&se=2023-11-17T16%3A35%3A35Z&sr=b&sp=r&rscc=no-store&rscd=attachment%3Bfilename%3D%22ABC+QRZ+8112+2022.pdf%22&rsct=application%2Fpdf&sig=ABCDEF%2GHIJK%2123%3D
I need to download this pdf from this URL using Python. I know I can download from simple URLs as such:
import requests
url = 'https://ssrcontentstore.blob.core.windows.net/ssrclientpostdata-2022/ssr00002451/a6b21d6a-4da8-4e01-ac79-7fadcb2712e8/signedefiles/FM%20tax%208879%202022.pdf?sv=2021-06-08&se=2023-11-17T16%3A35%3A35Z&sr=b&sp=r&rscc=no-store&rscd=attachment%3Bfilename%3D%22FM+tax+8879+2022.pdf%22&rsct=application%2Fpdf&sig=o3cuyUYf%2B7hujd8sjeXxbnF0HwgbJ%2BIqSSZiYVGaP60%3D'
response = requests.get(url)
with open('sample.pdf', 'wb') as f:
f.write(response.content)
But for a complicated URL like the one I showed above, which seems to have signature etc in the URL - I am unable to use the same code with success. Any idea on what would need to be added here to make a URL like this work?
I am able to use PowerAutomate's Upload File From URL
action to download the PDF very easily by passing just this URL. So I know that the URL is accurate, but I cannot use PowerAutomate for the rest of this process so I'm wondering if I can figure it out in Python or Alteryx. Doing a simple Download from URL in Alteryx does not work either. I believe I will have to pass the signature or other things from the URL but I'm not sure what and how. Any help is appreciated. Thanks!