Pythonic interface to fzf
Project description
mkbak-iterfzf: Pythonic interface to fzf
mkbak-iterfzf is a fork of iterfzf
All credit goes to dahlia, all I did was add the
--height option
Demo session
See also the [API reference](#api reference).
Key features
- No dependency but only Python is required. Prebuilt
fzfbinary for each platform is bundled into wheels. Everything is ready bypip install iterfzf. (Note that not wheels of all supported platforms are uploaded to PyPI as they don't allow minor platforms e.g. FreeBSD. The complete wheels can be found from the GitHub releases.) - Consumes an iterable rather than a list. It makes UX way better when the input data is long but streamed from low latency network. It can begin to display items immediately after only part of items are ready, and before the complete items are ready.
- Supports Python 2.7, 3.5 or higher.
iterfzf.iterfzf(iterable, **options)
Consumes the given iterable of strings, and displays them using fzf.
If a user chooses something it immediately returns the chosen things.
The following is the full list of parameters. Please pass them as
keyword arguments except for iterable which comes first:
iterable (required)
The only required parameter. Every element which this iterable yields
is displayed immediately after each one is produced. In other words, the
passed iterable is lazily consumed.
It can be an iterable of byte strings (e.g. [b'foo', b'bar']) or of
Unicode strings (e.g. [u'foo', u'bar']), but must not be mixed (e.g.
[u'foo', b'bar']). If they are byte strings the function returns
bytes. If they are Unicode strings it returns Unicode strings. See also
the encoding parameter.
multi
True to let the user to choose more than one. A user can select items
with tab/shift-tab. If multi=True the function returns a list of
strings rather than a string.
False to make a user possible to choose only one. If multi=False it
returns a string rather than a list.
For both modes, the function returns None if nothing is matched or a
user cancelled.
False by default.
Corresponds to -m/--multi option.
print_query
If True the return type is a tuple where the first element is the
query the user actually typed, and the second element is the selected
output as described above and depending on the state of multi.
False by default.
Corresponds to --print-query option.
New in version 0.3.0.
encoding
The text encoding name (e.g. 'utf-8', 'ascii') to be used for
encoding iterable values and decoding return values. It's ignored when
the iterable values are byte strings.
The Python's default encoding (i.e. sys.getdefaultencoding()) is used
by default.
extended
True for extended-search mode. False to turn it off.
True by default.
True corresponds to -x/--extended option, and False corresponds
to +x/--no-extended option.
exact
False for fuzzy matching, and True for exact matching.
False by default.
Corresponds to -e/--exact option.
case_sensitive
True for case sensitivity, and False for case insensitivity. None,
the default, for smart-case match.
True corresponds to +i option and False corresponds to -i
option.
query
The query string to be filled at first. (It can be removed by a user.)
Empty string by default.
Corresponds to -q/--query option.
prompt
The prompt sequence. ' >' by default.
Corresponds to --prompt option.
preview
The preview command to execute. None by default.
Corresponds to --preview option.
mouse
False to disable mouse. True by default.
Corresponds to --no-mouse option.
New in version 0.6.0
ansi
True to enable ansi colors mode. None by default.
Corresponds to --ansi option.
height
Set the height of the prompt. '100%' by default.
Corresponds to --height option.
New in version 0.7.0
padding
Padding inside border.
Corresponds to the --padding option.
bind
Custom key bindings. Refer to fzf's man page
Corresponds to the --bind option
no_sort
True for unsorted results, and False to sort the results. (Increases match accuracy.)
Corresponds to the --no-sort option.
Author and license
The iterfzf library is written by Hong
Minhee and distributed under
GPLv3 or later.
The fzf program is written by Junegunn
Choi and distributed under
MIT license.
Changelog
Versioning scheme
Note that mkbak-iterfzf does not follow Semantic
Versioning. The version consists of its own major
and minor number followed by the version of bundled fzf. For example,
1.2.3.4.5.6 means that iterfzf's own major version is 1, and its own
minor version is 2, its on patch 3, plus the version of fzf it bundles is 4.5.6.
/---------- 1. iterfzf's major version
| /------ 3. bundled fzf's major version
| | /-- 5. bundled fzf's patch version
| | |
v v v
1.2.4.5.6
^ ^
| |
| \---- 4. bundled fzf's minor version
|
|
\-------- 2. iterfzf's minor version
Version 0.7.0.25.1
Released on February, XX, 2021. Bundles fzf 0.25.1.
- Upgraded
fzffrom 0.20.0 to 0.25.1 - Added
paddingoption. - Added
bindoption from issue [#21 by ayghoshter]. - Added
no_sortas an argument (the results are now sorted by default) [#23 by gikeymarcia]
Version 0.6.0.20.0
Released on January, 28, 2021. Bundles fzf 0.20.0.
Version 0.5.0.20.0
Released on February 9, 2020. Bundles fzf 0.20.0.
- Dropped Python 2.6, 3.3, and 3.4 supports.
- Officially support Python 3.7 (it anyway had worked though).
- Marked the package as supporting type checking by following PEP 561.
- Added
previewoption. [#6 by Marc Weistroff] - Fixed a bug which had raised
IOErrorby selecting an option before finished to load all options on Windows. [#3 by Jeff Rimko]
Version 0.4.0.17.3
Released on December 4, 2017. Bundles fzf 0.17.3.
Version 0.4.0.17.1
Released on October 19, 2017. Bundles fzf 0.17.1.
- Added missing binary wheels for macOS again. (These were missing from 0.3.0.17.1, the previous release.)
Version 0.3.0.17.1
Released on October 16, 2017. Bundles fzf 0.17.1.
- Added
print_queryoption. [#1 by George Kettleborough]
Version 0.2.0.17.0
Released on August 27, 2017. Bundles fzf 0.17.0.
Version 0.2.0.16.11
Released on July 23, 2017. Bundles fzf 0.16.11.
Version 0.2.0.16.10
Released on July 23, 2017. Bundles fzf 0.16.10.
Version 0.2.0.16.8
Released on June 6, 2017. Bundles fzf 0.16.8.
- Upgraded
fzffrom 0.16.7 to 0.16.8.
Version 0.2.0.16.7
Released on May 20, 2017. Bundles fzf 0.16.7.
- Made sdists (source distributions) possible to be correctly
installed so that older
pip, can't deal with wheels, also can installiterfzf.
Version 0.1.0.16.7
Released on May 19, 2017. Bundles fzf 0.16.7. The initial release.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file mkbak-iterfzf-0.7.0.25.1.tar.gz.
File metadata
- Download URL: mkbak-iterfzf-0.7.0.25.1.tar.gz
- Upload date:
- Size: 9.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.9.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
182cd92d6b3706235dfb8993f75af92e6cfe0d838928f0e09143ab8b09ff6a3e
|
|
| MD5 |
32e5e13e5607cd11d5b10883f504ed46
|
|
| BLAKE2b-256 |
773ff3995efa68e15da63bf1a172728f972a059d4c0d4b527a106ab6894c3afe
|
File details
Details for the file mkbak_iterfzf-0.7.0.25.1-py3-none-any.whl.
File metadata
- Download URL: mkbak_iterfzf-0.7.0.25.1-py3-none-any.whl
- Upload date:
- Size: 18.4 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.9.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8d81029655ea5d4b853e20e01d14ca6ce154567d8731aacd1acaaf7b98088b6c
|
|
| MD5 |
2f80804e535a81ac69f0f088fdac1174
|
|
| BLAKE2b-256 |
efc302924922687ad4459f86fbff77eb751721a2294097efef337f0509164b84
|