nbautoexport.export
¶
CopyToSubfolderPostProcessor
¶
Bases: PostProcessorBase
Source code in /home/runner/work/nbautoexport/nbautoexport/nbautoexport/export.py
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 |
|
postprocess(input)
¶
Save converted file to a separate directory, removing cell numbers.
Source code in /home/runner/work/nbautoexport/nbautoexport/nbautoexport/export.py
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 |
|
export_notebook(notebook_path, config)
¶
Export a given notebook file given configuration.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
notebook_path |
Path
|
path to notebook to export with nbconvert |
required |
config |
NbAutoexportConfig
|
configuration |
required |
Source code in /home/runner/work/nbautoexport/nbautoexport/nbautoexport/export.py
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 |
|
post_save(model, os_path, contents_manager)
¶
Post-save hook for converting notebooks to other formats using Jupyter nbconvert and saving in a subfolder.
The following arguments are standard for Jupyter post-save hooks. See Jupyter Documentation.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
model |
dict
|
the model representing the file. See Jupyter documentation. |
required |
os_path |
str
|
the filesystem path to the file just written |
required |
contents_manager |
FileContentsManager
|
FileContentsManager instance that hook is bound to |
required |
Source code in /home/runner/work/nbautoexport/nbautoexport/nbautoexport/export.py
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 |
|