We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 004b947 commit 7577a97Copy full SHA for 7577a97
weather application/weather.py
@@ -12,7 +12,7 @@ def weather_report(self):
12
13
self.url = "http://api.openweathermap.org/data/2.5/weather?q="
14
self.cityname = self.loc.get(1.0,END)
15
- self.api_key = '979d87e04f9d3a24d8806502c07a0ccf'
+ self.api_key = 'paste your api key here'
16
self.data = requests.get(self.url+self.cityname+'&appid='+self.api_key).json()
17
18
@@ -136,4 +136,4 @@ def __init__(self):
136
137
Weather()
138
139
-
+
0 commit comments