Refinitiv Data Library for Python

session.Definition object

The session.Definition objects allows to define the sessions (either desktop sessions or platform sessions) you want to create.

Module

refinitiv.data.session

Syntax

Definition(name)

Parameters

Value Description Data Type Optional Default value
name Name of the session to create. This name must refer to a session and the related parameters defined in the configuration file of the library. For example: platform.my-session str Yes None

Returned value

None

Usage

The following example demonstrates how to create a definition object.

import refinitiv.data as rd

definition = rd.session.Definition(name="platform.my-session")

None