##// END OF EJS Templates
starting templates
starting templates

File last commit:

r9578:f5f36036
r9578:f5f36036
Show More
runme.py
7 lines | 184 B | text/x-python | PythonLexer
# coding: utf-8
from converters.template import *
C = ConverterTemplate()
C.read('tests/ipynbref/IntroNumPy.orig.ipynb')
S = C.convert()
with open('temp.txt','w') as f:
f.write(S)