Created
October 19, 2015 11:00
-
-
Save neoneo40/c438e6cd4852b98ad92f to your computer and use it in GitHub Desktop.
requests.get
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# -*- coding: utf-8 -*- | |
import requests | |
url = 'http://www.lezhin.com/' | |
resp = requests.get(url) | |
print(resp.text) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment