If I had the text:
text = '<span id="foo"></span> <div id="bar"></div>'
with text that can change (that might not have any ids), how could I use BeautifulSoup to get the id names regardless of tag name(returning ['foo','bar']). I'm not that experienced to BeautifulSoup and have been confused on doing this task.