Here is my output from a webpage. After
soup = BeautifulSoup(data)
I have this:
<html>
<body>
<p>EXCHANGE%3DNSE
MARKET_OPEN_MINUTE=555 MARKET_CLOSE_MINUTE=930 INTERVAL=900 COLUMNS=DATE,CLOSE,HIGH,LOW,OPEN,VOLUME,CDAYS DATA=TIMEZONE_OFFSET=330 a1497240000,1634.7,1648.85,1633.85,1641.95,171301,0,1,1635.7,1644.45,1634.35,1634.7,50969,02,1640.05,1640.4,1635.5,1635.5,131752,0
tags, and the suggestion is regex, you may want to see [this answer about regex and html](https://stackoverflow.com/a/1732454/1404311). You usually want to use something other than regex to get the entry out of the paragraph tag. If you can already get the text entry, and you need to know how to parse that, you may want to rewrite your question to express that that is all you are asking.
– Scott Mermelstein Jun 12 '17 at 16:50