1
0
Fork 0
mirror of https://github.com/correl/SleekXMPP.git synced 2025-03-23 11:15:43 -09:00
SleekXMPP/sleekxmpp/xmlstream/matcher/id.py

13 lines
292 B
Python

"""
SleekXMPP: The Sleek XMPP Library
Copyright (C) 2010 Nathanael C. Fritz
This file is part of SleekXMPP.
See the file LICENSE for copying permission.
"""
from . import base
class MatcherId(base.MatcherBase):
def match(self, xml):
return xml['id'] == self._criteria