[Python] http request(http.client)
- IT/Python
- 2020. 10. 28.
반응형
반응형
▶ GET
#!/bin/usr/python
import http.client
conn = http.client.HTTPConnection("httpbin.org")
conn.request("GET", "/get")
res = conn.getresponse()
print(res.status, res.reason)
conn.close()
▶ PUT
#!/usr/bin/python
import http.client
conn = http.client.HTTPConnection("httpbin.org")
datas = {'data1': 1, 'data2': 2, 'data3': 3}
headers = {"Content-type":"application/json"}
conn.request("POST", "/post", str(datas), headers)
res = conn.getresponse()
print(res.status, res.reason)
conn.close()
▶ 출력
200 OK
반응형
'IT > Python' 카테고리의 다른 글
Python argparse 예제 (0) | 2021.06.25 |
---|---|
[openpyxl] 파이썬으로 엑셀 다루기-1 (0) | 2021.02.10 |
[Python] strftime - 날짜 포맷 변경하기 (0) | 2020.10.28 |
[Python] 호스트네임 가져오기 (0) | 2020.10.26 |
[Python] 파이썬 logging 모듈로 간단하게 로그 남기기 (0) | 2020.10.24 |