-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdemo.py
28 lines (18 loc) · 863 Bytes
/
demo.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
# coding=utf-8
from optparse import OptionParser
from fmiweatherlib import fmiweather
if __name__ == '__main__':
parser = OptionParser('usage: %prog [options]')
parser.add_option("-l", "--location", type="string", dest="location", help="Location for which weather data is searched")
parser.add_option("-d", "--debug", action="store_true", dest="debug", help="Enable debug mode")
(options, args) = parser.parse_args()
required="location".split()
for r in required:
if options.__dict__[r] is None:
parser.error("parameter %s required"%r)
w = fmiweather(debug=options.debug)
measTime, temperature = w.getCurrentWeather(location=options.location, historyMinutes=30)
if measTime is not None:
print ("result: " + measTime + " : " + str(temperature))
else:
print ("No results found")