From d72ec8109e8b680a356e6dd464274e35a35a014d Mon Sep 17 00:00:00 2001 From: Ebus-at-dockstar Date: Sun, 21 Apr 2013 16:11:22 +0200 Subject: wettermichel api anpassung --- datasources/de_wettermichel.py | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/datasources/de_wettermichel.py b/datasources/de_wettermichel.py index cf6a507..fb17210 100755 --- a/datasources/de_wettermichel.py +++ b/datasources/de_wettermichel.py @@ -15,10 +15,8 @@ def read(): return xml def insert(name, value, valueType): - 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)) + conn = httplib.HTTPConnection("127.0.0.1:8080") + conn.request("PUT", "/api/value/{n}".format(n=name), value) response = conn.getresponse() assert response.status == 200, "put status code == 200" conn.close() -- cgit v1.2.1