Scrapy debug request object

How to debug a Scrapy request object?

requestobj = FormRequest.from_response (response, formxpath = form_xpath, callback = self.parse1)

I need to check the formdata requestobj. But I haven't found any documentation for debugging the Request object

+3


source to share


2 answers


Use some traffic monitoring software, I personally use a fiddler. this will help you check requests sent from python as well as from browsers.



+2


source


try to send request:

http://httpbin.org/

or



http://echo.opera.com/

you will receive a response with information about your request

+1


source







All Articles