Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for most_common (0.04 sec)

  1. scripts/people.py

        authors: dict[str, Author],
        skip_users: Container[str],
        min_count: int = 2,
    ) -> list[dict[str, Any]]:
        users: list[dict[str, Any]] = []
        for commenter, count in counter.most_common(50):
            if commenter in skip_users:
                continue
            if count >= min_count:
                author = authors[commenter]
                users.append(
                    {
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Wed Dec 17 21:25:59 UTC 2025
    - 12.3K bytes
    - Viewed (0)
Back to top