2013-12-10 77 views

回答

1

使用requests庫,你可以做somethng這樣的:

from requests import get 
get("http://text-processing.com/api/sentiment/", data={"text": "great"}) 
+1

雖然我發現使用的解決方案內置的urllib package.Thanks :) –

+0

你沒有指定任何額外的要求:)只是「如何」 –

0

我找到了一個解決方案使用的urllib

data = urllib.urlencode({"text":"great"}) 
u = urllib.urlopen("http://text-processing.com/api/sentiment/", data) 
the_page = u.read() 
print the_page