我已经通过pip安装了textstat。 (并且我已经卸载并重新安装,但同样失败)。
C:\Anaconda>pip install textstat
Collecting textstat
Using cached textstat-0.3.1.tar.gz
Installing collected packages: textstat
Running setup.py install for textstat ... done
Successfully installed textstat-0.3.1
当我尝试从textstat运行任何功能时:ipython(和python)报告找不到模块。
您能提出解决问题的方法吗?
In [1]: from textstat import textstat
In [2]: print textstat.syllable_count("Here is some text. Here is some more.")
AttributeError Traceback (most recent call last)
<ipython-input-2-7ac2bb0cb31e> in <module>()
----> 1 print textstat.syllable_count("Here is some text. Here is some more.")
AttributeError: 'module' object has no attribute 'syllable_count'
另外,ipython报告该模块存在:
In [3]: ??textstat
Type: module
String form: <module 'textstat.textstat' from 'C:\Anaconda\lib\site-packages\textstat\textstat.pyc'>
File: c:\anaconda\lib\site-packages\textstat\textstat.py
Source:
from __future__ import print_function
import pkg_resources
import string
import re
import math
import operator
exclude = list(string.punctuation)
easy_word_set = set([ln.strip() for ln in pkg_resources.resource_stream('textstat', 'easy_words.txt')])
...
class textstatistics:
...
def syllable_count(self, text):
"""
Function to calculate syllable words in a text.
I/P - a text
O/P - number of syllable words
"""
...
最佳答案
看来textstat模块的结构不是很清楚。可以在syllable_count
中找到textstat.textstat.textstat.syllable_count
函数:
import textstat
textstat.textstat.textstat.syllable_count()
projects readme中的用法部分显示以下用法示例:
from textstat.textstat import textstat
if __name__ == '__main__':
test_data = """Playing games has always been thought to be etc.."""
print textstat.flesch_reading_ease(test_data)
print textstat.smog_index(test_data)
#etc
为什么?
textstat模块具有以下结构,解释了完整的
from textstat.textstat import textstat
:.
+-- textstat < from textstat #folder
+-- textstat.py < .textstat #file
=FILE CONTENTS=
class textstatistics:
def syllable_count
textstat = textstatistics() < import textstat #intialised object
关于python - python无法在已安装的textstat中找到模块,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/45239998/