Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -147,6 +147,8 @@ def analyze_text(text):
|
|
147 |
return nb_mots, polarite, subjectivite, mots_cles, resume1, resume2
|
148 |
|
149 |
|
|
|
|
|
150 |
background_style = """
|
151 |
<style>
|
152 |
body {
|
@@ -157,10 +159,8 @@ background_style = """
|
|
157 |
}
|
158 |
</style>
|
159 |
"""
|
160 |
-
|
161 |
st.markdown(background_style, unsafe_allow_html=True)
|
162 |
|
163 |
-
st.title('Text Analysis and Summary')
|
164 |
text = st.text_area('Enter text here:')
|
165 |
|
166 |
if st.button('Analyze'):
|
|
|
147 |
return nb_mots, polarite, subjectivite, mots_cles, resume1, resume2
|
148 |
|
149 |
|
150 |
+
st.title('Text Analysis and Summary')
|
151 |
+
|
152 |
background_style = """
|
153 |
<style>
|
154 |
body {
|
|
|
159 |
}
|
160 |
</style>
|
161 |
"""
|
|
|
162 |
st.markdown(background_style, unsafe_allow_html=True)
|
163 |
|
|
|
164 |
text = st.text_area('Enter text here:')
|
165 |
|
166 |
if st.button('Analyze'):
|