Skip to main content

findlike is a package to retrieve similar documents

Project description

findlike

PyPI License Tests

findlike is a command-line tool written in Python that retrieves a list of similar files in relation to a reference text or ad-hoc query.

Imagine you have a document, and you want to find other documents on your computer that talk about similar things. You can use findlike to do that. It looks at the words and phrases used in your reference document or a specific question you have, and then finds other files that use similar language. It's a bit like doing a Google search across your own files.

Features:

  • Choose between Okapi BM25 and TF-IDF algorithms for the lexical similarity calculation between file contents
  • Recursive search option
  • Control over parameters like maximum number of results, whether to display similarity scores etc.
  • Optionally return results in JSON format
  • Multilingual support
  • Highly configurable and can be used as backend for other programs (e.g. personal knowledge management systems, Emacs, etc.)

Table of Contents

Prerequisites

  • Python 3.8 or higher
  • Additional dependencies as listed in the requirements.txt file

Installation

Using pip (single user)

To install findlike for your user only, run the following command in your terminal:

pip install --user findlike

Using pip and virtual environments

Or, if you wish to install findlike in a new virtual environment, first create and activate the environment:

python -m venv <virtual environment directory>
source <virtual environment directory>/bin/activate

Then run pip install findlike (without the --user flag).

Manual installation from source

Lastly, if you prefer to install findlike from this repository instead of fetching the package from PyPI:

# Clone this repository
git clone https://github.com/brunoarine/findlike.git

# Navigate into the findlike directory
cd findlike

# Install it as a Python package using `pip`:

pip install -e .

Optionally, you can create an alias for the findlike command to be accessible without activating its virtual environment:

# Replace .bashrc with .zshrc depending on your shell environment.
echo "alias findlike='/path/to/findlike/venv/bin/findlike'" >> ~/.bashrc
source ~/.bashrc

Usage

Here is the basic usage of findlike:

findlike [OPTIONS] [REFERENCE_FILE]

findlike works with either a reference file or a --query option. Once the reference text is set, findlike will scan a given directory (default is the current working dir), and return the most similar documents against the reference.

Options

Here's the breakdown of the available options:

Option
Detailed Description
--help Displays a short summary of the available options.
-d, --directory PATH Specify the directory that is going to be scanned. Default is current working directory. Example: findlike -d /path/to/another/directory
-q, --query TEXT Passes an ad-hoc query to the program, so that no reference file is required. Useful when you want to quickly find documents by an overall theme. Example: findlike -q "earthquakes"
-f, --file-pattern Specifies the file pattern to use when scanning the directories for similar files. The pattern uses glob convention, and should be passed with single or double quotes, otherwise your shell environment will likely try to expand it. Default is common plain-text file extensions. Example: findlike -f "*.md" reference_file.txt
-R, --recursive If used, this option makes findlike scan directories and their sub-directories as well. Example: findlike reference_file.txt -R
-a, --algorithm [tfidf, bm25] Algorithm to use when generating the scores list. The possible choices are tfidf or bm25. Default is tfidf. Example: findlike reference_file -a bm25
-l, --language TEXT Changing this value will impact stopwords filtering and word stemmer. Default is English. Example: findlike reference_file.txt -l "portuguese"
-c, --min-chars INTEGER Minimum document size (in number of characters) to be included in the corpus. Default is 1. Example: findlike reference_file.txt -c 50
-A, --absolute-paths Show the absolute path of each result instead of relative paths. Example: findlike reference_file.txt -A
-m, --max-results INTEGER Number of items to show in the final results. Default is 10. Example: findlike reference_file.txt -m 5
-p, --prefix TEXT String to prepend each entry in the final results. Default is "". Example: findlike reference_file.txt -p "- "
-h, --hide-reference Remove the first result from the scores list. This option has no effect if the --query option is used. Example: findlike reference_file.txt -h
-H, --heading TEXT Text to show as the list heading. Default is "". Example: findlike reference_file.txt -H "## Similar files"
-F, --format [plain, json] This option sets the output format. Default is "plain". Example: findlike reference_file.txt -F json
-t, --threshold FLOAT Similarity score threshold. All results whose score are below the determined threshold will be omitted. Default is 0.05. Example: findlike reference_file.txt -t 0

Examples

To find similar documents in a directory (recursively) against a reference text file:

findlike -R -d /path/to/directory reference_file.md 

To search files using a query instead of a reference file while filtering by extension:

findlike -q "black holes" -d /path/to/ayreon/lyrics -f "*.txt"

To find similar files and show their similarity scores and filenames in JSON format:

findlike -s -F json reference_file.md

To print the similarity results as a Markdown list:

findlike -H "# List of similar documents" -p "- " reference_file.txt

Development

To contribute to this tool, first checkout the code. Then create a new virtual environment:

cd findlike
python -m venv venv
source venv/bin/activate

Now install the development dependencies:

pip install -e '.[dev]'

To run the tests:

pytest

Projects using findlike

  • org-similarity - Emacs package to search for similar org files in relation to the current buffer.

Acknowledgements

  • Simon Willison for being an inspiration on releasing small but useful tools more often.
  • Sindre Sorhus for the comprehensive list of plain-text file extensions.

License

This project is licensed under the terms of the MIT license. See LICENSE for more details.

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

findlike-1.3.1.tar.gz (19.4 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

findlike-1.3.1-py3-none-any.whl (13.6 kB view details)

Uploaded Python 3

File details

Details for the file findlike-1.3.1.tar.gz.

File metadata

  • Download URL: findlike-1.3.1.tar.gz
  • Upload date:
  • Size: 19.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.10.9

File hashes

Hashes for findlike-1.3.1.tar.gz
Algorithm Hash digest
SHA256 0b89b2175f2965f4f38a3cffcf2a861d0aedcd8f7da51c8f4bc017064d4d28dc
MD5 729d5af3f3292ed33824850a7e35d026
BLAKE2b-256 79ef86339ecfb7d6d765381b8ac0404feeabc7d437082595a9e47d849676030b

See more details on using hashes here.

File details

Details for the file findlike-1.3.1-py3-none-any.whl.

File metadata

  • Download URL: findlike-1.3.1-py3-none-any.whl
  • Upload date:
  • Size: 13.6 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.10.9

File hashes

Hashes for findlike-1.3.1-py3-none-any.whl
Algorithm Hash digest
SHA256 477eb6038432435dfa9cd27f8d64f1a8b43731064cb77dc2226a98d5a226af1d
MD5 55f2594f9dd3003528fdb7a2a4e4041e
BLAKE2b-256 d5c9ced23db249f3248cca20c83ca3db1339146949e2c074b4ae9d238fb3bf87

See more details on using hashes here.

Supported by

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