본문 바로가기

Python_Beginer/Study

[Flake 8]Flake 8

반응형

⊙ 파이썬 패키지

⊙ 파이썬 파일이나 특정 파이써너 코드의 스타일을 검사해주는 도구

⊙ 코딩 컨벤션만 설정해서 검사 가능

 

⊙ 설치 방법

pip install flake8

 

⊙ 사용 방법

flake8 File_Name.py

 

⊙ 사이트

http://flake8.pycqa.org/en/latest/

 

Flake8: Your Tool For Style Guide Enforcement — flake8 3.7.9 documentation

If you want Flake8 to be installed for your default Python installation, you can instead use: Note It is very important to install Flake8 on the correct version of Python for your needs. If you want Flake8 to properly parse new language features in Python

flake8.pycqa.org

 

반응형

'Python_Beginer > Study' 카테고리의 다른 글

[CGI]Python CRUD  (0) 2020.03.15
[HandCoding]손코딩 테스트  (0) 2020.01.19
[PEP 20]The Zen of Python  (0) 2019.12.28
HRD 수업>파이썬을 이용한 자동화 스크립트 - Ch19  (0) 2019.08.21
CSV to Dict(CSV File -> Dict)  (0) 2019.08.10