Git repository statistics and commit analysis
Project description
philiprehberger-git-analyzer
Git repository statistics and commit analysis.
Install
pip install philiprehberger-git-analyzer
Usage
from philiprehberger_git_analyzer import analyze
report = analyze(".")
print(f"Total commits: {report.total_commits}")
print(f"Contributors: {report.contributor_count}")
print(f"Most active file: {report.most_changed_file}")
print(f"Commits/week: {report.commits_per_week}")
# Per-author stats
for author in report.authors:
print(f"{author.name}: {author.commits} commits")
# File hotspots (most changed files)
for file in report.hotspots(limit=10):
print(f"{file.path}: {file.change_count} changes")
# Language breakdown
for ext, count in report.file_extensions.items():
print(f"{ext}: {count} files")
# Activity patterns
print(report.commits_by_hour) # {9: 42, 10: 38, ...}
print(report.commits_by_weekday) # {0: 120, 1: 115, ...} (0=Mon)
print(report.activity_heatmap()) # {weekday: {hour: count}}
API
analyze(repo_path, branch?, max_commits?) -> RepoReport
| Field | Description |
|---|---|
total_commits |
Total number of commits |
contributor_count |
Number of unique authors |
first_commit_date |
Date of earliest commit |
last_commit_date |
Date of latest commit |
commits_per_week |
Average commits per week |
most_changed_file |
File with most changes |
authors |
List of AuthorStats |
file_extensions |
Extension → file count |
commits_by_day |
Date → commit count |
commits_by_hour |
Hour → commit count |
commits_by_weekday |
Weekday → commit count |
hotspots(limit) |
Most frequently changed files |
activity_heatmap() |
Weekday × hour activity matrix |
License
MIT
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distributions
No source distribution files available for this release.See tutorial on generating distribution archives.
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file philiprehberger_git_analyzer-0.1.0-py3-none-any.whl.
File metadata
- Download URL: philiprehberger_git_analyzer-0.1.0-py3-none-any.whl
- Upload date:
- Size: 5.1 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.12.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
30d93d3ae0c9e82e7d105b78fa4067ecba004a921fbc503ee7683ab205f883f8
|
|
| MD5 |
8c6a4b3db1e9b4e1426a77e51cf1e0ec
|
|
| BLAKE2b-256 |
e4e95a7005beea87edc473b323ca869ddf9fe12ed8076e8201740b1145e86916
|