Skip to content

The following examples outline the core capabilities available within Refinitiv's Search API, a powerful search engine covering content such as quotes, instruments, organizations, and many types of assets.

LSEG-API-Samples/Article.RDPLibrary.Python.Search

Repository files navigation

Building Search into your Application Workflow

For the equivalent .Net implementation, refer here: Article.RDPLibrary.DotNet.Search

Overview

With the wealth of content offered within the Refinitiv ecosystem, the following series of examples will outline the core capabilities available within Refinitiv's Search API, a powerful, Google-like search engine covering content such as quotes, instruments, organizations, and many other assets that can be programmatically integrated within your business Workflow.

Details and concepts are further explained in the Building Search into your Application Workflow article published on the Refinitiv Developer Community portal.

Disclaimer

The source code presented in this project has been written by Refinitiv only for the purpose of illustrating the concepts of creating example scenarios using the Refinitiv Data Platform Library for Python.

Note: To ask questions and benefit from the learning material, I recommend you to register on the Refinitiv Developer Community

Prerequisites

To execute any workbook, refer to the following:

License(s):

Development Environment

  • Tested with Python 3.7
  • Packages: rdp pandas datetime dateutil
  • RDP for Python installation: 'pip install refinitiv-dataplatform'

Setup

The application package includes a series of Jupyter Notebooks demonstrating features of the service. Depending where you plan to access the content from, you will need provide the proper credentials:

  • Desktop Access

    The notebooks have been set up and tested to access data within the desktop, whether Refinitiv Workspace or Eikon. For each, you simply need to replace the 'Your API Key here' with your own generated application API key.

  • Platform Access

    If you have an RDP license, you will need to replace the session code segment at the top of each notebook. Replace the following line:

    rdp.open_desktop_session('Your API Key here')
    

    With the following:

    rdp.open_platform_session(
      "Your API Key here",
        rdp.GrantPassword(
            username = "<YOUR MACHINE ID>",
            password = "<PASSWORD>"
        )
    )

Authors

  • Nick Zincone - Release 1.0. Initial version

About

The following examples outline the core capabilities available within Refinitiv's Search API, a powerful search engine covering content such as quotes, instruments, organizations, and many types of assets.

Topics

Resources

Stars

Watchers

Forks