我想像这样提供一个文本文件:
facefile = open("facebook.txt", "r")
进入IBM的Tone Analyzer
:
demo_text = facefile.read()
facefile.close()
toneanalysis = json.dumps(tone_analyzer.tone(text=demo_text))
tonefile = open("facetone.json", "w")
print >> tonefile, toneanalysis
tonefile.close()
但是,我的抓取数据(facefile)会加载到1.6 M
,该工具最多支持128 K
个文本。
如何将文本文件缩减到固定的字节数,这样我就可以遵守工具限制并保留数据库中的完整数据了?