quotes

获取股票行情、股票列表等信息
Crates.io version docs.rs docs
Documentation ### Installation ``` [dependencies] quotes = "0.1.2" ``` ### Examples ```rs #[async_std::main] async fn main() { match quotes::stock_list().await { Ok(l) => println!("len = {}", l.len()), Err(e) => println!("err = {}", e), } } ```