आपको टर्फाइल मॉड्यूल का उपयोग करने की आवश्यकता है। विशेष रूप से, आप फ़ाइल तक पहुँचने के लिए वर्ग TarFile का एक उदाहरण का उपयोग करते हैं, और फिर TarFile.getSames () के साथ नामों का उपयोग करते हैं
| 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()