http.client: Add example.

pull/118/head
Paul Sokolovsky 2014-05-31 15:17:58 +03:00
rodzic 878edba0dc
commit 500a82267d
1 zmienionych plików z 9 dodań i 0 usunięć

Wyświetl plik

@ -0,0 +1,9 @@
from http.client import HTTPConnection
conn = HTTPConnection("localhost")
#conn = HTTPConnection("micropython.org")
conn.request("GET", "/")
resp = conn.getresponse()
print(resp)
print(resp.read())