lta-rs is a lta datamall client library written in pure safe rust. lta-rs is used to interact with the lta-datamall
There are various versions available. If you omit branch = "version_no"
, you are taking it from master branch
The library is also available on crates.io
WIP, doesn't work yet
toml [dependencies] lta = "0.2.0"
You can get your API key from here
```rust extern crate lta;
use lta::lta_client::*;
fn main() { // should only be set once let apikey: String = "MYAPIKEY".tostring(); let client = LTAClient::new().withapikey(api_key); // your other stuff here // . // . // . }
```
Getting bus timings ```rust use lta::bus::getarrival; use lta::ltaconfig::*;
fn getarrivals(client: <AClient) {
let resp: Result
Getting anything else
``rust
// All the APIs in this library are designed to be used like this
//
module::getsomething`
// All of them return Result
fn getbusservices(client: <AClient) {
let resp: Result
fn geterprates(client: <AClient) {
let resp: Result
Version 0.1 - All endpoints that are available from lta datamall website - Configuration using API
Version 0.2 [ Breaking Changes ] - Changed all API to take in <AClient rather than using global
lta-rs is licensed under MIT license (LICENSE-MIT or http://opensource.org/licenses/MIT)
Where do I get the official docs from lta?
You can get them here
Why are some of the datatypes different from the lta documentation?
Some of the datatypes returned are not ideal such as returning lat
and lang
as string
rather than number
. Some of the types are also converted to enums to reduce the number of stringly typed stuff
My application panicked.
Check if your API key is valid, if not create a github issue
Is this project affiliated to LTA or any government bodies?
No