반응형
이 스크립트를 온라인에서 찾았습니다.
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
반응형
'파이썬' 카테고리의 다른 글
파이썬 문자열에서 단어 수를 찾는 방법은 무엇입니까? (0) | 2021.02.13 |
---|---|
파이썬 How to check if variable is string with python 2 and 3 compatibility (0) | 2021.02.13 |
파이썬 How to use multiprocessing queue in Python? (0) | 2021.02.13 |
파이썬 Python-주어진 시간에 함수 시작 (0) | 2021.02.13 |
파이썬에서 프로그램 전체에 무작위 시드 설정 (0) | 2021.02.13 |
댓글