├── LICENSE ├── README.md ├── news ├── __init__.py ├── items.py ├── pipelines.py ├── settings.py └── spiders │ ├── __init__.py │ ├── beautiful_soup.py │ └── hnspider.py └── scrapy.cfg /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvanveen/hncrawl/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvanveen/hncrawl/HEAD/README.md -------------------------------------------------------------------------------- /news/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /news/items.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvanveen/hncrawl/HEAD/news/items.py -------------------------------------------------------------------------------- /news/pipelines.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvanveen/hncrawl/HEAD/news/pipelines.py -------------------------------------------------------------------------------- /news/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvanveen/hncrawl/HEAD/news/settings.py -------------------------------------------------------------------------------- /news/spiders/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvanveen/hncrawl/HEAD/news/spiders/__init__.py -------------------------------------------------------------------------------- /news/spiders/beautiful_soup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvanveen/hncrawl/HEAD/news/spiders/beautiful_soup.py -------------------------------------------------------------------------------- /news/spiders/hnspider.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvanveen/hncrawl/HEAD/news/spiders/hnspider.py -------------------------------------------------------------------------------- /scrapy.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvanveen/hncrawl/HEAD/scrapy.cfg --------------------------------------------------------------------------------