Skip to content

Latest commit

 

History

History
36 lines (23 loc) · 1.31 KB

README.md

File metadata and controls

36 lines (23 loc) · 1.31 KB

A minimal news webapp based on the Cyclododecene/newsfeed - not open-source yet

  1. 127.0.0.1:5000/article is for users to take a glance on the latest news (randomly 5 news) in the world by just showing you the title with a summarization generated by algorithm.
  2. 127.0.0.1:5000/event records individual news articles, extracting detailed information on every person, location, number and theme mentioned in an article.

Deployment (NOT YET)

conda create -n newsfeed python=3.7
conda activate newsfeed
python -m pip install newsfeed flask gunicorn

git clone https://github.com/TerenceLiu98/NewsFeed.git

cd NewsFeed
gunicorn --bind 0.0.0.0:5001 app:app

CI/CD with GitHub Action

Web Interface

Article

Event

Acknowledgement