您好,登錄后才能下訂單哦!
在Python中,有多種庫可以用于文件壓縮和解壓
示例代碼:
import gzip
# 壓縮文件
with open('file.txt', 'rb') as src, gzip.open('file.gz', 'wb') as dst:
dst.writelines(src)
# 解壓縮文件
with gzip.open('file.gz', 'rb') as src, open('file.txt', 'wb') as dst:
dst.writelines(src)
示例代碼:
import bz2
# 壓縮文件
with open('file.txt', 'rb') as src, bz2.open('file.bz2', 'wb') as dst:
dst.writelines(src)
# 解壓縮文件
with bz2.open('file.bz2', 'rb') as src, open('file.txt', 'wb') as dst:
dst.writelines(src)
示例代碼:
import lzma
# 壓縮文件
with open('file.txt', 'rb') as src, lzma.open('file.lzma', 'wb') as dst:
dst.writelines(src)
# 解壓縮文件
with lzma.open('file.lzma', 'rb') as src, open('file.txt', 'wb') as dst:
dst.writelines(src)
示例代碼:
import zipfile
# 壓縮文件
with zipfile.ZipFile('file.zip', 'w', compression=zipfile.ZIP_DEFLATED) as zf:
zf.write('file.txt')
# 解壓縮文件
with zipfile.ZipFile('file.zip', 'r') as zf:
zf.extractall()
示例代碼:
import tarfile
# 創建TAR文件
with tarfile.open('file.tar', 'w') as tf:
tf.add('file.txt')
# 解壓TAR文件
with tarfile.open('file.tar', 'r') as tf:
tf.extractall()
這些庫提供了高效的壓縮和解壓算法,可以根據實際需求選擇合適的庫進行文件壓縮和解壓。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。