I am trying to get input values from an HTML doc and want to parse out the values of hidden input fields. For example how can I parse out only the value from the snippet below, using python.
<input type="hidden" autocomplete="off" id="post_form_id" name="post_form_id" value="d619a1eb3becdc05a3ebea530396782f" />
<input type="hidden" name="fb_dtsg" value="AQCYsohu" autocomplete="off" />
And the output of the python function should return something like:
post_form_id : d619a1eb3becdc05a3ebea530396782f
fb_dtsg : AQCYsohu