kopia lustrzana https://github.com/micropython/micropython-lib
10 wiersze
196 B
Python
10 wiersze
196 B
Python
![]() |
from http.client import HTTPConnection
|
||
|
|
||
|
|
||
|
conn = HTTPConnection("localhost")
|
||
![]() |
# conn = HTTPConnection("python.org")
|
||
![]() |
conn.request("GET", "/")
|
||
|
resp = conn.getresponse()
|
||
|
print(resp)
|
||
|
print(resp.read())
|