├── .gitignore ├── LICENSE ├── README.md ├── app.js ├── index.html ├── requirements.txt ├── scrapy-project ├── scrapy.cfg └── ycombinator │ ├── __init__.py │ ├── items.py │ ├── middlewares.py │ ├── pipelines.py │ ├── settings.py │ └── spiders │ ├── __init__.py │ └── yscraper.py ├── scripts └── convert_output_to_json.py ├── styles.css └── yc_links_extractor.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corralm/yc-scraper/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corralm/yc-scraper/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corralm/yc-scraper/HEAD/README.md -------------------------------------------------------------------------------- /app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corralm/yc-scraper/HEAD/app.js -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corralm/yc-scraper/HEAD/index.html -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corralm/yc-scraper/HEAD/requirements.txt -------------------------------------------------------------------------------- /scrapy-project/scrapy.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corralm/yc-scraper/HEAD/scrapy-project/scrapy.cfg -------------------------------------------------------------------------------- /scrapy-project/ycombinator/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /scrapy-project/ycombinator/items.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corralm/yc-scraper/HEAD/scrapy-project/ycombinator/items.py -------------------------------------------------------------------------------- /scrapy-project/ycombinator/middlewares.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corralm/yc-scraper/HEAD/scrapy-project/ycombinator/middlewares.py -------------------------------------------------------------------------------- /scrapy-project/ycombinator/pipelines.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corralm/yc-scraper/HEAD/scrapy-project/ycombinator/pipelines.py -------------------------------------------------------------------------------- /scrapy-project/ycombinator/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corralm/yc-scraper/HEAD/scrapy-project/ycombinator/settings.py -------------------------------------------------------------------------------- /scrapy-project/ycombinator/spiders/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corralm/yc-scraper/HEAD/scrapy-project/ycombinator/spiders/__init__.py -------------------------------------------------------------------------------- /scrapy-project/ycombinator/spiders/yscraper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corralm/yc-scraper/HEAD/scrapy-project/ycombinator/spiders/yscraper.py -------------------------------------------------------------------------------- /scripts/convert_output_to_json.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corralm/yc-scraper/HEAD/scripts/convert_output_to_json.py -------------------------------------------------------------------------------- /styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corralm/yc-scraper/HEAD/styles.css -------------------------------------------------------------------------------- /yc_links_extractor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corralm/yc-scraper/HEAD/yc_links_extractor.py --------------------------------------------------------------------------------