Contents

kiliankoe/cnkit

Access [Campus Navigator](https://navigator.tu-dresden.de) data through a swift wrapper.

Installation

CNKit is available through Carthage/Punic and Swift Package Manager, whatever floats your boat.

// Carthage
github "kiliankoe/CNKit"

// Swift Package Manager
.package(url: "https://github.com/kiliankoe/CNKit", from: "latest version")

Overview

The basic interaction is the same through all model types. Here as an example for the all-encompassing Campus type.

Campus.fetch { result in
    guard let buildings = result.success else { return }
    for building in buildings {
        print(building.abbrev)
    }
}

// P38, APB, ...

All types returned by the API have a method called fetch (or very similar) to request either a specific resource or a list of them. Any necessary params are required by the method.

Further documentation can be found here: https://kiliankoe.github.io/CNKit/

Package Metadata

Repository: kiliankoe/cnkit

Default branch: master

README: README.md