-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathweather project.py
40 lines (36 loc) · 1.91 KB
/
weather project.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
from os import read
import requests
#import os
from datetime import datetime
api_key = 'f354473f1f7e5f9023ed7cc4659fab5f' #Taken from open weather website
location = input("Enter the city name: ")
complete_api_link = "https://api.openweathermap.org/data/2.5/weather?q="+location+"&appid="+api_key
api_link = requests.get(complete_api_link)
api_data = api_link.json()
#create variables to store and display data
temp_city = ((api_data['main']['temp']) - 273.15)
weather_desc = api_data['weather'][0]['description']
hmdt = api_data['main']['humidity']
wind_spd = api_data['wind']['speed']
date_time = datetime.now().strftime("%d %b %Y || %I:%M:%S %p")
print("*************************************************************************")
print(" Current weather Status of city - {} || {}".format(location.upper(), date_time))
print("*************************************************************************")
print(" Current temperature is : {:.2f} deg C".format(temp_city))
print(" Current weather description :", weather_desc)
print(" Current Humidity :", hmdt, '%')
print(" Current wind speed :", wind_spd, 'kmph')
#Taking records in .txt file
f = open("earlier report.txt","a")
f.write("*********************************************************************\n")
f.write(" Weather history for city - {} || {}\n".format(location.upper(), date_time))
f.write("*********************************************************************\n")
f.write('Current temperature is : {:.2f} deg C\n'.format(temp_city))
f.write('Current weather description : {:} \n'.format(weather_desc))
f.write('Current Humidity : {:.0f} %\n'.format(hmdt))
f.write('Current wind speed : {:} kmph\n'.format(wind_spd))
#For printing records from .txt file
f = open("earlier report.txt","r")
print("\n Older weather search records are-\n")
print(f.read())
f.close()