-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathradiation.py
executable file
·41 lines (32 loc) · 1.22 KB
/
radiation.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
#!/usr/bin/env python3
# Whee for PAA for not having an api... I hope they don't change the site
# layout.
from urllib.request import urlopen
from urllib.error import URLError
import re
import simplejson
url = 'https://mapa.paa.gov.pl/'
def checkRadiation(city):
city = city.casefold()
try:
sitepayload = urlopen(url).read().decode('utf-8')
except URLError as e:
return "E005: " + str(e.reason)
find = re.findall("data_object = ({.*});", sitepayload)
#print(find)
if find == []:
return "E005 Cannot find data_object in site code"
#print(type(find[0]))
jsondata = simplejson.loads(find[0])
for key,record in jsondata.items():
#print(key, "--->", record['nazwa'])
if record['nazwa'].casefold() == city:
return "I003 " + record['nazwa'] + ": " + record['wartosc'] + " nSv/h [pomiar z " \
+ record['data'] + " " + record['godzina'] + "]"
return "E006 Cannot find city, try nearest larger city."
if __name__ == "__main__":
print(checkRadiation("Rzeszow"))
print(checkRadiation("Kraków"))
print(checkRadiation("Warszawa"))
print(checkRadiation("ZiElOnA GoRa"))
print(checkRadiation("NOWHERE "))