awacke1 commited on
Commit
c2fe98c
·
1 Parent(s): b3057ad

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +7 -0
app.py CHANGED
@@ -4,6 +4,13 @@ import streamlit as st
4
  import pandas as pd
5
  import numpy as np
6
 
 
 
 
 
 
 
 
7
  # Load the dataset
8
  quotes = pd.read_csv('quotes.csv', index_col=0)
9
 
 
4
  import pandas as pd
5
  import numpy as np
6
 
7
+
8
+ st.title("Quotes Generator and Search")
9
+ st.write("Search for quotes by author, quote and category")
10
+
11
+ # Set the max width of the page
12
+ st.set_page_config(page_width=1000)
13
+
14
  # Load the dataset
15
  quotes = pd.read_csv('quotes.csv', index_col=0)
16