mirror of
https://github.com/clinton-hall/nzbToMedia.git
synced 2024-11-14 17:40:24 -08:00
20 lines
505 B
Python
20 lines
505 B
Python
import abc
|
|
|
|
|
|
class FormatterBase(metaclass=abc.ABCMeta):
|
|
"""Base class for example plugin used in the tutorial.
|
|
"""
|
|
|
|
def __init__(self, max_width=60):
|
|
self.max_width = max_width
|
|
|
|
@abc.abstractmethod
|
|
def format(self, data):
|
|
"""Format the data and return unicode text.
|
|
|
|
:param data: A dictionary with string keys and simple types as
|
|
values.
|
|
:type data: dict(str:?)
|
|
:returns: Iterable producing the formatted text.
|
|
"""
|