Metadata-Version: 2.1
Name: fzf.py
Version: 0.0.1
Summary: Python bindings for fzf
Home-page: http://packages.python.org/fzf
Author: Liam Scalzulli
Author-email: liam@scalzulli.com
License: CC0
Project-URL: Source Code, https://github.com/terror/fzf
Keywords: lib,bindings
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Topic :: Software Development :: Libraries
Classifier: License :: CC0 1.0 Universal (CC0 1.0) Public Domain Dedication
Requires-Python: >= 3.9
Description-Content-Type: text/markdown
License-File: LICENSE

### fzf.py

Better Python bindings for the command-line fuzzy-finder
[`fzf`](https://github.com/junegunn/fzf).

### Installation

```bash
pip install fzf.py
```

### Usage

`fzf.py` can be used as a class instance or a function decorator.

```python
from fzf import Fzf, fzf
```

As a class instance:

```python
chooser = Fzf()
choices = chooser.prompt([1, 2, 3])
```

As a function decorator:

```python
@fzf()
def example():
  return [1, 2, 3]

choices = example()
```


