Advertisement
Xlorddx

Untitled

Aug 19th, 2018
124
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.14 KB | None | 0 0
  1. import requests
  2.  
  3. response = requests.get("https://habr.com")
  4. file=open('habr.html','w',encoding='utf-8')
  5. file.write(response.text)
  6. file.close()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement