Returns text of the combined documents
(self)
| 172 | self._text = "" |
| 173 | |
| 174 | def get_text(self): |
| 175 | """Returns text of the combined documents""" |
| 176 | if self._text is None: |
| 177 | self.update() |
| 178 | return self._text |
| 179 | |
| 180 | def md5(self): |
| 181 | """Returns md5 checksum of the combined documents""" |