carkov/typehints/nltk.pyi

5 lines
131 B
Python
Raw Normal View History

2023-09-26 03:30:10 +02:00
from typing import Iterator
def sent_tokenize(sent: str) -> Iterator[str]: ...
def word_tokenize(word: str) -> Iterator[str]: ...