summaryrefslogtreecommitdiff
path: root/heap/bin/wettermichel.py
diff options
context:
space:
mode:
authorEbus-at-dockstar <ebus@dockstar>2013-03-25 10:24:28 +0100
committerEbus-at-dockstar <ebus@dockstar>2013-03-25 10:24:43 +0100
commit862282ce99760832d3e9e5b4b1171b861105e004 (patch)
tree0e229418e391917b79d42a8bdee46fb7a8612895 /heap/bin/wettermichel.py
parent9522cdffa94f278eb5e1894600535986e22c2890 (diff)
downloadebus-alt-862282ce99760832d3e9e5b4b1171b861105e004.tar.gz
ebus-alt-862282ce99760832d3e9e5b4b1171b861105e004.zip
move old stuff away
Diffstat (limited to 'heap/bin/wettermichel.py')
-rwxr-xr-xheap/bin/wettermichel.py77
1 files changed, 77 insertions, 0 deletions
diff --git a/heap/bin/wettermichel.py b/heap/bin/wettermichel.py
new file mode 100755
index 0000000..4c0af6c
--- /dev/null
+++ b/heap/bin/wettermichel.py
@@ -0,0 +1,77 @@
+#!/usr/bin/env python
+# -*- coding:utf8 -*-
+import httplib
+from StringIO import StringIO
+
+from lxml import objectify
+
+"""
+from sqlalchemy import create_engine, text
+from sqlalchemy.ext.sqlsoup import SqlSoup
+
+soup = SqlSoup(
+ create_engine("postgresql://ebus:ebus@10.2.2.26:5432/ebus") )
+"""
+def read():
+ conn = httplib.HTTPConnection("www.wettermichel.de")
+ conn.request("GET", "/weatherdata/params3.xml")
+ result = conn.getresponse()
+ assert result.status == 200, 'Site answered with Status 200'
+
+ xml = objectify.parse( result )
+ conn.close()
+ return xml
+
+def get_sensor_id(sensor_name):
+ try:
+ sensor_id = soup.sensor.filter(soup.sensor.name == sensor_name).one()
+ return sensor_id.id
+ except:
+ conn = soup.connection()
+ conn.execute(text("""INSERT INTO sensor(name) VALUES (:name)"""),
+ name = sensor_name)
+ soup.commit()
+ return soup.sensor.filter(soup.sensor.name == sensor_name).one().id
+
+def insert(sensor_name,value_int=None, value_float=None, value_string=None):
+ sql = text("""INSERT INTO value(
+ timestamp, sensor_id, type, value_int, value_float, value_string)
+ VALUES (
+ NOW(), :sensor_id, :type, :value_int, :value_float, :value_string)""")
+ conn = soup.connection()
+ ttype = value_int != None and "int" or \
+ value_float != None and "float" or \
+ value_string != None and "string" or \
+ None
+ assert ttype != None, 'ttype is set'
+ conn.execute(sql, sensor_id=get_sensor_id(sensor_name),
+ type=ttype,
+ value_int=value_int,
+ value_float=value_float,
+ value_string=value_string)
+ soup.commit()
+
+###############
+
+xml = read()
+for keyval in xml.xpath("/data/*"):
+ if keyval.tag == "entry":
+ continue
+
+ print type(keyval), keyval.tag, keyval.text
+ continue
+ if isinstance(keyval, objectify.IntElement):
+ insert("de.wettermichel.%s"%keyval.tag,
+ value_int=int(keyval.text))
+ elif isinstance(keyval, objectify.FloatElement):
+ insert("de.wettermichel.%s"%keyval.tag,
+ value_float=float(keyval.text))
+ elif isinstance(keyval, objectify.StringElement):
+
+ pass
+ insert("de.wettermichel.%s"%keyval.tag,
+ value_string=keyval.text)
+ else:
+ print "ignore other: %s %s" % (keyval.tag, keyval.__class__)
+
+