Skip to main content

Contains a trie of prefixes for fast lookups

Project description

Informational Badges:

PyPI version PyPy PyPI - Python Version Tests Linux macOS Intel macOS ARM

Some Linting Badges (Where I could find them):

Ruff Code style: black Checked with mypy Imports: isort Pylint try/except style: tryceratops

If you like this package please leave a github star so I know to continue maintaining it :)

lib_cidr_trie

This package contains a trie of prefixes for fast lookups

Usage

trie = IPv4CIDRTrie()
cidrs = [ip_network(x) for x in ["1.2.0.0/16", "1.2.3.0/24", "1.2.3.4"]]
for cidr in cidrs:
    # for mypy
    assert isinstance(cidr, IPv4Network)
    trie.insert(cidr)
for cidr in cidrs:
    assert isinstance(cidr, IPv4Network)
    assert cidr in trie
    node = trie.get_most_specific_trie_supernet(cidr)
    assert node is not None and node.prefix == cidr

invalid_cidrs = [ip_network(x) for x in ["1.0.0.0/8", "255.255.255.255"]]
for invalid_cidr in invalid_cidrs:
    # for mypy
    assert isinstance(invalid_cidr, IPv4Network)
    assert invalid_cidr not in trie
    assert trie.get_most_specific_trie_supernet(invalid_cidr) is None

assert IPv4Network("1.2.4.0/24") in trie
assert IPv4Network("1.2.0.255") in trie
assert IPv4Network("1.3.0.0/16") not in trie

Installation

Install python and pip if you have not already. Then run:

pip3 install lib_cidr_trie

This will install the package and all of it's python dependencies.

If you want to install the project for development:

git clone https://github.com/jfuruness/lib_cidr_trie.git
cd lib_cidr_trie
pip3 install -e .[test]
pre-commit install

To test the development package: Testing

Testing

To test the package after installation:

cd lib_cidr_trie
pytest lib_cidr_trie
ruff check lib_cidr_trie
ruff format lib_cidr_trie
mypy lib_cidr_trie

You can run isolated builds across multiple environments with:

cd lib_cidr_trie
tox --skip-missing-interpreters

Development/Contributing

  1. Fork it!
  2. Create your feature branch: git checkout -b my-new-feature
  3. Commit your changes: git commit -am 'Add some feature'
  4. Push to the branch: git push origin my-new-feature
  5. Submit a pull request
  6. Email me at jfuruness@gmail.com because I don't check github messages

History

  • lib_cidr_trie

  • 1.2.11 Removed duplicate mac version in github actions

  • 1.2.10 Fixed tox.ini to point to pypy3.11

  • 1.2.9 Upgrading dependencies and supported Python versions

  • 1.2.8 Removed windows classifier from pyproject.toml

  • 1.2.7 Updated dependencies and ruff rules

  • 1.2.6 Fixed a bug in the pyproject.toml that screwed up non-local installs

  • 1.2.5 Updated README

  • 1.2.4 Updated docs and test deps

  • 1.2.3 Updated package metadata and fixed some formatting for linters

  • 1.1.2 Python version updates

  • 1.1.1 Dependency updates

  • 1.1.0 Removed a few type ignores for mypy, added PrefixType to dunder init

  • 1.0.0 Added linters, updated package structure, fixed typing issues

  • 0.0.3 Made it easier to subclass CIDRTrie

  • 0.0.2 README update

  • 0.0.1 First working version

License

BSD License (see license file)

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

lib_cidr_trie-1.2.11.tar.gz (10.9 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

lib_cidr_trie-1.2.11-py3-none-any.whl (8.0 kB view details)

Uploaded Python 3

File details

Details for the file lib_cidr_trie-1.2.11.tar.gz.

File metadata

  • Download URL: lib_cidr_trie-1.2.11.tar.gz
  • Upload date:
  • Size: 10.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.14.2

File hashes

Hashes for lib_cidr_trie-1.2.11.tar.gz
Algorithm Hash digest
SHA256 50f55fdb8d46c39adc251b7c43b280f4a9ec668dccdbe6d6ca3c79f386127621
MD5 68c3e70968523e6b882f7b85827ab3ad
BLAKE2b-256 079aef898f1575bb6c9f70ad0f5883fcf5ba9370d969bba318a272c280973a8d

See more details on using hashes here.

File details

Details for the file lib_cidr_trie-1.2.11-py3-none-any.whl.

File metadata

  • Download URL: lib_cidr_trie-1.2.11-py3-none-any.whl
  • Upload date:
  • Size: 8.0 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.14.2

File hashes

Hashes for lib_cidr_trie-1.2.11-py3-none-any.whl
Algorithm Hash digest
SHA256 db98f2d45dc0ed950e217a3e7b35960e7fc5e97128453f433b9e643e45084819
MD5 82286c7d65c4813e825d38bae8cc5382
BLAKE2b-256 940c7837a4c8192804b4902f1400e60b6db2209b920b6d6adcb745e1ad0d9d32

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