-
requests 기본문법Programing/Python 2012. 4. 16. 09:43
- GET
r = requests.get("http://b10s.org")
print r.text
- POST
url = "http://b10s.org"
data = {"no":"10||1"}
r = requests.post(url, data=data}
- 헤더투가(쿠키 등등 get, post 동일)
url = "http://b10s.org"
header = {"Cookie":"PHPSESSID=ahfg1rq9ku7v20so4etnboo4t7"}
r = requests.get(url,headers=header)
print r.text
- 파일 업로드
url = "http://b10s.org"
upload = {"mypic.png":open("mypic.png","rb")}
r = requests.post(url, files=upload)
r.text
기타 사용법은 아래 참고
http://docs.python-requests.org/en/latest/user/quickstart/
'Programing > Python' 카테고리의 다른 글
Python urllib2 예제 (0) 2012.06.19 Python MySQLdb 설치 및 에러 (0) 2012.04.25 Python Mysql Tutorial (0) 2012.04.16 Python SQLite Tutorial (0) 2012.04.16 pip install (0) 2012.04.16