Skip to content
    SCW6 — Interactive Weather App@MarianaSilva2
    .gitignore
    main.py
    Packager files
    poetry.lock
    pyproject.toml
    Config files
    .replit
    import requests
    from rich import print
    from datetime import datetime

    # DISPLAY THE CURRENT WEATHER
    def display_current_weather(city):
    """Displays the current weather"""
    api_key = "b50ffa23b56oata0433c66589b65e119"
    api_url = f"https://api.shecodes.io/weather/v1/current?query={city}&key={api_key}"
    response = requests.get(api_url)
    current_weather_data = response.json()
    current_weather_city = current_weather_data['city']
    current_weather_temperature = current_weather_data['temperature']['current']
    current_weather_temperature_fahrenheit = (float(current_weather_temperature * 9/5) + 32)
    print(f"Today in {current_weather_city}: {round(current_weather_temperature)}ºC ({round(current_weather_temperature_fahrenheit)}ºF)")

    # DISPLAY THE WEAHTER FORECAST
    def display_forecast_weather(city_name):
    """Displays the weather forecast"""
    api_key = "b50ffa23b56oata0433c66589b65e119"
    api_url = f"https://api.shecodes.io/weather/v1/forecast?query={city_name}&key={api_key}"

    response = requests.get(api_url)
    forecast_weather_data = response.json()

    for day in forecast_weather_data['daily']: # loop through this dictionary
    timestamp = day['time']
    date = datetime.fromtimestamp(timestamp)
    formatted_day = date.strftime("%A")
    temperature = day['temperature']['day']
    temperature_fahrenheit = (float(temperature * 9/5) + 32)
    if date.date() != datetime.today().date(): # Exclude today on the forecast
    print(f"[blue]{formatted_day}[/blue]: {round(temperature)}ºC ({round(temperature_fahrenheit)}ºF)")


    def welcome():
    print("[purple bold] Welcome to my Weather app 🌤️ [/purple bold]")
    def credit():
    print("\n[yellow underline]This app was built by maryforglobalgoals.[/yellow underline]")

    welcome()
    city_name = input("Enter a city:")
    city_name = city_name.strip() #it cleans the spaces
    city_name = city_name.capitalize()

    if city_name: #If city exists
    display_current_weather(city_name)
    print("\n[purple bold]Forecast:[/purple bold]") # Add a line in between
    display_forecast_weather(city_name)
    credit()
    else:
    print("Please, try again with a city.")