Metadata-Version: 2.1
Name: tse_derivatives
Version: 0.1.2
Summary: Gets the underlying asset ticker (e.g., "خودرو") and the option type (either "call" or "put") to fetch live option data.
Author: Jalal Seifoddini
Author-email: jalal.seifoddini@gmail.com
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown

# Live Options Data Fetcher

## Description

This Python package retrieves live data for options trade of Tehran Stock Exchange and Iran Farabourse Exchange based on the underlying asset's ticker and option type. It supports tickers such as "ط®ظˆط¯ط±ظˆ" and option types including "call" and "put."

## Features

- Fetch live option data for specified tickers.
- Support for multiple option types: "call" and "put."
- Easy integration with your existing applications.

## Installation

You can install the package via pip:

```python
pip install tse_derivatives
```
<div>
## Example
</div>

```python
from tse_derivative import tse_options

ticker = "ط®ظˆط¯ط±ظˆ" # or "ط§ظ‡ط±ظ…" ...
type = "call"  # or "put"
data = tse_options(ticker, type)
print(data)
```
