Data commit

This commit is contained in:
Ingy döt Net 2023-07-01 11:58:00 -04:00
parent 7387c8f97b
commit cb5bb5e222
199093 changed files with 3378972 additions and 0 deletions

View file

@ -0,0 +1,2 @@
import urllib.request
print(urllib.request.urlopen("http://rosettacode.org").read())

View file

@ -0,0 +1,7 @@
from http.client import HTTPConnection
conn = HTTPConnection("example.com")
# If you need to use set_tunnel, do so here.
conn.request("GET", "/")
# Alternatively, you can use connect(), followed by the putrequest, putheader and endheaders functions.
result = conn.getresponse()
r1 = result.read() # This retrieves the entire contents.

View file

@ -0,0 +1,2 @@
import urllib
print urllib.urlopen("http://rosettacode.org").read()

View file

@ -0,0 +1,2 @@
import urllib2
print urllib2.urlopen("http://rosettacode.org").read()

View file

@ -0,0 +1,2 @@
import requests
print(requests.get("http://rosettacode.org").text)