Skip to main content

A free and asynchronous Weather API Wrapper.

Project description

python-weather

A free and asynchronous weather API wrapper made in python, for python.

Library Example

# import the module
import python_weather
import asyncio
import os

async def getweather():
  # declare the client. format defaults to the metric system (celcius, km/h, etc.)
  async with python_weather.Client(format=python_weather.IMPERIAL) as client:

    # fetch a weather forecast from a city
    weather = await client.get("New York")
  
    # returns the current day's forecast temperature (int)
    print(weather.current.temperature)
  
    # get the weather forecast for a few days
    for forecast in weather.forecasts:
      print(forecast.date, forecast.astronomy)
  
      # hourly forecasts
      for hourly in forecast.hourly:
        print(f' --> {hourly!r}')

if __name__ == "__main__":
  # see https://stackoverflow.com/questions/45600579/asyncio-event-loop-is-closed-when-getting-loop
  # for more details
  if os.name == "nt":
    asyncio.set_event_loop_policy(asyncio.WindowsSelectorEventLoopPolicy())

  asyncio.run(getweather())

If you're running debian, make sure to install aiohttp first:

sudo apt install python3-aiohttp

Otherwise install the ones in requirements.txt:

python -m pip install -r requirements.txt

Use example.py for a quick run ;)

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

python-weather-0.4.2.tar.gz (9.3 kB view details)

Uploaded Source

File details

Details for the file python-weather-0.4.2.tar.gz.

File metadata

  • Download URL: python-weather-0.4.2.tar.gz
  • Upload date:
  • Size: 9.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.10.5

File hashes

Hashes for python-weather-0.4.2.tar.gz
Algorithm Hash digest
SHA256 a2c0bebd0bbc2a3dd21deb2b0bb41fd29edbcfd99e5cc6cc3823227a90e328e7
MD5 d6b9480a35e8ee59fbc3e84748a07985
BLAKE2b-256 d561f3b8aa8a6f33a975cbe865da6295654596c2e67960d8285750fd226ec6b7

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page