DSMKit 0.1.1

DSMKit 0.1.1

Maintained by Changbeom Ahn.



DSMKit 0.1.1

  • By
  • Changbeom Ahn

DSMKit

Swift library for Synology DSM APIs

CI Status Version License Platform

Usage

import DSMKit

let dsm = DSM(host: "<IP address or hostname>")

dsm.get(API.Auth.login(account: "<account>", password: "<password>")) { sessionId, error in
    // ...
}

...

dsm.get(FileStation.List.list(path: "<path>") { data, error in
    // data?.files[0].name
}

Example

To run the example project, clone the repo, and run pod install from the Example directory first.

Requirements

Swift 4

Installation

DSMKit is available through CocoaPods. To install it, simply add the following line to your Podfile:

pod 'DSMKit'

TODO

  • support more APIs
  • divide pod into sub specs
  • ...

Author

Changbeom Ahn, [email protected]

Inspirations

http://kwent.github.io/syno

License

DSMKit is available under the MIT license. See the LICENSE file for more info.