HPI/my/ip/all.py
2024-10-30 20:12:00 +00:00

28 lines
553 B
Python

"""
An example all.py stub module that provides ip data
To use this, you'd add IP providers that yield IPs to the 'ips' function
For an example of how this could be used, see https://github.com/purarue/HPI/tree/master/my/ip
"""
REQUIRES = ["git+https://github.com/purarue/ipgeocache"]
from collections.abc import Iterator
from my.core import Stats, warn_if_empty
from my.ip.common import IP
@warn_if_empty
def ips() -> Iterator[IP]:
yield from ()
def stats() -> Stats:
from my.core import stat
return {
**stat(ips),
}