Dark Sky API wrapper in Crystal.
Documentation: https://darksky.net/dev/docs
Add this to your application's shard.yml
:
dependencies:
darksky:
github: sb89/crystal-darksky
require "darksky"
client = Darksky.new("api key...")
forecast = client.get_forecast("38.385939", "-97.43004")
forecast.currently.try do |c|
p "The temperature is #{c.temperature}!"
end
Additional options can be specified when calling Darksky.new(...)
. These options will be used for each API request.
client = Darksky.new("api key...", lang: Darksky::Language::NL, units: Darksky::Units::SI, extend_hourly: true, exclude: [Darksky::Blocks::Minutely, Darksky::Blocks::Daily] )
Additional options can also be specified when calling get_forecast(...)
. Any options specified here will override the options specified in the new()
method for this request.
client.get_forecast("38.385939", "-97.43004", lang: Darksky::Language::NL, units: Darksky::Units::SI, extend_hourly: true, exclude: [Darksky::Blocks::Minutely, Darksky::Blocks::Daily] )
- Fork it ( https://github.com/sb89/crystal-darksky/fork )
- Create your feature branch (git checkout -b my-new-feature)
- Commit your changes (git commit -am 'Add some feature')
- Push to the branch (git push origin my-new-feature)
- Create a new Pull Request
- sb89 Steven - creator, maintainer