soup = BeautifulSoup("<html>data</html>")
*UURLを指定して解析*[[Rhttps://docs.python.org/ja/2.7/library/urllib2.html urllib2 モジュールは、Python 3 で urllib.request, urllib.error に分割されました。]]Lを指定して解析
import urllib2
from BeautifulSoup import BeautifulSoup
soup = BeautifulSoup(urllib2.urlopen('http://xxxxx.com'))
==オブジェクト==
*[[Beautiful Soup]] は複雑なHTML文書を、Python オブジェクトのツリーに変換する