Sh4n3e
[Python] Urllib 사용법, Url 라이브러리 사용법 본문
Url라이브러리 사용법
POST방식 전송시에는 아래와 같이 전송하며,
GET방식 전송시에는 urllib2.Reuqest를 할때 data 없이 보내면 된다.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 | import urllib2, urllib #Url url = 'http://URL' #Http Header headers = {'Content-Type': 'application/x-www-form-urlencoded;charset=UTF-8', 'Host': 'www.google.com', 'User-Agent': 'Apache-HttpClient/UNAVAILABLE (java 1.4)'} #Post Values values = { 'boardSid': '000000002', 'password': temp } #Post Value UrlEncode data = urllib.urlencode(values) #Http Request request = urllib2.Request(url, data, headers) #Http Resopnse response = urllib2.urlopen(request) #Response Read res = response.read() print res | cs |
'Programming > Python' 카테고리의 다른 글
[Python] 웹 크롤러(Web Crawler)를 제작해보자 (1) | 2018.03.13 |
---|---|
[Python] Unicode JSON을 Ascii 형태의 Dictionary로 변환 그리고 CSV로 저장하기 (0) | 2017.11.03 |
[Python] PIL을 이용한 exif정보를 통해 JPG파일의 이름을 타임스탬프로 변경하기 (0) | 2017.10.29 |
[Python] iPhone으로 찍은 사진의 Timestamp를 파일명으로 바꾸기 (0) | 2017.08.20 |
[Python] 이름만 다른 동일 파일 삭제하기 (0) | 2017.08.20 |
Comments