1. profiling 사용

  2.5 버전부터 default 포함인 cProfile를 사용하여 각 function 호출수 및 시간을 볼수 있음.

 

  python -s -m cProfile test.py   

 

2. python 코드 disassembling

 

  import dis

 

  def test():

     return "test"

 

  dis.dis(test)

 

3. memory 사용량 확인

  pip install memory_profiler

 

  python -m memory_profiler test.py

 

 

'Language > python' 카테고리의 다른 글

python 데이터 분석툴  (0) 2019.06.21
grpc with python  (0) 2019.05.09
timestamp and timezone  (0) 2019.03.29
유용한 python 라이브러리  (0) 2019.03.29
library 패스 지정  (0) 2019.03.29

+ Recent posts