how to use python to read .cbr files? [closed]
How can i use python to read .cbr/.cbt
files?
cbr/cbt files are a RAR archive format used for comic book fi开发者_JAVA技巧les.
.cbr
is a RAR archive. .cbt
is a TAR archive. You can use standard tarfile
module for latter but you need to use rar
/unrar
for former. You can look for the code you need in comix (more precisely, archive.py
).
精彩评论