According to the documentation for Beautiful Soup 3,

    http://www.crummy.com/software/BeautifulSoup/bs3/documentation.html

you must use one of the following:


    from BeautifulSoup import BeautifulSoup          # For processing HTML

OR

    from BeautifulSoup import BeautifulStoneSoup     # For processing XML

OR

    import BeautifulSoup                             # To get everything


Note that capitalization matters.
_______________________________________________
Tutor maillist  -  Tutor@python.org
To unsubscribe or change subscription options:
https://mail.python.org/mailman/listinfo/tutor

Reply via email to