├── .gitignore ├── .travis.yml ├── LICENCE ├── MANIFEST.in ├── Pipfile ├── Pipfile.lock ├── README.md ├── requirements ├── requirements-test.txt └── requirements.txt ├── scrapy_puppeteer ├── __init__.py ├── cli.py ├── http.py └── middlewares.py ├── setup.cfg ├── setup.py └── tests ├── __init__.py └── test_middlewares.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemfromspace/scrapy-puppeteer/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemfromspace/scrapy-puppeteer/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENCE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemfromspace/scrapy-puppeteer/HEAD/LICENCE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemfromspace/scrapy-puppeteer/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /Pipfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemfromspace/scrapy-puppeteer/HEAD/Pipfile -------------------------------------------------------------------------------- /Pipfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemfromspace/scrapy-puppeteer/HEAD/Pipfile.lock -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemfromspace/scrapy-puppeteer/HEAD/README.md -------------------------------------------------------------------------------- /requirements/requirements-test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemfromspace/scrapy-puppeteer/HEAD/requirements/requirements-test.txt -------------------------------------------------------------------------------- /requirements/requirements.txt: -------------------------------------------------------------------------------- 1 | scrapy>=1.0.0 2 | pyppeteer 3 | -------------------------------------------------------------------------------- /scrapy_puppeteer/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemfromspace/scrapy-puppeteer/HEAD/scrapy_puppeteer/__init__.py -------------------------------------------------------------------------------- /scrapy_puppeteer/cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemfromspace/scrapy-puppeteer/HEAD/scrapy_puppeteer/cli.py -------------------------------------------------------------------------------- /scrapy_puppeteer/http.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemfromspace/scrapy-puppeteer/HEAD/scrapy_puppeteer/http.py -------------------------------------------------------------------------------- /scrapy_puppeteer/middlewares.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemfromspace/scrapy-puppeteer/HEAD/scrapy_puppeteer/middlewares.py -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemfromspace/scrapy-puppeteer/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemfromspace/scrapy-puppeteer/HEAD/setup.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test_middlewares.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clemfromspace/scrapy-puppeteer/HEAD/tests/test_middlewares.py --------------------------------------------------------------------------------