🚍 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 = { version = "0.4.0", features = ["blocking", "async"] } ```
You can get your API key from here
```rust
use lta::prelude::*;
fn main() { let apikey = "MYAPIKEY"; let client = LTAClient::withapikey(apikey); } ```
Getting bus timings
```rust use lta::prelude::*; use lta::blocking::ltaclient::LTAClient; use lta::blocking::bus::getarrival;
fn getbusarrival() -> LTAResult<()> { let apikey = std::env::var("APIKEY").expect("APIKEY not found!"); let client = LTAClient::withapikey(apikey); let arrivals: BusArrivalResp = get_arrival(&client, 83139, None)?; println!("{:?}", arrivals); Ok(()) } ```
Getting other data
``rust
// All the APIs in this library are designed to be used like this
//
lta::blocking::module::getsomething`
// All of them return lta::utils::LTAResult
fn busservices() -> LTAResult<()> {
let apikey = std::env::var("APIKEY").expect("APIKEY not found!");
let client = LTAClient::withapikey(apikey);
let busservices: Vec
fn geterp() -> LTAResult<()> {
let apikey = std::env::var("APIKEY").expect("APIKEY not found!");
let client = LTAClient::withapikey(apikey);
let erprates: Vec
Using std::future and tokio
```rust use std::env; use lta::prelude::*; use lta::r#async::{ bus::getarrival, ltaclient::LTAClient };
#[tokio::main]
async fn fut() -> LTAResult<()> {
let api_key = env::var("API_KEY").expect("API_KEY must be set!");
let client = LTAClient::with_api_key(api_key);
let f1 = get_arrival(&client, 83139, None).await?;
let f2 = get_arrival(&client, 83139, None).await?;
println!("{:?} \n{:?}", f1, f2);
Ok(())
}
```
There are some instances where you might need to customise the reqwest client due to certain limitations.
```rust use lta::prelude::*; use std::time::Duration; use lta::utils::reqwest::blocking::ClientBuilder; use lta::blocking::lta_client::LTAClient;
fn mycustomclient() -> LTAClient { let client = ClientBuilder::new() .nogzip() .connecttimeout(Some(Duration::new(420,0))) .build() .unwrap();
LTAClient::new(Some("api_key".to_string()), client)
} ```
Futures
Using normal threads
```rust use std::sync::Arc; use std::thread::spawn; use lta::blocking::{ ltaclient::LTAClient, traffic::getcarpark_avail, }; use lta::prelude::*;
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, None).unwrap();
println!("{:?}", res)
});
let vms = traffic::get_vms_emas(&c2, None).unwrap();
println!("{:?}", vms);
child.join();
} ```
LTAClient
as it holds a connection pool internallyUpdate Freq
in the documentation and prevent
yourself from getting blacklisted. Use a caching mechanism. async
APIs over writing your own implementations for concurrent requests.Changelog can be found here
On Linux:
On Windows and macOS:
lta-rs uses rust-native-tls internally, which will use the operating system TLS framework if available, meaning Windows and macOS. On Linux, it will use OpenSSL 1.1.
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 official LTA docs.
Where do I get the official docs from lta?
You can get them here