According to BeautifulSoup documentation, it is possible to get the value of tag's attribute by using a code which looks like this :
from bs4 import BeautifulSoup
soup = BeautifulSoup('<b class="boldest">Extremely bold</b>')
tag = soup.b
tag['class']
Theoretically (that is, according to the doc), the output would be :
u'boldest'
However, when I execute the above code, it outputs :
['boldest']
So, is there something I'm missing ? How can I obtain a tag's attribute content as a plain unicode string ?