http://mf34jlghauz5pxjcmdymdqbe5pva4v24logeys446tdrgd5lpsrocmqd.onion/_modules/stem/util/connection.html
:returns: **str** with the binary representation of this address :raises: **ValueError** if address is neither an IPv4 nor IPv6 address " " " if is_valid_ipv4_address ( address ): return ' ' . join ([ _get_binary ( int ( octet ), 8 ) for octet in address . split ( ' . ' )]) elif is_valid_ipv6_address ( address ): address = expand_ipv6_address ( address ) return ' ' . join ([ _get_binary ( int ( grouping , 16 ), 16 ) for grouping in address . split ( ' : ' )]) else : raise...