├── .gitignore ├── LICENSE ├── NodeJS ├── NodeJS │ ├── api_endpoint_example.js │ ├── proxy_port_example.js │ └── sdk_example.js └── NodeJS_Puppeteer │ ├── package.json │ └── proxy_port_example.js ├── Python ├── Python_Requests_Beautifulsoup │ ├── api_endpoint_example.py │ ├── proxy_port_example.py │ └── sdk_example.py ├── Python_Scrapy │ ├── Python_Scrapy │ │ ├── __init__.py │ │ ├── items.py │ │ ├── middlewares.py │ │ ├── pipelines.py │ │ ├── settings.py │ │ └── spiders │ │ │ ├── __init__.py │ │ │ ├── api_endpoint_example.py │ │ │ ├── proxy_port_example.py │ │ │ └── sdk_example.py │ └── scrapy.cfg └── Python_Selenium │ ├── api_endpoint_example.py │ └── proxy_port_example.py └── README.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scraperapi/scraperapi-code-examples/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scraperapi/scraperapi-code-examples/HEAD/LICENSE -------------------------------------------------------------------------------- /NodeJS/NodeJS/api_endpoint_example.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scraperapi/scraperapi-code-examples/HEAD/NodeJS/NodeJS/api_endpoint_example.js -------------------------------------------------------------------------------- /NodeJS/NodeJS/proxy_port_example.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scraperapi/scraperapi-code-examples/HEAD/NodeJS/NodeJS/proxy_port_example.js -------------------------------------------------------------------------------- /NodeJS/NodeJS/sdk_example.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scraperapi/scraperapi-code-examples/HEAD/NodeJS/NodeJS/sdk_example.js -------------------------------------------------------------------------------- /NodeJS/NodeJS_Puppeteer/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scraperapi/scraperapi-code-examples/HEAD/NodeJS/NodeJS_Puppeteer/package.json -------------------------------------------------------------------------------- /NodeJS/NodeJS_Puppeteer/proxy_port_example.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scraperapi/scraperapi-code-examples/HEAD/NodeJS/NodeJS_Puppeteer/proxy_port_example.js -------------------------------------------------------------------------------- /Python/Python_Requests_Beautifulsoup/api_endpoint_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scraperapi/scraperapi-code-examples/HEAD/Python/Python_Requests_Beautifulsoup/api_endpoint_example.py -------------------------------------------------------------------------------- /Python/Python_Requests_Beautifulsoup/proxy_port_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scraperapi/scraperapi-code-examples/HEAD/Python/Python_Requests_Beautifulsoup/proxy_port_example.py -------------------------------------------------------------------------------- /Python/Python_Requests_Beautifulsoup/sdk_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scraperapi/scraperapi-code-examples/HEAD/Python/Python_Requests_Beautifulsoup/sdk_example.py -------------------------------------------------------------------------------- /Python/Python_Scrapy/Python_Scrapy/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Python/Python_Scrapy/Python_Scrapy/items.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scraperapi/scraperapi-code-examples/HEAD/Python/Python_Scrapy/Python_Scrapy/items.py -------------------------------------------------------------------------------- /Python/Python_Scrapy/Python_Scrapy/middlewares.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scraperapi/scraperapi-code-examples/HEAD/Python/Python_Scrapy/Python_Scrapy/middlewares.py -------------------------------------------------------------------------------- /Python/Python_Scrapy/Python_Scrapy/pipelines.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scraperapi/scraperapi-code-examples/HEAD/Python/Python_Scrapy/Python_Scrapy/pipelines.py -------------------------------------------------------------------------------- /Python/Python_Scrapy/Python_Scrapy/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scraperapi/scraperapi-code-examples/HEAD/Python/Python_Scrapy/Python_Scrapy/settings.py -------------------------------------------------------------------------------- /Python/Python_Scrapy/Python_Scrapy/spiders/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scraperapi/scraperapi-code-examples/HEAD/Python/Python_Scrapy/Python_Scrapy/spiders/__init__.py -------------------------------------------------------------------------------- /Python/Python_Scrapy/Python_Scrapy/spiders/api_endpoint_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scraperapi/scraperapi-code-examples/HEAD/Python/Python_Scrapy/Python_Scrapy/spiders/api_endpoint_example.py -------------------------------------------------------------------------------- /Python/Python_Scrapy/Python_Scrapy/spiders/proxy_port_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scraperapi/scraperapi-code-examples/HEAD/Python/Python_Scrapy/Python_Scrapy/spiders/proxy_port_example.py -------------------------------------------------------------------------------- /Python/Python_Scrapy/Python_Scrapy/spiders/sdk_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scraperapi/scraperapi-code-examples/HEAD/Python/Python_Scrapy/Python_Scrapy/spiders/sdk_example.py -------------------------------------------------------------------------------- /Python/Python_Scrapy/scrapy.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scraperapi/scraperapi-code-examples/HEAD/Python/Python_Scrapy/scrapy.cfg -------------------------------------------------------------------------------- /Python/Python_Selenium/api_endpoint_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scraperapi/scraperapi-code-examples/HEAD/Python/Python_Selenium/api_endpoint_example.py -------------------------------------------------------------------------------- /Python/Python_Selenium/proxy_port_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scraperapi/scraperapi-code-examples/HEAD/Python/Python_Selenium/proxy_port_example.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scraperapi/scraperapi-code-examples/HEAD/README.md --------------------------------------------------------------------------------