diff options
author | Ebus-at-dockstar <ebus@dockstar> | 2014-07-25 22:13:55 +0200 |
---|---|---|
committer | Ebus-at-dockstar <ebus@dockstar> | 2014-07-25 22:13:55 +0200 |
commit | f6675ccdd7a5997def3c4656f0e2c5dbbbed1fc8 (patch) | |
tree | 893a37289de684b95a6184c528e5c9c8547e7197 /datasources/de_wettermichel.py | |
parent | cfb0c10631bbbd31b525e7992b59de06d3c2e550 (diff) | |
download | ebus-alt-f6675ccdd7a5997def3c4656f0e2c5dbbbed1fc8.tar.gz ebus-alt-f6675ccdd7a5997def3c4656f0e2c5dbbbed1fc8.zip |
embed xexpr-path
Diffstat (limited to 'datasources/de_wettermichel.py')
-rwxr-xr-x | datasources/de_wettermichel.py | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/datasources/de_wettermichel.py b/datasources/de_wettermichel.py index fb17210..cf6a507 100755 --- a/datasources/de_wettermichel.py +++ b/datasources/de_wettermichel.py @@ -15,8 +15,10 @@ def read(): return xml def insert(name, value, valueType): - conn = httplib.HTTPConnection("127.0.0.1:8080") - conn.request("PUT", "/api/value/{n}".format(n=name), value) + conn = httplib.HTTPConnection("127.0.0.1:8000") + conn.request("PUT", + "/sensor/{n}".format(n=name), + "value={v}&type={t}".format(v=value, t=valueType)) response = conn.getresponse() assert response.status == 200, "put status code == 200" conn.close() |