mirror of
https://github.com/NexVeridian/ark-invest-api-rust-data.git
synced 2025-09-02 09:59:12 +00:00
0.3.6
This commit is contained in:
parent
712ba4058a
commit
bb47fb8fb0
2 changed files with 43 additions and 32 deletions
12
src/main.rs
12
src/main.rs
|
@ -37,10 +37,16 @@ use util::*;
|
|||
// }
|
||||
|
||||
fn main() {
|
||||
let dfn = df_format(read_parquet(Ticker::ARKK).unwrap()).unwrap();
|
||||
println!("{:#?}", dfn);
|
||||
let read = Ark::new(Source::Read, Ticker::ARKK)
|
||||
.unwrap()
|
||||
.collect()
|
||||
.unwrap();
|
||||
println!("{:#?}", read);
|
||||
|
||||
let api = df_format(get_api(Ticker::ARKK, None).unwrap()).unwrap();
|
||||
let api = Ark::new(Source::ApiFull, Ticker::ARKK)
|
||||
.unwrap()
|
||||
.collect()
|
||||
.unwrap();
|
||||
println!("{:#?}", api);
|
||||
|
||||
// let update = df_format(get_csv_ark(Ticker::ARKK).unwrap()).unwrap();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue