Metadata-Version: 2.1
Name: Cuaca
Version: 0.0.3
Summary: A python wrapper for Malaysian Weather Service API
Home-page: https://github.com/sweemeng/cuaca
Author: Ng Swee Meng
Author-email: sweester@gmail.com
License: BSD
Platform: UNKNOWN
Requires-Dist: requests

# cuaca aka the Malaysian Weather Service API Wrapper

To use the API first please register the API at https://api.met.gov.my/

example usage

```python
import cuaca

api = cuaca.WeatherAPI("API_KEY")

locations = api.locations("STATE")
states = api.states()
state = api.state("selangor")

forecast = api.forecast("LOCATION:15", "2017-08-12", "2017-08-13")
```


