#!/usr/bin/env python3 import sys import json import os from collections import defaultdict CURRENT_DIR = os.path.dirname(os.path.abspath(__file__)) PARENT_DIR = os.path.abspath(os.path.join(CURRENT_DIR, os.pardir)) if CURRENT_DIR not in sys.path: sys.path.append(CURRENT_DIR) if PARENT_DIR not in sys.path: sys.path.append(PARENT_DIR) from common import load_articles, write_result # noqa: E402 def main(): try: payload = json.load(sys.stdin) except Exception as exc: # noqa: BLE001 print(f"Failed to read JSON: {exc}", file=sys.stderr) sys.exit(1) content_dir = payload.get("contentDir") or "content" output_path = payload.get("outputPath") public_path = payload.get("publicPath") articles = load_articles(content_dir) counts = defaultdict(int) first = None last = None for article in articles: date = article.get("date") if not date: continue year = date.year counts[year] += 1 if not first or date < first: first = date if not last or date > last: last = date sorted_years = sorted(counts.keys()) labels = [str(y) for y in sorted_years] values = [counts[y] for y in sorted_years] try: from lib.render_stats_charts import render_articles_per_year, setup_rcparams except ImportError as exc: # noqa: BLE001 print(f"Failed to import renderer: {exc}", file=sys.stderr) sys.exit(1) setup_rcparams() render_articles_per_year({"labels": labels, "values": values, "title": "Articles par an"}, output_path) write_result( { "image": public_path, "meta": { "from": first.isoformat() if first else None, "to": last.isoformat() if last else None, "years": len(labels), }, } ) if __name__ == "__main__": main()