I am debugging a microcontroller I\'ve built which is writing raw HTTP requests line by line. I am using Flask for my backend and I would like to see the entire request as it a
suppose if you want complete details,
@app.route('/') def index(): print request.__dict__ #this prints all variables in `dict` format including `headers`