2
3

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

Google Colaboratoryで自分の書いたコードがpythonのコーディング規約「pep8」へ対応しているか自動でチェックする方法

Last updated at Posted at 2019-11-18

#概要
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を全てのセルにコピペするのに時間がかかる。。。一括ですべてのセルに挿入する方法あれば教えてください。

2
3
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
2
3

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?