Metadata-Version: 2.1
Name: EorzeaEnv
Version: 1.1.0
Summary: Final Fantasy XIV weather & time tools.
Home-page: https://github.com/EltonChou/EorzeaEnv
Author: Elton H.Y. Chou
Author-email: plscd748@gmail.com
License: MIT
Project-URL: Bug Reports, https://github.com/EltonChou/EorzeaEnv/issues
Project-URL: Thanks!, https://github.com/Rogueadyn/SaintCoinach
Project-URL: Source, https://github.com/EltonChou/EorzeaEnv
Keywords: eorzea ffxiv ff14
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: Topic :: Utilities
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6.0
Description-Content-Type: text/markdown
Requires-Dist: numpy


[![Pypi](https://img.shields.io/pypi/v/eorzeaenv.svg?style=flat-square)](https://pypi.org/project/EorzeaEnv/)
[![Pypi](https://img.shields.io/pypi/pyversions/eorzeaenv.svg?style=flat-square)](https://pypi.org/project/EorzeaEnv/)


# EorzeaEnv
## Installation
```
pip install EorzeaEnv
```

## Usage
```python
from EorzeaEnv.EorzeaTime import EorzeaTime
from EorzeaEnv.EorzeaWeather import EorzeaWeather
```
### Eorzea Time
```python
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
```python
weather_list = []

for t in EorzeaTime.weather_period():
    weather = EorzeaWeather.forecast_weather("Eureka Pyros", t)
    weather_list.append(weather)

print(weather)
#['Heat Waves', 'Snow', 'Thunder', 'Thunder', 'Heat Waves']
```
## Thanks
- [Rogueadyn-SaintCoinach](https://github.com/Rogueadyn/SaintCoinach)


