Skip to content

Instantly share code, notes, and snippets.

View mkorpela's full-sized avatar

Mikko Korpela mkorpela

View GitHub Profile
@mkorpela
mkorpela / analysis.py
Last active October 1, 2024 11:41
Repository Activity Measure
# pip install gitpython numpy tqdm
import git
from collections import defaultdict
from datetime import timedelta
import numpy as np
import argparse
from tqdm import tqdm
def analyze_repo(repo_path, branch='main'):
repo = git.Repo(repo_path)