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
toml
[dependencies]
lta = "0.3.0-async-preview-1"
You can get your API key from here
```rust extern crate lta;
use lta::lta_client::*;
fn main() { let apikey = "MYAPIKEY"; let client = LTAClient::withapikey(apikey); }
```
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
```rust use lta::r#async::ltaclient::LTAClient; use lta::r#async::{bus::getarrival, traffic::geterprates}; use lta::utils::commons::Client; use tokio::prelude::Future;
fn asyncexample(client: <AClient) -> impl Future
fn runasync() { let apikey = env::var("APIKEY").unwrap(); let client = <AClient::withapikey(apikey); let fut = async_example(client); tokio::run(fut); } ```
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 a global LTAClient
Version 0.2.1
- Updated dependencies to latest version as of 21 July 2019
Version 0.2.2 [ Broken getbusstops, yanked from crates.io ]
- Updated LTAClient::with_api_key
to create a LTAClient
Version 0.2.3
- Hotfix for broken lta::bus::get_bus_stops
which will panic due to typo in serde rename
Version 0.3.0-async-preview-1 [ Breaking Changes ]
- Client trait, now has 2 clients, one with async capabilities
- Currently using futures-preview = "0.3.0-alpha.17"
and tokio = "0.1.22"
std::future
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 it is and your application still panics because of this library, create a github issue
Is this project affiliated to LTA or any government bodies?
No.