forked from erfanzar/eformer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgenerate_documents.py
135 lines (112 loc) · 3.81 KB
/
generate_documents.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
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
import json
import os
import re
import yaml
cache = {}
def unflatten_dict(xs, sep=None):
assert isinstance(xs, dict), f"input is not a dict; it is a {type(xs)}"
result = {}
for path, value in xs.items():
if sep is not None:
path = path.split(sep)
cursor = result
for key in path[:-1]:
if key not in cursor:
cursor[key] = {}
cursor = cursor[key]
cursor[path[-1]] = value
return result
def get_inner(path: str):
return [os.path.join(path, o) for o in os.listdir(path) if os.path.exists(os.path.join(path, o))]
def get_dirs(path: str):
return [os.path.join(path, o) for o in os.listdir(path) if
os.path.exists(os.path.join(path, o)) and os.path.isdir(os.path.join(path, o))]
def get_files(path: str):
return [os.path.join(path, o) for o in os.listdir(path) if
os.path.exists(os.path.join(path, o)) and not os.path.isdir(os.path.join(path, o))]
def run(project_locations="src/fjformer", docs_file="docs/", start_head="src/fjformer"):
global cache
for current_file in get_inner(docs_file):
if current_file.startswith("generated-"):
os.remove(os.path.join(docs_file, current_file))
try:
for current_file in get_inner(project_locations):
if not current_file.endswith(
"__init__.py"
) and not os.path.isdir(
current_file
) and current_file.endswith(
".py"
):
doted = (
start_head
.replace(os.path.sep, ".")
.replace("/", ".") + "."
)
name = (
current_file
.replace(".py", "")
.replace(os.path.sep, ".")
.replace("/", ".")
)
markdown_documentation = f"# {name.replace(doted, '')}\n::: {name}"
categorical_name = name.replace(doted, "")
markdown_filename = (
"generated-" + name
.replace(doted, "")
.replace(".", "-")
+ ".md"
)
with open(docs_file + markdown_filename, "w") as buffer:
buffer.write(markdown_documentation)
category_tuple = tuple(categorical_name.split("."))
edited_category_tuple = ()
for key in category_tuple:
key = key.split("_")
capitalized_words = [word.capitalize() for word in key if word != ""]
edited_category_tuple += (" ".join(capitalized_words),)
cache[edited_category_tuple] = markdown_filename
else:
run(current_file)
except NotADirectoryError:
...
def main():
global cache
run()
string_options = """
plugins:
- search
- mkdocstrings:
handlers:
python:
options:
docstring_style: sphinx
repo_url: https://github.com/erfanzar/FJFormer
site_author: Erfan Zare Chavoshi
site_name: FJFormer
copyright: Erfan Zare Chavoshi-FJFormer
theme:
highlightjs: true
hljs_languages:
- yaml
- python
name: material
"""
statics = {
("Home",): "index.md"
}
cache = cache | statics
pages = unflatten_dict(cache)
yaml_data = {
"nav": pages,
}
buff = open("mkdocs.yml", "w")
yaml.safe_dump(yaml_data, buff)
chk = open("mkdocs.yml", "r")
wrote = chk.read()
output_string = re.sub(r'(\n\s*)(\w[^:\n]*:)(.*?)(?=\n\s*\w[^:\n]*:|\Z)', r'\1- \2\3', str(wrote), flags=re.DOTALL)
buff = open("mkdocs.yml", "w")
buff.write(output_string)
buff.write(string_options)
if __name__ == "__main__":
main()