다음을 통해 공유


DocumentLine 클래스

문서의 한 줄에 있는 콘텐츠를 나타내는 콘텐츠 줄 개체입니다.

상속
builtins.object
DocumentLine

생성자

DocumentLine(**kwargs: Any)

메서드

from_dict

DocumentLine 셰이프의 받아쓰기를 모델 자체로 변환합니다.

get_words

이 DocumentLine의 범위에서 찾은 단어를 가져옵니다.

to_dict

DocumentLine의 받아쓰기 표현을 반환합니다.

from_dict

DocumentLine 셰이프의 받아쓰기를 모델 자체로 변환합니다.

from_dict(data: Dict) -> DocumentLine

매개 변수

Name Description
data
필수

DocumentLine 셰이프의 사전입니다.

반환

형식 Description

DocumentLine

get_words

이 DocumentLine의 범위에서 찾은 단어를 가져옵니다.

get_words() -> Iterable[DocumentWord]

반환

형식 Description
<xref:iterable>[DocumentWord]

iterable[DocumentWord]

to_dict

DocumentLine의 받아쓰기 표현을 반환합니다.

to_dict() -> Dict

반환

형식 Description

dict

특성

content

포함된 요소의 연결된 콘텐츠를 읽기 순서로 연결합니다.

content: str

polygon

선의 경계 다각형입니다.

polygon: Sequence[Point]

spans

읽기 순서로 연결된 콘텐츠의 줄 위치입니다.

spans: List[DocumentSpan]