ホームページ  >  記事  >  バックエンド開発  >  Python を使用して Github リポジトリ データを取得する方法

Python を使用して Github リポジトリ データを取得する方法

Patricia Arquette
Patricia Arquetteオリジナル
2024-09-29 06:12:30190ブラウズ

How to retrieve Github Repository Data using Python

あなたの組織には (非常に) 多くの github リポジトリがあり、レポート、ダッシュボード、または監査の目的でそれぞれの内容を要約して記録する簡単な方法が必要ですか?ここに、Github API を使用してまさにそのことを行うための簡単なスクリプトを示します。

機能:

  1. get_repo_info(所有者、リポジトリ):

    • GitHub リポジトリ所有者のユーザー名 (owner) とリポジトリ名 (repo) を取得します。
    • GitHub の API にリクエストを送信してリポジトリ情報を取得します。
    • 成功した場合はリポジトリの情報を JSON オブジェクトとして返し、エラーがあった場合は None を返します。
  2. get_collaborators(collaborators_url):

    • リポジトリのコラボレーターのリストへの URL を取得します。
    • コラボレーターのリストを取得するリクエストを送信します。
    • コラボレーターのユーザー名のリストを返します。エラーが発生した場合は空のリストを返します。
  3. get_langages(langages_url):

    • リポジトリの言語データへの URL を取得します。
    • リポジトリで使用されているプログラミング言語を取得するリクエストを送信します。
    • 言語のリストを返します。エラーがある場合は空のリストを返します。
  4. get_open_issues(所有者、リポジトリ):

    • リポジトリ所有者のユーザー名 (owner) とリポジトリ名 (repo) を取得します。
    • リポジトリ内の未解決の問題のリストを取得するリクエストを送信します。
    • 未解決の問題を JSON 形式で返します。問題がある場合はエラー メッセージを出力します。
  5. get_repo_data(repo_url):

    • リポジトリ URL を取得し、それを解析して所有者とリポジトリの値を取得し、他の関数を呼び出してリポジトリに関するさまざまな情報を収集します。
    • 名前、所有者、可視性、コラボレーター、言語、未解決の問題、最後のアクティビティなどのリポジトリ情報をコンパイルし、構造化された形式 (辞書) で返します。
import json
import requests
from pymongo import MongoClient

# MongoDB setup (replace with your actual connection details)
client = MongoClient("mongodb://localhost:27017/")
db = client["github_repos"]  # Database name
collection = db["repos"]     # Collection name

def get_repo_info(owner, repo):
    url = f"https://api.github.com/repos/{owner}/{repo}"
    headers = {"Accept": "application/vnd.github+json"}
    response = requests.get(url, headers=headers)
    if response.status_code == 200:
        return response.json()
    else:
        print(f"Error: {response.status_code}")
        return None

def get_collaborators(collaborators_url):
    response = requests.get(collaborators_url)
    if response.status_code == 200:
        return [collaborator["login"] for collaborator in response.json()]
    else:
        return []

def get_languages(languages_url):
    response = requests.get(languages_url)
    if response.status_code == 200:
        return list(response.json().keys())
    else:
        return []

def get_open_issues(owner, repo):
    url = f"https://api.github.com/repos/{owner}/{repo}/issues?state=open"
    headers = {"Accept": "application/vnd.github+json"}
    response = requests.get(url, headers=headers)
    if response.status_code == 200:
        return response.json()
    else:
        print(f"Error: {response.status_code}")
        return []

def get_repo_data(repo_url):
    owner, repo = repo_url.split("/")[-2:]
    repo_info = get_repo_info(owner, repo)

    if repo_info:
        data = {
            "Github URL": repo_url,
            "Project name": repo_info["name"],
            "Project owner": repo_info["owner"]["login"],
            "List users with access": get_collaborators(repo_info["collaborators_url"].split("{")[0]),  # remove template part of URL
            "Programming languages used": get_languages(repo_info["languages_url"]),
            "Security/visibility level": repo_info["visibility"],
            "Summary": repo_info["description"],
            "Last maintained": repo_info["pushed_at"],
            "Last release": repo_info["default_branch"],
            "Open issues": get_open_issues(owner, repo),
        }

        # Insert the data into MongoDB
        collection.insert_one(data)
        print("Data inserted into MongoDB successfully.")

        return data
    else:
        return None

# Example usage
repo_url = "https://github.com/URL"
repo_data = get_repo_data(repo_url)

if repo_data:
    print(json.dumps(repo_data, indent=4))

以上がPython を使用して Github リポジトリ データを取得する方法の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。

声明:
この記事の内容はネチズンが自主的に寄稿したものであり、著作権は原著者に帰属します。このサイトは、それに相当する法的責任を負いません。盗作または侵害の疑いのあるコンテンツを見つけた場合は、admin@php.cn までご連絡ください。