-
Notifications
You must be signed in to change notification settings - Fork 0
/
weather.py
148 lines (121 loc) · 5.77 KB
/
weather.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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
#!/usr/bin/env python3
# Created by Marwan Mashaly
# Created on December 2019
# This program fFinds the weather of a certain city
import pyowm
from tkinter import *
from tkinter.ttk import *
from PIL import ImageTk,Image
root = Tk()
root.title('Weather')
root.configure(background = "sky blue")
#root.geometry("320x480")
#opening images getting them ready
img = Image.open(r'/home/pi/Downloads/sno3.png')
# Styling the label widget
label = Label(root, text = "Weather", font = ('calibri', 25, 'bold'), foreground = 'yellow', background = 'sky blue')
label2 = Label(root, text = "Clouds :", font = ('calibri', 16), foreground = 'white', background = 'sky blue')
label3 = Label(root, text = "", font = ('calibri', 12), foreground = 'white', background = 'sky blue')
label4 = Label(root, text = "Rain : ", font = ('calibri', 16), foreground = 'white', background = 'sky blue')
label5 = Label(root, text = "", font = ('calibri', 12), foreground = 'white', background = 'sky blue')
label6 = Label(root, text = "snow :", font = ('calibri', 16), foreground = 'white', background = 'sky blue')
label7 = Label(root, text = "", font = ('calibri', 12), foreground = 'white', background = 'sky blue')
label8 = Label(root, text = "fog :",font = ('calibri', 16), foreground = 'white', background = 'sky blue')
label9 = Label(root, text = "", font = ('calibri', 12), foreground = 'white', background = 'sky blue')
label10 = Label(root, text = "Temprature in Celsius :", font = ('calibri', 16), foreground = 'white', background = 'sky blue')
label11 = Label(root, text = "", font = ('calibri', 12), foreground = 'white', background = 'sky blue')
label12 = Label(root, text = "weather details", font = ('calibri', 16), foreground = 'white', background = 'sky blue')
label13 = Label(root, text = "", font = ('calibri', 12), foreground = 'white', background = 'sky blue')
label14 = Label(root, text = "Wind Speed", font = ('calibri', 16), foreground = 'white', background = 'sky blue')
label15 = Label(root, text = "", font = ('calibri', 12), foreground = 'white', background = 'sky blue')
label16 = Label(root, text = "Cloud coverage (in percent) :", font = ('calibri', 16), foreground = 'white', background = 'sky blue')
label17 = Label(root, text = "", font = ('calibri', 12), foreground = 'white', background = 'sky blue')
#label18 = Label(root, text = "Sun: ", font = ('calibri', 16), foreground = 'white', background = 'black')
#label19 = Label(root, text = "", font = ('calibri', 12), foreground = 'white', background = 'black')
label20 = Label(root, text = "location : ", font = ('calibri', 16), foreground = 'white', background = 'sky blue')
label21 = Label(root, text = "", font = ('calibri', 12), foreground = 'white', background = 'sky blue')
#label.pack(anchor = 'center')
label.grid(row = 1, column = 0)
label2.grid(row = 5, column = 0)
label3.grid(row = 5, column = 2)
label4.grid(row = 6, column = 0)
label5.grid(row = 6, column = 2)
label6.grid(row = 7, column = 0)
label7.grid(row = 7, column = 2)
label8.grid(row = 8, column = 0)
label9.grid(row = 8, column = 2)
label10.grid(row = 9, column = 0)
label11.grid(row = 9, column = 2)
label12.grid(row = 10, column = 0)
label13.grid(row = 10, column = 2)
label14.grid(row = 11, column = 0)
label15.grid(row = 11, column = 2)
label16.grid(row = 12, column = 0)
label17.grid(row = 12, column = 2)
#label18.grid(row = 13, column = 0)
#label19.grid(row = 13, column = 2)
label20.grid(row = 13, column = 0)
label21.grid(row = 13, column = 2)
#label.grid(row = 5, column = 1)
# adding an image to tkinter
#canvas=Canvas(root,width=300,height=480)
#image=ImageTk.PhotoImage(Image.open("C:\\Users\\marwa\\OneDrive\\Pictures\\cloudy.gif"))
#label = Label(image=image)
#label.grid(row = 14, column = 2)
def main():
# This
owm = pyowm.OWM('3a65677897148889d39423a3ce8e1716') # You MUST provide a valid API key
ottawa = owm.three_hours_forecast('Ottawa, Canada')
loc = "Ottawa"
label21.config(text = loc)
clouds = ottawa.will_have_clouds()
fog = ottawa.will_have_fog()
rain = ottawa.will_have_rain()
snow = ottawa.will_have_snow()
#if clouds == 1:
# img = Image.open(r'C:\\Users\\marwa\\Downloads\\clearSky.jpg')
# tkimage = ImageTk.PhotoImage(img)
# img = img.resize((250, 250), Image.ANTIALIAS)
#tkimage.geometry("120x80")
#Label(root, image=tkimage, text=" There is clouds today").grid(row = 5, column = 2) # Put it in the display window
# else:
# img = Image.open(r'C:\\Users\\marwa\\Downloads\\clearSky.jpg')
# tkimage = ImageTk.PhotoImage(img)
# img = img.resize((250, 250), Image.ANTIALIAS)
#tkimage.geometry("120x80")
# Label(root, image=tkimage, text=" There is no clouds today").grid(row = 5, column = 2) # Put it in the display window
if rain == 1:
rain = "there is rain today"
else:
rain = "there is no rain today"
if snow == 1:
snow = "there is snow today"
else:
snow = "there is no snow today"
if fog == 1:
fog = "there is fog today"
else:
fog = "there is no fog today"
if clouds == 1:
clouds = "there is clouds today "
else:
clouds = "there is no clouds today"
label3.config(text = clouds)
label5.config(text = rain)
label7.config(text = snow)
label9.config(text = fog)
# label19.config(text = sun)
ott = owm.weather_at_place('Ottawa, Canada')
weather = ott.get_weather()
temp = weather.get_temperature('celsius')['temp']
temp = round(temp)
label11.config(text = temp)
description = weather.get_detailed_status()
label13.config(text = description)
wind = weather.get_wind()
label15.config(text = wind)
cloud_cov = weather.get_clouds()
label17.config(text = cloud_cov)
if __name__ == "__main__":
main()
root.mainloop()