Skip to main content

The goal of this project is to create a user friendly api client for AccuWeather api.

Project description

AccuWeather

A python library to interact with the accuweather api.

General information

For now, there is only basic functionality included in this package. However, I hope to add more features in the future.

The functionality that makes this package unique is the integration of the location client within the weather client. Specifying location by city name (and country optionally) is a more userfriendly way to interact with the api.

Before you start

You need to create an api token on the AccuWeather website (https://developer.accuweather.com).

How to use the package

""""Some code to show the functionality of the package"""

from accuweather_client.clients import WeatherClient
from constants import API_KEY

# Create an instance of the WeatherClient class
weather = WeatherClient(token=API_KEY, city="sydney", country="canada")
# Provides information about the location
weather.location

# The country argument for the WeatherClient instance is optional
# The code below would give you the location for Syndey, Australia
weather = WeatherClient(token=API_KEY, city="sydney")

# Creates an instance that yields forecast information
forecast = weather.get_5day_forecast()
# Prints the forecast for tomorrow
forecast.forecast_tomorrow
# Returns a pandas df with forecast information
forecast.to_pandas_df()

# Creates an instance that yiels information about the current conditions
conditions = weather.get_current_conditions()
# Prints the current conditions
conditions.current_conditions

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

accuweather_client-0.0.1.tar.gz (6.5 kB view hashes)

Uploaded Source

Built Distribution

accuweather_client-0.0.1-py3-none-any.whl (7.1 kB view hashes)

Uploaded Python 3

Supported by

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