quotes
获取股票行情、股票列表等信息
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),
}
}
```