#!/usr/bin/env python3 """ Sort a JSONL file of cleaned man pages alphabetically by "id". Usage: python sort_cleaned.py [input.jsonl] [output.jsonl] Defaults: input = cleaned_manuals.jsonl output = sorted_manuals.jsonl """ import json import sys def sort_cleaned(input_path: str, output_path: str): """Load records, sort by 'id', write sorted JSONL.""" print(f"Loading {input_path} ...", file=sys.stderr) records = [] with open(input_path, 'r', encoding='utf-8') as fin: for line_no, line in enumerate(fin, 1): line = line.strip() if not line: continue try: rec = json.loads(line) records.append(rec) except json.JSONDecodeError as e: print(f"Warning: bad JSON at line {line_no}: {e}", file=sys.stderr) if line_no % 10000 == 0: print(f" loaded {line_no} records...", file=sys.stderr) print(f"Loaded {len(records)} records. Sorting...", file=sys.stderr) # Alphabetical sort by the "id" field records.sort(key=lambda x: x.get("id", "")) print(f"Writing sorted records to {output_path} ...", file=sys.stderr) with open(output_path, 'w', encoding='utf-8') as fout: for rec in records: fout.write(json.dumps(rec, ensure_ascii=False) + '\n') print("Done.", file=sys.stderr) if __name__ == "__main__": # command‑line arguments or defaults input_file = sys.argv[1] if len(sys.argv) > 1 else "cleaned_manuals.jsonl" output_file = sys.argv[2] if len(sys.argv) > 2 else "sorted_manuals.jsonl" sort_cleaned(input_file, output_file)