-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathutils.py
52 lines (38 loc) · 1.1 KB
/
utils.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
52
"""Utility functions common to all client APIs."""
import error
import urllib
import urllib2
def _query_string(dict):
"""Get a query string from a dictionary."""
return '&'.join(
name + '=' + urllib.quote(value.encode('utf8'))
for name, value in dict.iteritems())
def urlopen(base_url, query=None):
"""Wrapper around urllib2.urlopen.
Args:
base_url: The base URL for the request.
query: A dictionary of query parameters (dict, optional).
Returns:
A file like object.
Raises:
error.Error if something goes wrong.
"""
url = base_url + ('?' + _query_string(query) if query else '')
try:
return urllib2.urlopen(url)
except (urllib2.URLError, urllib2.HTTPError) as e:
raise error.Error(str(e))
def urlread(base_url, query=None):
"""Read the content of an URL.
Args:
base_url: The base URL for the request.
query: A dictionary of query parameters (dict, optional).
Returns:
A string.
Raises:
error.Error if something goes wrong.
"""
try:
return urlopen(base_url, query).read()
except IOError as e:
raise error.Error(str(e))