Imported Upstream version 12.1.0
[contrib/python-twisted.git] / doc / lore / howto / listings / lore / a_lore_plugin.py
1
2 from zope.interface import implements
3
4 from twisted.plugin import IPlugin
5 from twisted.lore.scripts.lore import IProcessor
6
7 class MyHTML(object):
8     implements(IPlugin, IProcessor)
9
10     name = "myhtml"
11     moduleName = "myhtml.factory"