惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

阮一峰的网络日志
阮一峰的网络日志
博客园_首页
H
Help Net Security
博客园 - Franky
V
Visual Studio Blog
Jina AI
Jina AI
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
V
V2EX
宝玉的分享
宝玉的分享
酷 壳 – CoolShell
酷 壳 – CoolShell
J
Java Code Geeks
L
LangChain Blog
腾讯CDC
Engineering at Meta
Engineering at Meta
D
DataBreaches.Net
爱范儿
爱范儿
Google DeepMind News
Google DeepMind News
C
Check Point Blog
博客园 - 聂微东
罗磊的独立博客
量子位
M
MIT News - Artificial intelligence
F
Fortinet All Blogs

运维开发绿皮书

OBS虚拟摄像头重命名 Ubuntu备份为LiveOS 使用Powershell卸载windows默认程序 Cisco路由器OSPF配置 汽车的分类和特点 Windows11跳过TPM2.0 HTTPS 双向认证与 USB 加密锁配置实战 SSL 证书工具 字数统计 BMI 计算 颜色转换 Hash 生成器 JSON 格式化 JWT 解码 房贷计算 时间戳转换 URL 编码 UUID 生成 牛马时钟 二维码批量生成器 CKS Simulator Kubernetes 1.25 FRP TOTP验证码生成器 direct-ssh-passthrough-nat 脚本使用说明 Python软件授权 Linux命令行百度网盘 为 Containerd 配置 Harbor 无证书镜像站 Docker一键部署Meta和MetacubexD面板 必应搜索屏蔽垃圾网站 VMware的ubuntu完整安装vm-tools支持粘贴板
GitLab统计提交代码行数Python代码
Paper-Dragon · 2024-11-01 · via 运维开发绿皮书

GitLab统计提交代码行数Python代码

要求统计GitLab所有项目的任何人提交代码行数

代码逻辑

  • 获取仓库列表
  • 克隆仓库
  • 在本地统计

代码如下

# http://gitlabr.cidana.com/
import os
from git import Repo
import requests
import subprocess

GITLAB_URL = 'http://gitlabr.c4a.com/'
GITLAB_TOKEN = 'hboA_yaibr3b2WwFahaQ'
GITLAB_CLONE_METHOD = 'ssh_url_to_repo'  # http_url_to_repo ssh_url_to_repo
ssh_private_key = "./id_rsa"
merge_dict = {}


def get_gitlab_repositories():
    url = f'{GITLAB_URL}/api/v4/projects?per_page=5'
    headers = {
        'Authorization': f'Bearer {GITLAB_TOKEN}',
    }
    response = requests.get(url, headers=headers)
    response.raise_for_status()
    repositories = []
    for i in response.json():
        repositories.append(i[GITLAB_CLONE_METHOD])
    return repositories


def clone_repository(clone_url):
    env = os.environ.copy()
    env['PKEY'] = GITLAB_CLONE_METHOD
    subprocess.run(['git', 'clone', '--no-checkout', clone_url], env=env)


def walk_dir():
    # 获取当前目录下的所有Git仓库
    repo_dirs = []
    for d in os.listdir('.'):
        if os.path.isdir(d) and '.git' in os.listdir(d):
            repo_dirs.append(d)
    return repo_dirs


def get_commit_lines(repo_path):
    repo = Repo(repo_path)
    commits = list(repo.iter_commits())
    last_commit = commits[-1]
    total_lines_added = last_commit.stats.total['lines']
    return total_lines_added


def get_all_committers(repo_path):
    repo = Repo(repo_path)
    committers = set()
    for commit in repo.iter_commits():
        committers.add(commit.author.name)
    return committers


def count_lines_per_committer(repo_path):
    repo = Repo(repo_path)
    committers = get_all_committers(repo_path)
    lines_per_committer = {}
    for committer in committers:
        total_lines = 0
        for commit in repo.iter_commits():
            if commit.author.name == committer:
                total_lines += commit.stats.total['lines']
        lines_per_committer[committer] = total_lines
        if committer in merge_dict:
            merge_dict[committer] = merge_dict[committer] + total_lines
        else:
            merge_dict[committer] = total_lines
    return lines_per_committer


def calc(repo_path):
    lines_per_committer = count_lines_per_committer(repo_path)
    return lines_per_committer


def main():
    for i in walk_dir():
        print(i)
        print(calc(i))
    print(dict(sorted(merge_dict.items(), key=lambda item: item[1], reverse=True)))
    # repositories = get_gitlab_repositories()
    # for repository in repositories:
    #     clone_repository(repository)


if __name__ == '__main__':
    main()

更新日志

  • 33ada-optimize
  • 75477-Gitlab统计提交代码行数Python代码