A tiny python library to encode IPv6 and IPv4 addressed as haiku. This a python port of hipku(javascript).
$ pip install pyhipku
Encode the IP address to haiku
>>> from pyhipku import encode
>>> encode('127.0.0.1')
'The hungry white ape\naches in the ancient canyon.\nAutumn colors crunch.\n'
Decode haiku to IP address
>>> from pyhipku import decode
>>> decode('The hungry white ape\naches in the ancient canyon.\nAutumn colors crunch.\n')
'127.0.0.1'
MIT