rahulNenavath305 commited on
Commit
a8b955b
·
1 Parent(s): 767406f

adjusted st write for author title

Browse files
Files changed (1) hide show
  1. app.py +1 -2
app.py CHANGED
@@ -66,8 +66,7 @@ def main() -> None:
66
  content = data.get("scraped_content")
67
  st.write("---")
68
  st.write(f'Extracted Article Information')
69
- st.write(f'**Article Title:**')
70
- st.write(f"{content.get('article_title')}")
71
  st.write(f"**Author:** {content.get('author')}")
72
  st.write(f"**Published Date:** {content.get('publish_date')}")
73
  st.write(f"**Description:** {content.get('description')}")
 
66
  content = data.get("scraped_content")
67
  st.write("---")
68
  st.write(f'Extracted Article Information')
69
+ st.write(f"**Article Title:** {content.get('article_title')}")
 
70
  st.write(f"**Author:** {content.get('author')}")
71
  st.write(f"**Published Date:** {content.get('publish_date')}")
72
  st.write(f"**Description:** {content.get('description')}")