A crate for fetching currency values from dolarhoy.com.

dolarhoy-core on Crates.io Documentation

License: MIT

Table of Contents

Basic Usage

```rust use dolarhoy_core::{client, dolar, error};

type Result = std::result::Result;

[tokio::main]

async fn main() -> Result<()> { let client = client::DolayHoyClient::new(); let result = client.fetch_cotizacion::(dolar::Cotizacion::Blue).await?;

match result.precio_compra_venta() {
    (compra, None) => println!("{}: {}", result.title(), compra),
    (compra, Some(venta)) => println!("{}: {} / {}", result.title(), compra, venta),
}

Ok(())

} ```

License

Released under the MIT License.

Disclaimer

DolarHoy.com ® is a registered trademark. I don't hold any type of relation to the company or its staff.