https://github.com/zwldarren/akshare-one
Standardized interface for Chinese financial market data, built on AKShare with unified data formats and simplified APIs
https://github.com/zwldarren/akshare-one
akshare finance-api financial-data python quant stock-data
Last synced: about 1 year ago
JSON representation
Standardized interface for Chinese financial market data, built on AKShare with unified data formats and simplified APIs
- Host: GitHub
- URL: https://github.com/zwldarren/akshare-one
- Owner: zwldarren
- License: mit
- Created: 2025-03-29T10:17:14.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2025-04-19T07:20:17.000Z (about 1 year ago)
- Last Synced: 2025-04-19T10:03:07.794Z (about 1 year ago)
- Topics: akshare, finance-api, financial-data, python, quant, stock-data
- Language: Python
- Homepage:
- Size: 127 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
**AKShare One** is a standardized interface for Chinese financial market data, built as a wrapper around [AKShare](https://github.com/akfamily/akshare) to solve inconsistencies in input/output formats across different data sources.
## β¨ Features
- π Unified stock code formats across data sources
- ποΈ Standardized return data structures
- π οΈ Simplified API parameters
- β±οΈ Automatic timestamp and adjustment handling
## π Core Features
| Feature | Interface |
|---------|-----------|
| Historical data | `get_hist_data` |
| Real-time quotes | `get_realtime_data` |
| Stock news | `get_news_data` |
| Financial data | `get_balance_sheet`/`get_income_statement`/`get_cash_flow` |
| Insider trading | `get_inner_trade_data` |
## π¦ Quick Installation
```bash
pip install akshare-one
```
## π» Usage Example
```python
from akshare_one import get_hist_data, get_realtime_data
# Get historical data
df_hist = get_hist_data(
symbol="600000",
interval="day",
adjust="hfq"
)
# Get real-time data
df_realtime = get_realtime_data(symbol="600000")
```
## π Documentation
Detailed API reference: [docs/api.md](docs/api.md)