##// END OF EJS Templates
disable install from master...
disable install from master while it's broken by The Big Split with informative note about `pip install -e`

File last commit:

r20908:0063cd5e
r21036:5b38bd7e
Show More
hello.py
7 lines | 242 B | text/x-python | PythonLexer
from jupyter_nbconvert.writers.base import WriterBase
class HelloWriter(WriterBase):
def write(self, output, resources, notebook_name=None, **kw):
with open('hello.txt', 'w') as outfile:
outfile.write('hello world')