Metadata-Version: 2.4
Name: fds.sdk.RealTimeOptions
Version: 0.2.0
Summary: Real-Time Options client library for Python
Home-page: https://github.com/FactSet/enterprise-sdk/tree/main/code/python/RealTimeOptions/v4
Author: FactSet Research Systems
License: Apache License, Version 2.0
Keywords: FactSet,API,SDK
Requires-Python: >=3.10
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: urllib3>=2.7.0
Requires-Dist: python-dateutil>=2.9.0.post0
Requires-Dist: fds.sdk.utils>=1.0.0
Dynamic: author
Dynamic: description
Dynamic: description-content-type
Dynamic: home-page
Dynamic: keywords
Dynamic: license
Dynamic: license-file
Dynamic: requires-dist
Dynamic: requires-python
Dynamic: summary

[![FactSet](https://raw.githubusercontent.com/factset/enterprise-sdk/main/docs/images/factset-logo.svg)](https://www.factset.com)

# Real-Time Options client library for Python

[![API Version](https://img.shields.io/badge/api-v4.1.0-blue)](https://developer.factset.com/api-catalog/)
[![PyPi](https://img.shields.io/pypi/v/fds.sdk.RealTimeOptions/0.2.0)](https://pypi.org/project/fds.sdk.RealTimeOptions/v/0.2.0)
[![Apache-2 license](https://img.shields.io/badge/license-Apache2-brightgreen.svg)](https://www.apache.org/licenses/LICENSE-2.0)

The Options API provides detailed information for option contracts (“options”) and option classes. This API presents a consolidated data model
that gives access to options data of global options markets such as OPRA, Australia Exchange, Bovespa, CME Group, EUREX, Euronext, Hong Kong,
ICE Futures Europe / US, Montreal Exchange, and others.

An option class is a product group of options from the same exchange and with the same underlying. The API includes endpoints to retrieve fundamental
data for an option contract such as exercise right, exercise style, strike, maturity, open interest, underlying, etc. as well as risk measures of an
option contract such as delta, omega, implied volatility, etc.

Option chains are provided by the /by-class/list endpoint. The list of option contracts for an option class can be filtered by exercise right, exercise
style, strike, maturity, open interest, delta, omega, implied volatility, etc.

The option screener allows you to search for option classes by using text search, root symbol, or ISIN plus additional criteria such as market,
underlying, currency, and category. Similar to other screener endpoints in e.g. the
[Stocks API](https://developer.factset.com/api-catalog/stocks-api-digital-portals), the /value-ranges/get endpoint provides the possible values and
value ranges plus the number of option contracts for an option class related to the option contracts per criteria such as exercise right, exercise style,
strike, maturity, open interest, delta, omega, implied volatility, etc.

The Options API for Digital Portals seamlessly integrates with the [Real-Time Quotes API](https://developer.factset.com/api-catalog/real-time-quotes-api)
that provides real-time, delayed, and end-of-day pricing data and basic security identifier cross-reference. For direct access to price histories for
charting, please refer to the [Real-Time Time Series API](https://developer.factset.com/api-catalog/real-time-time-series-api).


This Python package is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project:

- API version: 4.1.0
- SDK version: 0.2.0
- Build package: org.openapitools.codegen.languages.PythonClientCodegen

For more information, please visit [https://developer.factset.com/contact](https://developer.factset.com/contact)

## Requirements

* Python >= 3.7

## Installation

### Poetry

```shell
poetry add fds.sdk.utils fds.sdk.RealTimeOptions==0.2.0
```

### pip

```shell
pip install fds.sdk.utils fds.sdk.RealTimeOptions==0.2.0
```

## Usage

1. [Generate authentication credentials](../../../../README.md#authentication).
2. Setup Python environment.
   1. Install and activate python 3.10+. If you're using [pyenv](https://github.com/pyenv/pyenv):

      ```sh
      pyenv install 3.10.0
      pyenv shell 3.10.0
      ```

   2. (optional) [Install poetry](https://python-poetry.org/docs/#installation).
3. [Install dependencies](#installation).
4. Run the following:

> [!IMPORTANT]
> The parameter variables defined below are just examples and may potentially contain non valid values. Please replace them with valid values.

### Example Code

```python
from fds.sdk.utils.authentication import ConfidentialClient

import fds.sdk.RealTimeOptions
from fds.sdk.RealTimeOptions.api import option_api
from fds.sdk.RealTimeOptions.models import *
from dateutil.parser import parse as dateutil_parser
from pprint import pprint

# See configuration.py for a list of all supported configuration parameters.

# Examples for each supported authentication method are below,
# choose one that satisfies your use case.

# (Preferred) OAuth 2.0: FactSetOAuth2
# See https://github.com/FactSet/enterprise-sdk#oauth-20
# for information on how to create the app-config.json file
#
# The confidential client instance should be reused in production environments.
# See https://github.com/FactSet/enterprise-sdk-utils-python#authentication
# for more information on using the ConfidentialClient class
configuration = fds.sdk.RealTimeOptions.Configuration(
    fds_oauth_client=ConfidentialClient('/path/to/app-config.json')
)

# Basic authentication: FactSetApiKey
# See https://github.com/FactSet/enterprise-sdk#api-key
# for information how to create an API key
# configuration = fds.sdk.RealTimeOptions.Configuration(
#     username='USERNAME-SERIAL',
#     password='API-KEY'
# )

# Enter a context with an instance of the API client
with fds.sdk.RealTimeOptions.ApiClient(configuration) as api_client:
    # Create an instance of the API class
    api_instance = option_api.OptionApi(api_client)
    identifier = "FDS-US" # str | Identifier to resolve.
    identifier_type = "tickerRegion" # str | Type of the identifier. | Value | Description | | --- | --- | | idInstrument | MDG identifier of an instrument. | | idNotation | MDG identifier of a listing. | | fdsPermanentIdentifierSecurity | FactSet Permanent Identifier on security level. | | fdsPermanentIdentifierListing | FactSet Permanent Identifier on listing level. | | fdsPermanentIdentifierRegional | Regional FactSet Permanent Identifier. | | tickerExchange | FactSet market symbol of a listing. | | tickerRegion | Regional FactSet ticker symbol. | | sedol | SEDOL or IDII of a listing. | | isin | ISIN of an instrument. | | wkn | WKN of an instrument. | | valor | Valor number of an instrument. | | cusip | CUSIP or CINS identifier of an instrument |  
    attributes = [
        "_attributes_example",
    ] # [str] | Limit the attributes returned in the response to the specified set. (optional)
    meta_language = "de" # str | ISO 639-1 code of the language. (optional)

    try:
        # Fundamental data for an option contract.
        # example passing only required values which don't have defaults set
        # and optional values
        api_response = api_instance.get_option_get(identifier, identifier_type, attributes=attributes, meta_language=meta_language)

        pprint(api_response)
    except fds.sdk.RealTimeOptions.ApiException as e:
        print("Exception when calling OptionApi->get_option_get: %s\n" % e)

    # # Get response, http status code and response headers
    # try:
    #     # Fundamental data for an option contract.
    #     api_response, http_status_code, response_headers = api_instance.get_option_get_with_http_info(identifier, identifier_type, attributes=attributes, meta_language=meta_language)


    #     pprint(api_response)
    #     pprint(http_status_code)
    #     pprint(response_headers)
    # except fds.sdk.RealTimeOptions.ApiException as e:
    #     print("Exception when calling OptionApi->get_option_get: %s\n" % e)

    # # Get response asynchronous
    # try:
    #     # Fundamental data for an option contract.
    #     async_result = api_instance.get_option_get_async(identifier, identifier_type, attributes=attributes, meta_language=meta_language)
    #     api_response = async_result.get()


    #     pprint(api_response)
    # except fds.sdk.RealTimeOptions.ApiException as e:
    #     print("Exception when calling OptionApi->get_option_get: %s\n" % e)

    # # Get response, http status code and response headers asynchronous
    # try:
    #     # Fundamental data for an option contract.
    #     async_result = api_instance.get_option_get_with_http_info_async(identifier, identifier_type, attributes=attributes, meta_language=meta_language)
    #     api_response, http_status_code, response_headers = async_result.get()


    #     pprint(api_response)
    #     pprint(http_status_code)
    #     pprint(response_headers)
    # except fds.sdk.RealTimeOptions.ApiException as e:
    #     print("Exception when calling OptionApi->get_option_get: %s\n" % e)

```

### Using Pandas

To convert an API response to a Pandas DataFrame, it is necessary to transform it first to a dictionary.
```python
import pandas as pd

response_dict = api_response.to_dict()['data']

simple_json_response = pd.DataFrame(response_dict)
nested_json_response = pd.json_normalize(response_dict)
```

### Debugging

The SDK uses the standard library [`logging`](https://docs.python.org/3/library/logging.html#module-logging) module.

Setting `debug` to `True` on an instance of the `Configuration` class sets the log-level of related packages to `DEBUG`
and enables additional logging in Pythons [HTTP Client](https://docs.python.org/3/library/http.client.html).

**Note**: This prints out sensitive information (e.g. the full request and response). Use with care.

```python
import logging
import fds.sdk.RealTimeOptions

logging.basicConfig(level=logging.DEBUG)

configuration = fds.sdk.RealTimeOptions.Configuration(...)
configuration.debug = True
```

### Configure a Proxy

You can pass proxy settings to the Configuration class:

* `proxy`: The URL of the proxy to use.
* `proxy_headers`: a dictionary to pass additional headers to the proxy (e.g. `Proxy-Authorization`).

```python
import fds.sdk.RealTimeOptions

configuration = fds.sdk.RealTimeOptions.Configuration(
    # ...
    proxy="http://secret:password@localhost:5050",
    proxy_headers={
        "Custom-Proxy-Header": "Custom-Proxy-Header-Value"
    }
)
```

### Custom SSL Certificate

TLS/SSL certificate verification can be configured with the following Configuration parameters:

* `ssl_ca_cert`: a path to the certificate to use for verification in `PEM` format.
* `verify_ssl`: setting this to `False` disables the verification of certificates.
  Disabling the verification is not recommended, but it might be useful during
  local development or testing.

```python
import fds.sdk.RealTimeOptions

configuration = fds.sdk.RealTimeOptions.Configuration(
    # ...
    ssl_ca_cert='/path/to/ca.pem'
)
```

### Request Retries

In case the request retry behaviour should be customized, it is possible to pass a `urllib3.Retry` object to the `retry` property of the Configuration.

```python
from urllib3 import Retry
import fds.sdk.RealTimeOptions

configuration = fds.sdk.RealTimeOptions.Configuration(
    # ...
)

configuration.retries = Retry(total=3, status_forcelist=[500, 502, 503, 504])
```


## Documentation for API Endpoints

All URIs are relative to *https://api.factset.com/wealth/v4*

Class | Method | HTTP request | Description
------------ | ------------- | ------------- | -------------
*OptionApi* | [**get_option_get**](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/RealTimeOptions/v4/docs/OptionApi.md#get_option_get) | **GET** /option/get | Fundamental data for an option contract.
*OptionApi* | [**get_option_key_figures_get**](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/RealTimeOptions/v4/docs/OptionApi.md#get_option_key_figures_get) | **GET** /option/key-figures/get | Key figures of an option contract.
*OptionApi* | [**post_option_by_class_list**](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/RealTimeOptions/v4/docs/OptionApi.md#post_option_by_class_list) | **POST** /option/by-class/list | List of option contracts for an option class.
*OptionApi* | [**post_option_by_class_value_ranges_get**](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/RealTimeOptions/v4/docs/OptionApi.md#post_option_by_class_value_ranges_get) | **POST** /option/by-class/value-ranges/get | Possible values and value ranges for the parameters used in the endpoint &#x60;/option/by-class/list&#x60;.
*OptionApi* | [**post_option_class_screener_search**](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/RealTimeOptions/v4/docs/OptionApi.md#post_option_class_screener_search) | **POST** /option/class/screener/search | Screener for option classes based on option class-specific parameters.


## Documentation For Models

 - [AttributesMember](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/RealTimeOptions/v4/docs/AttributesMember.md)
 - [GetOptionGetDataTypeItems](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/RealTimeOptions/v4/docs/GetOptionGetDataTypeItems.md)
 - [InlineResponse200](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/RealTimeOptions/v4/docs/InlineResponse200.md)
 - [InlineResponse2001](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/RealTimeOptions/v4/docs/InlineResponse2001.md)
 - [InlineResponse2001Meta](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/RealTimeOptions/v4/docs/InlineResponse2001Meta.md)
 - [InlineResponse2002](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/RealTimeOptions/v4/docs/InlineResponse2002.md)
 - [InlineResponse2003](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/RealTimeOptions/v4/docs/InlineResponse2003.md)
 - [InlineResponse2004](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/RealTimeOptions/v4/docs/InlineResponse2004.md)
 - [InlineResponse2004Data](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/RealTimeOptions/v4/docs/InlineResponse2004Data.md)
 - [InlineResponse2004DataCurrency](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/RealTimeOptions/v4/docs/InlineResponse2004DataCurrency.md)
 - [InlineResponse2004DataPrices](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/RealTimeOptions/v4/docs/InlineResponse2004DataPrices.md)
 - [InlineResponse2004DataPricesAsk](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/RealTimeOptions/v4/docs/InlineResponse2004DataPricesAsk.md)
 - [InlineResponse200Data](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/RealTimeOptions/v4/docs/InlineResponse200Data.md)
 - [InlineResponse200DataClass](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/RealTimeOptions/v4/docs/InlineResponse200DataClass.md)
 - [InlineResponse200DataExercise](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/RealTimeOptions/v4/docs/InlineResponse200DataExercise.md)
 - [InlineResponse200DataLifeCycle](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/RealTimeOptions/v4/docs/InlineResponse200DataLifeCycle.md)
 - [InlineResponse200DataLifeCycleDelivery](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/RealTimeOptions/v4/docs/InlineResponse200DataLifeCycleDelivery.md)
 - [InlineResponse200DataLifeCycleExpiration](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/RealTimeOptions/v4/docs/InlineResponse200DataLifeCycleExpiration.md)
 - [InlineResponse200DataLifeCycleMaturity](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/RealTimeOptions/v4/docs/InlineResponse200DataLifeCycleMaturity.md)
 - [InlineResponse200DataMarket](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/RealTimeOptions/v4/docs/InlineResponse200DataMarket.md)
 - [InlineResponse200DataOpenInterest](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/RealTimeOptions/v4/docs/InlineResponse200DataOpenInterest.md)
 - [InlineResponse200DataSettlement](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/RealTimeOptions/v4/docs/InlineResponse200DataSettlement.md)
 - [InlineResponse200DataSettlementCurrency](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/RealTimeOptions/v4/docs/InlineResponse200DataSettlementCurrency.md)
 - [InlineResponse200DataStrikePrice](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/RealTimeOptions/v4/docs/InlineResponse200DataStrikePrice.md)
 - [InlineResponse200DataStrikePriceValueUnit](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/RealTimeOptions/v4/docs/InlineResponse200DataStrikePriceValueUnit.md)
 - [InlineResponse200DataUnderlying](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/RealTimeOptions/v4/docs/InlineResponse200DataUnderlying.md)
 - [InlineResponse200DataUnderlyingNotation](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/RealTimeOptions/v4/docs/InlineResponse200DataUnderlyingNotation.md)
 - [InlineResponse200DataUnderlyingNotationFsym](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/RealTimeOptions/v4/docs/InlineResponse200DataUnderlyingNotationFsym.md)
 - [InlineResponse200DataUnderlyingNotationFsymListing](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/RealTimeOptions/v4/docs/InlineResponse200DataUnderlyingNotationFsymListing.md)
 - [InlineResponse200DataUnderlyingNotationFsymRegional](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/RealTimeOptions/v4/docs/InlineResponse200DataUnderlyingNotationFsymRegional.md)
 - [InlineResponse200DataUnderlyingNotationInstrument](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/RealTimeOptions/v4/docs/InlineResponse200DataUnderlyingNotationInstrument.md)
 - [InlineResponse200DataUnderlyingNotationInstrumentFsym](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/RealTimeOptions/v4/docs/InlineResponse200DataUnderlyingNotationInstrumentFsym.md)
 - [InlineResponse200DataUnderlyingNotationInstrumentFsymSecurity](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/RealTimeOptions/v4/docs/InlineResponse200DataUnderlyingNotationInstrumentFsymSecurity.md)
 - [InlineResponse200DataUnderlyingNotationInstrumentNsin](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/RealTimeOptions/v4/docs/InlineResponse200DataUnderlyingNotationInstrumentNsin.md)
 - [InlineResponse200Meta](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/RealTimeOptions/v4/docs/InlineResponse200Meta.md)
 - [LanguageMember](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/RealTimeOptions/v4/docs/LanguageMember.md)
 - [OffsetBasedPaginationOutputObject](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/RealTimeOptions/v4/docs/OffsetBasedPaginationOutputObject.md)
 - [PostOptionByClassListDataItems](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/RealTimeOptions/v4/docs/PostOptionByClassListDataItems.md)
 - [PostOptionByClassListDataItemsInstrument](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/RealTimeOptions/v4/docs/PostOptionByClassListDataItemsInstrument.md)
 - [PostOptionByClassListDataItemsInstrumentExercise](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/RealTimeOptions/v4/docs/PostOptionByClassListDataItemsInstrumentExercise.md)
 - [PostOptionByClassListDataItemsInstrumentLifeCycle](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/RealTimeOptions/v4/docs/PostOptionByClassListDataItemsInstrumentLifeCycle.md)
 - [PostOptionByClassListDataItemsInstrumentLifeCycleExpiration](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/RealTimeOptions/v4/docs/PostOptionByClassListDataItemsInstrumentLifeCycleExpiration.md)
 - [PostOptionByClassListDataItemsInstrumentLifeCycleMaturity](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/RealTimeOptions/v4/docs/PostOptionByClassListDataItemsInstrumentLifeCycleMaturity.md)
 - [PostOptionByClassListDataItemsInstrumentStrikePrice](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/RealTimeOptions/v4/docs/PostOptionByClassListDataItemsInstrumentStrikePrice.md)
 - [PostOptionByClassListDataItemsInstrumentStrikePriceValueUnit](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/RealTimeOptions/v4/docs/PostOptionByClassListDataItemsInstrumentStrikePriceValueUnit.md)
 - [PostOptionByClassListDataItemsKeyFigures](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/RealTimeOptions/v4/docs/PostOptionByClassListDataItemsKeyFigures.md)
 - [PostOptionByClassListRequest](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/RealTimeOptions/v4/docs/PostOptionByClassListRequest.md)
 - [PostOptionByClassListRequestData](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/RealTimeOptions/v4/docs/PostOptionByClassListRequestData.md)
 - [PostOptionByClassListRequestDataClass](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/RealTimeOptions/v4/docs/PostOptionByClassListRequestDataClass.md)
 - [PostOptionByClassListRequestDataContract](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/RealTimeOptions/v4/docs/PostOptionByClassListRequestDataContract.md)
 - [PostOptionByClassListRequestDataContractExcercise](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/RealTimeOptions/v4/docs/PostOptionByClassListRequestDataContractExcercise.md)
 - [PostOptionByClassListRequestDataContractSize](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/RealTimeOptions/v4/docs/PostOptionByClassListRequestDataContractSize.md)
 - [PostOptionByClassListRequestDataContractSizeExclude](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/RealTimeOptions/v4/docs/PostOptionByClassListRequestDataContractSizeExclude.md)
 - [PostOptionByClassListRequestDataContractSizeRestrict](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/RealTimeOptions/v4/docs/PostOptionByClassListRequestDataContractSizeRestrict.md)
 - [PostOptionByClassListRequestDataContractStrikePrice](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/RealTimeOptions/v4/docs/PostOptionByClassListRequestDataContractStrikePrice.md)
 - [PostOptionByClassListRequestDataContractStrikePriceMaximum](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/RealTimeOptions/v4/docs/PostOptionByClassListRequestDataContractStrikePriceMaximum.md)
 - [PostOptionByClassListRequestDataContractStrikePriceMinimum](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/RealTimeOptions/v4/docs/PostOptionByClassListRequestDataContractStrikePriceMinimum.md)
 - [PostOptionByClassListRequestDataFilter](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/RealTimeOptions/v4/docs/PostOptionByClassListRequestDataFilter.md)
 - [PostOptionByClassListRequestDataFilterValidation](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/RealTimeOptions/v4/docs/PostOptionByClassListRequestDataFilterValidation.md)
 - [PostOptionByClassListRequestDataFilterValidationPrice](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/RealTimeOptions/v4/docs/PostOptionByClassListRequestDataFilterValidationPrice.md)
 - [PostOptionByClassListRequestDataFilterValidationPriceLatest](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/RealTimeOptions/v4/docs/PostOptionByClassListRequestDataFilterValidationPriceLatest.md)
 - [PostOptionByClassListRequestDataFilterValidationPricePrevious](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/RealTimeOptions/v4/docs/PostOptionByClassListRequestDataFilterValidationPricePrevious.md)
 - [PostOptionByClassListRequestDataKeyFigures](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/RealTimeOptions/v4/docs/PostOptionByClassListRequestDataKeyFigures.md)
 - [PostOptionByClassListRequestDataKeyFiguresDelta](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/RealTimeOptions/v4/docs/PostOptionByClassListRequestDataKeyFiguresDelta.md)
 - [PostOptionByClassListRequestDataKeyFiguresGamma](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/RealTimeOptions/v4/docs/PostOptionByClassListRequestDataKeyFiguresGamma.md)
 - [PostOptionByClassListRequestDataKeyFiguresGammaMinimum](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/RealTimeOptions/v4/docs/PostOptionByClassListRequestDataKeyFiguresGammaMinimum.md)
 - [PostOptionByClassListRequestDataKeyFiguresImpliedVolatility](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/RealTimeOptions/v4/docs/PostOptionByClassListRequestDataKeyFiguresImpliedVolatility.md)
 - [PostOptionByClassListRequestDataKeyFiguresImpliedVolatilityMaximum](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/RealTimeOptions/v4/docs/PostOptionByClassListRequestDataKeyFiguresImpliedVolatilityMaximum.md)
 - [PostOptionByClassListRequestDataKeyFiguresImpliedVolatilityMinimum](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/RealTimeOptions/v4/docs/PostOptionByClassListRequestDataKeyFiguresImpliedVolatilityMinimum.md)
 - [PostOptionByClassListRequestDataKeyFiguresLeverage](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/RealTimeOptions/v4/docs/PostOptionByClassListRequestDataKeyFiguresLeverage.md)
 - [PostOptionByClassListRequestDataKeyFiguresMoneyness](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/RealTimeOptions/v4/docs/PostOptionByClassListRequestDataKeyFiguresMoneyness.md)
 - [PostOptionByClassListRequestDataKeyFiguresMoneynessMaximum](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/RealTimeOptions/v4/docs/PostOptionByClassListRequestDataKeyFiguresMoneynessMaximum.md)
 - [PostOptionByClassListRequestDataKeyFiguresOmega](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/RealTimeOptions/v4/docs/PostOptionByClassListRequestDataKeyFiguresOmega.md)
 - [PostOptionByClassListRequestDataKeyFiguresOmegaMaximum](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/RealTimeOptions/v4/docs/PostOptionByClassListRequestDataKeyFiguresOmegaMaximum.md)
 - [PostOptionByClassListRequestDataKeyFiguresOmegaMinimum](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/RealTimeOptions/v4/docs/PostOptionByClassListRequestDataKeyFiguresOmegaMinimum.md)
 - [PostOptionByClassListRequestDataKeyFiguresRho](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/RealTimeOptions/v4/docs/PostOptionByClassListRequestDataKeyFiguresRho.md)
 - [PostOptionByClassListRequestDataKeyFiguresRhoMinimum](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/RealTimeOptions/v4/docs/PostOptionByClassListRequestDataKeyFiguresRhoMinimum.md)
 - [PostOptionByClassListRequestDataKeyFiguresThetaOneWeek](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/RealTimeOptions/v4/docs/PostOptionByClassListRequestDataKeyFiguresThetaOneWeek.md)
 - [PostOptionByClassListRequestDataKeyFiguresVega](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/RealTimeOptions/v4/docs/PostOptionByClassListRequestDataKeyFiguresVega.md)
 - [PostOptionByClassListRequestDataLifeCycle](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/RealTimeOptions/v4/docs/PostOptionByClassListRequestDataLifeCycle.md)
 - [PostOptionByClassListRequestDataLifeCycleExpiration](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/RealTimeOptions/v4/docs/PostOptionByClassListRequestDataLifeCycleExpiration.md)
 - [PostOptionByClassListRequestDataLifeCycleMaturity](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/RealTimeOptions/v4/docs/PostOptionByClassListRequestDataLifeCycleMaturity.md)
 - [PostOptionByClassListRequestDataLifeCycleMaturityDate](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/RealTimeOptions/v4/docs/PostOptionByClassListRequestDataLifeCycleMaturityDate.md)
 - [PostOptionByClassListRequestDataOpenInterest](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/RealTimeOptions/v4/docs/PostOptionByClassListRequestDataOpenInterest.md)
 - [PostOptionByClassListRequestDataOpenInterestMaximum](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/RealTimeOptions/v4/docs/PostOptionByClassListRequestDataOpenInterestMaximum.md)
 - [PostOptionByClassListRequestDataOpenInterestMinimum](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/RealTimeOptions/v4/docs/PostOptionByClassListRequestDataOpenInterestMinimum.md)
 - [PostOptionByClassListRequestMeta](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/RealTimeOptions/v4/docs/PostOptionByClassListRequestMeta.md)
 - [PostOptionByClassListRequestMetaPagination](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/RealTimeOptions/v4/docs/PostOptionByClassListRequestMetaPagination.md)
 - [PostOptionByClassValueRangesGetDataContractSizeItems](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/RealTimeOptions/v4/docs/PostOptionByClassValueRangesGetDataContractSizeItems.md)
 - [PostOptionByClassValueRangesGetDataExerciseRightItems](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/RealTimeOptions/v4/docs/PostOptionByClassValueRangesGetDataExerciseRightItems.md)
 - [PostOptionByClassValueRangesGetDataExerciseStyleItems](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/RealTimeOptions/v4/docs/PostOptionByClassValueRangesGetDataExerciseStyleItems.md)
 - [PostOptionByClassValueRangesGetDataItems](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/RealTimeOptions/v4/docs/PostOptionByClassValueRangesGetDataItems.md)
 - [PostOptionByClassValueRangesGetDataItemsDelta](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/RealTimeOptions/v4/docs/PostOptionByClassValueRangesGetDataItemsDelta.md)
 - [PostOptionByClassValueRangesGetDataItemsExercise](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/RealTimeOptions/v4/docs/PostOptionByClassValueRangesGetDataItemsExercise.md)
 - [PostOptionByClassValueRangesGetDataItemsGamma](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/RealTimeOptions/v4/docs/PostOptionByClassValueRangesGetDataItemsGamma.md)
 - [PostOptionByClassValueRangesGetDataItemsImpliedVolatility](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/RealTimeOptions/v4/docs/PostOptionByClassValueRangesGetDataItemsImpliedVolatility.md)
 - [PostOptionByClassValueRangesGetDataItemsKeyFigures](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/RealTimeOptions/v4/docs/PostOptionByClassValueRangesGetDataItemsKeyFigures.md)
 - [PostOptionByClassValueRangesGetDataItemsKeyFiguresMoneyness](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/RealTimeOptions/v4/docs/PostOptionByClassValueRangesGetDataItemsKeyFiguresMoneyness.md)
 - [PostOptionByClassValueRangesGetDataItemsLeverage](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/RealTimeOptions/v4/docs/PostOptionByClassValueRangesGetDataItemsLeverage.md)
 - [PostOptionByClassValueRangesGetDataItemsLifeCycle](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/RealTimeOptions/v4/docs/PostOptionByClassValueRangesGetDataItemsLifeCycle.md)
 - [PostOptionByClassValueRangesGetDataItemsLifeCycleExpiration](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/RealTimeOptions/v4/docs/PostOptionByClassValueRangesGetDataItemsLifeCycleExpiration.md)
 - [PostOptionByClassValueRangesGetDataItemsLifeCycleMaturity](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/RealTimeOptions/v4/docs/PostOptionByClassValueRangesGetDataItemsLifeCycleMaturity.md)
 - [PostOptionByClassValueRangesGetDataItemsLifeCycleMaturityDate](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/RealTimeOptions/v4/docs/PostOptionByClassValueRangesGetDataItemsLifeCycleMaturityDate.md)
 - [PostOptionByClassValueRangesGetDataItemsOmega](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/RealTimeOptions/v4/docs/PostOptionByClassValueRangesGetDataItemsOmega.md)
 - [PostOptionByClassValueRangesGetDataItemsOpenInterest](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/RealTimeOptions/v4/docs/PostOptionByClassValueRangesGetDataItemsOpenInterest.md)
 - [PostOptionByClassValueRangesGetDataItemsRho](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/RealTimeOptions/v4/docs/PostOptionByClassValueRangesGetDataItemsRho.md)
 - [PostOptionByClassValueRangesGetDataItemsStrikePrice](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/RealTimeOptions/v4/docs/PostOptionByClassValueRangesGetDataItemsStrikePrice.md)
 - [PostOptionByClassValueRangesGetDataItemsThetaOneWeek](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/RealTimeOptions/v4/docs/PostOptionByClassValueRangesGetDataItemsThetaOneWeek.md)
 - [PostOptionByClassValueRangesGetDataItemsVega](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/RealTimeOptions/v4/docs/PostOptionByClassValueRangesGetDataItemsVega.md)
 - [PostOptionByClassValueRangesGetDataLifeCycleExpirationMonthItems](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/RealTimeOptions/v4/docs/PostOptionByClassValueRangesGetDataLifeCycleExpirationMonthItems.md)
 - [PostOptionByClassValueRangesGetDataLifeCycleExpirationYearItems](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/RealTimeOptions/v4/docs/PostOptionByClassValueRangesGetDataLifeCycleExpirationYearItems.md)
 - [PostOptionByClassValueRangesGetDataLifeCycleMaturityIntervalItems](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/RealTimeOptions/v4/docs/PostOptionByClassValueRangesGetDataLifeCycleMaturityIntervalItems.md)
 - [PostOptionByClassValueRangesGetRequest](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/RealTimeOptions/v4/docs/PostOptionByClassValueRangesGetRequest.md)
 - [PostOptionByClassValueRangesGetRequestData](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/RealTimeOptions/v4/docs/PostOptionByClassValueRangesGetRequestData.md)
 - [PostOptionByClassValueRangesGetRequestDataClass](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/RealTimeOptions/v4/docs/PostOptionByClassValueRangesGetRequestDataClass.md)
 - [PostOptionByClassValueRangesGetRequestDataContract](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/RealTimeOptions/v4/docs/PostOptionByClassValueRangesGetRequestDataContract.md)
 - [PostOptionByClassValueRangesGetRequestDataContractSize](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/RealTimeOptions/v4/docs/PostOptionByClassValueRangesGetRequestDataContractSize.md)
 - [PostOptionByClassValueRangesGetRequestDataContractSizeExclude](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/RealTimeOptions/v4/docs/PostOptionByClassValueRangesGetRequestDataContractSizeExclude.md)
 - [PostOptionByClassValueRangesGetRequestDataContractSizeRestrict](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/RealTimeOptions/v4/docs/PostOptionByClassValueRangesGetRequestDataContractSizeRestrict.md)
 - [PostOptionByClassValueRangesGetRequestDataContractStrikePrice](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/RealTimeOptions/v4/docs/PostOptionByClassValueRangesGetRequestDataContractStrikePrice.md)
 - [PostOptionByClassValueRangesGetRequestDataContractStrikePriceMaximum](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/RealTimeOptions/v4/docs/PostOptionByClassValueRangesGetRequestDataContractStrikePriceMaximum.md)
 - [PostOptionByClassValueRangesGetRequestDataFilter](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/RealTimeOptions/v4/docs/PostOptionByClassValueRangesGetRequestDataFilter.md)
 - [PostOptionByClassValueRangesGetRequestDataFilterValidation](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/RealTimeOptions/v4/docs/PostOptionByClassValueRangesGetRequestDataFilterValidation.md)
 - [PostOptionByClassValueRangesGetRequestDataFilterValidationPrice](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/RealTimeOptions/v4/docs/PostOptionByClassValueRangesGetRequestDataFilterValidationPrice.md)
 - [PostOptionByClassValueRangesGetRequestDataFilterValidationPriceLatest](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/RealTimeOptions/v4/docs/PostOptionByClassValueRangesGetRequestDataFilterValidationPriceLatest.md)
 - [PostOptionByClassValueRangesGetRequestDataFilterValidationPricePrevious](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/RealTimeOptions/v4/docs/PostOptionByClassValueRangesGetRequestDataFilterValidationPricePrevious.md)
 - [PostOptionByClassValueRangesGetRequestDataKeyFigures](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/RealTimeOptions/v4/docs/PostOptionByClassValueRangesGetRequestDataKeyFigures.md)
 - [PostOptionByClassValueRangesGetRequestDataKeyFiguresDelta](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/RealTimeOptions/v4/docs/PostOptionByClassValueRangesGetRequestDataKeyFiguresDelta.md)
 - [PostOptionByClassValueRangesGetRequestDataKeyFiguresGamma](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/RealTimeOptions/v4/docs/PostOptionByClassValueRangesGetRequestDataKeyFiguresGamma.md)
 - [PostOptionByClassValueRangesGetRequestDataKeyFiguresImpliedVolatility](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/RealTimeOptions/v4/docs/PostOptionByClassValueRangesGetRequestDataKeyFiguresImpliedVolatility.md)
 - [PostOptionByClassValueRangesGetRequestDataKeyFiguresImpliedVolatilityMaximum](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/RealTimeOptions/v4/docs/PostOptionByClassValueRangesGetRequestDataKeyFiguresImpliedVolatilityMaximum.md)
 - [PostOptionByClassValueRangesGetRequestDataKeyFiguresImpliedVolatilityMinimum](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/RealTimeOptions/v4/docs/PostOptionByClassValueRangesGetRequestDataKeyFiguresImpliedVolatilityMinimum.md)
 - [PostOptionByClassValueRangesGetRequestDataKeyFiguresLeverage](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/RealTimeOptions/v4/docs/PostOptionByClassValueRangesGetRequestDataKeyFiguresLeverage.md)
 - [PostOptionByClassValueRangesGetRequestDataKeyFiguresLeverageMaximum](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/RealTimeOptions/v4/docs/PostOptionByClassValueRangesGetRequestDataKeyFiguresLeverageMaximum.md)
 - [PostOptionByClassValueRangesGetRequestDataKeyFiguresMoneyness](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/RealTimeOptions/v4/docs/PostOptionByClassValueRangesGetRequestDataKeyFiguresMoneyness.md)
 - [PostOptionByClassValueRangesGetRequestDataKeyFiguresOmega](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/RealTimeOptions/v4/docs/PostOptionByClassValueRangesGetRequestDataKeyFiguresOmega.md)
 - [PostOptionByClassValueRangesGetRequestDataKeyFiguresRho](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/RealTimeOptions/v4/docs/PostOptionByClassValueRangesGetRequestDataKeyFiguresRho.md)
 - [PostOptionByClassValueRangesGetRequestDataKeyFiguresThetaOneWeek](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/RealTimeOptions/v4/docs/PostOptionByClassValueRangesGetRequestDataKeyFiguresThetaOneWeek.md)
 - [PostOptionByClassValueRangesGetRequestDataKeyFiguresVega](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/RealTimeOptions/v4/docs/PostOptionByClassValueRangesGetRequestDataKeyFiguresVega.md)
 - [PostOptionByClassValueRangesGetRequestDataLifeCycle](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/RealTimeOptions/v4/docs/PostOptionByClassValueRangesGetRequestDataLifeCycle.md)
 - [PostOptionByClassValueRangesGetRequestDataLifeCycleExpiration](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/RealTimeOptions/v4/docs/PostOptionByClassValueRangesGetRequestDataLifeCycleExpiration.md)
 - [PostOptionByClassValueRangesGetRequestDataLifeCycleMaturity](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/RealTimeOptions/v4/docs/PostOptionByClassValueRangesGetRequestDataLifeCycleMaturity.md)
 - [PostOptionByClassValueRangesGetRequestDataLifeCycleMaturityDate](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/RealTimeOptions/v4/docs/PostOptionByClassValueRangesGetRequestDataLifeCycleMaturityDate.md)
 - [PostOptionByClassValueRangesGetRequestDataOpenInterest](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/RealTimeOptions/v4/docs/PostOptionByClassValueRangesGetRequestDataOpenInterest.md)
 - [PostOptionByClassValueRangesGetRequestDataOpenInterestMinimum](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/RealTimeOptions/v4/docs/PostOptionByClassValueRangesGetRequestDataOpenInterestMinimum.md)
 - [PostOptionByClassValueRangesGetRequestMeta](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/RealTimeOptions/v4/docs/PostOptionByClassValueRangesGetRequestMeta.md)
 - [PostOptionClassScreenerSearchDataItems](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/RealTimeOptions/v4/docs/PostOptionClassScreenerSearchDataItems.md)
 - [PostOptionClassScreenerSearchDataItemsCategory](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/RealTimeOptions/v4/docs/PostOptionClassScreenerSearchDataItemsCategory.md)
 - [PostOptionClassScreenerSearchDataItemsCurrency](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/RealTimeOptions/v4/docs/PostOptionClassScreenerSearchDataItemsCurrency.md)
 - [PostOptionClassScreenerSearchDataItemsMarket](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/RealTimeOptions/v4/docs/PostOptionClassScreenerSearchDataItemsMarket.md)
 - [PostOptionClassScreenerSearchDataItemsUnderlying](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/RealTimeOptions/v4/docs/PostOptionClassScreenerSearchDataItemsUnderlying.md)
 - [PostOptionClassScreenerSearchDataItemsUnderlyingNotation](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/RealTimeOptions/v4/docs/PostOptionClassScreenerSearchDataItemsUnderlyingNotation.md)
 - [PostOptionClassScreenerSearchDataItemsUnderlyingNotationFsym](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/RealTimeOptions/v4/docs/PostOptionClassScreenerSearchDataItemsUnderlyingNotationFsym.md)
 - [PostOptionClassScreenerSearchDataItemsUnderlyingNotationFsymListing](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/RealTimeOptions/v4/docs/PostOptionClassScreenerSearchDataItemsUnderlyingNotationFsymListing.md)
 - [PostOptionClassScreenerSearchDataItemsUnderlyingNotationFsymRegional](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/RealTimeOptions/v4/docs/PostOptionClassScreenerSearchDataItemsUnderlyingNotationFsymRegional.md)
 - [PostOptionClassScreenerSearchRequest](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/RealTimeOptions/v4/docs/PostOptionClassScreenerSearchRequest.md)
 - [PostOptionClassScreenerSearchRequestData](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/RealTimeOptions/v4/docs/PostOptionClassScreenerSearchRequestData.md)
 - [PostOptionClassScreenerSearchRequestDataCategory](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/RealTimeOptions/v4/docs/PostOptionClassScreenerSearchRequestDataCategory.md)
 - [PostOptionClassScreenerSearchRequestDataCategoryExclude](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/RealTimeOptions/v4/docs/PostOptionClassScreenerSearchRequestDataCategoryExclude.md)
 - [PostOptionClassScreenerSearchRequestDataCategoryRestrict](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/RealTimeOptions/v4/docs/PostOptionClassScreenerSearchRequestDataCategoryRestrict.md)
 - [PostOptionClassScreenerSearchRequestDataCurrency](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/RealTimeOptions/v4/docs/PostOptionClassScreenerSearchRequestDataCurrency.md)
 - [PostOptionClassScreenerSearchRequestDataCurrencyExclude](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/RealTimeOptions/v4/docs/PostOptionClassScreenerSearchRequestDataCurrencyExclude.md)
 - [PostOptionClassScreenerSearchRequestDataCurrencyRestrict](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/RealTimeOptions/v4/docs/PostOptionClassScreenerSearchRequestDataCurrencyRestrict.md)
 - [PostOptionClassScreenerSearchRequestDataMarket](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/RealTimeOptions/v4/docs/PostOptionClassScreenerSearchRequestDataMarket.md)
 - [PostOptionClassScreenerSearchRequestDataMarketExclude](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/RealTimeOptions/v4/docs/PostOptionClassScreenerSearchRequestDataMarketExclude.md)
 - [PostOptionClassScreenerSearchRequestDataMarketRestrict](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/RealTimeOptions/v4/docs/PostOptionClassScreenerSearchRequestDataMarketRestrict.md)
 - [PostOptionClassScreenerSearchRequestDataText](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/RealTimeOptions/v4/docs/PostOptionClassScreenerSearchRequestDataText.md)
 - [PostOptionClassScreenerSearchRequestDataUnderlying](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/RealTimeOptions/v4/docs/PostOptionClassScreenerSearchRequestDataUnderlying.md)
 - [PostOptionClassScreenerSearchRequestDataUnderlyingInstrument](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/RealTimeOptions/v4/docs/PostOptionClassScreenerSearchRequestDataUnderlyingInstrument.md)
 - [PostOptionClassScreenerSearchRequestDataUnderlyingNotation](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/RealTimeOptions/v4/docs/PostOptionClassScreenerSearchRequestDataUnderlyingNotation.md)
 - [PostOptionClassScreenerSearchRequestMeta](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/RealTimeOptions/v4/docs/PostOptionClassScreenerSearchRequestMeta.md)
 - [StatusObject](https://github.com/FactSet/enterprise-sdk/tree/main/code/python/RealTimeOptions/v4/docs/StatusObject.md)


## Documentation For Authorization


## FactSetApiKey

- **Type**: HTTP basic authentication


## FactSetOAuth2

- **Type**: OAuth
- **Flow**: application
- **Authorization URL**: 
- **Scopes**: N/A


## Notes for Large OpenAPI documents
If the OpenAPI document is large, imports in fds.sdk.RealTimeOptions.apis and fds.sdk.RealTimeOptions.models may fail with a
RecursionError indicating the maximum recursion limit has been exceeded. In that case, there are a couple of solutions:

Solution 1:
Use specific imports for apis and models like:
- `from fds.sdk.RealTimeOptions.api.default_api import DefaultApi`
- `from fds.sdk.RealTimeOptions.model.pet import Pet`

Solution 2:
Before importing the package, adjust the maximum recursion limit as shown below:
```
import sys
sys.setrecursionlimit(1500)
import fds.sdk.RealTimeOptions
from fds.sdk.RealTimeOptions.apis import *
from fds.sdk.RealTimeOptions.models import *
```

## Contributing

Please refer to the [contributing guide](../../../../CONTRIBUTING.md).

## Copyright

Copyright 2026 FactSet Research Systems Inc

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at

    http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.

