try:
        with open(output_path, 'wb') as loaded_file:
            for response_chunk in response_chunks:
                loaded_file.write(response_chunk)
    except PermissionError: