├── .gitignore ├── Procfile ├── README.md ├── app.py ├── db.py ├── requirements.txt ├── scheduler.py ├── scraper.py └── utils.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishg2/newsemble/HEAD/.gitignore -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- 1 | web: gunicorn app:app -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishg2/newsemble/HEAD/README.md -------------------------------------------------------------------------------- /app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishg2/newsemble/HEAD/app.py -------------------------------------------------------------------------------- /db.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishg2/newsemble/HEAD/db.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishg2/newsemble/HEAD/requirements.txt -------------------------------------------------------------------------------- /scheduler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishg2/newsemble/HEAD/scheduler.py -------------------------------------------------------------------------------- /scraper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishg2/newsemble/HEAD/scraper.py -------------------------------------------------------------------------------- /utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishg2/newsemble/HEAD/utils.py --------------------------------------------------------------------------------