For the equivalent .Net implementation, refer here: Article.RDPLibrary.DotNet.Search
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.
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
To execute any workbook, refer to the following:
License(s):
-
A Refinitiv desktop license (Refinitiv Eikon or Refinitiv Workspace) that has API access
OR
-
A Refinitiv Data Platform (RDP) license with access to the Search endpoint data services
- Tested with Python 3.7
- Packages: rdp pandas datetime dateutil
- RDP for Python installation: 'pip install refinitiv-dataplatform'
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>" ) )
- Nick Zincone - Release 1.0. Initial version