I want to extract a 7-zip archive in a python script. It works fine except that it spits out the extraction details (which is huge in my case).
Is there a way to avoid this verbose info while extraction? I did not find any "silent" command line option to 7z.
My command is
7z.exe -o some_dir x some_archive.7z
Thanks.