Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ dependencies = [

# CUSTOM DEPENDENCIES START
"langid",
"jieba",
"jieba-next",
"python-pinyin",
"pyxdg",
"stopwordsiso",
Expand Down
2 changes: 1 addition & 1 deletion src/sphinxnotes/snippet/keyword.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ def __init__(self):
# Import NLP libs here to prevent import overhead
import logging
from langid import rank
from jieba import cut_for_search, setLogLevel
from jieba_next import cut_for_search, setLogLevel
from pypinyin import lazy_pinyin
from stopwordsiso import stopwords
from wordsegment import load, segment
Expand Down