본문 바로가기
파이썬

파이썬 POST 요청을 보내는 방법은 무엇입니까?

by º기록 2021. 2. 13.
반응형

이 스크립트를 온라인에서 찾았습니다.

import httplib, urllib
params = urllib.urlencode({'number': 12524, 'type': 'issue', 'action': 'show'})
headers = {"Content-type": "application/x-www-form-urlencoded",
            "Accept": "text/plain"}
conn = httplib.HTTPConnection("bugs.python.org")
conn.request("POST", "", params, headers)
response = conn.getresponse()
print response.status, response.reason
302 Found
data = response.read()
data


conn.close()

하지만 PHP와 함께 사용하는 방법이나 params 변수 내부의 모든 것이 무엇인지 또는 사용 방법을 이해하지 못합니다. 이 작업을 수행하는 데 약간의 도움을받을 수 있습니까?

 

해결 방법

 


>>> import requests
>>> r = requests.post("http://bugs.python.org", data={'number': 12524, 'type': 'issue', 'action': 'show'})
>>> print(r.status_code, r.reason)
200 OK
>>> print(r.text[:300] + '...')

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<title>
Issue 12524: change httplib docs POST example - Python tracker

</title>
<link rel="shortcut i...
>>> 

 

참조 페이지 https://stackoverflow.com/questions/11322430

 

 

반응형

댓글