Good day. Little problem with regexp.
I have a regexp that look like
rexp2 = re.findall(r'<p>(.*?)</p>', data)
And i need to grab all in
<div id="header">
<h1></h1>
<p>
localhost OpenWrt Backfire<br />
Load: 0.00 0.00 0.00<br />
Hostname: localhost
</p>
</div>
But my code doesnt work :( What im doing wrong?