Skip to main content

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


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

philiprehberger_git_analyzer-0.1.1.tar.gz (4.6 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

philiprehberger_git_analyzer-0.1.1-py3-none-any.whl (5.2 kB view details)

Uploaded Python 3

File details

Details for the file philiprehberger_git_analyzer-0.1.1.tar.gz.

File metadata

File hashes

Hashes for philiprehberger_git_analyzer-0.1.1.tar.gz
Algorithm Hash digest
SHA256 c2c7e515d89bcc1eb27ba913f998f0417eaaac86835fd73135e9bde9121c4dcf
MD5 edb1ecdfb9454570f52498b8d9b74cd6
BLAKE2b-256 4c4a910b84e992c114468fb82720877a7b46da064debfad3c4f44adfc91f71b2

See more details on using hashes here.

File details

Details for the file philiprehberger_git_analyzer-0.1.1-py3-none-any.whl.

File metadata

File hashes

Hashes for philiprehberger_git_analyzer-0.1.1-py3-none-any.whl
Algorithm Hash digest
SHA256 7b3f44c945cbbd5537623a8e7c1f9deea6f3487ea0741cf2a519fba4fe15112a
MD5 b1a5ba3b1131aff0aeb6cf06825e0741
BLAKE2b-256 b130123b30a1e82ba71649b3537d690ce7ebc4565b4d25425c6e3c82fe8c4bbb

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page