mirror of
https://github.com/Unstructured-IO/unstructured.git
synced 2025-07-28 11:31:08 +00:00
11 lines
308 B
Python
11 lines
308 B
Python
![]() |
from docx.oxml.text.hyperlink import CT_Hyperlink
|
||
|
from docx.shared import Parented
|
||
|
from docx.text.paragraph import Paragraph
|
||
|
|
||
|
class Hyperlink(Parented):
|
||
|
_element: CT_Hyperlink
|
||
|
_r: CT_Hyperlink
|
||
|
text: str
|
||
|
url: str
|
||
|
def __init__(self, hyperlink: CT_Hyperlink, parent: Paragraph) -> None: ...
|