Metadata-Version: 2.1
Name: nfilepicker
Version: 1.0.0
Summary: A Python package that creates a file/folder chooser with ncurses.
Home-page: https://github.com/Python3-8/nfilepicker
Author: Pranav Balaji Pooruli
Author-email: pranav.pooruli@gmail.com
License: MIT
Platform: UNKNOWN
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.9
Description-Content-Type: text/markdown
Requires-Dist: pick

# NFilePicker

A Python package that creats a file/folder picker
with `ncurses`.

## Getting Started

```py
>>> from nfilepicker import (
...  select_file,
...  select_folder
... )
>>> select_file(
...  'Choose a database.',
...  (
...    '.db',
...    '.sqlite3',
...  )
... )
'/Users/person/Desktop/file.txt'
>>> select_folder('Choose a folder.')
'/usr/libexec'
```

## Prerequisites
On Windows, this package requires the `windows-curses` package.

