summaryrefslogtreecommitdiff
path: root/netdisco/discoverables/fritzbox.py
blob: 4b729f5923f1e3ba3fa75880226684c2dfc4f6f5 (plain)
1
2
3
4
5
6
7
8
9
10
"""Discover AVM FRITZ devices."""
from . import SSDPDiscoverable


class Discoverable(SSDPDiscoverable):
    """Add support for discovering AVM FRITZ devices."""

    def get_entries(self):
        """Get all AVM FRITZ entries."""
        return self.find_by_st("urn:schemas-upnp-org:device:fritzbox:1")