Answers for "write response to file python"

0

python write requests response to text file

import requests

apiUrl = "https://"
filename = "test.txt"
chunk_size = 100

response = requests.get( apiUrl )

with open(filename, 'wb') as fd:
    for chunk in response.iter_content(chunk_size):
        fd.write(chunk)
Posted by: Guest on April-28-2020

Python Answers by Framework

Browse Popular Code Answers by Language