├── .gitignore ├── LICENSE ├── Pipfile ├── README.md ├── bin ├── .config │ └── systemd │ │ └── user │ │ ├── newspaper_spider.service │ │ ├── newspaper_spider.timer │ │ └── newspaper_web.service ├── git-sync.sh ├── obsoleted │ ├── restart.sh │ ├── start.sh │ └── stop.sh └── update_systemd_config.py ├── crawl_history.py ├── crawl_online.py ├── crawl_test.py ├── db_backup.py ├── db_sql.py ├── deploy.md ├── newspaper ├── api.py ├── config.py ├── crawler │ ├── main.py │ ├── sources.py │ └── spiders.py ├── loggers.py ├── models.py ├── server.py ├── static │ └── favicon.ico ├── templates │ ├── articles.html │ └── daily_python.html ├── utils.py └── views.py └── run_server.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClericPy/newspaper/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClericPy/newspaper/HEAD/LICENSE -------------------------------------------------------------------------------- /Pipfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClericPy/newspaper/HEAD/Pipfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClericPy/newspaper/HEAD/README.md -------------------------------------------------------------------------------- /bin/.config/systemd/user/newspaper_spider.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClericPy/newspaper/HEAD/bin/.config/systemd/user/newspaper_spider.service -------------------------------------------------------------------------------- /bin/.config/systemd/user/newspaper_spider.timer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClericPy/newspaper/HEAD/bin/.config/systemd/user/newspaper_spider.timer -------------------------------------------------------------------------------- /bin/.config/systemd/user/newspaper_web.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClericPy/newspaper/HEAD/bin/.config/systemd/user/newspaper_web.service -------------------------------------------------------------------------------- /bin/git-sync.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClericPy/newspaper/HEAD/bin/git-sync.sh -------------------------------------------------------------------------------- /bin/obsoleted/restart.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClericPy/newspaper/HEAD/bin/obsoleted/restart.sh -------------------------------------------------------------------------------- /bin/obsoleted/start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClericPy/newspaper/HEAD/bin/obsoleted/start.sh -------------------------------------------------------------------------------- /bin/obsoleted/stop.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClericPy/newspaper/HEAD/bin/obsoleted/stop.sh -------------------------------------------------------------------------------- /bin/update_systemd_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClericPy/newspaper/HEAD/bin/update_systemd_config.py -------------------------------------------------------------------------------- /crawl_history.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClericPy/newspaper/HEAD/crawl_history.py -------------------------------------------------------------------------------- /crawl_online.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClericPy/newspaper/HEAD/crawl_online.py -------------------------------------------------------------------------------- /crawl_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClericPy/newspaper/HEAD/crawl_test.py -------------------------------------------------------------------------------- /db_backup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClericPy/newspaper/HEAD/db_backup.py -------------------------------------------------------------------------------- /db_sql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClericPy/newspaper/HEAD/db_sql.py -------------------------------------------------------------------------------- /deploy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClericPy/newspaper/HEAD/deploy.md -------------------------------------------------------------------------------- /newspaper/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClericPy/newspaper/HEAD/newspaper/api.py -------------------------------------------------------------------------------- /newspaper/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClericPy/newspaper/HEAD/newspaper/config.py -------------------------------------------------------------------------------- /newspaper/crawler/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClericPy/newspaper/HEAD/newspaper/crawler/main.py -------------------------------------------------------------------------------- /newspaper/crawler/sources.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClericPy/newspaper/HEAD/newspaper/crawler/sources.py -------------------------------------------------------------------------------- /newspaper/crawler/spiders.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClericPy/newspaper/HEAD/newspaper/crawler/spiders.py -------------------------------------------------------------------------------- /newspaper/loggers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClericPy/newspaper/HEAD/newspaper/loggers.py -------------------------------------------------------------------------------- /newspaper/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClericPy/newspaper/HEAD/newspaper/models.py -------------------------------------------------------------------------------- /newspaper/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClericPy/newspaper/HEAD/newspaper/server.py -------------------------------------------------------------------------------- /newspaper/static/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClericPy/newspaper/HEAD/newspaper/static/favicon.ico -------------------------------------------------------------------------------- /newspaper/templates/articles.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClericPy/newspaper/HEAD/newspaper/templates/articles.html -------------------------------------------------------------------------------- /newspaper/templates/daily_python.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClericPy/newspaper/HEAD/newspaper/templates/daily_python.html -------------------------------------------------------------------------------- /newspaper/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClericPy/newspaper/HEAD/newspaper/utils.py -------------------------------------------------------------------------------- /newspaper/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClericPy/newspaper/HEAD/newspaper/views.py -------------------------------------------------------------------------------- /run_server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClericPy/newspaper/HEAD/run_server.py --------------------------------------------------------------------------------