# CurrentWeather

Represents the current weather of the [Weather ](https://nerdguyahmad.gitbook.io/randomstuff/data-classes/weather)object.

|              **Attributes**              |
| :--------------------------------------: |
|       [`temprature`](#temperature)       |
|           [`skycode`](#skycode)          |
|           [`skytext`](#skytext)          |
|              [`date`](#date)             |
|               [`day`](#day)              |
|          [`shortday`](#shortday)         |
|   [`observationtime`](#observationtime)  |
|  [`observationpoint`](#observationpoint) |
|         [`feelslike`](#feelslike)        |
|        [`humidity`](#winddisplay)        |
|       [`winddisplay`](#winddisplay)      |
|        [`windspeed`](#winddisplay)       |
|          [`imageUrl`](#imageurl)         |
|          [`imageurl`](#imageurl)         |
|          [`imageURL`](#imageurl)         |
|         [`image_url`](#imageurl)         |
|          [`sky_code`](#skycode)          |
|          [`sky_text`](#skytext)          |
|  [`observation_time`](#observationtime)  |
| [`observation_point`](#observationpoint) |
|        [`feels_like`](#feelslike)        |
|      [`wind_display`](#winddisplay)      |
|        [`wind_speed`](#windspeed)        |
|         [`short_day`](#shortday)         |

## Attributes

### `temperature`

The current temperature of location.

**Type:** `str`

### `skycode`

The sky code of weather.

**Type:** `str`

### `skytext`

The sky text of weather.

**Type:** `str`

### `date`

The date of weather.

**Type:** `str`

### `day`

The day of weather.

**Type:** `str`

### `shortday`

The short-form of [`day`](#day) attribute. For example, if `day` attribute is "Saturday" the `shortday` will be "Sat"

**Type:** `str`

### `observationtime`

The observation time of the weather.

**Type:** `str`

### `observationpoint`

The observation point of the weather.

**Type:** `str`

### `feelslike`

The 'feels like' temperature of the weather.

**Type:** `str`

### `humidity`

The humidity of the weather.

**Type:** `str`

### `winddisplay`

The wind display of the weather.

**Type:** `str`

### `windspeed`

The wind speed of the weather.

**Type:** `str`

### `imageUrl`

The image URL of the weather.

**Type:** `str`
