I'm fetch value from the URL.
import urllib2
response = urllib2.urlopen('url')
response.read()
It's give me too long string type output, but I only put here what I have issue.
STRING TYPE OUTPUT:
'<p>Dear Customer,</p>
<p>This notice serves as proof of delivery for the shipment listed below.</p>
<dl class="outHozFixed clearfix"><label>Weight:</label></dt><dd>18.00 lbs</dd>
<dt><label>Shipped/Billed On:</label></dt><dd>09/11/2015</dd>
<dt><label>Delivered On:</label></dt><dd>09/14/2015 11:07 A.M.</dd>
<dt><label for="">Signed By:</label></dt><dd>Odedra</dd></dt>
<dt><label>Left At:</label></dt>
<dd>Office</dd></dl><p>Thank you for giving us this opportunity to serve you.</p>'
QUESTION:
how I can take date (09/14/2015 11:07 A.M.) which is assign for Delivered On?