Answers for "how to read a text file from url in python"

0

how to read a text file from url in python

import requests

response = requests.get(target_url)
data = response.text
Posted by: Guest on May-02-2022

Code answers related to "how to read a text file from url in python"

Python Answers by Framework

Browse Popular Code Answers by Language