Sh4n3e

[Python] Urllib 사용법, Url 라이브러리 사용법 본문

Programming/Python

[Python] Urllib 사용법, Url 라이브러리 사용법

sh4n3e 2017. 9. 8. 13:21

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


Comments