Skip to main content

Python wrapper for junegunn's fuzzyfinder (fzf)

Project description

Yapy-Fuzz

Yet another python wrapper for junegunn's fzf pronunced yaa-pee fuzz with handlers for python lists, sqlite3 and postgres

Why create another wrapper lib?

I wanted a quick way to do fuzzy search on any data source from text files to databases and I couldn't find a single tool that has support for various different inputs/sources for fzf.

Requirements

  • Python 3.6+
  • fzf
  • sqlite3
  • pandas (for postgres support)

Note: fzf and sqlite3 must be installed and available on PATH.

Installation

pip install yapy-fuzz

Usage

>>> from yapyfuzz.core import Fuzzy
>>> fzf = Fuzzy()

If fzf is not available on PATH, you can specify a location

>>> fzf = Fuzzy(exec_path="/path/to/fzf")

Initiate a handler depending on your requirements, for e.g., python lists.

>>> from yapyfuzz.core import ListHandler
>>> list_handler = ListHandler()
>>> list_handler.reader(range(0,10))

>>> fzf = Fuzzy(list_handler)
>>> fzf.get_selection(list_handler)

SQLite DB Handler

>>> from yapyfuzz.core import SQLiteHandler
>>> name = f"{root_dir}/yapy/fuzzy.db"
>>> query = "select * from albums"
>>> db_handler = SQLiteHandler()
>>> db_handler.reader(name, query)

>>> fp = Fuzzy(db_handler)
>>> fp.get_selection()

Postgres DB Handler

>>> from yapyfuzz.core import PostgresHandler

>>> db_settings = {
    "user":"postgres",
    "password":"postgres",
    "host":"localhost",
    "port":"5432",
    "dbname":"dellstore",
}

>>> pg_handler = PostgresHandler()

>>> pg_handler.reader(query="select * from categories", **db_settings)
>>> pg_handler.reader(query="select * from inventory", **db_settings)

>>> fp = Fuzzy(pg_handler)
>>> fp.get_selection()

You can pass additional arguments to fzf as a second argument

>>> fzf.prompt(range(0,10), '--multi --cycle')

Input items are written to a temporary file which is then passed to fzf. The items are delimited with \n by default.

License

MIT

Todo

  • Add support for postgres db
  • CLI table explorer tool to navigate db and tables

CHANGES

2023.03.21: Initial release

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

yapy-fuzz-0.1.1.tar.gz (340.5 kB view details)

Uploaded Source

Built Distribution

yapy_fuzz-0.1.1-py3-none-any.whl (341.2 kB view details)

Uploaded Python 3

File details

Details for the file yapy-fuzz-0.1.1.tar.gz.

File metadata

  • Download URL: yapy-fuzz-0.1.1.tar.gz
  • Upload date:
  • Size: 340.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.11.2

File hashes

Hashes for yapy-fuzz-0.1.1.tar.gz
Algorithm Hash digest
SHA256 e262333c44a3548b2531551ebe5ebdc4867790997fb5f8059198751b20fc15c3
MD5 0821ad81084b14a271273e22b3544132
BLAKE2b-256 fd0b7e77b6ceec3d4dfd76d395b99d2c98187619f648fb158f2de4d15c944722

See more details on using hashes here.

File details

Details for the file yapy_fuzz-0.1.1-py3-none-any.whl.

File metadata

  • Download URL: yapy_fuzz-0.1.1-py3-none-any.whl
  • Upload date:
  • Size: 341.2 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.11.2

File hashes

Hashes for yapy_fuzz-0.1.1-py3-none-any.whl
Algorithm Hash digest
SHA256 0619661438ac4088044fcc4fecf17104f33d5a6121bb6af78ad44e1f5d366174
MD5 7f56165df8fdbafa127aa0f3e5d730ff
BLAKE2b-256 cfa4aeb6f64ec23b67994822a7cf013920a9852d7da6997214a555f8e61aec6e

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page