Plaintext parsed from the given PDF, given as a file path or a string.
(self, data, format=None)
| 3321 | class PDF(object): |
| 3322 | |
| 3323 | def __init__(self, data, format=None): |
| 3324 | """ Plaintext parsed from the given PDF, given as a file path or a string. |
| 3325 | """ |
| 3326 | self.content = self._parse(data, format) |
| 3327 | |
| 3328 | @property |
| 3329 | def string(self): |