Skip to main content

Fast addressable priority queues supporting advanced operations

Project description

apq

PyPI PyPI - Python Version PyPI - Wheel PyPI - License GitHub Workflow Status (branch)

apq implements different variants of addressable priority queue data structures importable from Python 3 projects.

The project aims to provide run-time efficient implementations of priority queues whilst remaining practical in use and maintaining a legible code base.

  • All priority queues provided by apq are backed by a C++ binary heap implementation. The priority queue types exposed to Python are implemented in Cython.

  • apq has no installation or runtime dependencies on all common platforms. Note: A compiler and basic C++ headers are required on platforms for which no binary distribution of apq is available.

  • Type stubs are installed along with the package so that mypy can fully check dependent code.

Priority Queue Types

These priority queues use 64 bit floating point as priority values (value) and FIFO semantic for entries with the same value. Note: 64 bit floats can represent 54 bit signed integers.

  • AddressablePQ - Not implemented. This priority queue exposes persistent references in the form of Item its entries. Through Item, the value of entries can be changed and arbitrary entries can be removed from the PQ.

  • KeyedPQ - This priority queue allows lookup of entries through a string key. That means it combines an addressable priority queue with a dictionary, creating a str to item mapping (almost implementing typing.Mapping[str, KeyedItem]). KeyedPQ is recommended whenever individual entries are looked up using a key.

  • SimplePQ - Not implemented. This priority queue is a non-addressable variant of AddressablePQ. SimplePQ is recommended when a fast PQ is required which is only modified via add() and pop().

Quickstart

Installation:

$ pip install apq

Usage:

>>> from apq import KeyedPQ
>>> pq: KeyedPQ[None] = KeyedPQ()
>>> pq.add('my_first_key', 34.0, None)
<apq.Item object at 0x7f506884bd70>
>>> pq.add('my_second_key', 36.0, None)
<apq.Item object at 0x7f506884bcb0>
>>> pq.change_value('my_second_key', 12.0)
<apq.Item object at 0x7f50663604f0>
>>> print(pq.pop())
('my_second_key', 12.0, None)

Releases and Compatibility

apq uses semantic versioning to derive the version identifier of releases. Code using the documented public API of apq will continue to work with all future releases of apq which are API compatible. API compatibility is indicated through the major component of the version identifier.

apq is currently under active development / in beta. Breaking changes of the public interface will occur. Beta releases are indicated through a 0 in the major component of the version identifier, e.g. 0.10.0.

To encourage use during beta, apq extends semantic versioning to beta releases as follows: From 0.10.0 onwards, API compatibility is guaranteed for all future releases with the same MINOR // 10 value. E.g. 0.17.3 is API compatible with 0.10.1.

Depending packages should use this semantic for specifying version constraints, e.g. apq >= 0.11.1, < 0.20.0 (c.f. PEP 508). Pinning is still recommended for applications, e.g. using Poetry or Pipenv.

apq aims to fully work on all active versions of Python. Python 3.5 is not supported at the moment. Information on the state of Python releases is described in the Python Developer's Guide with further details on the Development Cycle page.

Distribution

apq is distributed through PyPi. The PyPi apq Project contains a source distribution for each release. Additionally, pre-built binary distribution in the form of wheels are available for common platforms. pip install apq will automatically detect the most appropriate distribution.

TODO: Table of machine platform and OS, Python implementation and version for which wheels are built.

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

apq-0.10.0.tar.gz (91.8 kB view hashes)

Uploaded Source

Built Distributions

apq-0.10.0-cp38-cp38-manylinux2014_x86_64.whl (492.6 kB view hashes)

Uploaded CPython 3.8

apq-0.10.0-cp38-cp38-manylinux2014_i686.whl (622.9 kB view hashes)

Uploaded CPython 3.8

apq-0.10.0-cp38-cp38-manylinux2010_x86_64.whl (611.6 kB view hashes)

Uploaded CPython 3.8 manylinux: glibc 2.12+ x86-64

apq-0.10.0-cp38-cp38-manylinux2010_i686.whl (453.6 kB view hashes)

Uploaded CPython 3.8 manylinux: glibc 2.12+ i686

apq-0.10.0-cp37-cp37m-manylinux2014_x86_64.whl (480.2 kB view hashes)

Uploaded CPython 3.7m

apq-0.10.0-cp37-cp37m-manylinux2014_i686.whl (606.7 kB view hashes)

Uploaded CPython 3.7m

apq-0.10.0-cp37-cp37m-manylinux2010_x86_64.whl (596.0 kB view hashes)

Uploaded CPython 3.7m manylinux: glibc 2.12+ x86-64

apq-0.10.0-cp37-cp37m-manylinux2010_i686.whl (439.8 kB view hashes)

Uploaded CPython 3.7m manylinux: glibc 2.12+ i686

apq-0.10.0-cp36-cp36m-manylinux2014_x86_64.whl (480.6 kB view hashes)

Uploaded CPython 3.6m

apq-0.10.0-cp36-cp36m-manylinux2014_i686.whl (605.0 kB view hashes)

Uploaded CPython 3.6m

apq-0.10.0-cp36-cp36m-manylinux2010_x86_64.whl (596.4 kB view hashes)

Uploaded CPython 3.6m manylinux: glibc 2.12+ x86-64

apq-0.10.0-cp36-cp36m-manylinux2010_i686.whl (441.1 kB view hashes)

Uploaded CPython 3.6m manylinux: glibc 2.12+ i686

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