(cls, partname: PackURI, content_type: str, blob: bytes, package: Package)
| 83 | |
| 84 | @classmethod |
| 85 | def load(cls, partname: PackURI, content_type: str, blob: bytes, package: Package): |
| 86 | return cls(partname, content_type, blob, package) |
| 87 | |
| 88 | def load_rel(self, reltype: str, target: Part | str, rId: str, is_external: bool = False): |
| 89 | """Return newly added |_Relationship| instance of `reltype`. |
no outgoing calls