TestsTested | ✓ |
LangLanguage | SwiftSwift |
License | MIT |
ReleasedLast Release | Oct 2016 |
SwiftSwift Version | 3.0 |
SPMSupports SPM | ✗ |
Maintained by Sergi Gracia.
DarkSky.net API client written in Swift.
import DarkSkyKit
Init the DarkSkyKit client using only the api token.
let forecastClient = DarkSkyKit(apiToken: "AAA")
Init the DarkSkyKit client using a custom configuration. Check out the darksky.net documentation to know more about these properties (units, exclude, extend & language).
let c = Configuration(token: "AAA", units: .si, exclude: .alerts, lang: "ES")
let forecastClient = DarkSkyKit(configuration: c)
DarkSkt.net API provides 2 ways of fetch weather data: current and time machine.
Fetch current weather conditions based on a given location.
forecastClient.current(latitude: 0.34565, longitude: 1.64559) { result in
switch result {
case .Success(let forecast):
// Manage weather data using the Forecast model. Ex:
if let current = forecast.currently {
let t = current.temperature
}
case .Failure(let error):
// Manage error case
}
}
Fetch weather conditions based on a given date and location.
let d = NSDate(timeIntervalSinceNow: timestamp)
forecastClient.current(latitude: 0.34565, longitude: 1.64559, date: d) { result in
// Manage result
}
To install it, simply add the following line to your Podfile:
pod "DarkSkyKit"
This project is funded and maintained by Caramba. We
Check out our other open source projects, read our blog or say
Contributions are welcome
DarkSkyKit is available under the MIT license. See the LICENSE file for more info.