PyGithub
v2.5.0
PyGitHub เป็นไลบรารี Python สำหรับเข้าถึง GitHub REST API ไลบรารีนี้ช่วยให้คุณสามารถจัดการทรัพยากร GitHub เช่น พื้นที่เก็บข้อมูล โปรไฟล์ผู้ใช้ และองค์กรในแอปพลิเคชัน Python ของคุณ
pip install PyGithub
from github import Github
# Authentication is defined via github.Auth
from github import Auth
# using an access token
auth = Auth . Token ( "access_token" )
# First create a Github instance:
# Public Web Github
g = Github ( auth = auth )
# Github Enterprise with custom hostname
g = Github ( base_url = "https://{hostname}/api/v3" , auth = auth )
# Then play with your Github objects:
for repo in g . get_user (). get_repos ():
print ( repo . name )
# To close connections after use
g . close ()
สามารถดูข้อมูลเพิ่มเติมได้จากไซต์เอกสารประกอบของ PyGitHub
การอภิปรายระยะยาวและรายงานข้อผิดพลาดจะได้รับการดูแลผ่าน GitHub Issues การตรวจสอบโค้ดเสร็จสิ้นผ่าน GitHub Pull Requests
สำหรับข้อมูลเพิ่มเติม โปรดอ่าน CONTRIBUTING.md
เรากำลังมองหาผู้ดูแลที่จะคัดเลือกปัญหา ดึงคำขอ และลดการเปิดตัว หากคุณทำงานในโครงการที่ใช้ประโยชน์จาก PyGitHub และมีความสนใจในการรักษาโค้ดให้คงอยู่และดี ให้ส่งอีเมลไปยังบุคคลอื่นในไฟล์ MAINTAINERS