This repository has been archived on 2025-01-29. You can view files and clone it, but cannot push or open issues or pull requests.
PyBitmessage-2025-01-29/src/network/node.py
2024-05-26 11:17:30 +09:00

8 lines
196 B
Python

"""
Named tuples representing the network peers
"""
import collections
Peer = collections.namedtuple('Peer', ['host', 'port'])
Node = collections.namedtuple('Node', ['services', 'host', 'port'])