Skip to main content

A pure python port of nim-lapper.

Project description

py_lapper

PyPI version Coverage Documentation Status

A pure python port of nim-lapper. Please also see the rust lib, rust-lapper

Stay tuned for a pyO3 wrapper for the rust lib.

Documentation can be found here.

Install

pip install py_lapper

Usage

from py_lapper import Interval, Lapper, Cursor

intervals = [Interval(0, 5, True), Interval(4, 8, True), Interval(9, 12, True)]
lapper = Lapper(intervals)

found = [iv for iv in lapper.find(4, 7)]
# found = [Interval(0, 5, True), Interval(4, 8, True)]

# Use seek when you will have many queries in sorted order.
cursor = Cursor(0)
found = [iv for iv in lapper.seek(1, 4, cursor)]
# found = [Interval(0, 5, True)]
# cursor = Cursor(2)

found = [iv for iv in lapper.seek(5, 7, cursor)]
# found = [Interval(4, 8, True)]
# cursor = Cursor(3)

Changelog

1/16/2020 -- 0.9.3

* Added type hints
* Added documentation

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_lapper-0.9.3.tar.gz (4.1 kB view hashes)

Uploaded Source

Built Distribution

py_lapper-0.9.3-py3-none-any.whl (5.0 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