Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

gh-128810: Added .shorthand property to IPv4Network and IPv6Network in the ipaddress module #128811

Closed
wants to merge 2 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
42 changes: 42 additions & 0 deletions Lib/ipaddress.py
Original file line number Diff line number Diff line change
Expand Up @@ -1547,6 +1547,30 @@ def __init__(self, address, strict=True):
elif self._prefixlen == (self.max_prefixlen):
self.hosts = lambda: [IPv4Address(addr)]

@property
def shorthand(self):
"""
Returns the shorthand representation of the IPv4 network.

This method abbreviates the IPv4 network by removing trailing
zero octets from the network address.

Returns:
str: The shorthand IPv4 network in the format 'X.X/X'.

Example:
>>> network = IPv4Network('192.168.0.0/24')
>>> network.shorthand
'192.168/24'
"""
# Split the network address into octets
octets = str(self.network_address).split('.')
# Remove trailing zero octets
while octets and octets[-1] == '0':
octets.pop()
# Rejoin the remaining octets and append the prefix length
return '.'.join(octets) + f"/{self.prefixlen}"

@property
@functools.lru_cache()
def is_global(self):
Expand Down Expand Up @@ -2341,6 +2365,24 @@ def hosts(self):
for x in range(network + 1, broadcast + 1):
yield self._address_class(x)

@property
def shorthand(self):
"""
Returns the shorthand representation of the IPv6 network.

This method compresses the IPv6 address to its shortest form
and appends the prefix length.

Returns:
str: The shorthand IPv6 network in the format 'X::/Y'.

Example:
>>> network = IPv6Network('2001:db8:0:0:0:0:0:0/32')
>>> network.shorthand
'2001:db8::/32'
"""
return f"{self.network_address.compressed}/{self.prefixlen}"

@property
def is_site_local(self):
"""Test if the address is reserved for site-local.
Expand Down
13 changes: 13 additions & 0 deletions Lib/test/test_ipaddress.py
Original file line number Diff line number Diff line change
Expand Up @@ -709,6 +709,12 @@ def test_subnet_of_mixed_types(self):
ipaddress.IPv6Network('::1/128').subnet_of(
ipaddress.IPv4Network('10.0.0.0/30'))

def test_shorthand_ipv4(self):
self.assertEqual(ipaddress.IPv4Network("1.2.0.0/16").shorthand, "1.2/16")
self.assertEqual(ipaddress.IPv4Network("10.0.0.0/8").shorthand, "10/8")
self.assertEqual(ipaddress.IPv4Network("192.168.0.0/24").shorthand, "192.168/24")
self.assertEqual(ipaddress.IPv4Network("0.0.0.0/0").shorthand, "/0")


class NetmaskTestMixin_v6(CommonTestMixin_v6):
"""Input validation on interfaces and networks is very similar"""
Expand Down Expand Up @@ -865,6 +871,13 @@ def test_supernet_of(self):
self.factory('2000:aaa::/48').supernet_of(
self.factory('2000:aaa::/56')))

def test_shorthand_ipv6(self):
self.assertEqual(ipaddress.IPv6Network("2001:db8:0:0:0:0:0:0/32").shorthand, "2001:db8::/32")
self.assertEqual(ipaddress.IPv6Network("::/0").shorthand, "::/0")
self.assertEqual(ipaddress.IPv6Network("0:0:0:0:0:0:0:0/0").shorthand, "::/0")
self.assertEqual(ipaddress.IPv6Network("2001:db8:0:0:0:0:0:1/128").shorthand, "2001:db8::1/128")
self.assertEqual(ipaddress.IPv6Network("::1/128").shorthand, "::1/128")


class FactoryFunctionErrors(BaseTestCase):

Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Added a .shorthand function to IPv4Network and IPv6Network's in the ipaddress module to be able to display a prefix such as 1.2.0.0/16 as it's shorthand version (often used by network operators) as 1.2/16.
Copy link
Contributor

@rruuaanng rruuaanng Jan 14, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
Added a .shorthand function to IPv4Network and IPv6Network's in the ipaddress module to be able to display a prefix such as 1.2.0.0/16 as it's shorthand version (often used by network operators) as 1.2/16.
Add the :attr:`!shorthand` property to :class:`~ipaddress.IPv4Network` and :class:`~ipaddress.IPv6Network` in the :mod:`ipaddress` module to display a prefix such as ``1.2.0.0/16`` as its shorthand version (often used by network operators), like ``1.2/16``.

Edit

More tags, see https://devguide.python.org/documentation/markup/

Loading