I am using BeautifulSoup for my project
and I don't know how the object returned by the Soup is organized,
so I don't know how to access it, except using only print
I can only do this:
link = soup.find(attrs={'class' : re.compile("util2$")})
print link
it print out the whole <a href......> .... </a>
but I only want the address within it
do anybody knows?