-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathxml88.py
34 lines (30 loc) · 1.11 KB
/
xml88.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
# -*- coding:utf-8 -*-
import xml.sax
from datetime import datetime
class ForecastHandler(xml.sax.ContentHandler):
def startElement(self, tag, attrs):
self.CurrentData = tag
if tag == 'results':
self.result = {}
elif tag == 'yweather:location':
self.result['city'] = attrs['city']
elif tag == 'yweather:condition':
self.result['forecast'] = attrs['temp']
elif tag == 'yweather:forecast':
ft = {
'date':datetime.strptime(attrs['date'],'%d %b %Y').strftime('%Y-%m-%d'),
'highest':int(attrs['high']),
'lowest':int(attrs['low'])
}
[self.result['forecast']].append(ft)
print(ft)
def endElement(self,name):
if name == 'results':
print(self.result)
self.CurrentData = ""
if __name__ == "__main__":
parser = xml.sax.make_parser()
parser.setFeature(xml.sax.handler.feature_namespaces, 0)
Handler = ForecastHandler()
parser.setContentHandler(Handler)
parser.parse("forecast.xml")