본문 바로가기
Python

파이썬으로 깃 해쉬 코드 얻기

by 파이스탁 2022. 2. 4.

간혹 파이썬 코드 내에서 현재 git repository의 hash 코드를 얻어야 할 때가 있습니다. 이때 다음과 같이 subprocess 모듈을 사용할 수 있습니다. 

import subprocess

def get_hash():
    cmd = "git rev-parse HEAD"
    result = subprocess.run(cmd, shell=True, capture_output=True)
    hash = result.stdout.decode('utf-8').strip()
    return hash
    
git_hash = get_hash()
print(git_hash)

 

'Python' 카테고리의 다른 글

y4m 영상을 특정 크기의 YUV로 변환하기  (0) 2022.02.25
주피터 노트북 여러 줄 출력  (0) 2021.02.03
JuypterLab 실행 방법  (0) 2021.02.03