rustyfinance
rustyfinance is a Rust implementation inspired by and transformed from the Python project ranaroussi/yfinance.
Origin
- Source project: https://github.com/ranaroussi/yfinance.git
- This repository ports core Yahoo Finance data access ideas/APIs to Rust.
- The Python source snapshot is kept under
python-yfinance/for migration reference.
Install
Usage
Get historical price data
use HistoryParams;
use Ticker;
Search symbols/news
use Search;
Batch download
use HistoryParams;
use download;
Notes
- Yahoo Finance endpoints are unofficial and can change.
- Some behavior may differ from Python
yfinancewhile migration is ongoing.