Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 15 additions & 0 deletions smartWeatherInfo/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
# Smart weather Information:

This automation script will send weather information as a desktop notification whenever you opened your pc

# requirements:

You need to install these three libraries to get started:

1. Beautiful Soup
2. ToastNotifier
3. Requests

# You can install these libraries using the command:

`pip install requests BeautifulSoup4 win10toast`
34 changes: 34 additions & 0 deletions smartWeatherInfo/weatherInfo.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
from bs4 import BeautifulSoup
import requests
import time
from win10toast import ToastNotifier

headers = {
'User-Agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.110 Safari/537.3'}


def weather(city):
city = city.replace(" ", "+")
res = requests.get(
f'https://www.google.com/search?q={city}&oq={city}&aqs=chrome.0.35i39l2j0l4j46j69i60.6128j1j7&sourceid=chrome&ie=UTF-8', headers=headers)
soup = BeautifulSoup(res.text, 'html.parser')
location = soup.select('#wob_loc')[0].getText().strip()
current_time = soup.select('#wob_dts')[0].getText().strip()
info = soup.select('#wob_dc')[0].getText().strip()
weather = soup.select('#wob_tm')[0].getText().strip()
information = f"{location} \n {current_time} \n {info} \n {weather} °C "

toaster = ToastNotifier()
toaster.show_toast("Weather Information",
f"{information}",
duration=10,
threaded=True)
while toaster.notification_active():
time.sleep(0.005)


# print("enter the city name")
# city=input()
city = "London"
city = city+" weather"
weather(city)