Metadata-Version: 2.1
Name: arso2weather
Version: 0.1.4
Summary: Basic package to get the current temperature of Slovenians cities.
Author: Sven Ulcar
Author-email: <sven.ulcar@gmail.com>
Keywords: python,weather,slovenia,arso,vreme
Classifier: Development Status :: 1 - Planning
Classifier: Intended Audience :: Developers
Classifier: Programming Language :: Python :: 3
Classifier: Operating System :: Unix
Classifier: Operating System :: MacOS :: MacOS X
Description-Content-Type: text/markdown
Requires-Dist: requests

# Arso2weather

### What is it?

- Arso2weather is a small package that allows you to look up the current temperature of certian Slovenian cities.

- It can also output sunrise/sunset of certain Slovenian city

- Temperature is displayed in Celsius (C°).

- The package is using [ARSO Vreme](https://meteo.arso.gov.si/uploads/probase/www/observ/surface/text/sl/observationAms_si_latest.xml) data.

### Usage

```
from arso2weather import Arso2Weather

city = Arso2Weather("Ljubljana")
temp = city.weather_temp()
sunrise = city.sunrise()
sunset = city.sunset()
all_cities_temp = Arso2Weather().all_weather_temp()

print(temp, sunrise, sunset)
print(all_cities_temp)

```
