Metadata-Version: 2.1
Name: fmd
Version: 0.2.0
Summary: Provides users with an easy-to-use interface to access data from the Financial Market Data (FMD) API, specializing in Taiwan's financial market.
Home-page: https://github.com/ycytai/fmd
License: Apache-2.0
Author: Yu Chen, Yang
Author-email: ycy.tai@gmail.com
Requires-Python: >=3.10,<4.0
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Requires-Dist: requests (>=2.32.3,<3.0.0)
Description-Content-Type: text/markdown

# fmd

Provides users with an easy-to-use interface to access data from the *Financial Market Data (FMD)* API, specializing in Taiwan's financial market.

## Installation

Install via `pip`
```
pip install fmd
```

## Quick Start

Retrieve data through `FmdApi` with various predefined resources.
```python
from fmd import FmdApi

fa = FmdApi()
stock = fa.stock.get(symbol='2330')
data = stock.get_price()
```

