LSEG Data Library for Python

get_data

Sends a request to the Delivery Platform (formerly Refinitiv Data Platform) to retrieve the data described in bond.Definition object.

Module

refinitiv.data.ipa.financial_contracts.bond

Syntax

get_data(session)

Parameters

Value Description Data type Optional Default value
session Session object. If session parameters are not defined, the default session will be used. Session object Yes None

Returned value

Response

Usage

The following example demonstrates how to retrieve the bond's data for "250847EF3=TWBL":

from refinitiv.data.content.ipa.financial_contracts import bond

definition = bond.Definition(
    fields=["YieldPercent", "Duration", "RedemptionDateType", "RedemptionDate"],
    instrument_code="250847EF3=TWBL",
    pricing_parameters=bond.PricingParameters(
        redemption_date_type="RedemptionAtCallDate",
        price = 100,
        trade_date = "2020-05-01"
    )
)
response = definition.get_data()
print(response.data.df.to_string())

None.

59 words (0:19 mins)