A minimal news webapp based on the Cyclododecene/newsfeed
- not open-source yet
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.127.0.0.1:5000/event
records individual news articles, extracting detailed information on every person, location, number and theme mentioned in an article.
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
- GDELT - For data support
- Minimal-News - For style reference