Data commit
This commit is contained in:
parent
7387c8f97b
commit
cb5bb5e222
199093 changed files with 3378972 additions and 0 deletions
2
Task/HTTP/Python/http-1.py
Normal file
2
Task/HTTP/Python/http-1.py
Normal file
|
|
@ -0,0 +1,2 @@
|
|||
import urllib.request
|
||||
print(urllib.request.urlopen("http://rosettacode.org").read())
|
||||
7
Task/HTTP/Python/http-2.py
Normal file
7
Task/HTTP/Python/http-2.py
Normal 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.
|
||||
2
Task/HTTP/Python/http-3.py
Normal file
2
Task/HTTP/Python/http-3.py
Normal file
|
|
@ -0,0 +1,2 @@
|
|||
import urllib
|
||||
print urllib.urlopen("http://rosettacode.org").read()
|
||||
2
Task/HTTP/Python/http-4.py
Normal file
2
Task/HTTP/Python/http-4.py
Normal file
|
|
@ -0,0 +1,2 @@
|
|||
import urllib2
|
||||
print urllib2.urlopen("http://rosettacode.org").read()
|
||||
2
Task/HTTP/Python/http-5.py
Normal file
2
Task/HTTP/Python/http-5.py
Normal file
|
|
@ -0,0 +1,2 @@
|
|||
import requests
|
||||
print(requests.get("http://rosettacode.org").text)
|
||||
Loading…
Add table
Add a link
Reference in a new issue