Re: Extract sigle file from zip file based on file extension

2017-02-10 Thread Amit Yaron
On 10/02/17 10:35, loial wrote: I need to be able to extract a single file from a .zip file in python. The zip file will contain many files. The file to extract will be the only .csv file in the zip, but the full name of the csv file will not be known. Can this be done in python? Yes, you can

Re: Extract sigle file from zip file based on file extension

2017-02-10 Thread Peter Otten
loial wrote: > I need to be able to extract a single file from a .zip file in python. > The zip file will contain many files. The file to extract will be the only > .csv file in the zip, but the full name of the csv file will not be known. > > Can this be done in python? See

Re: Extract sigle file from zip file based on file extension

2017-02-10 Thread Jussi Piitulainen
loial writes: > I need to be able to extract a single file from a .zip file in python. > > The zip file will contain many files. The file to extract will be the > only .csv file in the zip, but the full name of the csv file will not > be known. > > Can this be done in python? Find the one member

Extract sigle file from zip file based on file extension

2017-02-10 Thread loial
I need to be able to extract a single file from a .zip file in python. The zip file will contain many files. The file to extract will be the only .csv file in the zip, but the full name of the csv file will not be known. Can this be done in python? -- https://mail.python.org/mailman/listinfo/pyt