Rost-APP

Rost-APP (Rost-AssetPriceProvider) is a small Rust library that lets you receive current prices for ETFs, stocks or cryptocurrnecies in EUR.

Usage

To use SharePriceProvider simply import it into your python project. There are two main functions available:

Supported coins:

Example

```rust use rost_app::Coin;

let etfprice: f32 = rostapp::getetfprice(&String::from("LU1781541179")).unwrap(); let coinprice: f32 = rostapp::getcoinprice(&Coin::Bitcoin).unwrap(); ```

The above example prints the current prices of the Lyxor Core MSCI World ETF and the current price of Bitcoin.