tags:

views:

62

answers:

1

How can i use python to read .cbr/.cbt files?

+3  A: 

.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).

wRAR