
]c           @   s@   d  Z  d d l m Z d d l m Z d e f d     YZ d S(   s   
Contains writer base class.
i(   t   Listi   (   t   NbConvertBaset
   WriterBasec           B   sA   e  Z d  Z e g  d d j d e  Z d d  Z d   Z	 RS(   sX   Consumes output from nbconvert export...() methods and writes to a
    useful location. t   helpsn   
        List of the files that the notebook references.  Files will be 
        included with written output.t   configc         K   s    t  t |   j d | |  d S(   s   
        Constructor
        R   N(   t   superR   t   __init__(   t   selfR   t   kw(    (    s5   lib/python2.7/site-packages/nbconvert/writers/base.pyR      s    c         K   s   t     d S(   s  
        Consume and write Jinja output.

        Parameters
        ----------
        output : string
            Conversion results.  This string contains the file contents of the
            converted file.
        resources : dict
            Resources created and filled by the nbconvert conversion process.
            Includes output from preprocessors, such as the extract figure
            preprocessor.
        N(   t   NotImplementedError(   R   t   outputt	   resourcesR   (    (    s5   lib/python2.7/site-packages/nbconvert/writers/base.pyt   write   s    N(
   t   __name__t
   __module__t   __doc__R    t   tagt   Truet   filest   NoneR   R   (    (    (    s5   lib/python2.7/site-packages/nbconvert/writers/base.pyR      s
   	N(   R   t	   traitletsR    t
   utils.baseR   R   (    (    (    s5   lib/python2.7/site-packages/nbconvert/writers/base.pyt   <module>   s   