>>> from bs4 import BeautifulSoup>>> soup = BeautifulSoup(uniprestring_containing_the_entire_htlm_doc)>>> table = soup.find('table', {'class': 'details'})>>> th = table.find('th', text='Issued on:')>>> th<th>Issued on:</th>>>> td = th.findNext('td')>>> td<td>2013-06-13</td>>>> td.textu'2013-06-13'


