Skip to main content

Sort content by two keys

Project description

Summary

This project is for content that needs to be iterated in two different ways. It allows two keys ("left" and "right") to be defined at the same time.

How to use

load()

Use load(path) to load a json file. Use load(path, validate=True) to check for duplicate keys.

Sample json content is:

[
    [
        "left3",    # <== the "left" key
        "right2",   # <== the "right" key
        "infoA"     # <== info for this entry & keys; Can be "null" if there is no info
    ],
    [
        "left2",
        "right3",
        null
    ],
]

save()

Use save(path) to save the current content to a json file.

add()

Use add(left, right, info) to add a new entry. The left and right keys have to be unique, otherwise an exception is thrown.

Note that info is optional add(left, right) or explicitly set to None.

all_by_left() and all_by_right()

To iterate in sorted order by the left key, use:

pds = PyDualSorter()
pds.load('path/to/file')
for left, right, info in pds.all_by_left():
    print(f'left key is  {left}')
    print(f'right key is {left}')
    print(f'info is      {info}')

To iterate in sorted order by the right key, use:

pds = PyDualSorter()
pds.load('path/to/file')
for left, right, info in pds.all_by_left():   # <== note that left key is still present
    print(f'left key is  {left}')
    print(f'right key is {left}')
    print(f'info is      {info}')

is_left() and is_right()

Use is_left(val) to check if a value is a left key. Use is_right(val) to check if a value is a right key.

get_left_info() and get_right_info()

Use info = pds.get_left_info(left) to get the info associated with the given left key. Use info = pds.get_right_info(right) to get the info associated with the given right key.

get_left() and get_right()

Use right = pds.get_right(left) to get the matching right key for the given left key. Use left = pds.get_left(right) to get the matching left key for the given right key.

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

py_dual_sorter-0.1.1.tar.gz (4.9 kB view details)

Uploaded Source

File details

Details for the file py_dual_sorter-0.1.1.tar.gz.

File metadata

  • Download URL: py_dual_sorter-0.1.1.tar.gz
  • Upload date:
  • Size: 4.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.12.3

File hashes

Hashes for py_dual_sorter-0.1.1.tar.gz
Algorithm Hash digest
SHA256 0635bca56599cbb3c2874d9bd6ea74488c3709892118e5d491c2178dd39fd822
MD5 9d25d21c480da3809aff2c4945f335cf
BLAKE2b-256 22ceb4c0c7c79c9397f51428927c299427af83377c8e5ca3ee190423da73f0b4

See more details on using hashes here.

Supported by

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