Crates.io | moguls |
lib.rs | moguls |
version | 0.1.1 |
source | src |
created_at | 2023-11-02 13:07:26.312916 |
updated_at | 2023-11-02 14:00:30.982302 |
description | Let the words of financial moguls inspire and guide you in your quest for financial excellence and understanding. |
homepage | |
repository | https://github.com/seongs1024/economic_indicator_finder |
max_upload_size | |
id | 1022604 |
size | 42,384 |
Welcome to the Halls of Financial Wisdom, a sanctuary where the echoes of economic insight and financial prowess resonate. Moguls
is a crate where the speeches of financial gurus with a treasure trove of knowledge come to life. Within our crate, you will find a curated collection of eloquent addresses, insightful talks, and visionary narratives delivered by the titans of the financial world.
Let the words of financial moguls inspire and guide you in your quest for financial excellence and understanding.
use anyhow::Result;
use moguls::prelude::*;
fn main() -> Result<()> {
let speeches = fetch_fed_speech(Some(FilterOption {
speaker: Some(JEROME_POWELL.to_string()),
}))?;
println!("{:?}", speeches);
Ok(())
}