get_template()でUnicodeDecodeError

ファイルの文字コードutf-8にしてで保存する

    http://stackoverflow.com/questions/11072478/python-unicodedecodeerror-utf8-codec-cant-decode-byte-unexpected-code-byt
    http://advweb.seesaa.net/article/3074705.html

pythonスクリプトからExcelファイルを開く

os.system('start excel.exe %s' % (path, ))
subprocess.call(['start', 'excel.exe', path], shell=True)
    http://stackoverflow.com/questions/13720940/opening-running-excel-file-from-python
http://ja.pymotw.com/2/subprocess/