NameError: name 'urllib' is not defined "

前端 未结 5 915
傲寒
傲寒 2021-02-09 04:28

CODE:

import networkx as net
from urllib.request import urlopen
def read_lj_friends(g, name):
# fetch the friend-list from LiveJournal
response=urllib.urlopen(\'         


        
5条回答
  •  [愿得一人]
    2021-02-09 05:26

    You've imported urlopen directly, so you should refer to it like that rather than via urllib:

    response = urlopen('...')
    

提交回复
热议问题