Pure python implementation of the _suggestions module.
Project description
pygensuggestions
A backport of the _suggestions module, native to CPython since 3.12, to other versions of Python.
Background
The _suggestions module was implemented in C, at Modules/_suggestions.c, as part of an attempt to improve user experience by enriching the
traceback dump of some errors regarding nonexistent attribute or module names closely resembling a known module or attribute, as well as apparently
mistyped keywords. It contains a helper internal to the Python interpreter, as signified by the underscore-prefixed name, called
_generate_suggestions, which takes an exact instance of a list as the first argument and a string as the second, and returns the string most
similar to the target in the list, or None if a certain threshold determined by a Levenshtein distance-based metric with weighted move and case
costs is not reached, or there are too many strings in the list.
What does this library do?
This library provides a faithful translation of that sophisticated deterministic engine to pure Python, along with a simple command-line interface to call this core function from the shell. It is incredibly simple and custom wrappers should be built upon it for it to really shine.
It also boasts maximum portability. It supports Python 3.8 and above out-of-the-box, and is implementation-agnostic. It also can take any sized
iterable of candidates, which can be str or bytes as long as it is consistent with the type of the target, as opposed to typical implementations
that only accept sequences.
Since this is not exactly a long-running algorithm, I decided against writing it in C, which would boil down to blatant copying of the Python source, probably fail in alternate Python realizations and suffer the same pitfalls described in the next section.
The two functions used to assist in the implementation, lev_dist and sub_cost, are also exposed in the lib submodule. One may find this
unorthodox procedure derived from the well-known 'edit distance' recipe accounting for case and storing only one row of the traditional 2D dynamic
programming style array to avoid the memory overhead, albeit slight, particularly valuable.
Why this module?
Indeed, alternatives to this module exist. Their shortfalls are detailed below.
The _suggestions module itself is, of course, a contender. However, it only accepts strict instances of list for the first argument, and both
arguments cannot have bytes. Though it is the fastest because it is written in C, it is not public and not available on older Python versions.
While the traceback module does implement this in pure Python as a fallback, it is again in the form of an unstable, private function, and is
not available on all versions of Python. Worse still, it is difficult to separate out the logic because the helper function in question is made to
handle an exception traceback. Predictable; after all, it is the traceback module!
I have yet to find modules on the Python Package Index providing comparable functionality to this module. It is not to say they are too simple; in fact, the algorithms used may be overkill for some, or wrapped in unrelated logic. The routine actually used by CPython, the reference implementation of Python, is likely only accessible at such transparency here.
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 pygensuggestions-1.0.0.tar.gz.
File metadata
- Download URL: pygensuggestions-1.0.0.tar.gz
- Upload date:
- Size: 6.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.11.16 {"installer":{"name":"uv","version":"0.11.16","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
918009294874c58f3f11abbca6f6f7054632240b297c134f70e06e1d8869d308
|
|
| MD5 |
3453bc3c1e7ef118b921743a48b92077
|
|
| BLAKE2b-256 |
b162dc9d1b6e7d844bb98f9ba43b72c5ba230683805d6c5e66652a5aeb849a59
|
File details
Details for the file pygensuggestions-1.0.0-py3-none-any.whl.
File metadata
- Download URL: pygensuggestions-1.0.0-py3-none-any.whl
- Upload date:
- Size: 7.5 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.11.16 {"installer":{"name":"uv","version":"0.11.16","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
952baf1f53e1fad6cec8ce0f328eaf73ae073116f0a0c3945d445c1d2180914c
|
|
| MD5 |
fb59e1a864522b951242bfb2b362f484
|
|
| BLAKE2b-256 |
4f31cdeb39c59f44f010a1ff16f3555495b3c3b377e405860fec10e3ca5940d5
|