🚍 Singapore LTA Datamall Rust Client written in pure rust with support for asynchronous requests. lta-rs is used to interact with the lta-datamall
toml
[dependencies]
lta = "0.3.0-async-preview-4"
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::prelude::*; use lta::ltaclient::LTAClient; use lta::bus::getarrival; use lta::Result;
fn getbusarrival() -> Result<()> { let apikey = std::env::var("APIKEY").unwrap(); let client = LTAClient::withapikey(apikey); let arrivals: BusArrivalResp = getarrival(&client, 83139, None)?; println!("{:?}", arrivals); Ok(()) } ```
Getting anything else
``rust
// All the APIs in this library are designed to be used like this
//
module::getsomething`
// All of them return lta::utils::Result
fn busservices() -> Result<()> {
let apikey = std::env::var("APIKEY").unwrap();
let client = LTAClient::withapikey(apikey);
let busservices: Vec
fn geterp() -> Result<()> {
let apikey = std::env::var("APIKEY").unwrap();
let client = LTAClient::withapikey(apikey);
let erprates: Vec
```rust use lta::r#async::{ prelude::*, ltaclient::LTAClient, bus::getarrival, traffic::geterprates }; use std::env::var; use tokio::run;
fn asyncexample(client: <AClient) -> impl Future
fn multipleasyncrequests() { let apikey = var("APIKEY").unwrap(); let client = <AClient::withapikey(apikey); let fut = asyncexample(client); run(fut); } ```
There are some instance where you might need to customise the client more due to certain limitations. ```rust use std::time::Duration; use lta::reqwest::ClientBuilder; use lta::lta_client::LTAClient; use lta::utils::commons::Client;
fn mycustomclient() -> LTAClient { let client = ClientBuilder::new() .gzip(true) .connect_timeout(Some(Duration::new(420,0))) .build() .unwrap();
LTAClient::new(Some("api_key".to_string()), client)
} ```
Futures
```rust use std::sync::Arc; use std::thread::spawn; use lta::lta_client::LTAClient; use lta::utils::commons::Client;
fn concurrent() { let apikey = env::var("APIKEY").unwrap(); let c1 = Arc::new(LTAClient::withapikey(api_key)); let c2 = c1.clone();
let child = spawn(move || {
let res = get_carpark_avail(&c1).unwrap();
println!("{:?}", res)
});
let vms = traffic::get_vms_emas(&c2).unwrap();
println!("{:?}", vms);
child.join();
} ```
LTAClient
as it holds a connection pool internallyUpdate Freq
in the documentation andprevent
yourself from getting blacklisted. Use a caching mechanism. async
APIs over writing your own implementation for concurrent requests.Changelog can be found here
std::future
Client
lta-rs is licensed under MIT license (LICENSE-MIT or http://opensource.org/licenses/MIT)
Is this library being actively developed?
Yes. However, development will slow down from mid August 2019 onwards due to my NS commitments.
What are the APIs available?
Take a look at the offical LTA docs.
Where do I get the official docs from lta?
You can get them here
Why are some of the data types different from the lta documentation?
Some of the data types 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
Why is the most fully featured LTA client library implemented in a language not many people use?
Friendship ended with Kotlin. Now Rust is my best friend ❤️.
Is this project affiliated to LTA or any government body?
No.
What is the plan to move to
std::future
?
Currently waiting for dependencies to move to std::future
. However, this might take some time and different libraries might
update at different times, so I am currently experimenting on making the APIs exposed to users use std::future
while the internal implementation
depends on the compat
layer provided by futures-preview
.
All the async stuff is currently on preview and will be released for 0.3.0
. I do not want to rush the implementation of async APIs to
ensure that the ergonomics of them are user friendly. Considering that a lot of libraries are currently moving to std::future
,
this can be very confusing to beginners that want to take a look into futures.
Development of this happen on master
branch.