Skip to main content

a simple, generically type-annotated, sorted list

Project description

srtlst

a simple, generically type-annotated, sorted list

python_version mypy_checked

usage

Create a sorted list like this:

>>> from srtlst import SortedList
>>> s = SortedList([5, 3, 1])
>>> print(s)
[1, 3, 5]

A SortedList mimics a regular list in most ways, but remains sorted:

>>> s = SortedList([5, 3, 1])
>>> s.extend([6, 2, 4])
>>> print(s)
[1, 2, 3, 4, 5, 6]

You can use add() instead of insert() or append():

>>> s = SortedList([5, 3, 1])
>>> s.add(3)
>>> s.add(2)
>>> print(s)
[1, 2, 3, 3, 5]

If you need your data to be sorted in descending order use the optional reverse parameter:

>>> s = SortedList([1, 2, 3], reverse=True)
>>> s.add(4)
>>> print(s)
[4, 3, 2, 1]

If your data is not inherently sortable, or you want to sort it in a non-default way, you can use SortedListByKey and supply a function to sort it (just like with sorted()):

>>> from srtlst import SortedListByKey
>>> my_function = lambda x: x * (-1) ** x
>>> s = SortedListByKey([1, 2, 3, 4], key=my_function)
>>> print(s)
[3, 1, 2, 4]

SortedListByKey behaves like a SortedList in all other ways, and indeed inherits from it. However, when type checking, a SortedList only accepts values for which a less-than (<) method is defined (__lt__()).

SortedListByKey accepts any type of object, as long as an appropriate key function is provided. The key function must return comparable values for the items in the list.

installation

No surprises here:

$ pip install srtlst

type checking

SortedList and SortedListByKey are type-hinted according to PEP 484 and the srtlst library is itself checked using mypy --strict.

Type hints for both containers can be provided using type arguments, just like with list and other containers:

s: SortedList[int] = SortedList([3, 2, 1])

performance

This library aims to provide a simple sorted list without any dependencies which is ready for use. Some of the list operations are reimplemented to take advantage of the list's sortedness using Python's standard bisect library.

This library should suit your needs if you just want to keep stuff sorted, without having to implement the bookkeeping yourself. However, if your sorting needs arise from the need for performance, you should also consider this library: sortedcontainers.

documentation

Documentation is work in progress. For now the Python's built-in help function can be of service:

>>> from srtlst import SortedList
>>> help(SortedList)

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

srtlst-0.2.0.tar.gz (6.1 kB view hashes)

Uploaded Source

Built Distribution

srtlst-0.2.0-py3-none-any.whl (7.7 kB view hashes)

Uploaded Python 3

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