mirror of
https://git.photon.obnh.io/AXSY/whois.git
synced 2026-03-12 18:01:32 +00:00
Based on mwhois by Antonios A. Chariton Modifications for SCION AS support by Olaf Baumert, Axpo Systems AG
28 lines
318 B
Plaintext
28 lines
318 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))
|
|
'0o0'
|
|
|
|
>>> oct(IPAddress(0xffffffff))
|
|
'0o37777777777'
|
|
|
|
}}}
|