вам потрібно використовувати модуль tarfile. Зокрема, ви використовуєте екземпляр класу TarFile для доступу до файлу, а потім отримуєте доступ до імен за допомогою TarFile.getnames ()
| getnames(self)
| Return the members of the archive as a list of their names. It has
| the same order as the list returned by getmembers().
Якщо замість цього ви хочете прочитати вміст , тоді ви використовуєте цей метод
| extractfile(self, member)
| Extract a member from the archive as a file object. `member' may be
| a filename or a TarInfo object. If `member' is a regular file, a
| file-like object is returned. If `member' is a link, a file-like
| object is constructed from the link's target. If `member' is none of
| the above, None is returned.
| The file-like object is read-only and provides the following
| methods: read(), readline(), readlines(), seek() and tell()