Warning: file_get_contents(/data/phpspider/zhask/data//catemap/1/cocoa/3.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Python库执行错误_Python_Urllib2_Urllib - Fatal编程技术网

Python库执行错误

Python库执行错误,python,urllib2,urllib,Python,Urllib2,Urllib,我制作了这个python库,它使用了urllib和urllib2,但是当我从pythonshell执行库的函数时,我得到了这个错误 >>> from sabermanlib import geturl >>> geturl("roblox.com","ggg.html") Traceback (most recent call last): File "<pyshell#11>", line 1, in <module>

我制作了这个python库,它使用了urllib和urllib2,但是当我从pythonshell执行库的函数时,我得到了这个错误

>>> from sabermanlib import geturl
>>> geturl("roblox.com","ggg.html")

Traceback (most recent call last):
  File "<pyshell#11>", line 1, in <module>
    geturl("roblox.com","ggg.html")
  File "sabermanlib.py", line 21, in geturl
    urllib.urlretrieve(Address,File)
  File "C:\Users\Andres\Desktop\ddd\Portable Python 2.7.5.1\App\lib\urllib.py", line 94, in urlretrieve
    return _urlopener.retrieve(url, filename, reporthook, data)
  File "C:\Users\Andres\Desktop\ddd\Portable Python 2.7.5.1\App\lib\urllib.py", line 240, in retrieve
    fp = self.open(url, data)
  File "C:\Users\Andres\Desktop\ddd\Portable Python 2.7.5.1\App\lib\urllib.py", line 208, in open
    return getattr(self, name)(url)
  File "C:\Users\Andres\Desktop\ddd\Portable Python 2.7.5.1\App\lib\urllib.py", line 463, in open_file
    return self.open_local_file(url)
  File "C:\Users\Andres\Desktop\ddd\Portable Python 2.7.5.1\App\lib\urllib.py", line 477, in open_local_file
    raise IOError(e.errno, e.strerror, e.filename)
IOError: [Errno 2] The system cannot find the file specified: 'roblox.com'
>>>
编辑2

我无法理解为什么在执行python shell时会出现此错误:

geturl(Address,File)

您不需要urllib.urlretrieve。这需要一个类似文件的对象。相反,您希望urllib.urlopen:

>>> help(urllib.urlopen)
urlopen(url, data=None, proxies=None)
    Create a file-like object for the specified URL to read from.
此外,如果要下载并保存文档,则需要一个更强大的geturl函数:

def geturl(Address, FileName):
    html_data = urllib.urlopen(Address).read()  # Open the URL
    with open(FileName, 'wb') as f:  # Open the file
        f.write(html_data)  # Write data from URL to file

geturl(u'http://roblox.com')  # URL's must contain the full URI, including http://
def geturl(Address, FileName):
    html_data = urllib.urlopen(Address).read()  # Open the URL
    with open(FileName, 'wb') as f:  # Open the file
        f.write(html_data)  # Write data from URL to file

geturl(u'http://roblox.com')  # URL's must contain the full URI, including http://