-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathComHttp.py
54 lines (43 loc) · 1.34 KB
/
ComHttp.py
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
#!/usr/bin/python
#-*-coding:utf-8-
import sys
import gzip
import urllib2
from cStringIO import StringIO
import cookielib
class HttpClient():
Url = ""
Method = "GET"
PostData = None
UserAgent = 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/33.0.1750.117 Safari/537.36'
Reponse = None
def ToUtf8(self, text):
try:
return text.decode("utf-8")
except Exception, e:
return text.decode("gbk")
def GetString(self):
retString = ""
cj = cookielib.CookieJar()
opener = urllib2.build_opener(urllib2.HTTPCookieProcessor(cj))
urllib2.install_opener(opener)
if self.Method == "POST":
req = urllib2.Request(self.Url,self.PostData)
else:
req = urllib2.Request(self.Url)
req.add_header('Accept', "text/html,application/xhtml+xml,application/xml;q=0.9,image/webp")
req.add_header('Accept-Encoding', "*")
req.add_header('User-Agent', self.UserAgent)
self.Reponse = urllib2.urlopen(req)
contentEncoding = self.Reponse.headers.get('Content-Encoding')
if contentEncoding == 'gzip':
compresseddata = self.Reponse.read()
compressedstream = StringIO(compresseddata)
gzipper = gzip.GzipFile(fileobj=compressedstream)
retString = gzipper.read()
else:
retString = self.Reponse.read()
retString = self.ToUtf8(retString)
return retString
def __init__(self, url):
self.Url = url