You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
awesome-cli-apps/cli2md.py

51 lines
1.2 KiB
Python

from yaml import load
summary = """
# Summary
To date, **{}** apps/tools covered, divided in **{}** categories; **8** related sites reviewed and listed.
# Index
{}
Some links to [related resources](#resources).
I'm always interested to new tools, so if you have any suggestion please drop me an email at `toolleeo@gmail.com`.
"""
def fmt_app(app):
descr = ''.join(c if c != '\n' else ' ' for c in app["description"])
return("#### [{}]({})\n\n{}\n".format(app["name"], app["url"], descr))
def print_apps(cats, apps):
for cat_item in cats:
category = cat_item["label"]
print('## <a name="{}"></a>{}\n'.format(category, cat_item["name"]))
for app in apps[category]:
print(fmt_app(app))
def fmt_cats(cats):
st = []
for cat_item in cats:
category = cat_item["label"]
st.append("* [{}](#{})\n".format(cat_item["name"], cat_item["label"]))
return ''.join(st)
def count_apps(apps):
tot = 0
for cat in apps:
tot += len(apps[cat])
return tot
with open('cli-apps.yaml', 'r') as yf:
data = load(yf)
# print(data)
apps = data["apps"]
cats = data["categories"]
print(summary.format(count_apps(apps), len(cats), fmt_cats(cats)))
print_apps(cats, apps)