-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathgenerate_mds.py
108 lines (81 loc) · 3.35 KB
/
generate_mds.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
import os
notebooks = os.listdir('notebooks')
notebooks = [notebook for notebook in notebooks if '.ipynb' in notebook[-6:]]
def gen_md_content(notebook):
file_str = '''---
title: ""
permalink: /%s/
sidebar:
nav: "lMenu"
---
Download as a jupyter [ipynb notebook](https://datascience-intro.github.io/1MS041-2024/notebooks/%s.ipynb) or view it as [html](https://datascience-intro.github.io/1MS041-2024/notebooks/%s.html).
<iframe src="https://datascience-intro.github.io/1MS041-2024/notebooks/%s.html" width="1080" height="1080" frameborder="0"></iframe>
''' % (notebook,notebook,notebook,notebook)
return notebook,file_str
for i in notebooks:
name,content = gen_md_content(i[:-6])
print("Creating md for: %s" % name)
with open('%s.md' % name, mode='w') as f:
f.write(content)
preamble = '''---
## Introduction to Data Science 1MS041
You can download the Lecture notes [here](https://datascience-intro.github.io/1MS041-2024/Files/LectureNotes1MS041.pdf).
Precision Recall survey [here](https://datascience-intro.github.io/1MS041-2024/Files/AveragePrecision.pdf)
### Introductory Jupyter .ipynb Notebooks
These notebooks contain the basic theory of how to work with python and BASH, that will be needed in this course.
'''
midamble = '''
### Individual Jupyter .ipynb lecture Notebooks
These notebooks are numbered according to which lecture they coincide with and will be updated after the lectures. Before the lecture they can be considered preliminary.
'''
probssamble = '''
### Problem Solving Sessions
These notebooks are numbered according to which problem solving session they coincide with.
'''
postamble = '''
### Starting package
* Download the [Starting package](Files/first_lecture_and_data.zip)
* Unzip this into a folder that you will use as the base folder
* Whenever you download the next lectures as `ipynb` files, you put them in the same place as `*.ipynb`, this way all pathways will be the same for all of us.
### Assignment notebooks (Will be empty until it is time)
'''
appendix = [notebook for notebook in notebooks if (notebook[0] == 'A' and notebook[1]!='s')]
appendix = sorted(appendix)
assignments = [notebook for notebook in notebooks if notebook[:3] == 'Ass']
assignments = sorted(assignments)
assignments_string = ""
for notebook in assignments:
name = notebook[:-6]
number = str(notebook[-7])
assignments_string+="%s. [%s](%s.md)\n" % (number,name,name)
appendices_string = ""
for notebook in appendix:
name = notebook[:-6]
number = notebook[:3]
appendices_string+="%s. [%s](%s.md)\n" % (number,name,name)
no_appendix = [notebook for notebook in notebooks if notebook[0] != 'A']
no_appendix = sorted(no_appendix)
notebooks_string = ""
notebooks_string_probss = ""
for notebook in no_appendix:
if ("ProbSS" in notebook):
continue
name = notebook[:-6]
number = notebook[:2]
notebooks_string+="%s. [%s](%s.md)\n" % (number,name,name)
for notebook in no_appendix:
if ("ProbSS" not in notebook):
continue
name = notebook[:-6]
number = notebook[:2]
notebooks_string_probss+="%s. [%s](%s.md)\n" % (number,name,name)
print("Creating index.md using", appendix, no_appendix)
with open('index.md',mode='w') as f:
f.write(preamble
+appendices_string
+midamble
+notebooks_string
+probssamble
+notebooks_string_probss
+postamble
+assignments_string)