I want to extract a bit of data from this snippet:
<div id="information_content">
<b>Name:</b> file.rar <br>
<b>Date Modified:</b> 2 days ago <br>
<b>Size:</b> 212.19 MB <br>
<b>Type:</b> Archive <br>
<b>Permissions:</b> Public </div>
</div>
I want to extract only 212.19 MB.
I have extracted the snippet using soup.find('div', attrs={'id': 'information_content'}) but I can't figure out how to drill further down to get what I need.
Can anybody help?