Files
whois/netaddr/tests/2.x/ip/formats.txt
Olaf Baumert 34c631a06d Initial commit: mwhois with SCION AS support and decimal AS conversion
Based on mwhois by Antonios A. Chariton
Modifications for SCION AS support by Olaf Baumert, Axpo Systems AG
2025-06-03 11:01:02 +00:00

28 lines
315 B
Plaintext

=IP formatting options=
Copyright (c) 2008-2015, David P. D. Moss. All rights reserved.
{{{
>>> from netaddr import *
}}}
==IPAddress representations==
{{{
>>> hex(IPAddress(0))
'0x0'
>>> hex(IPAddress(0xffffffff))
'0xffffffff'
>>> oct(IPAddress(0))
'0'
>>> oct(IPAddress(0xffffffff))
'037777777777'
}}}