Added the EVI 2016 python docs.
This commit is contained in:
9
EVI - 2016/EVI - 33/Examples/http_client.py
Normal file
9
EVI - 2016/EVI - 33/Examples/http_client.py
Normal file
@@ -0,0 +1,9 @@
|
||||
import urllib2
|
||||
|
||||
# Create an HTTP request.
|
||||
request = urllib2.Request("http://www.concisa.net.ve/2016/evi-2016-tutoriales/")
|
||||
# Perform the request.
|
||||
response = urllib2.urlopen(request)
|
||||
# Get the response data.
|
||||
document = response.read()
|
||||
print(document)
|
Reference in New Issue
Block a user