One site Đ¿enerating iPXE build imagea file that I need to download by sending a request.
I want to make a request for a post on the 3th site (rom-o-matic.eu), and get a file from site. Is this possible?
My example is this:
def requestPOST(request):
values = {'wizardtype': 'standard',
'outputformatstd': 'bin/ipxe.usb',
'embed': '#!ipxe dhcp route}',
'gitrevision': 'master'}
r = requests.post("https://rom-o-matic.eu/", verify=False, data={values})
return()
What should this return?
Thanks.