-
Notifications
You must be signed in to change notification settings - Fork 593
/
Copy pathaqi-tracker.py
77 lines (61 loc) · 2.3 KB
/
aqi-tracker.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
68
69
70
71
72
73
74
75
76
77
import getopt
import sys
import requests
def main(argv):
def usage():
print("usage: %s [-c city] [-a accesstoken] [-h help] ...") % argv[0]
return 100
try:
(opts, args) = getopt.getopt(argv[1:], "c:a:h")
except getopt.GetoptError:
return usage()
def help():
print(
"AQI Tracker -"
"\tLets the user know the real-time air quality values"
"\t\t(usage: %s [-c city] [-a accesstoken] [-h help])"
"\ncity:\t\tname of the cit"
"\naccesstoken:\tYou need to get access token by "
"registering on http://aqicn.org/data-platform/register/"
"\n\t\t*if no accesstoken provided then demo accesstoken will"
" be used \n\t\tand with demo access token only Shanghai's"
" air quality values can be retrieved."
)
city = "shanghai"
accesstoken = "demo"
for (k, v) in opts:
if k == "-c":
city = v
elif k == "-a":
accesstoken = v
elif k == "-h":
return help()
url = "http://api.waqi.info/feed/" + city + "/?token=" + accesstoken
print("URL: ", url)
r = requests.get(url, auth=("user", "pass"))
if r.status_code == 200:
data = r.json()
value = data["data"]["iaqi"]["pm25"]["v"]
toDisplay = str(value)
if value > 0 and value < 50:
print("Air Quality Alert ->")
print("Current Value: Healthy - " + toDisplay)
elif value > 50 and value < 100:
print("Air Quality Alert ->")
print("Current Value: Moderate - " + toDisplay)
elif value > 100 and value < 150:
print("Air Quality Alert ->")
print("Current Value: Sensitive - " + toDisplay)
elif value > 150 and value < 200:
print("Air Quality Alert ->")
print("Current Value: UnHealhty - " + toDisplay)
elif value > 200 and value < 250:
print("Air Quality Alert ->")
print("Current Value: UnHealthy - " + toDisplay)
elif value > 250 and value > 300:
print("Air Quality Alert ->")
print("Current Value: Hazardous - " + toDisplay)
else:
print("Error: Unable to connect to server")
if __name__ == "__main__":
sys.exit(main(sys.argv))