88 lines
2.0 KiB
Python
88 lines
2.0 KiB
Python
# convenience wrapper for urllib2 & friends
|
|
|
|
import cookielib
|
|
import json
|
|
import urllib
|
|
import urllib2
|
|
import urlparse
|
|
|
|
from urllib import quote, quote_plus as _quote_plus
|
|
from urllib2 import HTTPError, URLError
|
|
|
|
from lxml import etree, html
|
|
|
|
|
|
user_agent = 'Skybot/1.0 http://github.com/rmmh/skybot'
|
|
|
|
ua_firefox = 'Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.8.1.6) ' \
|
|
'Gecko/20070725 Firefox/2.0.0.6'
|
|
ua_internetexplorer = 'Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1)'
|
|
|
|
jar = cookielib.CookieJar()
|
|
|
|
|
|
def get(*args, **kwargs):
|
|
return open(*args, **kwargs).read()
|
|
|
|
|
|
def get_html(*args, **kwargs):
|
|
return html.fromstring(get(*args, **kwargs))
|
|
|
|
|
|
def get_xml(*args, **kwargs):
|
|
return etree.fromstring(get(*args, **kwargs))
|
|
|
|
|
|
def get_json(*args, **kwargs):
|
|
return json.loads(get(*args, **kwargs))
|
|
|
|
|
|
def open(url, query_params=None, user_agent=user_agent, post_data=None,
|
|
get_method=None, cookies=False, **kwargs):
|
|
|
|
if query_params is None:
|
|
query_params = {}
|
|
|
|
query_params.update(kwargs)
|
|
|
|
url = prepare_url(url, query_params)
|
|
|
|
request = urllib2.Request(url, post_data)
|
|
|
|
if get_method is not None:
|
|
request.get_method = lambda: get_method
|
|
|
|
request.add_header('User-Agent', user_agent)
|
|
|
|
if cookies:
|
|
opener = urllib2.build_opener(urllib2.HTTPCookieProcessor(jar))
|
|
else:
|
|
opener = urllib2.build_opener()
|
|
|
|
return opener.open(request)
|
|
|
|
|
|
def prepare_url(url, queries):
|
|
if queries:
|
|
scheme, netloc, path, query, fragment = urlparse.urlsplit(url)
|
|
|
|
query = dict(urlparse.parse_qsl(query))
|
|
query.update(queries)
|
|
query = urllib.urlencode(dict((to_utf8(key), to_utf8(value))
|
|
for key, value in query.iteritems()))
|
|
|
|
url = urlparse.urlunsplit((scheme, netloc, path, query, fragment))
|
|
|
|
return url
|
|
|
|
|
|
def to_utf8(s):
|
|
if isinstance(s, str):
|
|
return s
|
|
else:
|
|
return s.encode('utf8', 'ignore')
|
|
|
|
|
|
def quote_plus(s):
|
|
return _quote_plus(to_utf8(s))
|