728x90
반응형
PyGithub는 Github API를 Python에서 쉽게 호출하여 사용할 수 있게 만든 모듈이다.
설치는 $ pip install PyGithub로 간단하게 설치가 가능하다.
Example
Github API 사용을 위한 token을 생성하는 방법은 github 사이트에 접속해서 settings에 들어가면 아래와 같은 메뉴에서 진행하면된다.
다음은 private 저장소를 특정 조직에 생성하는 예제이다.
#!/usr/bin/python
from github import Github
git = Github('chbae', 'token key 입력')
org = git.get_organization('조직 입력')
org.create_repo('저장소 이름', private=True)
for repo in org.get_repos():
print repo.name
Reference
반응형
'Development' 카테고리의 다른 글
repo를 이용한 저장소 fork (gerrit) (0) | 2023.04.21 |
---|---|
Docker에서 ssh daemon 실행하여 접근하기 (0) | 2023.04.21 |
MAC에서 __git_ps1 적용하기 (prompt에 branch 이름 나오도록) (0) | 2023.04.20 |
Automotive Linux Summit (ALS) 2017 참석 후기 (0) | 2023.04.20 |
AGL (Automotive Grade Linux)와 GENIVI 간단한 소개 및 Contribution하는 방법 (0) | 2023.04.20 |