11. HTTP.CLIENT 사용하기 소스(democlient.py) from http import client urladdr = "www.example.com" conn = client.HTTPConnection(urladdr) conn.request("GET","/") resp = conn.getresponse() data = resp.read().decode('utf-8') conn.close() print(data) 결과 Example Domain This domain is established to be used for illustrative examples in documents. You may use this domain in examples without prior coordination ..