├── .DS_Store ├── .gitignore ├── LICENSE ├── Procfile ├── README.md ├── app.py ├── check_connection.py ├── get_content.py ├── news ├── scrape_cli.py └── scrape_web.py ├── requirements.txt ├── runtime.txt └── scheduler_script.py /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfiepoleon/kenya-news-scrapper/HEAD/.DS_Store -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfiepoleon/kenya-news-scrapper/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfiepoleon/kenya-news-scrapper/HEAD/LICENSE -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- 1 | web: gunicorn app:app 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfiepoleon/kenya-news-scrapper/HEAD/README.md -------------------------------------------------------------------------------- /app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfiepoleon/kenya-news-scrapper/HEAD/app.py -------------------------------------------------------------------------------- /check_connection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfiepoleon/kenya-news-scrapper/HEAD/check_connection.py -------------------------------------------------------------------------------- /get_content.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfiepoleon/kenya-news-scrapper/HEAD/get_content.py -------------------------------------------------------------------------------- /news/scrape_cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfiepoleon/kenya-news-scrapper/HEAD/news/scrape_cli.py -------------------------------------------------------------------------------- /news/scrape_web.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfiepoleon/kenya-news-scrapper/HEAD/news/scrape_web.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfiepoleon/kenya-news-scrapper/HEAD/requirements.txt -------------------------------------------------------------------------------- /runtime.txt: -------------------------------------------------------------------------------- 1 | python-3.6.1 -------------------------------------------------------------------------------- /scheduler_script.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfiepoleon/kenya-news-scrapper/HEAD/scheduler_script.py --------------------------------------------------------------------------------