-1
我這樣做:如何捲曲使用Python的捲曲替代
curl -d "text=great" http://text-processing.com/api/sentiment/
我怎樣才能做到同樣的事情在Python?
我這樣做:如何捲曲使用Python的捲曲替代
curl -d "text=great" http://text-processing.com/api/sentiment/
我怎樣才能做到同樣的事情在Python?
使用requests庫,你可以做somethng這樣的:
from requests import get
get("http://text-processing.com/api/sentiment/", data={"text": "great"})
我找到了一個解決方案使用的urllib
data = urllib.urlencode({"text":"great"})
u = urllib.urlopen("http://text-processing.com/api/sentiment/", data)
the_page = u.read()
print the_page
雖然我發現使用的解決方案內置的urllib package.Thanks :) –
你沒有指定任何額外的要求:)只是「如何」 –