@@ -22,8 +22,9 @@ class Thermostat(object):
22
22
# and it's the right thing to do.
23
23
JSON_HEADER = {'Content-Type' : 'application/json' }
24
24
25
- def __init__ (self , host ):
25
+ def __init__ (self , host , timeout = 4 ):
26
26
self .host = host
27
+ self .timeout = timeout
27
28
28
29
def get (self , relative_url ):
29
30
"""
@@ -32,7 +33,7 @@ def get(self, relative_url):
32
33
:returns: file-like object as returned by urllib[2,.request].urlopen
33
34
"""
34
35
url = self ._construct_url (relative_url )
35
- return request .urlopen (url )
36
+ return request .urlopen (url , timeout = self . timeout )
36
37
37
38
def post (self , relative_url , value ):
38
39
"""
@@ -43,7 +44,7 @@ def post(self, relative_url, value):
43
44
"""
44
45
url = self ._construct_url (relative_url )
45
46
request_instance = request .Request (url , value , self .JSON_HEADER )
46
- return request .urlopen (request_instance )
47
+ return request .urlopen (request_instance , timeout = self . timeout )
47
48
48
49
def _construct_url (self , relative_url ):
49
50
"""
0 commit comments