fmd is a python wrapper that provides users with an easy-to-use interface to access data from Financial Market Data (FMD) API, specializing in Taiwan's financial market.
Source Code: https://github.com/ycytai/fmd
Documentation: https://fmd.ycytai.com/
- 😄 User-friendly: Intuitive interface for easy adoption by all skill levels.
- 📈 Diverse data: Popular financial data including prices, dividends, and more.
- 📦 All JSON: Streamlined data format for effortless integration and analysis.
Just use pip
pip install fmd
Retrieve data with various predefined resources.
from fmd import FmdApi
fa = FmdApi()
stock = fa.stock.get(symbol='2330')
data = stock.get_price()
Access various resources
from fmd import FmdApi
fa = FmdApi()
stock = fa.stock.get(symbol='2330')
etf = fa.etf.get(symbol='0050')
index = fa.index.get(symbol='LI0001')
currency = fa.forex.get(currency='TWD')
Feel free to raise a issue once you encounter an unknown situation. We cherish your feedback. Cheers.