-
Notifications
You must be signed in to change notification settings - Fork 911
/
build_website.py
106 lines (77 loc) · 3.57 KB
/
build_website.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
import yaml
import os
def remove_github_com(s: str):
return s.replace("https://github.com/", "")
def remove_https(s: str):
s = s.replace("https://", "")
s = s.replace("http://", "")
return s.strip("/")
markdown_template = """
# {company_name}
<a href="{link}"><img src="https://icons.duckduckgo.com/ip3/{clean_link}.ico" alt="Avatar" width="30" height="30" /></a>
[![GitHub stars](https://img.shields.io/github/stars/{clean_gh_link}.svg?style=social&label=Star&maxAge=2592000)](https://GitHub.com/{clean_gh_link}/stargazers/) [![GitHub forks](https://img.shields.io/github/forks/{clean_gh_link}.svg?style=social&label=Fork&maxAge=2592000)](https://GitHub.com/{clean_gh_link}/network/) [![GitHub issues](https://img.shields.io/github/issues/{clean_gh_link}.svg)](https://GitHub.com/N{clean_gh_link}/issues/)
[![GitHub license](https://img.shields.io/github/license/{clean_gh_link}.svg)](https://github.com/{clean_gh_link}/blob/master/LICENSE) [![GitHub contributors](https://img.shields.io/github/contributors/{clean_gh_link}.svg)](https://GitHub.com/{clean_gh_link}/graphs/contributors/)
**Category**: {category}
**Github**: [{clean_gh_link}]({gh_link})
**Website**: [{clean_link}]({link})
**Description**:
{description}
**Alternative to**: {alts}
"""
SPECIAL_MAPPING = {
"ELT / ETL": "ETL",
"Robotic Process Automation (RPA)": "Robotic Process Automation",
"OPAL (Permit.io)": "OPAL",
}
appl = lambda x: SPECIAL_MAPPING[x] if x in SPECIAL_MAPPING else x
def get_all_companies():
arr = []
for filename in os.listdir("submissions"):
if filename.endswith(".yaml"):
with open(f"submissions/{filename}", "r", encoding="utf-8") as file:
obj = yaml.load(file, yaml.Loader)
obj["category"] = appl(obj["category"])
obj["company_name"] = appl(obj["company_name"])
arr.append(obj)
return arr
def get_all_categories(arr):
categories = set()
for obj in arr:
categories.add(obj["category"])
return categories
def create_website_directories(categories):
for category in categories:
if not os.path.exists(f"website/docs/{category}"):
os.mkdir(f"website/docs/{category}")
def generate_alternative_md(alts_names, alts_links):
alt_md = ""
for alt_link, alt_name in zip(alts_links, alts_names):
alt_md += f"[{alt_name}]({alt_link}), "
return alt_md.strip(", ")
def create_markdown_for_companies(companies):
for company in companies:
file_name = "-".join(company["company_name"].split(" "))
with open(
f"website/docs/{company['category']}/{file_name}.md", "w", encoding="utf-8"
) as file:
file.write(
markdown_template.format(
company_name=company["company_name"],
category=company["category"],
gh_link=company["gh_link"],
clean_gh_link=remove_github_com(company["gh_link"]),
link=company["link"],
clean_link=remove_https(company["link"]),
description=company["description"],
alts=generate_alternative_md(
company["alts_names"], company["alts_links"]
),
)
)
if __name__ == "__main__":
companies = get_all_companies()
categories = get_all_categories(companies)
# creating categories for the website in the docs folder
create_website_directories(categories)
# creating markdown files for the companies
create_markdown_for_companies(companies)