lta-rs

lta-rs is a lta datamall client library written in pure safe rust. lta-rs is used to interact with the lta-datamall

lta-rust in action

Cargo.toml setup

```toml [dependencies]

for now, I will add to crates.io once its ready

lta = { git = "https://github.com/BudiNverse/lta-rs", branch = "0.1" } ```

API key setup

You can get your API key from here

```rust extern crate lta;

use lta::clientconfig::{ CLIENTCONFIG };

fn main() { // should only be set once CLIENTCONFIG.lock().unwrap().withapi_key("Your key here"); // your other stuff here // . // . // . }

```

Examples

Getting bus timings ```rust use lta::bus::bus_arrival;

fn getarrivals() { let resp: Result = busarrival(83139, "15"); match resp { Ok(busarrivalresp) => println!("{:?}", busarrivalresp), Err(e) => println!("{:?}", e) }; } ```

Getting anything else ``rust // All the APIs in this library are designed to be used like this //module::getsomething` // All of them return Result, Error> // The example below is bus::getbusservices() // and traffic::geterprates() // Do note that the API is similar across all the APIs except for // bus::getbusarrival use lta::bus::getbus_services;

fn getbusservices() { let resp: Result, Error> = bus::getbusservices(); match resp { Ok(r) => println!("{:?}", r), Err(e) => println!("{:?}", e) }; }

fn geterprates() { let resp: Result, Error> = traffic::geterprates(); match resp { Ok(r) => println!("{:?}", r), Err(e) => println!("{:?}", e) }; } ```

Getting help

Design decisions

Changelog

Version 0.1 - All endpoints that are available from lta datamall website - Configuration using API

License

lta-rs is licensed under MIT license (LICENSE-MIT or http://opensource.org/licenses/MIT)

Frequently Asked Questions

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

Common Technical Questions