├── .coveragerc ├── .github └── workflows │ ├── publish.yml │ └── tests.yml ├── .gitignore ├── CHANGES.rst ├── LICENSE.txt ├── MANIFEST.in ├── README.rst ├── example ├── scrapy.cfg └── scrashtest │ ├── __init__.py │ ├── settings.py │ └── spiders │ ├── __init__.py │ └── quotes.py ├── pyproject.toml ├── pytest.ini ├── scrapy_splash ├── __init__.py ├── cache.py ├── cookies.py ├── dupefilter.py ├── middleware.py ├── request.py ├── response.py ├── responsetypes.py └── utils.py ├── setup.cfg ├── setup.py ├── tests ├── __init__.py ├── conftest.py ├── mockserver.py ├── resources.py ├── test_cookies.py ├── test_fingerprints.py ├── test_integration.py ├── test_middleware.py ├── test_request.py ├── test_utils.py └── utils.py └── tox.ini /.coveragerc: -------------------------------------------------------------------------------- 1 | [run] 2 | branch = true 3 | -------------------------------------------------------------------------------- /.github/workflows/publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scrapy-plugins/scrapy-splash/HEAD/.github/workflows/publish.yml -------------------------------------------------------------------------------- /.github/workflows/tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scrapy-plugins/scrapy-splash/HEAD/.github/workflows/tests.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scrapy-plugins/scrapy-splash/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGES.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scrapy-plugins/scrapy-splash/HEAD/CHANGES.rst -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scrapy-plugins/scrapy-splash/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scrapy-plugins/scrapy-splash/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scrapy-plugins/scrapy-splash/HEAD/README.rst -------------------------------------------------------------------------------- /example/scrapy.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scrapy-plugins/scrapy-splash/HEAD/example/scrapy.cfg -------------------------------------------------------------------------------- /example/scrashtest/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /example/scrashtest/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scrapy-plugins/scrapy-splash/HEAD/example/scrashtest/settings.py -------------------------------------------------------------------------------- /example/scrashtest/spiders/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /example/scrashtest/spiders/quotes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scrapy-plugins/scrapy-splash/HEAD/example/scrashtest/spiders/quotes.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scrapy-plugins/scrapy-splash/HEAD/pyproject.toml -------------------------------------------------------------------------------- /pytest.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scrapy-plugins/scrapy-splash/HEAD/pytest.ini -------------------------------------------------------------------------------- /scrapy_splash/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scrapy-plugins/scrapy-splash/HEAD/scrapy_splash/__init__.py -------------------------------------------------------------------------------- /scrapy_splash/cache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scrapy-plugins/scrapy-splash/HEAD/scrapy_splash/cache.py -------------------------------------------------------------------------------- /scrapy_splash/cookies.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scrapy-plugins/scrapy-splash/HEAD/scrapy_splash/cookies.py -------------------------------------------------------------------------------- /scrapy_splash/dupefilter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scrapy-plugins/scrapy-splash/HEAD/scrapy_splash/dupefilter.py -------------------------------------------------------------------------------- /scrapy_splash/middleware.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scrapy-plugins/scrapy-splash/HEAD/scrapy_splash/middleware.py -------------------------------------------------------------------------------- /scrapy_splash/request.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scrapy-plugins/scrapy-splash/HEAD/scrapy_splash/request.py -------------------------------------------------------------------------------- /scrapy_splash/response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scrapy-plugins/scrapy-splash/HEAD/scrapy_splash/response.py -------------------------------------------------------------------------------- /scrapy_splash/responsetypes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scrapy-plugins/scrapy-splash/HEAD/scrapy_splash/responsetypes.py -------------------------------------------------------------------------------- /scrapy_splash/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scrapy-plugins/scrapy-splash/HEAD/scrapy_splash/utils.py -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- 1 | [bdist_wheel] 2 | universal=1 3 | -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scrapy-plugins/scrapy-splash/HEAD/setup.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scrapy-plugins/scrapy-splash/HEAD/tests/__init__.py -------------------------------------------------------------------------------- /tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scrapy-plugins/scrapy-splash/HEAD/tests/conftest.py -------------------------------------------------------------------------------- /tests/mockserver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scrapy-plugins/scrapy-splash/HEAD/tests/mockserver.py -------------------------------------------------------------------------------- /tests/resources.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scrapy-plugins/scrapy-splash/HEAD/tests/resources.py -------------------------------------------------------------------------------- /tests/test_cookies.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scrapy-plugins/scrapy-splash/HEAD/tests/test_cookies.py -------------------------------------------------------------------------------- /tests/test_fingerprints.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scrapy-plugins/scrapy-splash/HEAD/tests/test_fingerprints.py -------------------------------------------------------------------------------- /tests/test_integration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scrapy-plugins/scrapy-splash/HEAD/tests/test_integration.py -------------------------------------------------------------------------------- /tests/test_middleware.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scrapy-plugins/scrapy-splash/HEAD/tests/test_middleware.py -------------------------------------------------------------------------------- /tests/test_request.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scrapy-plugins/scrapy-splash/HEAD/tests/test_request.py -------------------------------------------------------------------------------- /tests/test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scrapy-plugins/scrapy-splash/HEAD/tests/test_utils.py -------------------------------------------------------------------------------- /tests/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scrapy-plugins/scrapy-splash/HEAD/tests/utils.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scrapy-plugins/scrapy-splash/HEAD/tox.ini --------------------------------------------------------------------------------