Added the EVI 2016 python docs.

This commit is contained in:
2016-10-26 05:33:53 -04:00
parent f47f49bfa7
commit af0bc3f912
12 changed files with 415 additions and 0 deletions

View 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)