docstring-zip
Installation
SKILL.md
"""
Unpacks a ZIP archive, pretty-prints XML files using xmllint, and returns them.
"""
import zipfile
def unpack(path):
with zipfile.ZipFile(path) as z:
z.extractall()
"""
Unpacks a ZIP archive, pretty-prints XML files using xmllint, and returns them.
"""
import zipfile
def unpack(path):
with zipfile.ZipFile(path) as z:
z.extractall()