-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMonthXML.py
67 lines (59 loc) · 2.02 KB
/
MonthXML.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
#
# OpenTemp.py
#
# Copyright 2018 Luis Kress <[email protected]> Jo Hausmann <[email protected]>
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
# MA 02110-1301, USA.
#
#
from lxml import etree
import sys
import time
def addDay():
try:
et = etree.parse("XMLM.xml")
weatherArr = getDayData()
day = etree.SubElement(et.getroot(),"day"+time.strftime("%d"), temp=str(weatherArr[0]), hum=str(weatherArr[1]), pres=str(weatherArr[2])) #unterknoten mit aktuellem datum uebergeben
write(etree.ElementTree(et.getroot()))
except etree.XMLSyntaxError:
sys.stderr.write("Error: File is empty\n")
except OSError:
sys.stderr.write("Error: File could not be found\n")
def initialize():
month = etree.Element("month"+ time.strftime("%m")) #root Knoten erstellen
write(etree.ElementTree(month))
def write(mytree):
if isinstance(mytree, etree._ElementTree):
f = open("XMLM.xml","wb")
f.write(etree.tostring(mytree, pretty_print=True))
f.close()
else:
sys.stderr.write("Error!\n")
def getDayData():
et = etree.parse("XMLD.xml")
root = et.getroot()
avTemp = avHum = avPress = counter = 0
for child in root:
avTemp += float(child.get("temp"))
avHum += float(child.get("hum"))
avPress += float(child.get("pres"))
counter += 1
avTemp /= counter
avHum /= counter
avPress /= counter
return [avTemp,avHum,avPress]