web-dev-qa-db-ja.com

NameError:名前 'urllib'は定義されていません "

コード:

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
6
Amit Mishra

urlopenを直接インポートしたので、urllib経由ではなく、そのように参照する必要があります。

response = urlopen('...')
6
Daniel Roseman

Python 3:

from six.moves import urllib

temp_file, _ = urllib.request.urlretrieve(url)
2
gogasca

あなたの場合:

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)
0
Banjali

Plsを試してください:

from urllib.request import urlopen

html = urlopen("http://www.google.com/")
print(html.read) # Content 
0
Tolgahan ÜZÜN