Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
@@ -22,7 +22,8 @@ file = st.file_uploader("", type=["csv"])
|
|
22 |
if file is not None:
|
23 |
# Read the CSV file into a Pandas DataFrame
|
24 |
df = pd.read_csv(file)
|
25 |
-
st.
|
|
|
26 |
# Write the total number of records
|
27 |
st.markdown(
|
28 |
f'<div style="background-color: #4AA6DD; color: #ffffff; padding: 6px; font-size: 20px; font-family: Verdana; font-weight: bold; text-align: center; border-radius: 1rem;margin-top: 10px"> Distribution of Reviews </div>',
|
|
|
22 |
if file is not None:
|
23 |
# Read the CSV file into a Pandas DataFrame
|
24 |
df = pd.read_csv(file)
|
25 |
+
st.markdown(f"<h3 style='color: #52565E; font-family: Verdana; font-size: 30px;'>{len(df)} reviews to analyse!</h3>", unsafe_allow_html=True)
|
26 |
+
|
27 |
# Write the total number of records
|
28 |
st.markdown(
|
29 |
f'<div style="background-color: #4AA6DD; color: #ffffff; padding: 6px; font-size: 20px; font-family: Verdana; font-weight: bold; text-align: center; border-radius: 1rem;margin-top: 10px"> Distribution of Reviews </div>',
|