def download_firmware(url, output_file): response = requests.get(url) with open(output_file, 'wb') as file: file.write(response.content)
def download_firmware(url, output_file): response = requests.get(url) with open(output_file, 'wb') as file: file.write(response.content)