I'm using Python 2.7. I have the following code
file = ZipFile("D:\\Project\\text.evt.gz")
Its giving the following error
**"BadZipfile: File is not a zip file"**
While trying to extract the file manually,i am getting the following error
**"Unexpected end of data"**
Is it possible to extract the evt
file irrespective of this error in Python? Basically i want to extract the compressed evt
file to a specific destination folder.