Building my first app, and this seems like it should be an obvious question but I’m not finding much guidance online. There seems to be a lot of free real-estate on my screen that could be used to display information, but the actual display area seems to be a pretty small box. Is there any way to expand this area?
Streamlit Code:
import streamlit as st
import pandas as pdst.title(‘The Ramsey Highlights’)
st.header(‘New Data Collection’)options = st.sidebar.radio(‘’, [‘All Data’, ‘Link’])
if options == ‘All Data’:
audio_location = st.sidebar.text_input(‘Audio Path:’, r’C:\Users\Samuel\Audio\Audio Full’)
transcript_location = st.sidebar.text_input(‘Transcript Path:’, r’C:\Users\Samuel\Audio\Transcript’)elif options == ‘Link’:
video_link = st.sidebar.text_input(‘Link:’)
audio_location = st.sidebar.text_input(‘Audio Path:’, r’C:\Users\Samuel\Audio\Audio Full’)
transcript_location = st.sidebar.text_input(‘Transcript Path:’, r’C:\Users\Samuel\Audio\Transcript’)st.dataframe(pd.DataFrame({'id': [6142], 'title': ['dave do i have your permission to do this'], 'link': ['https://www.youtube.com/watch?v=RrB9FqkiAAo'], 'publish_date': ['2021-08-22'], 'keywords': ['the dave ramsey show|budge money debt cash|real...'], 'seconds': [265], 'rating': [4.81], 'view_count': [4032]}), width=5000)