Skip to main content

Check required data in a request.

Project description

Check required data in a request.

Usage

Some time ago Chrome Developers tools added Copy as Curl feature. This tool receives as input a curl command, parses it and checks what data is required to repeat the request successfully. It currently supports GET and POST requests.

The output depends on the action, which are currently print_results and print_scrapy_request. An example using the latest one is shown below:

$ python minreq-runner.py --action print_scrapy_request
curl 'https://en.wikipedia.org/w/load.php?debug=false&lang=en&modules=startup&only=scripts&skin=vector&*'
-H 'accept-encoding: gzip, deflate, sdch' -H 'accept-language: en-US,en;q=0.8,es;q=0.6'
-H 'user-agent: Mozilla/5.0' -H 'accept: */*' -H 'referer: https://en.wikipedia.org/wiki/Example'
-H 'cookie: GeoIP=:::::v6; WMF-Last-Access=23-Jun-2015' --compressed


Scrapy request
--------------


from scrapy.http import Request

return Request(
    url='https://en.wikipedia.org/w/load.php?only=scripts&modules=startup',
    cookies={},
    headers={},
    callback='method'
)

History

0.1.0 (2015-11-05)

  • First release on PyPI.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

minreq-0.1.0.tar.gz (5.9 kB view hashes)

Uploaded Source

Built Distribution

minreq-0.1.0-py2.py3-none-any.whl (8.1 kB view hashes)

Uploaded Python 2 Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page