コード:
import networkx as net
from urllib.request import urlopen
def read_lj_friends(g, name):
# fetch the friend-list from LiveJournal
response=urllib.urlopen('http://www.livejournal.com/misc/fdata.bml?user='+name)
エラー:
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
NameError: name 'urllib' is not defined
urlopen
を直接インポートしたので、urllib
経由ではなく、そのように参照する必要があります。
response = urlopen('...')
Python 3:
from six.moves import urllib
temp_file, _ = urllib.request.urlretrieve(url)
あなたの場合:
import networkx as net
from urllib.request import urlopen
def read_lj_friends(g, name):
# fetch the friend-list from LiveJournal
response=urlopen('http://www.livejournal.com/misc/fdata.bml?user='+name)
Plsを試してください:
from urllib.request import urlopen
html = urlopen("http://www.google.com/")
print(html.read) # Content