edsnlp.utils.blocs
Utility that extracts code blocs and runs them.
Largely inspired by https://github.com/koaning/mktestdocs
BLOCK_PATTERN = re.compile('((?P<skip><!-- no-check -->)\\s+)?(?P<indent> *)```(?P<title>.*?)\\n(?P<code>.+?)```', flags=re.DOTALL)
module-attribute
OUTPUT_PATTERN = '# Out: '
module-attribute
check_outputs(code)
Looks for output patterns, and modifies the bloc:
- The preceding line becomes
v = expr
- The output line becomes an
assert
statement
PARAMETER | DESCRIPTION |
---|---|
code |
Code block
TYPE:
|
RETURNS | DESCRIPTION |
---|---|
str
|
Modified code bloc with assert statements |
Source code in edsnlp/utils/blocs.py
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 |
|
remove_indentation(code, indent)
Remove indentation from a code bloc.
PARAMETER | DESCRIPTION |
---|---|
code |
Code bloc
TYPE:
|
indent |
Level of indentation
TYPE:
|
RETURNS | DESCRIPTION |
---|---|
str
|
Modified code bloc |
Source code in edsnlp/utils/blocs.py
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 |
|
grab_code_blocks(docstring, lang='python')
Given a docstring, grab all the markdown codeblocks found in docstring.
PARAMETER | DESCRIPTION |
---|---|
docstring |
Full text.
TYPE:
|
lang |
Language to execute, by default "python"
TYPE:
|
RETURNS | DESCRIPTION |
---|---|
List[str]
|
Extracted code blocks |
Source code in edsnlp/utils/blocs.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 127 128 129 |
|
printer(code)
Prints a code bloc with lines for easier debugging.
PARAMETER | DESCRIPTION |
---|---|
code |
Code bloc.
TYPE:
|
Source code in edsnlp/utils/blocs.py
132 133 134 135 136 137 138 139 140 141 142 143 144 145 |
|
check_docstring(obj, lang='')
Given a function, test the contents of the docstring.
Source code in edsnlp/utils/blocs.py
148 149 150 151 152 153 154 155 156 157 158 |
|
check_raw_string(raw, lang='python')
Given a raw string, test the contents.
Source code in edsnlp/utils/blocs.py
161 162 163 164 165 166 167 168 169 170 |
|
check_raw_file_full(raw, lang='python')
Source code in edsnlp/utils/blocs.py
173 174 175 176 177 178 179 |
|
check_md_file(path, memory=False)
Given a markdown file, parse the contents for Python code blocs and check that each independant bloc does not cause an error.
PARAMETER | DESCRIPTION |
---|---|
path |
Path to the markdown file to execute.
TYPE:
|
memory |
Whether to keep results from one bloc to the next, by default
TYPE:
|
Source code in edsnlp/utils/blocs.py
182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 |
|