Contains a trie of prefixes for fast lookups
Project description
Informational Badges:
Some Linting Badges (Where I could find them):
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 roa_collector
pytest roa_collector
ruff check roa_collector
ruff format roa_collector
mypy roa_collector
If you want to run it across multiple environments, and have python 3.10 and 3.11 installed:
cd roa_collector
tox
Development/Contributing
- Fork it!
- Create your feature branch:
git checkout -b my-new-feature
- Commit your changes:
git commit -am 'Add some feature'
- Push to the branch:
git push origin my-new-feature
- Submit a pull request
- Email me at jfuruness@gmail.com because I don't check github messages
History
-
1.1.4 Updated docs and test deps
-
1.1.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
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file lib_cidr_trie-1.2.4.tar.gz
.
File metadata
- Download URL: lib_cidr_trie-1.2.4.tar.gz
- Upload date:
- Size: 9.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.12.3
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | efa324e0147194b11f0a74d19bf04bf57fa0b113df406effb99c565e62181f08 |
|
MD5 | 30661efefb61e74c733ef9cf0bfc8a05 |
|
BLAKE2b-256 | 40c46c08323e83eb381c40dca6d66d898d1a51200e7211fcb884180d8a9540cc |
File details
Details for the file lib_cidr_trie-1.2.4-py3-none-any.whl
.
File metadata
- Download URL: lib_cidr_trie-1.2.4-py3-none-any.whl
- Upload date:
- Size: 7.2 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.12.3
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | b43bbc169d7c5c1e59c03c434fad8912f934f070713ab104179c9328e1cd93b2 |
|
MD5 | 9d3714008f54f4ff812226487e0c8f9a |
|
BLAKE2b-256 | 8d8a8bfb07b447b973175af207b7bfedc9677aa75d8aca3e396b7662eb09a90c |