pybktree is a generic, pure Python implementation of a BK-tree data structure, which allows fast querying of “close” matches (for example, matches with small hamming distance or Levenshtein distance). This module is based on the algorithm by Nick Johnson in his blog article on BK-trees.
The library is on the Python Package Index (PyPI) and works on both Python 3 and Python 2.7. To install it, fire up a command prompt, activate your virtual environment if you’re using one, and type:
pip install pybktree
Example usage:
>>> tree = pybktree.BKTree(pybktree.hamming_distance, [0, 4, 5, 14])
>>> tree.add(15) # add element 15
>>> sorted(tree) # BKTree instances are iterable
[0, 4, 5, 14, 15]
>>> sorted(tree.find(13, 1)) # find elements at most 1 bit away from element 13
[(1, 5), (1, 15)]
For large trees and fairly small N when calling find(), using a BKTree is much faster than doing a linear search. This is especially good when you’re de-duping a few hundred thousand photos – with a linear search that would become a very slow, O(N²) operation. With a BKTree, it’s more like O(N log N).
Read the code in pybktree.py for more details – it’s pretty small!
Other BK-tree modules I found on GitHub while writing this one:
ahupp/bktree: this one is pretty good, but it’s not on PyPI, and it’s recursive
ryanfox/bktree: this one is hard to customize, search() doesn’t return distances, it’s slower, and was buggy (though I think he fixed it recently)
pybktree was written by Ben Hoyt for Jetsetter and is licensed with a permissive MIT license (see LICENSE.txt).
Release files for pybktree 1.1
For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.
Source distribution (sdist)
| File | Size | Uploaded | |
|---|---|---|---|
| pybktree-1.1.tar.gz | 4.5 kB | Details |
Release files / pybktree-1.1.tar.gz
| Download URL | pybktree-1.1.tar.gz |
|---|---|
| Size | 4.5 kB |
| Tags | Source |
|
SHA-256 checksum How to use checksums |
eec0037cdd3d7553e6d72435a4379bede64be17c6712f149e485169638154d2b
|
|
BLAKE2b-256 checksum How to use checksums |
6b38a5fba29cf727ca8249d3840016e1f7919896111aa28d2cb96f013eaa480d
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |