CocoaPods trunk is moving to be read-only. Read more on the blog, there are 19 months to go.

TPGSwift 4.0.0

TPGSwift 4.0.0

TestsTested
LangLanguage SwiftSwift
License MIT
ReleasedLast Release Feb 2019
SPMSupports SPM

Maintained by Yannick Heinrich.



TPGSwift 4.0.0

TPGSwift

Swift libary for the TPG Open Data.

For more explanation: TPG Open Data

Build Status

MIT License Carthage compatible CocoaPods Compatible Platform

Usage

import TPGSwift

// MARK: - Setting the key

// Set the API Key
API.Key = "MY_API_KEY"

// MARK: - Creating an API call url

// Get stops for the stop code "WTC0"
let getStops = API.getStops(stopCode: "WTC0", stopName: nil, line: nil, latitude: nil, longitude: nil)

print("API Stops: \(getStops.URL)")
// -> API Stops: https://prod.ivtr-od.tpg.ch/v1/GetStops.json?key=KEY&stopCode=WTC0

// MARK: - Decode

let json = JSONDecoder()
// This is mandatory
decoder.dateDecodingStrategy = .iso8601

do {
    let stops = try json.decode(Record<Stop>.self, from: data)
    print("Stops: \(stops)")
} catch let error {
    print("Error: \(error)")
}

Paw

You can find a basic Paw file which will help you to play with the API. Open TPGSwift.paw and change the KEY variable in the Production group with the one received from the TPG.

License

TPGSwift is released under the MIT license. See LICENSE for details.