Skip to content

Commit a4093e8

Browse files
committed
Updated README
1 parent 4eb73f5 commit a4093e8

1 file changed

Lines changed: 8 additions & 0 deletions

File tree

README.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -57,6 +57,14 @@ with open(target_path, 'rb') as target_file:
5757
fs = IsoFS(path=target_path, file_obj=target_file)
5858
```
5959

60+
### [`TarFS`](https://niema.net/NiemaFS/#niemafs.TarFS) — TAR Archive
61+
62+
```python
63+
from niemafs import TarFS
64+
with open(target_path, 'rb') as target_file:
65+
fs = TarFS(path=target_path, file_obj=target_file)
66+
```
67+
6068
### [`WiiFS`](https://niema.net/NiemaFS/#niemafs.WiiFS) — Nintendo Wii DVD
6169
Note that, due to the need to decrypt the filesystem, this is extremely memory-intensive (each partition is loaded into memory to process in parallel for speed).
6270

0 commit comments

Comments
 (0)