Hi, I’m having problems displaying a Tweet. This is my code:
And instead of getting the Tweet, this is the result:
Hi, I’m having problems displaying a Tweet. This is my code:
And instead of getting the Tweet, this is the result:
Hello @davera-017
You can simply embed your tweet link by using shields.io. You can make badges out of shields by providing the link you need to embed and add the badge to the streamlit using the st.write
st.write('''
[(https://twitter.com/OReillyMedja/status/901048172738482176)
''')
which would look like this :
I have already created a GitHub star badge made from shields.io to use in my streamlit app.
You could refer Shields for more badges
Hope it helps you!
Regards,
Harisankar
Hello @davera-017
Try the following one, there are some changes in the code from the previous one.
st.write('''
[](https://twitter.com/OReillyMedja/status/901048172738482176)
''')
Output would look like this:
This would work perfectly!
So take a look into this.
Cheers!!
Harisankar
did that work out