question

Upvotes
Accepted
77 6 12 17

get_search_metadata RDP to RD

Hi,

I am transitioning from RDP to RD (python).
I am looking for the get_search_metadata function that was available in RDP but I cannot find this in RD?

Any advice?


thanks

python#technologyrdp-api
icon clock
10 |1500

Up to 2 attachments (including images) can be used with a maximum of 512.0 KiB each and 1.0 MiB total.

1 Answer

· Write an Answer
Upvote
Accepted
17.5k 82 39 63

Hi @laurens

You can use the following method on search:

from refinitiv.data.content import search
...
response = search.metadata.Definition(
    view = search.Views.PEOPLE
).get_data()

response.data.df

You can find more details here: Example.DataLibrary.Python/Examples/2-Content/2.06-Search/EX-2.06.03-Search-Metadata.ipynb at main · Refinitiv-API-Samples/Example.DataLibrary.Python (github.com)

icon clock
10 |1500

Up to 2 attachments (including images) can be used with a maximum of 512.0 KiB each and 1.0 MiB total.

thanks a lot!

Write an Answer

Hint: Notify or tag a user in this post by typing @username.

Up to 2 attachments (including images) can be used with a maximum of 512.0 KiB each and 1.0 MiB total.