#概要
Google Colaboratoryでpep8に対応しているかを自動でチェックする方法をまとめる。
#方法
まずはこれを実行
!pip install pycodestyle flake8 pycodestyle_magic
%load_ext pycodestyle_magic
チェックをしたいセルの先頭にこれを追加し実行
%%flake8
#実行例
例
%%flake8
result=DataFrame.from_dict(correlations,orient='index')
result.columns=['PCC','p-value']
print(result.sort_values('PCC'))
結果
2:7: E225 missing whitespace around operator
2:40: E231 missing whitespace after ','
3:15: E225 missing whitespace around operator
3:22: E231 missing whitespace after ','
左の番号はpep8に対応していない部分の行と何文字目かを表している。
#お願い
%%flake8を全てのセルにコピペするのに時間がかかる。。。一括ですべてのセルに挿入する方法あれば教えてください。