Hi, I’m trying to display a tweet in my app in such a way that the text and image of a post appear. Something like that:
I am using this code to capture and display the tweet from a url:
class Tweet(object):
def __init__(self, s, embed_str=False):
if not embed_str:
# Use Twitter's oEmbed API
# https://dev.twitter.com/web/embedded-tweets
api = 'https://publish.twitter.com/oembed?url={}'.format(s)
response = requests.get(api)
self.text = response.json()["html"]
else:
self.text = s
def _repr_html_(self):
return self.text
st.write(Tweet("https://twitter.com/OReillyMedia/status/901048172738482176"), unsafe_allow_html=True)
But I only get part of the tweet. This is my result:
Anyone know how to display the full Tweet? Thanks!