We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent de444fd commit d96aac7Copy full SHA for d96aac7
pythainlp/tag/__init__.py
@@ -21,11 +21,11 @@ def tag(text1):
21
from artagger import Tagger
22
except ImportError:
23
import pip
24
- pip.main(['install','https://github.com/franziz/artagger/archive/master.zip'])
+ pip.main(['install','https://github.com/wannaphongcom/artagger/archive/master.zip'])
25
try:
26
27
28
- print("Error ! using 'pip install https://github.com/franziz/artagger/archive/master.zip'")
+ print("Error ! using 'pip install https://github.com/wannaphongcom/artagger/archive/master.zip'")
29
sys.exit(0)
30
tagger = Tagger()
31
words = tagger.tag(' '.join(text1))
0 commit comments