Compute the minimal keys for a collection of strings or sequences.
Project description
Compute the minimal keys for a collection of strings or sequences. This is intended for use in presenting data in a user interface.
For example, the minimal keys of ["assignments/alice/hw1.txt", "assignments/bob/hw1.txt"] are ["alice", "bob"].
The minimal keys of ["alice/assignments/hw1.txt", "bob/assignments/hw1.txt"] are also ["alice", "bob"].
Finally, the minimal keys of ["assignments/alice.txt", "assignments/bob.txt"] are—wait for it—["alice", "bob"].
This is the same basic idea as a database superkey, except that the actual minimal unique keys are returned, instead of the attributes that select these keys.
The current implementation trims only the beginnings and ends of sequences, because this is all that I’ve needed so far. I have in my head a more sophisticated implementation that uses difflib, but it is too long to fit in the header of this README.
Install
$ pip install minimalkeys
Usage
>>> from minimalkeys import minimalkeys
>>> minimal_keys(["assignments/alice/hw1.txt", "assignments/bob/hw1.txt"])
['alice', 'bob']
License
MIT
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
File details
Details for the file minimalkeys-0.1.0.tar.gz
.
File metadata
- Download URL: minimalkeys-0.1.0.tar.gz
- Upload date:
- Size: 7.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 4db6acff83c61393ab1502f2d472e743b8524ec837f28f6b16c660de75abe730 |
|
MD5 | dd6d54ef0a8bb2c5667f3bfa7bb29296 |
|
BLAKE2b-256 | 715905e32b2cf8804e65d59288bb0239738a9bc182aa620f1704e31ca3511987 |
File details
Details for the file minimalkeys-0.1.0-py3-none-any.whl
.
File metadata
- Download URL: minimalkeys-0.1.0-py3-none-any.whl
- Upload date:
- Size: 5.6 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 6a154df20d4195bdae1d3d939fadeadc30f323d3b02d42ee54569eb58dbc5d72 |
|
MD5 | 4d59384fc9d0f31781e05f393c496edd |
|
BLAKE2b-256 | e0dbe7035fe83b0ffd50209489dd3dded5f63a309796be7acf0484b2ffefe907 |