-
Notifications
You must be signed in to change notification settings - Fork 12
/
generate.py
99 lines (90 loc) · 2.72 KB
/
generate.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
# Generate plain notebooks with the required frontmatter defined
# Usage:
# $ python generate.py <notebook-names>... [-h]
#
# Generate plain notebooks with the required frontmatter defined.
#
# Positional arguments:
# notebook_names Notebooks to generate
#
# Options:
# -h, --help show this help message and exit
#
# Example:
# python generate.py {data-iterator,fastai-lr-finder,gradient-accumulation,installation}
import json
import os
from argparse import ArgumentParser
from datetime import datetime
today = datetime.now().strftime('%Y-%m-%d')
notebook = {
'nbformat': 4,
'nbformat_minor': 0,
'metadata': {
'kernelspec': {
'display_name': 'Python 3',
'name': 'python3',
},
'accelerator': 'GPU',
},
'cells': [
{
'cell_type': 'markdown',
'metadata': {},
'source': [
'<!-- ---\n',
'title: <required-title>\n',
f'date: {today}\n',
'downloads: true\n',
'weight: <required-weight> See: https://github.com/pytorch-ignite/examples/issues/30\n',
'summary: <use either this or the `<!--more-->` tag below to provide summary for this notebook, '
'and delete the other>\n'
'tags:\n',
' - <required-tag>\n',
'--- -->\n',
'\n',
'# title-placeholder\n',
'\n',
'<If you are not using the `summary` variable above, use this space to '
'provide a summary for this notebook.>\n',
'<Otherwise, delete the `<!--more-->` below.>',
'\n',
'<!--more-->',
]
}
]
}
if __name__ == '__main__':
cwd = os.getcwd()
parser = ArgumentParser(
'generate',
'$ python generate.py <notebook-names>... [-h]',
'Generate plain notebooks with the required frontmatter defined.'
)
parser.add_argument(
'notebook_names',
help='Notebooks to generate',
nargs='+',
)
args = parser.parse_args()
for name in args.notebook_names:
if not name.endswith('.ipynb'):
name = name + ".ipynb"
if os.path.isfile(name):
with open(name) as fp:
content = json.load(fp)
if len(content['cells']) > 0 and content['cells'][0] == notebook['cells'][0]:
print(f'Frontmatter cell already exists in {os.path.join(cwd, name)}. Exiting')
else:
for key, value in content.items():
if key != 'cells':
content[key] = notebook[key]
else:
content[key] = notebook[key] + content[key]
with open(name, mode='w') as f:
f.write(json.dumps(content, indent=2))
print(f'Added frontmatter to {os.path.join(cwd, name)}')
else:
with open(name, 'w') as fp:
json.dump(notebook, fp, indent=2)
print(f'Generated {os.path.join(cwd, name)}')