I want to get the internal feed using get_data python API for the similarexcel function - =@RtGet("CALYON","NYTFUTSELECTION","SEG_TEXT") pls provide a sample.
@Joana_Balladolid
Thank you for reaching out to us.
Is this feed from an internal RTDS?
If yes, you can use the LSEG Data Library for Python to retrieve data. For example, I defined the DIST_PUB feed in Workspace.
Then I can use the following code to retrieve data from the DIST_PUB.
stream = ld.open_pricing_stream( universe=['TEST.BK'], fields=['BID', 'ASK'], service = "DIST_PUB", ) stream.get_snapshot()
The example code is on GitHub.
Hello Jirapngse, Yes, its an internal Source that we contribute to. Thank you this helps!