-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathjupyter_tool.py
executable file
·84 lines (67 loc) · 2.08 KB
/
jupyter_tool.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
#!/usr/bin/env python
from __future__ import print_function
import sys
import os
import signal
import argparse
import json
def set_tool(name, mode):
""" Set tool metadata. """
data = json.load(open(name))
if 'tool' in data['metadata']:
file_tool = data['metadata']['tool']
else:
file_tool = False
if mode is None:
return file_tool
if file_tool != mode:
data['metadata']['tool'] = mode
with open(name, 'w') as f:
json.dump(data, f)
return mode
def parse_cmd_line():
prog = "jupyter_tool.py"
parser = argparse.ArgumentParser(
usage="""usage: %(prog)s [-h] [-t] [name]
Set, unset or query tool-mode on a notebook. By default prints
current state, unless "-n" or "-t" flag is present.
positional arguments:
name Name of notebook.
optional arguments:
-h, --help show this help message and exit
-a Set notebook to autorun.
-n Set normal notebook mode.
-t Set tool mode (autorun, hide cells, hide Jupyter UI)
""",
prog=prog,
add_help=False)
parser.add_argument('-a', dest='autorun', action='store_true')
parser.add_argument('-t', dest='tool', action='store_true')
parser.add_argument('-n', dest='notebook', action='store_true')
parser.add_argument('-h', '--help', dest='help', action='store_true')
parser.add_argument('name', nargs='?')
return parser
if __name__ == "__main__":
if os.getuid() == 0:
print("Do not run this as root.", file=sys.stderr)
sys.exit(1)
parser = parse_cmd_line()
args = parser.parse_args()
if args.name is None or args.help or (args.notebook and args.tool):
parser.print_usage()
sys.exit(0)
tool_mode = None
if args.autorun:
tool_mode = 'a'
if args.tool:
tool_mode = True
if args.notebook:
tool_mode = False
mode = set_tool(args.name, tool_mode)
if mode is None:
mode = 'NORMAL'
if mode == 'a':
mode = 'AUTORUN'
if mode is True:
mode = 'TOOL'
print("notebook type is", mode)