diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-06-12 17:45:09 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-06-12 17:45:09 +0000 |
commit | da1a8f12d7a38f67f3f464aaaffa851f929ae4ea (patch) | |
tree | 677688f3aeab7f324f266d106770165708522c2c /README.rst | |
parent | Initial commit. (diff) | |
download | python-netaddr-7e869254c654d0b5d5b8673ed3f143942f70296b.tar.xz python-netaddr-7e869254c654d0b5d5b8673ed3f143942f70296b.zip |
Adding upstream version 0.10.1.upstream/0.10.1upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'README.rst')
-rw-r--r-- | README.rst | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/README.rst b/README.rst new file mode 100644 index 0000000..f08c97e --- /dev/null +++ b/README.rst @@ -0,0 +1,38 @@ +netaddr +======= + +.. image:: https://codecov.io/gh/netaddr/netaddr/branch/master/graph/badge.svg + :target: https://codecov.io/gh/netaddr/netaddr +.. image:: https://github.com/netaddr/netaddr/workflows/CI/badge.svg + :target: https://github.com/netaddr/netaddr/actions?query=workflow%3ACI+branch%3Amaster +.. image:: https://img.shields.io/pypi/v/netaddr.svg + :target: https://pypi.org/project/netaddr/ +.. image:: https://img.shields.io/pypi/pyversions/netaddr.svg + :target: pypi.python.org/pypi/netaddr + +A Python library for representing and manipulating network addresses. + +Provides support for: + +Layer 3 addresses + +- IPv4 and IPv6 addresses, subnets, masks, prefixes +- iterating, slicing, sorting, summarizing and classifying IP networks +- dealing with various ranges formats (CIDR, arbitrary ranges and + globs, nmap) +- set based operations (unions, intersections etc) over IP addresses + and subnets +- parsing a large variety of different formats and notations +- looking up IANA IP block information +- generating DNS reverse lookups +- supernetting and subnetting + +Layer 2 addresses + +- representation and manipulation MAC addresses and EUI-64 identifiers +- looking up IEEE organisational information (OUI, IAB) +- generating derived IPv6 addresses + +Documentation: https://netaddr.readthedocs.io/en/latest/ + +Share and enjoy! |