diff options
author | Ebus-at-dockstar <ebus@dockstar> | 2014-07-26 19:55:43 +0200 |
---|---|---|
committer | Ebus-at-dockstar <ebus@dockstar> | 2014-07-26 19:55:43 +0200 |
commit | a8cd2ecf7387d7bbe16808ca0c7acdb04a4909cb (patch) | |
tree | 524672c3237be2552379f9d752184bd3cbf1d554 /datasources/de_wettermichel.py | |
parent | 3f5b5ff5e71cf078c2c04906bffa06f3a1050085 (diff) | |
download | ebus-alt-a8cd2ecf7387d7bbe16808ca0c7acdb04a4909cb.tar.gz ebus-alt-a8cd2ecf7387d7bbe16808ca0c7acdb04a4909cb.zip |
Revert "embed xexpr-path" restore datastore-leveldb and other stuff
This reverts commit f6675ccdd7a5997def3c4656f0e2c5dbbbed1fc8.
Diffstat (limited to 'datasources/de_wettermichel.py')
-rwxr-xr-x | datasources/de_wettermichel.py | 6 |
1 files 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() |