AlchemyAPI 的免费用户每天可以调用 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 界面检查我还剩下多少调用?
支票会算作一个请求吗?