Skip to content

Commit b2230c7

Browse files
authored
Merge pull request #47 from vinnyfuria/master
Add optional timeout parameter
2 parents f6e7b22 + e38b41e commit b2230c7

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

radiotherm/thermostat.py

+4-3
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,9 @@ class Thermostat(object):
2222
# and it's the right thing to do.
2323
JSON_HEADER = {'Content-Type' : 'application/json'}
2424

25-
def __init__(self, host):
25+
def __init__(self, host, timeout=4):
2626
self.host = host
27+
self.timeout = timeout
2728

2829
def get(self, relative_url):
2930
"""
@@ -32,7 +33,7 @@ def get(self, relative_url):
3233
:returns: file-like object as returned by urllib[2,.request].urlopen
3334
"""
3435
url = self._construct_url(relative_url)
35-
return request.urlopen(url)
36+
return request.urlopen(url, timeout=self.timeout)
3637

3738
def post(self, relative_url, value):
3839
"""
@@ -43,7 +44,7 @@ def post(self, relative_url, value):
4344
"""
4445
url = self._construct_url(relative_url)
4546
request_instance = request.Request(url, value, self.JSON_HEADER)
46-
return request.urlopen(request_instance)
47+
return request.urlopen(request_instance, timeout=self.timeout)
4748

4849
def _construct_url(self, relative_url):
4950
"""

0 commit comments

Comments
 (0)