This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
http://feeds.reuters.com/news/artsculture | |
http://feeds.reuters.com/reuters/businessNews | |
http://feeds.reuters.com/reuters/companyNews | |
http://feeds.reuters.com/reuters/entertainment | |
http://feeds.reuters.com/reuters/environment | |
http://feeds.reuters.com/reuters/healthNews | |
http://feeds.reuters.com/reuters/lifestyle | |
http://feeds.reuters.com/news/reutersmedia | |
http://feeds.reuters.com/news/wealth | |
http://feeds.reuters.com/reuters/MostRead |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
"""Simple sliding window dashboard-style | |
plot that updates periodically pulling from | |
a random generator | |
""" | |
import streamlit as st | |
import time | |
import random | |
# session_state from https://gist.github.com/tvst/036da038ab3e999a64497f42de966a92 | |
from session_state import get | |
# st_rerun from https://gist.github.com/tvst/ef477845ac86962fa4c92ec6a72bb5bd |