moguls 0.1.1

Let the words of financial moguls inspire and guide you in your quest for financial excellence and understanding.
Documentation
1
2
3
4
5
6
7
8
9
10
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(())
}