Skip to content
Merged
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
Empty file added Weather_App.py
Empty file.
26 changes: 26 additions & 0 deletions Weather_app/Weather_App.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
from tkinter import *
from geopy.geocoders import Nominatim
from tkinter import ttk, messagebox
from timezonefinder import TimezoneFinder
from datetime import datetime

import requests
import pytz


root = Tk()
root.title("Weather App")

root.geometry("900x500")
root.resizable(False, False)


# Creating the search box

search_image = PhotoImage(file="search2.png")
myImage = Label(image=search_image)
myImage.place(x=20, y=20)



root.mainloop()
Binary file added Weather_app/icons8-search-30.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added Weather_app/search.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added Weather_app/search1.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added Weather_app/search2.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added Weather_app/weather_cloud_clouds_cloudy_icon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.