Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

python zip file open as text

with ZipFile('spam.zip') as myzip:
    with myzip.open('eggs.txt') as myfile:
       eggs = io.TextIOWrapper(myfile)
 
PREVIOUS NEXT
Tagged: #python #zip #file #open #text
ADD COMMENT
Topic
Name
9+9 =