Metadata-Version: 2.1
Name: ezntfs
Version: 0.1.2
Summary: An easy-to-use wrapper for NTFS-3G on macOS
Home-page: https://github.com/undecidabot/ezntfs
Author: Matt
Author-email: undecidabot@gmail.com
License: Zlib
Platform: UNKNOWN
Classifier: Environment :: Console
Classifier: License :: OSI Approved :: zlib/libpng License
Classifier: Operating System :: MacOS :: MacOS X
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Topic :: System :: Filesystems
Classifier: Topic :: Utilities
Requires-Python: >=3.6
Description-Content-Type: text/markdown

# ezNTFS

ezNTFS is an easy-to-use wrapper for NTFS-3G on macOS.


## Installation

To use ezNTFS, you will need
[Python 3](https://www.python.org),
[FUSE for macOS (osxfuse)](https://osxfuse.github.io),
and [NTFS-3G](https://www.tuxera.com/community/open-source-ntfs-3g/)
installed in your system.

These can easily be installed using [Homebrew](https://brew.sh),
example: `brew install ntfs-3g`.

To install ezNTFS, run:
```
$ pip3 install ezntfs
```
It should be accessible from the terminal afterwards.


## Usage

Mount all NTFS volumes using `ntfs-3g` (root privileges are needed for mounting):
```
$ sudo ezntfs all
```

Mount a specific NTFS volume (run `ezntfs list` to find the disk id):
```
$ sudo ezntfs <disk id>
```


