An API for OpenWeather's API suite.
This repository is under a Mozilla Public License Version 2.0 license.
Usage
Add your OpenWeather API key to secrets.yaml
file:
current_forecast_weather_data_api_key: "your_key_goes_here"
A simple usage example:
Future<void> main(List<String> arguments) async {
var w = CurrentWeather.fromJson(await byCityId(4161438));
stdout.writeln(w);
}
Features and bugs
Please file feature requests and bugs at the issue tracker.
Libraries
- current_weather
- Use this to intereact with OpenWeather's current weather data api.