Crates.io | currensees |
lib.rs | currensees |
version | 0.1.4 |
source | src |
created_at | 2023-04-23 04:29:13.800742 |
updated_at | 2023-05-02 12:55:52.018655 |
description | A Rust library to interact with the Currency API. |
homepage | |
repository | |
max_upload_size | |
id | 846341 |
size | 40,414 |
A Rust library to interact with the Currency API.
Add this library as a dependency in your Cargo.toml
:
[dependencies]
currensees = "0.1.3"
use currensees::auth;
// Currency API Authentication
async fn main() {
let username = "your_username";
let password = "your_password";
let result = auth::login(username, password).await;
match result {
Ok(response) => println!("Received response: {:?}", response),
Err(error) => println!("Error: {:?}", error),
}
}
use currensees::currencies;
// Get All Currencies
async fn currencies_get_all() {
let user_type = "member";
let username = "your_username";
let day = "19";
let month = "04";
let year = "2024";
let uuid = None;
let result = currencies(user_type, username, day, month, year, uuid).await;
match result {
Ok(response) => println!("Received response (Get All): {:?}", response),
Err(error) => println!("Error: {:?}", error),
}
}
// Get Currency By ID
async fn currencies_get_by_id() {
let user_type = "member";
let username = "your_username";
let day = "19";
let month = "04";
let year = "2023";
let uuid = Some("currency_uuid");
let result = currencies(user_type, username, day, month, year, uuid).await;
match result {
Ok(response) => println!("Received response (Get By ID): {:?}", response),
Err(error) => println!("Error: {:?}", error),
}
}
use currensees::historical;
// Get All Historical Data
async fn historical_get_all() {
let user_type = "member";
let username = "your_username";
let date = "2023_04_02";
let day = "19";
let month = "04";
let year = "2023";
let uuid = None;
let result = historical(user_type, username, date, day, month, year, uuid).await;
match result {
Ok(response) => println!("Received response (Get All): {:?}", response),
Err(error) => println!("Error: {:?}", error),
}
}
// Get Historical Data By ID
async fn historical_get_by_id() {
let user_type = "member";
let username = "your_username";
let date = "2023_04_02";
let day = "02";
let month = "04";
let year = "2023";
let uuid = Some("historical_uuid");
let result = historical(user_type, username, date, day, month, year, uuid).await;
match result {
Ok(response) => println!("Received response (Get By ID): {:?}", response),
Err(error) => println!("Error: {:?}", error),
}
}
use currensees::convert;
// Converting between two currencies
async fn main() {
let user_type = "member";
let username = "your_username";
let date = "2023_04_02";
let base_currency = "GBP";
let target_currency = "EUR";
let amount = "500";
let result = convert::convert(user_type, username, date, base_currency, target_currency, amount).await;
match result {
Ok(response) => println!("Received response: {:?}", response),
Err(error) => println!("Error: {:?}", error),
}
}
use currensees::convert_all;
// Converting between two currencies
async fn main() {
let user_type = "member";
let username = "your_username";
let base_currency = "GBP";
let amount = "500";
let date = "2023_04_02";
let result = convert_all::convert_all(user_type, username, base_currency, amount, date).await;
match result {
Ok(response) => println!("Received response: {:?}", response),
Err(error) => println!("Error: {:?}", error),
}
}
use currensees::daily_average;
// Retrieve daily average data
async fn main() {
let user_type = "member";
let username = "your_username";
let date = "2023_04_10";
let result = daily_average::daily_average(user_type, username, date).await;
match result {
Ok(response) => println!("Received response: {:?}", response),
Err(error) => println!("Error: {:?}", error),
}
}
use currensees::weekly_average;
// Retrieve weekly average data
async fn main() {
let user_type = "member";
let username = "your_username";
let from_date = "2023_04_03";
let to_date = "2023_04_07";
let result = weekly_average::weekly_average(user_type, username, from_date, to_date).await;
match result {
Ok(response) => println!("Received response: {:?}", response),
Err(error) => println!("Error: {:?}", error),
}
}
use currensees::monthly_average;
// Retrieve monthly average data
async fn main() {
let user_type = "member";
let username = "your_username";
let year = "2023";
let month = "04";
let result = monthly_average::monthly_average(user_type, username, year, month).await;
match result {
Ok(response) => println!("Received response: {:?}", response),
Err(error) => println!("Error: {:?}", error),
}
}
use currensees::margins_spreads;
// Get All Margins and Spreads
pub async fn margins_spreads_get_all() {
let user_type = "member";
let username = "your_username";
let day = "19";
let month = "04";
let year = "2023";
let uuid = None;
let result = margins_spreads(user_type, username, day, month, year, uuid).await;
match result {
Ok(response) => println!("Received response (Get All): {:?}", response),
Err(error) => println!("Error: {:?}", error),
}
}
// Get Margins and Spreads By ID
pub async fn margins_spreads_get_by_id() {
let user_type = "member";
let username = "your_username";
let day = "19";
let month = "04";
let year = "2023";
let uuid = Some("margins_spreads_uuid");
let result = margins_spreads(user_type, username, day, month, year, uuid).await;
match result {
Ok(response) => println!("Received response (Get By ID): {:?}", response),
Err(error) => println!("Error: {:?}", error),
}
}
use currensees::performances;
// Get All Performances
pub async fn performances_get_all() {
let user_type = "member";
let username = "your_username";
let uuid = None;
let result = performances(user_type, username, uuid).await;
match result {
Ok(response) => println!("Received response (Get All): {:?}", response),
Err(error) => println!("Error: {:?}", error),
}
}
// Get Performances By ID
pub async fn performances_get_by_id() {
let user_type = "member";
let username = "your_username";
let uuid = Some("performances_uuid");
let result = performances(user_type, username, uuid).await;
match result {
Ok(response) => println!("Received response (Get By ID): {:?}", response),
Err(error) => println!("Error: {:?}", error),
}
}
use currensees::signals;
// Get All Signals
pub async fn signals_get_all() {
let user_type = "member";
let username = "your_username";
let uuid = None;
let result = signals(user_type, username, uuid).await;
match result {
Ok(response) => println!("Received response (Get All): {:?}", response),
Err(error) => println!("Error: {:?}", error),
}
}
// Get Signals By ID
pub async fn signals_get_by_id() {
let user_type = "member";
let username = "your_username";
let uuid = Some("signals_uuid");
let result = signals(user_type, username, uuid).await;
match result {
Ok(response) => println!("Received response (Get By ID): {:?}", response),
Err(error) => println!("Error: {:?}", error),
}
}
Subscribe here for a user account.
You can read the API documentation to understand what's possible with the Currency API. If you need further assistance, don't hesitate to contact us.
This project is licensed under the BSD 3-Clause License.
(c) 2020 - 2023 Moat Systems Limited.