Read Your News Faster.
Web-based RSS feed aggregator designed to shorten the time it takes to read articles by combining related articles into digestible chunks. It is similar to cir.ca, but it allows users to input their own sources and summarization is handled algorithmically.
Formerly hosted at http://sourcemash.com
The site was built for the CS98 course at Dartmouth College.
brew install postgresql
)brew install redis
)Install all requirements from requirements.txt
Virtual environment (preferred):
virtualenv flask
flask/bin/pip install -r requirements.txt
. flask/bin/activate
System-wide (not the best option): sudo pip install -r requirements.txt
python manage.py server
redis-server &
python manage.py scrape_worker & python manage.py user_tasks_worker &
python manage.py scrape [--noqueue]
python manage.py test
.python manage.py test --all
or python manage.py test -a
.This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 2 of the License, or (at your option) any later version.
This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
You should have received a copy of the GNU General Public License along with this program. If not, see http://www.gnu.org/licenses/.