AlchemyAPI の無料ユーザーは、1 日 1000 件のリクエストを呼び出すことができます ( http://www.alchemyapi.com/products/pricing/ )。
私はそのようにPythonでAPIにアクセスしています:
from alchemyapi import AlchemyAPI
demo_text = 'Yesterday dumb Bob destroyed my fancy iPhone in beautiful Denver, Colorado. I guess I will have to head over to the Apple Store and buy a new one.'
response = alchemyapi.keywords('text', demo_text)
json_output = json.dumps(response, indent=4)
print json_output
リクエストはNoneを返すレスポンスだったので、私は電話を使い果たしたことを知っています。
Python インターフェイスを介して残っている呼び出しの数を確認するにはどうすればよいですか?
チェックは 1 回のリクエストとしてカウントされますか?