NameError: name 'urllib' is not defined "

前端 未结 5 914
傲寒
傲寒 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:27

    You can also try in Python 3:

    from six.moves import urllib
    
    temp_file, _ = urllib.request.urlretrieve(url)
    

提交回复
热议问题