Crate fin_iex

This is an implementation of a number of the request traits in the fin_model crate calling the IEX Cloud.

Modules

Implemented Traits

Example

```rust use fin_iex::IEXProvider;

use fin_model::provider::Provider;

let provider = match IEXProvider::new() { Ok(provider) => provider, Err(err) => panic!("Error configuring provider, {:?}", err) };

println!("Provider = {}.", provider.attribution(), provider.url()); ```

Tools

The optional feature iex-tool builds a command-line tool that can exercise some of the APIs above.