Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/ryichk/scrapy-on-docker

Scrapy on Docker template.
https://github.com/ryichk/scrapy-on-docker

docker python3 scrapy

Last synced: 7 days ago
JSON representation

Scrapy on Docker template.

Awesome Lists containing this project

README

        

# Scrapy on Docker

## Set UP

```sh
docker build --tag project_name .
docker run -it --rm --name project_name -v $PWD:/app project_name

# Inside the docker container
scrapy startproject app ./

## Generate Spider
scrapy genspider
```