I am trying to get input values ββfrom an HTML document and want to parse the values ββof hidden input fields. For example, how can I parse 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
source share