卷曲我这样做:
curl -d "text=great" http://text-processing.com/api/sentiment/
我如何在python中做同样的事情?
答案 0 :(得分:1)
使用requests库可以执行以下操作:
from requests import get
get("http://text-processing.com/api/sentiment/", data={"text": "great"})
答案 1 :(得分:0)
我找到了一个使用urllib的解决方案
data = urllib.urlencode({"text":"great"})
u = urllib.urlopen("http://text-processing.com/api/sentiment/", data)
the_page = u.read()
print the_page