10 lines
187 B
Python
10 lines
187 B
Python
from astral import Astral
|
|
|
|
CITY_NAME = "Seinäjoki"
|
|
|
|
a = Astral()
|
|
city = a[CITY_NAME]
|
|
print(f"Sunrise in {CITY_NAME}: {city.sunrise()}")
|
|
print(f"Sunset in {CITY_NAME}: {city.sunset()}")
|
|
|