1
0
mirror of https://codeberg.org/fediverse/fep.git synced 2026-08-05 11:46:04 +00:00
Files
fep/scripts/impl_count.py
T

15 lines
486 B
Python
Raw Normal View History

2025-09-21 20:18:39 +02:00
#!/usr/bin/env python
from tools import index
result = []
print("| Title | Status | Count |")
print("| ----- | ------ | ----- |")
for fep in index():
slug = fep.parsed_frontmatter["slug"]
status = fep.parsed_frontmatter["status"]
typ = fep.parsed_frontmatter.get("type") or "-"
if fep.implementations == 0:
continue
print(f"| [{fep.title}](https://codeberg.org/fediverse/fep/src/branch/main/fep/{slug}/fep-{slug}.md) | {status} | {fep.implementations} |")