Skip to content

Instantly share code, notes, and snippets.

View Jajoo2's full-sized avatar
🤒
I do not use github properly

mei Jajoo2

🤒
I do not use github properly
  • Hell, Michigan
  • 20:59 (UTC -12:00)
View GitHub Profile
@mmozeiko
mmozeiko / unitypackage2zip.py
Created February 9, 2019 12:31
Python script that converts .unitypackage file to .zip archive
#!/usr/bin/env python3
import sys
import tarfile
import zipfile
from pathlib import Path
src = sys.argv[1]
dst = Path(src).name + ".zip"