akshare 0.1.0

100% pure Rust implementation of akshare — unified access to Chinese and global financial market data APIs
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# Tool Module

Utility functions: trade calendar, Tushare Pro API.

## Functions

- **tool_trade_date_hist_sina** — 历史交易日历 (from Sina)
- **pro_api** — Tushare Pro API通用接口

```rust
use akshare::AkShareClient;

let client = AkShareClient::new();
let dates = client.tool_trade_date_hist_sina().await?;
```