1
0
Fork 0
mirror of https://github.com/correl/SleekXMPP.git synced 2025-03-20 09:19:24 -09:00
SleekXMPP/sleekxmpp/xmlstream/matcher/stanzapath.py

8 lines
156 B
Python
Raw Normal View History

from . import base
from xml.etree import cElementTree
class StanzaPath(base.MatcherBase):
def match(self, stanza):
return stanza.match(self._criteria)