मुझे विंडोज उपयोगकर्ताओं से अनपैकिंग tar
और zip
फाइलें मिलने की समस्या थी । हालांकि मैं इस सवाल का जवाब नहीं देता कि "संग्रह कैसे बनाएंगे जो काम करेगा", मूल स्क्रिप्ट की परवाह किए बिना नीचे दी गई स्क्रिप्ट सही ढंग से अनपैक tar
और zip
फ़ाइलों की मदद करती हैं ।
चेतावनी: एक ट्यून करने के लिए स्रोत मैन्युअल एन्कोडिंग (है cp1251
, cp866
नीचे दिए गए उदाहरण में)। भविष्य में कमांडलाइन विकल्प एक अच्छा समाधान हो सकता है।
टार:
#!/usr/bin/env python
import tarfile
import codecs
import sys
def recover(name):
return codecs.decode(name, 'cp1251')
for tar_filename in sys.argv[1:]:
tar = tarfile.open(name=tar_filename, mode='r', bufsize=16*1024)
updated = []
for m in tar.getmembers():
m.name = recover(m.name)
updated.append(m)
tar.extractall(members=updated)
tar.close()
ज़िप:
#!/usr/bin/env python
import zipfile
import os
import codecs
import sys
def recover(name):
return codecs.decode(name, 'cp866')
for filename in sys.argv[1:]:
archive = zipfile.ZipFile(filename, 'r')
infolist = archive.infolist()
for i in infolist:
f = recover(i.filename)
print f
if f.endswith("/"):
os.makedirs(os.path.dirname(f))
else:
open(f, 'w').write(archive.read(i))
archive.close()
UPD 2018-01-02 : मैं chardet
डेटा के कच्चे चंक की सही एन्कोडिंग का अनुमान लगाने के लिए पैकेज का उपयोग करता हूं । अब स्क्रिप्ट मेरे सभी बुरे अभिलेखागार पर और साथ ही साथ एक अच्छे बॉक्स से बाहर काम करती है।
ध्यान देने योग्य बातें:
- सभी फ़ाइलनाम निकाले जाते हैं और एन्कोडिंग अनुमान लगाने वाले इंजन के लिए पाठ का एक बड़ा टुकड़ा बनाने के लिए एकल स्ट्रिंग में विलय कर दिया जाता है। इसका मतलब है कि कुछ फ़ाइलनामों को एक अलग तरीके से खराब कर दिया गया है, प्रत्येक अनुमान को खराब कर सकता है।
- एक अच्छा यूनिकोड पाठ (
chardet
सामान्य यूनिकोड ऑब्जेक्ट के साथ काम नहीं करता है) को संभालने के लिए विशेष फास्ट-पथ का उपयोग किया गया था ।
- परीक्षण करने के लिए सिद्धांतों को जोड़ा जाता है और यह प्रदर्शित करने के लिए कि सामान्यक किसी भी छोटे आवेश पर किसी भी एन्कोडिंग को पहचानता है।
अंतिम संस्करण:
#!/usr/bin/env python2
# coding=utf-8
import zipfile
import os
import codecs
import sys
import chardet
def make_encoding_normalizer(txt):
u'''
Takes raw data and returns function to normalize encoding of the data.
* `txt` is either unicode or raw bytes;
* `chardet` library is used to guess the correct encoding.
>>> n_unicode = make_encoding_normalizer(u"Привет!")
>>> print n_unicode(u"День добрый")
День добрый
>>> n_cp1251 = make_encoding_normalizer(u"Привет!".encode('cp1251'))
>>> print n_cp1251(u"День добрый".encode('cp1251'))
День добрый
>>> type(n_cp1251(u"День добрый".encode('cp1251')))
<type 'unicode'>
'''
if isinstance(txt, unicode):
return lambda text: text
enc = chardet.detect(txt)['encoding']
return lambda file_name: codecs.decode(file_name, enc)
for filename in sys.argv[1:]:
archive = zipfile.ZipFile(filename, 'r')
infolist = archive.infolist()
probe_txt = "\n".join(i.filename for i in infolist)
normalizer = make_encoding_normalizer(probe_txt)
for i in infolist:
print i.filename
f = normalizer(i.filename)
print f
dirname = os.path.dirname(f)
if dirname:
assert os.path.abspath(dirname).startswith(os.path.abspath(".")), \
"Security violation"
if not os.path.exists(dirname):
os.makedirs(dirname)
if not f.endswith("/"):
open(f, 'w').write(archive.read(i))
archive.close()
if __name__ == '__main__' and len(sys.argv) == 1:
# Hack for Python 2.x to support unicode source files as doctest sources.
reload(sys)
sys.setdefaultencoding("UTF-8")
import doctest
doctest.testmod()
print "If there are no messages above, the script passes all tests."