Metadata-Version: 2.1
Name: nfilepicker
Version: 1.0.2
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
Description: # NFilePicker
        
        A Python package that creates 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/list.db'
        >>> select_folder('Choose a folder.')
        '/usr/libexec'
        ```
        
        ## Prerequisites
        On Windows, this package requires the `windows-curses` package.
        
        ## Features
        Version 1.0.2 has the ability to select files case insensitively. This
        version of NFilePicker will display ABC123.JPG (Note the capitalized 'JPG')
        as a *.jpg file.
        
Platform: UNKNOWN
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.9
Description-Content-Type: text/markdown
