This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author Jacob B2
Recipients Jacob B2
Date 2017-04-28.01:15:02
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1493342103.41.0.38342721045.issue30194@psf.upfronthosting.co.za>
In-reply-to
Content
The error occurs when I attempt to run the following code:

from urllib.request import urlretrieve
from os import path
from zipfile import ZipFile

download_url = "https://www.dropbox.com/s/obiqvrt4m53pmoz/tesseract-4.0.0-alpha.zip?dl=1"


def setup_program():
    zip_name = urlretrieve(download_url)

    zip_file = ZipFile(zip_name, "r")
    zip_file.extractall(path.abspath("__tesseract/"))
    zip_file.close()

setup_program()  # REMOVE after test


I get the following traceback:

$ python downloader.py
Traceback (most recent call last):
  File "downloader.py", line 15, in <module>
    setup_program()
  File "downloader.py", line 11, in setup_program
    zip_file = ZipFile(zip_name, "r")
  File "C:\Python36\lib\zipfile.py", line 1100, in __init__
    self._RealGetContents()
  File "C:\Python36\lib\zipfile.py", line 1163, in _RealGetContents
    endrec = _EndRecData(fp)
  File "C:\Python36\lib\zipfile.py", line 241, in _EndRecData
    fpin.seek(0, 2)
AttributeError: 'tuple' object has no attribute 'seek'
History
Date User Action Args
2017-04-28 01:15:03Jacob B2setrecipients: + Jacob B2
2017-04-28 01:15:03Jacob B2setmessageid: <1493342103.41.0.38342721045.issue30194@psf.upfronthosting.co.za>
2017-04-28 01:15:03Jacob B2linkissue30194 messages
2017-04-28 01:15:02Jacob B2create