For one story I got different result for TEXT and HTML formats. The example is below:
import refinitiv.data as rd
from datetime import timedelta
from IPython.display import HTML
rd.open_session()
url = "urn:newsml:newswire.refinitiv.com:20230828:nL4N3A91S1:1"
story = rd.news.get_story(url, format=rd.news.Format.HTML)
rd.close_session()
HTML format contains a subtitle unlike text format:
"Aug 28 (Reuters)</span><span class="tr-dl-sep"> - </span>U.S. oil refiners are expected to have about 912,000 barrels per day (bpd) of capacity offline for the week ending Sept. 1, decreasing available refining capacity by 410,000 bpd, research company IIR Energy said on Monday.</p>"
Is it bug?