2015-02-01から1ヶ月間の記事一覧

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

削除したファイルをaddする時

git

git add -u <削除したファイル> http://nekova.hatenablog.com/entry/2013/02/20/013909

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/