script to count cars in the readme

albatross
Adeeb Shihadeh 2021-03-30 14:01:58 -07:00
parent e181fd7f0a
commit 41a92b434f
1 changed files with 10 additions and 0 deletions

View File

@ -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))