Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

write page source to text file python

import requests

url = "https://stackoverflow.com/questions/24297257/save-html-of-some-website-in-a-txt-file-with-python"

r = requests.get(url)
with open('file.txt', 'w') as file:
    file.write(r.text)
 
PREVIOUS NEXT
Tagged: #write #page #source #text #file #python
ADD COMMENT
Topic
Name
5+7 =