>>2714566Got it kind of working on windows.
Modified line 35 in this file
https://github.com/rekka/unzip-jp/blob/master/unzip-jp.pyChanged the encoding from 'cp850' to 'cp932', so its:
z.setpassword(password.encode('cp932','replace'))
and then I just call it like:
python
unzip-jp.py "エレキキュレーター.zip" "まぶしい"
The only problem is python unzip is unbelievably VERY slow since it's written in native python :( This kind of extracting on any other program takes a few seconds at most, but with this python library even one of the 80MB files takes 2+ minutes. I thought it was stuck at first but it eventually worked!
Tried it on one of the 550MB zips and it took about 14minutes, feels like I'm back in the 90s.
Could probably modify it to use some C zip library or something, surprised there's no standard replacement in python3 I could find. Really astonished at how awful the standard way of doing things is after all these years.
>>2714533thanks for sharing anon, cool to see more of it