Office Word Handler API¶
auris_tools.officeWordHandler ¶
OfficeWordHandler ¶
Handler for DOCX operations including text extraction and manipulation.
This class provides methods to interact with Microsoft Word documents (DOCX) stored in S3, including reading, extracting text, and text replacement operations.
Source code in auris_tools/officeWordHandler.py
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 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 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 | |
__init__ ¶
Initialize the Office Word handler with AWS configuration.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
config |
An AWSConfiguration object, or None to use environment variables |
None
|
Source code in auris_tools/officeWordHandler.py
clean_text ¶
Clean extracted text from a DOCX file.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
text |
Text to clean |
required |
Returns:
| Name | Type | Description |
|---|---|---|
str |
Cleaned text |
Source code in auris_tools/officeWordHandler.py
collect_all_paragraphs ¶
Collect all paragraphs from a Document object.
This method collects paragraphs from the main document body, tables, headers, and footers.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
document |
Document
|
The Document object |
required |
Returns:
| Type | Description |
|---|---|
List[Paragraph]
|
List[Paragraph]: List of all paragraphs in the document |
Source code in auris_tools/officeWordHandler.py
get_text_from_bytes ¶
Extract text from a DOCX file bytes.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
bytes_data |
The document bytes |
required |
Returns:
| Name | Type | Description |
|---|---|---|
str |
Extracted text from the document |
Raises:
| Type | Description |
|---|---|
ValueError
|
If there is an error extracting the text |
Source code in auris_tools/officeWordHandler.py
read_from_s3 ¶
Read a DOCX file from S3 and return its bytes.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
bucket_name |
Name of the S3 bucket containing the document |
required | |
object_name |
Object key of the document in the S3 bucket |
required | |
as_bytes_io |
If True, return a BytesIO object instead of raw bytes |
False
|
Returns:
| Type | Description |
|---|---|
|
bytes or BytesIO: The document content |
Raises:
| Type | Description |
|---|---|
Exception
|
If there is an error retrieving the document |
Source code in auris_tools/officeWordHandler.py
replace_placeholder_by_text ¶
replace_placeholder_by_text(paragraphs: List[Paragraph], document: Document, placeholder: str, replacement: str, max_count: Optional[int] = None) -> int
Replace placeholder text with replacement in document's XML w:t nodes.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
paragraphs |
List[Paragraph]
|
List of paragraphs to process |
required |
document |
Document
|
Document object |
required |
placeholder |
str
|
Text to find and replace |
required |
replacement |
str
|
Text to insert instead of placeholder |
required |
max_count |
Optional[int]
|
Maximum number of replacements, or None for unlimited |
None
|
Returns:
| Name | Type | Description |
|---|---|---|
int |
int
|
Number of replacements made |
Note
This method works at the XML level to ensure proper formatting is preserved.
Source code in auris_tools/officeWordHandler.py
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 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 | |
upload_docx ¶
Upload a DOCX document to S3.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
docx_document |
The Document object to upload |
required | |
bucket_name |
Name of the S3 bucket |
required | |
object_name |
Object key for the document in S3 |
required |
Returns:
| Name | Type | Description |
|---|---|---|
bool |
True if upload was successful, False otherwise |
Raises:
| Type | Description |
|---|---|
Exception
|
If there is an error uploading the document |