Jihoon

1 excel file, 1 python file

No preview for this file type
1 +from bs4 import BeautifulSoup
2 +from urllib.request import urlopen
3 +import openpyxl
4 +import datetime
5 +# coding = utf-8
6 +filename = "C://area_code.xlsx" # area_code.xlsx
7 +book = openpyxl.load_workbook(filename)
8 +sheet = book.worksheets[0]
9 +code = []
10 +for cell in sheet['E']:
11 + code.append(cell.value)
12 +area = input("읍/면/동을 입력(띄어쓰기 없이 입력 - 예:영통3동)\n")
13 +col = code.index(area)
14 +area_code_index = 'B' + str(col+1)
15 +area_code = sheet[area_code_index].value
16 +#print(area_code)
17 +now = datetime.datetime.now()
18 +nowDate = now.strftime('%Y%m%d') #20191201형태로 연월일 받음
19 +#print(nowDate)
20 +url = "http://newsky2.kma.go.kr/iros/RetrieveLifeIndexService3/getSensorytemLifeList?serviceKey=UwTMv516Y0zIgZCDqzdPtf1jmbv287%2BOn1kqxcZizw8%2Be5OV5UmIc09icqMqSpEMbHOiCWoPK%2BZVD%2Bjbc%2BwgBg%3D%3D&areaNo=" + area_code + "&time=" + nowDate + "03"
21 +result = urlopen(url)
22 +html = result.read()
23 +soup = BeautifulSoup(html, 'html.parser')
24 +contents = soup.find("date")
25 +hours = ["h3","h6","h9","h12","h15","h18","h21","h24"] # date의 시간으로부터 n시간 이후의 예측온도
26 +sens_temper = []
27 +# 2019120103: 19년 12월 1일 새벽 3시 기준이므로 리스트에는 6시, 9시, ..., 익일 3시까지의 예측 체감온도가 저장됨.
28 +#sens_temper[06시온도,09시온도,12시온도,15시온도,18시온도,21시온도,24시온도,익일03시온도]
29 +for i in range(0, len(hours)):
30 + temper = soup.find(hours[i])
31 + sens_temper.append(int(temper.text))
32 + if i < 2:
33 + print("0"+str(int(hours[i][1:])+3)+"시:", temper.text+"°C")
34 + elif i == 7:
35 + print("익일 03시:", temper.text+"°C")
36 + else:
37 + print(str(int(hours[i][1:])+3)+"시:", temper.text+"°C")
38 +if max(sens_temper) <= 5:
39 + if min(sens_temper) >= -5 and min(sens_temper) <=0:
40 + print("패딩, 겨울야상, 양털자켓, 폴라티, 니트, 기모바지")
41 + print("쌀쌀한 날씨입니다. 생각보다 추워요!")
42 + elif min(sens_temper) < -5:
43 + print("패딩, 겨울야상, 양털자켓, 폴라티, 니트, 기모바지")
44 + print("마스크, 목도리, 장갑을 착용하세요!")
45 + if min(sens_temper) < -10:
46 + print("외출을 자제하는 것이 좋겠습니다!")
47 + elif min(sens_temper) > 0:
48 + print("패딩, 겨울야상, 양털자켓, 폴라티, 니트, 기모바지, 스타킹")
49 + print("0도를 웃도는 날씨네요. 외투 안에는 가벼운 옷을 추천해요!")
50 +
51 +
52 +if max(sens_temper) >= 6 and max(sens_temper) <= 9:
53 + print("코트, 가죽자켓, 맨투맨, 티셔츠(사계절), 바지(사계절)")
54 + if min(sens_temper) < 3:
55 + print("일교차에 유의하세요! 추위에 약한 분들은 외투 하나 더 챙기세요!")
56 +elif max(sens_temper) >= 10 and max(sens_temper) <= 11:
57 + print("트렌치코트, 간절기 야상, 후드티, 여러겹 레이어드")
58 + if min(sens_temper) < 5:
59 + print("일교차에 유의하세요! 추위에 약한 분들은 외투 하나 더 챙기세요!")
60 +elif max(sens_temper) >= 12 and max(sens_temper) <= 16:
61 + print("자켓, 셔츠, 가디건, 후드(사계절)")
62 + if min(sens_temper) < 6:
63 + print("일교차에 유의하세요! 추위에 약한 분들은 외투 하나 더 챙기세요!")
64 +elif max(sens_temper) >= 17 and max(sens_temper) <= 19:
65 + print("가디건, 니트, 맨투맨, 후드티, 면바지, 슬랙스, 원피스")
66 + if min(sens_temper) < 9:
67 + print("일교차에 유의하세요! 얇은 외투 챙겨가세요!")
68 +elif max(sens_temper) >= 20 and max(sens_temper) <= 22:
69 + print("긴팔티, 후드티, 면바지, 슬랙스")
70 + if min(sens_temper) < 11:
71 + print("일교차에 유의하세요! 얇은 외투 챙겨가세요!")
72 +elif max(sens_temper) >= 23 and max(sens_temper) <= 26:
73 + print("반팔티, 얇은 셔츠, 얇은 긴팔티, 반바지, 면바지")
74 +