Skip to main content

A text-based application running in terminals to search into text files

Project description

searchf

Utility program to interactively search for keywords in text files (log files, build output files, etc.), colorize matching lines and help you discover the things you should care about, "squeezing" useful information out of files. Works in terminals, uses curses for text base UI.

Screenshot searchf 1

A filter is a list of keywords that a line must contain to match and get highlighted in a specific color. All keywords in the same filter are ANDed together. By defining multiple filters, you can reveal more content of the file. By default, lines not matching any filter are hidden, but their visibility can be toggled by pressing m. Filters are evaluated in the order that they are defined, meaning lines are shown in the color of the first filter they match.

In the above screenshot, 3 filters have been defined:

  • def AND init reveals 6 lines in red
  • def AND push reveals 3 lines in orange
  • keyword reveals 44 lines in yellow

Why this utility? I had to dig into build log files, which were a raw aggregate of many heterogenous sources (numerous compiler output, deployment scripts, test run and results, ...) resulting in rather unstructured output. The only commonality being that everything was somehow and more or less line-oriented... When a build failure occured, hints of the root caused could be hiding about anywhere. So this tool is born from my need to be able to explore log files in interactive fashion, searching for cues, going down some exploratory paths pm the side (hence the support of views), hitting dead ends and backtracking (hence the use of push/pop of filter and keyword), etc. Little or no assumption is made on the input file, which can be anything, unstructured and heterogenous, as long as it is line oriented.

Installation

pip install searchf

Usage

searchf-test to run tests

searchf <FILE>

  • Press f to enter keyword in a new filter
  • Press ? for help

Screenshot searchf help

When all lines are shown, including the ones not matching any filter, it can be usefull to scroll to next match with n or previous one with p. When all lines are displayed, it can be hard to identify which ones that are matching which filter, so you can either show the line numbers by pressing l, which will show the matching lines with colorized output, or change the highlight mode by pressing h, to colorize lines as a whole (and not just keywords). Just try it, as it's likely more understandable by doing than by reading this...

Showing all lines, with wrapping and numbers enabled, colorizing lines as a whole instead of just keywords:

Screenshot searchf 2

Development

If working from the sources (ie not an installed package), the application can be launched as a module:

python3 -m searchf.app <FILE>

Tips

  • Make sure to enable UTF-8 (eg. start tmux like this "tmux -u")

Known Issues

  • Does not work on Windows... No color there... It can run, but it's hard:

Wish list

  • More palettes
  • Cleanup code! Remove COLOR_BAR hack in source (inner beauty's sake)
  • Tail function that automatically reload (instead of having to press t)
  • Screen dynamic resizing
  • Bookmark
  • Ability to save/load filters
  • Ability to save filtered file

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

searchf-1.1.tar.gz (21.1 kB view hashes)

Uploaded Source

Built Distribution

searchf-1.1-py3-none-any.whl (23.0 kB view hashes)

Uploaded Python 3

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