Puristaa (Finnish for compress) - shared prefix compression of ordered string sequences.
Project description
puristaa
Puristaa (Finnish for compress)
Provide a memory neutral and fast implementation that is clear to understand and works for the use case of extracting a common prefix of a sequence of strings and yielding that prefix and a generator for the compressed strings of the original sequence.
The latter is not yet clear. One simple implementation path is to receive a reference to a sequence, determine min-max, compare min to max by character and break with first index of enumaeration not matching. Finally yield first the prefix, subsequently all strings of the sequence each shortened by the prefix.
Another still open question is, if a composition of functions can be construed, such that the prefix finding algorithm respects a caller provided policy representing the inner structure of the strings. An example for an inner structure is a sequence of paths as strings. A path policy would provide a separator that modifies the prefix finding algorithm to backtrack to the previous such separator token.
why? well, imagine the sequence 'bar/baz', 'bar/bazaar'
and a path policy providing the boolean predicate lambda x: x == '/'
should not yield 'bar/baz', '', 'aar'
but instead 'bar/', 'baz', 'bazaar'
.
Documentation
User and developer documentation of puristaa.
Bug Tracker
Feature requests and bug reports are bested entered in the todos of puristaa.
Primary Source repository
The primary source repository of puristaa is at sourcehut a collection of tools useful for software development.
Status
Experimental
Note: The default branch is default
.
Use
Commandline API
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
Hashes for puristaa-2022.7.24-py2.py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 43afcb8d559c7c039ea172a57cb70669226c7e277a0de672809f1949ccd5a9fe |
|
MD5 | 9a9a33ddf0b2b079732d3a2ca60132dd |
|
BLAKE2b-256 | 3136347c7efc014c3f85eca62e51576a746880e518b0c893624217f80f73f165 |