-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
async support, update to latest nltk and stanza libs
- Loading branch information
Showing
3 changed files
with
19 additions
and
442 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,7 +5,7 @@ | |
|
||
setuptools.setup( | ||
name="stream2sentence", | ||
version="0.2.6", | ||
version="0.2.7", | ||
author="Kolja Beigel", | ||
author_email="[email protected]", | ||
description="Real-time processing and delivery of sentences from a continuous stream of characters or text chunks.", | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,5 @@ | ||
from .stream2sentence import generate_sentences, init_tokenizer | ||
from .stream2sentence import ( | ||
generate_sentences, | ||
generate_sentences_async, | ||
init_tokenizer, | ||
) |
Oops, something went wrong.