Querying in pyhton using RICs filter

this is en example of what I use now news = ld.news.get_headlines(query="L'Agence AND Tresor",start='2022-08-26T00:00:00', end='2025-12-06T23:59:59',count=1000)

ut instead I would like to get all news for some RICS like AUCTBTF

Answers

  • To get all the news related data for this RIC, you can use the content layer of the LD library as shown in this example on the GitHub.

    response = news.headlines.Definition("AUCTBTF").get_data()
    response.data.df
    
    image.png