awacke1 commited on
Commit
f84fd7d
·
1 Parent(s): 67f57f4

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -0
app.py CHANGED
@@ -10,6 +10,7 @@ quotes_data = pd.read_csv('quotes.csv', index_col=0)
10
  # display random list of ten quotes
11
  st.title('Famous Quotes Generator')
12
  st.write('Generate a random list of ten famous quotes!')
 
13
 
14
  # generate random list
15
  random_list = np.random.choice(quotes_data.index.values, 10, replace=False)
 
10
  # display random list of ten quotes
11
  st.title('Famous Quotes Generator')
12
  st.write('Generate a random list of ten famous quotes!')
13
+ st.write('Cite Source for quotes.csv file: https://www.kaggle.com/datasets/manann/quotes-500k?resource=download')
14
 
15
  # generate random list
16
  random_list = np.random.choice(quotes_data.index.values, 10, replace=False)