read from zip file in python code example
Example 1: python zip file open as text
with ZipFile('spam.zip') as myzip:
with myzip.open('eggs.txt') as myfile:
eggs = io.TextIOWrapper(myfile)
Example 2: how to extract zip file using python
ZipFile.extractall(path=None, members=None, pwd=None)