Skip to main content

Final Fantasy XIV weather & time tools.

Project description

Pypi Pypi Build Status

EorzeaEnv

Installation

pip install EorzeaEnv

Usage

from EorzeaEnv import EorzeaTime
from EorzeaEnv import EorzeaWeather

Eorzea Time

EorzeaTime.now() 
=>  'EorzeaTime(Sixth Embral Moon, 11, 21, 56, 0.50, Althyk)'
EorzeaTime.now().moon 
=>  'Sixth Embral Moon'
EorzeaTime.now().sun 
=>  11
EorzeaTime.now().hour 
=>  21
EorzeaTime.now().minute 
=>  56
EorzeaTime.now().phase 
=>  0.50
EorzeaTime.now().guardian 
=>  'Althyk'

Weather Forecast

weather_en = []
weather_jp = []
weather_de = []
weather_fr = []

#defalut step value is 5
for t in EorzeaTime.weather_period(step=3):
    #defalut lang is 'en'
    w_en = EorzeaWeather.forecast_weather('Eureka Pyros', t)
    w_jp = EorzeaWeather.forecast_weather('Eureka Pyros', t, lang='jp')
    w_de = EorzeaWeather.forecast_weather('Eureka Pyros', t, lang='de')
    w_fr = EorzeaWeather.forecast_weather('Eureka Pyros', t, lang='fr')
    weather_en.append(w_en)
    weather_jp.append(w_jp)
    weather_de.append(w_de)
    weather_fr.append(w_fr)

print(weather_en)
=>  ['Thunder', 'Snow', 'Blizzards']
print(weather_jp)
=>  ['雷', '雪', '吹雪']
print(weather_de)
=>  ['Gewittrig', 'Schnee', 'Schneesturm']
print(weather_fr)
=>  ['Orages', 'Neige', 'Blizzard']

Thanks

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

EorzeaEnv-1.2.3.tar.gz (13.0 kB view hashes)

Uploaded Source

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