Docstring walker
Init file.
DocstringWalker #
Bases: BaseReader
A loader for docstring extraction and building structured documents from them. Recursively walks a directory and extracts docstrings from each Python module - starting from the module itself, then classes, then functions. Builds a graph of dependencies between the extracted docstrings.
Source code in llama-index-integrations/readers/llama-index-readers-docstring-walker/llama_index/readers/docstring_walker/base.py
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 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 |
|
load_data #
load_data(code_dir: str, skip_initpy: bool = True, fail_on_malformed_files: bool = False) -> List[Document]
Load data from the specified code directory. Additionally, after loading the data, build a dependency graph between the loaded documents. The graph is stored as an attribute of the class.
Parameters#
code_dir : str The directory path to the code files. skip_initpy : bool Whether to skip the init.py files. Defaults to True. fail_on_malformed_files : bool Whether to fail on malformed files. Defaults to False - in this case, the malformed files are skipped and a warning is logged.
Returns:#
List[Document] A list of loaded documents.
Source code in llama-index-integrations/readers/llama-index-readers-docstring-walker/llama_index/readers/docstring_walker/base.py
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 |
|
process_directory #
process_directory(code_dir: str, skip_initpy: bool = True, fail_on_malformed_files: bool = False) -> List[Document]
Process a directory and extract information from Python files. Parameters
code_dir : str The directory path to the code files. skip_initpy : bool Whether to skip the init.py files. Defaults to True. fail_on_malformed_files : bool Whether to fail on malformed files. Defaults to False - in this case, the malformed files are skipped and a warning is logged.
Returns:#
List[Document] A list of Document objects.
Source code in llama-index-integrations/readers/llama-index-readers-docstring-walker/llama_index/readers/docstring_walker/base.py
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 |
|
read_module_text #
read_module_text(path: str) -> str
Read the text of a Python module. For tests this function can be mocked.
Parameters#
path : str Path to the module.
Returns:#
str The text of the module.
Source code in llama-index-integrations/readers/llama-index-readers-docstring-walker/llama_index/readers/docstring_walker/base.py
97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 |
|
parse_module #
parse_module(module_name: str, path: str) -> Document
Function for parsing a single Python module.
Parameters#
module_name : str A module name. path : str Path to the module.
Returns:#
Document A LLama Index Document object with extracted information from the module.
Source code in llama-index-integrations/readers/llama-index-readers-docstring-walker/llama_index/readers/docstring_walker/base.py
113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 |
|
process_class #
process_class(class_node: ClassDef, parent_node: str)
Process a class node in the AST and add relevant information to the graph.
Parameters:#
class_node : ast.ClassDef The class node to process. It represents a class definition in the abstract syntax tree (AST). parent_node : str The name of the parent node. It specifies the name of the parent node in the graph.
Returns:#
str A string representation of the processed class node and its sub-elements. It provides a textual representation of the processed class node and its sub-elements.
Source code in llama-index-integrations/readers/llama-index-readers-docstring-walker/llama_index/readers/docstring_walker/base.py
140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 |
|
process_function #
process_function(func_node: FunctionDef, parent_node: str) -> str
Process a function node in the AST and add it to the graph. Build node text.
Parameters#
func_node : ast.FunctionDef The function node to process. parent_node : str The name of the parent node.
Returns:#
str A string representation of the processed function node with its sub-elements.
Source code in llama-index-integrations/readers/llama-index-readers-docstring-walker/llama_index/readers/docstring_walker/base.py
168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 |
|
process_elem #
process_elem(elem, parent_node: str) -> str
Process an element in the abstract syntax tree (AST).
This is a generic function that delegates the execution to more specific functions based on the type of the element.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
elem
|
AST
|
The element to process. |
required |
parent_node
|
str
|
The parent node in the graph. |
required |
graph
|
Graph
|
The graph to update. |
required |
Returns:
Name | Type | Description |
---|---|---|
str |
str
|
The result of processing the element. |
Source code in llama-index-integrations/readers/llama-index-readers-docstring-walker/llama_index/readers/docstring_walker/base.py
194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 |
|