| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364 |
- #!/usr/bin/env python3
- import subprocess
- import datetime
- from collections import defaultdict
- from pathlib import Path
- # Path to CONTRIBUTORS.md
- contributors_file = Path(__file__).parent / "CONTRIBUTORS.md"
- def run_git(command):
- """Run a git command and return the output as a list of lines."""
- result = subprocess.run(
- ["git"] + command, capture_output=True, text=True, check=True
- )
- return result.stdout.strip().split("\n")
- def get_contributors():
- """Extract contributors from git log."""
- log_lines = run_git(["log", "--format=%aN|%aE|%ad", "--date=short"])
- contributors = defaultdict(lambda: {"emails": set(), "first": None, "last": None, "count": 0})
- for line in log_lines:
- if "|" not in line:
- continue
- name, email, date = line.split("|")
- name, email = name.strip(), email.strip()
- info = contributors[name]
- info["emails"].add(email)
- info["count"] += 1
- if not info["first"] or date < info["first"]:
- info["first"] = date
- if not info["last"] or date > info["last"]:
- info["last"] = date
- return contributors
- def generate_table(contributors):
- """Generate markdown table."""
- header = [
- "# 🌍 Project Contributors",
- "",
- "This file lists all contributors automatically extracted from Git commit history.",
- "Do not edit manually — run `python scripts/update_contributors.py` to refresh.",
- "",
- "| Name | Email | Contributions | First Commit | Last Commit | Reference |",
- "|------|--------|----------------|---------------|--------------|-----------|",
- ]
- rows = []
- for name, info in sorted(contributors.items(), key=lambda x: x[0].lower()):
- emails = ", ".join(sorted(info["emails"]))
- # Default empty reference link
- reference = ""
- rows.append(f"| {name} | {emails} | {info['count']} commits | {info['first']} | {info['last']} | {reference} |")
- return "\n".join(header + rows) + "\n"
- def main():
- contributors = get_contributors()
- md = generate_table(contributors)
- contributors_file.write_text(md, encoding="utf-8")
- print(f"✅ Updated {contributors_file} with {len(contributors)} contributors.")
- if __name__ == "__main__":
- main()
|