# Weather

Represents the weather returned by [`get_weather()`](https://nerdguyahmad.gitbook.io/randomstuff/clients/client#get_weather) method.

|      **Attributes**     |
| :---------------------: |
| [`location`](#location) |
|  [`current`](#current)  |
| [`forecast`](#forecast) |

## Attributes

### `location`

The location of the weather.

**Type:** [`WeatherLocation`](https://nerdguyahmad.gitbook.io/randomstuff/data-classes/weatherlocation)

### `current`

The current weather.

{% hint style="info" %}
There's a chance that this is `None`
{% endhint %}

**Type:** Optional\[[`CurrentWeather`](https://nerdguyahmad.gitbook.io/randomstuff/data-classes/currentweather)]

### `forecast`

The list of weather forecast of different days.

**Type:** List\[[`WeatherForecast`](https://nerdguyahmad.gitbook.io/randomstuff/data-classes/weatherforecast)]
