Skip to main content

Uniquify - get unique, short and easy-to-read names and paths

Project description

Shorten names/paths by extracting non-common parts:

>>> from uniquify import shortname, shortpath
>>> shortname(['__common_part___abc___common_part__',
...            '__common_part___ijk___common_part__',
...            '__common_part___xyz___common_part__'])
['abc', 'ijk', 'xyz']
>>> shortpath(['some/long/path/___/abc/___/___/',
...            'some/long/path/___/ijk/___/___/',
...            'some/long/path/___/xyz/___/___/'])
['abc', 'ijk', 'xyz']

Convert common parts into skip marks:

>>> from uniquify import skipcommonname, skipcommonpath
>>> skipcommonname(['ab__common_part___c',
...                 'ij__common_part___k',
...                 'xy__common_part___z'])
['ab...c', 'ij...k', 'xy...z']
>>> skipcommonpath(['ab/common/path/c',
...                 'ij/common/path/k',
...                 'xy/common/path/z'])
['ab/.../c', 'ij/.../k', 'xy/.../z']

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

uniquify-0.0.0.tar.gz (2.9 kB view hashes)

Uploaded Source

Supported by

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