yageek / TPGSwift

:bus: TPG OpenData Swift Library

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

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.

About

:bus: TPG OpenData Swift Library

License:MIT License


Languages

Language:Swift 72.0%Language:Ruby 22.7%Language:Shell 3.8%Language:Objective-C 1.5%