##// END OF EJS Templates
handle unicode output
handle unicode output

File last commit:

r9581:42ef8ed6
r9581:42ef8ed6
Show More
runme.py
10 lines | 228 B | text/x-python | PythonLexer
# coding: utf-8
import sys
import io
from converters.template import *
C = ConverterTemplate(tplfile=sys.argv[1])
C.read('tests/ipynbref/IntroNumPy.orig.ipynb')
S = C.convert()
with io.open('temp.txt','w') as f:
f.write(S)