Skip to content
GitDeveloperKim edited this page May 23, 2022 · 9 revisions

Welcome to the python_automation wiki!

파이썬 스타일 가이드

pep-8번역

black

black_doc

패키지 관리하기

refer

설치된 패키지 확인

  • pip list

requirements.txt 파일 만들기 command

  • pip freeze > requirements.txt

requirements.txt 파일로 부터 설치하기

  • pip install -r requirements.txt

주피터 노트북 사용하기

link

pylint 설정하기

pip install pylint
pylint source.py
link

black 설정하기

reference

Clone this wiki locally