Hi,
I am using Python to get the News letters.
Here is my code in Python :
headlines = tr.get_news_headlines(query=test+" IN KOREAN",date_from='2023-10-26',date_to='2023-11-28')
for index, headline_row in headlines.iterrows():
story = tr.get_news_story(headline_row['storyId'])
print("story : \n" + str(story))
I was wondering if i could get the thumbnail image with this article.