Metadata-Version: 2.1
Name: fzf-wrapper
Version: 0.1.2
Summary: Python wrapper to fzf tool. Let user interactively choose from given choices
Home-page: https://github.com/JKubovy/fzf-wrapper
Author: Jan Kubovy
Author-email: JanKubovy94@gmail.com
License: MIT
Project-URL: Bug Tracker, https://github.com/JKubovy/fzf-wrapper/issues
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: Environment :: Console
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown

fzf-wrapper
===========

**Python wrapper to fzf tool. Let user interactively choose from given choices**
![](https://github.com/JKubovy/fzf-wrapper/blob/master/fzf-wrapper.gif)

fzf-wrapper is python **multiplatform** library without any other dependency then fzf itself. Recommended tool to improve user experience in your scripts.

Requirements
-----------
* Python 3.6+
* [fzf](https://github.com/junegunn/fzf)

Install
-------
	pip install fzf-wrapper

Usage
-----
	from fzf\_wrapper import prompt
	prompt(['one', 'two', 'three'])
	# Start fzf and return selected item / items in list
	# eg. ['two']

You can add fzf arguments as second parameter:

	prompt(['1', '2', '3'], '--multi --cycle')

Licence
-------
MIT


