diff --git a/scripts/count_cars.py b/scripts/count_cars.py new file mode 100755 index 0000000000..14369e2e6b --- /dev/null +++ b/scripts/count_cars.py @@ -0,0 +1,10 @@ +#!/usr/bin/env python3 +import os +from common.basedir import BASEDIR + +with open(os.path.join(BASEDIR, "README.md")) as f: + lines = f.readlines() + cars = [l for l in lines if l.strip().startswith("|") and l.strip().endswith("|") and + "Make" not in l and any(c.isalpha() for c in l)] + print(''.join(cars)) + print(len(cars))