예제 #1
0
 def export(self):
     formatter = Formatter()
     filename = tkFileDialog.asksaveasfilename(
         defaultextension='.txt',
         parent=self,
     )
     data = self.data.to_template()
     sheet = formatter.format(TEMPLATE, **data)
     with open(filename, 'w') as f:
         f.write(sheet.strip() + '\n')
예제 #2
0
파일: template.py 프로젝트: kyguy/ptemplate
    def __init__(self, extra_vars_func=None, options=None, template=''):
        self.log = logger(__name__, self)
        self.options = options
        self.template = template
        self.formatter = Formatter()
        """The template's formatter.

        The formatter performs the actual templating work and should
        have a :meth:`ptemplate.formatter.Formatter.format` method and a
        :attr:`ptemplate.formatter.Formatter.converters` dictionary. The
        converters dictionary will be updated with any converters specified in
        the Template.
        """

        self.formatter.converters.update(self.converters)
예제 #3
0
파일: template.py 프로젝트: whilp/ptemplate
    def __init__(self, extra_vars_func=None, options=None, template=""):
        self.log = logger(__name__, self)
        self.options = options
        self.template = template
        self.formatter = Formatter()
        """The template's formatter.

        The formatter performs the actual templating work and should
        have a :meth:`ptemplate.formatter.Formatter.format` method and a
        :attr:`ptemplate.formatter.Formatter.converters` dictionary. The
        converters dictionary will be updated with any converters specified in
        the Template.
        """

        self.formatter.converters.update(self.converters)
예제 #4
0
파일: template.py 프로젝트: whilp/ptemplate
class Template(object):
    """A templater.

    :class:`Template` wraps :class:`ptemplate.formatter.Formatter` with a
    _`Buffet`-compatible _`interface`. In addition to the standard Buffet
    arguments (*extra_vars_func*, *options*), the constructor accepts a
    *template* string. This string is the template that will be rendered later
    (by a call to :meth:`render`).

    .. _Buffet:     http://pypi.python.org/pypi/Buffet/
    .. _interface:  http://docs.turbogears.org/1.0/TemplatePlugins
    """

    options = {}
    preprocessor = None
    """Template preprocessor callable.

    This callable should accept the template string as its sole argument. Its
    output should be another template string. Use this facility to translate
    foreign template syntaxes into something
    :class:`ptemplate.formatter.Formatter` can understand.
    """
    converters = {}
    """A dictionary of object converters.

    These converters will be passed to the template's
    :class:`ptemplate.formatter.Formatter` instance.
    """

    def __init__(self, extra_vars_func=None, options=None, template=""):
        self.log = logger(__name__, self)
        self.options = options
        self.template = template
        self.formatter = Formatter()
        """The template's formatter.

        The formatter performs the actual templating work and should
        have a :meth:`ptemplate.formatter.Formatter.format` method and a
        :attr:`ptemplate.formatter.Formatter.converters` dictionary. The
        converters dictionary will be updated with any converters specified in
        the Template.
        """

        self.formatter.converters.update(self.converters)

    def render(self, data, format="html", fragment=False, template=None):
        """Render the template using *data*.

        The *format*, *fragment* and *template* arguments are ignored. Instead,
        :class:`Template` uses :attr:`template` as the template, passing it to
        :attr:`preprocessor` if necessary. It then expands the template (using
        :attr:`formatter`) and returns the result as a string.
        """
        template = self.template
        preprocessor = getattr(self, "preprocessor", None)
        if callable(preprocessor):
            template = preprocessor(template)
        self.formatter.converters.update(self.converters)
        return self.formatter.format(template, **data)

    def transform(self, info, template):  # pragma: nocover
        """Render the output to Elements.

        Required by Buffet; not supported.
        """
        raise NotImplementedError

    def load_template(self, templatename):  # pragma: nocover
        """Find a template specified in Python 'dot' notation.

        Required by Buffet; not supported.
        """
        raise NotImplementedError
예제 #5
0
파일: template.py 프로젝트: kyguy/ptemplate
class Template(object):
    """A templater.

    :class:`Template` wraps :class:`ptemplate.formatter.Formatter` with a
    _`Buffet`-compatible _`interface`. In addition to the standard Buffet
    arguments (*extra_vars_func*, *options*), the constructor accepts a
    *template* string. This string is the template that will be rendered later
    (by a call to :meth:`render`).

    .. _Buffet:     http://pypi.python.org/pypi/Buffet/
    .. _interface:  http://docs.turbogears.org/1.0/TemplatePlugins
    """
    options = {}
    preprocessor = None
    """Template preprocessor callable.

    This callable should accept the template string as its sole argument. Its
    output should be another template string. Use this facility to translate
    foreign template syntaxes into something
    :class:`ptemplate.formatter.Formatter` can understand.
    """
    converters = {}
    """A dictionary of object converters.

    These converters will be passed to the template's
    :class:`ptemplate.formatter.Formatter` instance.
    """
    def __init__(self, extra_vars_func=None, options=None, template=''):
        self.log = logger(__name__, self)
        self.options = options
        self.template = template
        self.formatter = Formatter()
        """The template's formatter.

        The formatter performs the actual templating work and should
        have a :meth:`ptemplate.formatter.Formatter.format` method and a
        :attr:`ptemplate.formatter.Formatter.converters` dictionary. The
        converters dictionary will be updated with any converters specified in
        the Template.
        """

        self.formatter.converters.update(self.converters)

    def render(self, data, format="html", fragment=False, template=None):
        """Render the template using *data*.

        The *format*, *fragment* and *template* arguments are ignored. Instead,
        :class:`Template` uses :attr:`template` as the template, passing it to
        :attr:`preprocessor` if necessary. It then expands the template (using
        :attr:`formatter`) and returns the result as a string.
        """
        template = self.template
        preprocessor = getattr(self, "preprocessor", None)
        if callable(preprocessor):
            template = preprocessor(template)
        self.formatter.converters.update(self.converters)
        return self.formatter.format(template, **data)

    def transform(self, info, template):  # pragma: nocover
        """Render the output to Elements.

        Required by Buffet; not supported.
        """
        raise NotImplementedError

    def load_template(self, templatename):  # pragma: nocover
        """Find a template specified in Python 'dot' notation.

        Required by Buffet; not supported.
        """
        raise NotImplementedError