I am downloading a list of company documents via the following script:
query = 'PresetTopic:[Filings: All] OR PresetTopic:[Transcripts: All] OR PresetTopic:[Press Releases] \
AND R:' + eikon_id + ' AND Language:LEN'
df = ek.get_news_headlines(query = query, count=100, date_from=start_d, date_to=end_d)
With the relevant variables set up, I am able to successfully source the stories, whose bodies in text format are then scanned via the following code:
newsText = ek.get_news_story(story_id)
Unfortunately I am encountering the issue that for those filings which rely on a PDF, the code above only provides a link to the document within the Refinitiv workstation, like the following example:
Is there any way I can download the PDF to perform the document scan correctly? As there can be hundreds of documents, the prospect of manually downloading all of those is not feasible.
Would using the RDP API work better in this case?