Is there a way to do the following directly in python, or do I need to use a subprocess
call?
$ unzip -p /Users/david/Desktop/new2.xlsx xl/sharedStrings.xml > shared3.xml
Something better than:
s=subprocess.run('unzip -p /Users/david/Desktop/new2.xlsx xl/sharedStrings.xml', shell=True, stdout=subprocess.PIPE)
print(s)