Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

how to access http page in pythion

#for Python 3.2
import urllib.request
page = urllib.request.urlopen("http://www.google.com")
print (page.read())
Source by stackoverflow.com #
 
PREVIOUS NEXT
Tagged: #access #http #page #pythion
ADD COMMENT
Topic
Name
5+8 =