Python Q:Amazon API/瓶鼻/MaxQPS

Python Q:Amazon API/瓶鼻/MaxQPS,python,amazon-web-services,amazon,amazon-product-api,bottlenose,Python,Amazon Web Services,Amazon,Amazon Product Api,Bottlenose,我正在使用访问Amazon产品API。 正如作者所建议的,我正在使用MaxQPS=0.9限制请求 这似乎没有效果。在一些请求之后,我仍然收到503个错误。当更改为MaxQPS=0.1时(应该可以确定),根本没有任何更改 我的台词看起来像: amazon = bottlenose.Amazon( amazon_access_key, amazon_secret_key, amazon_assoc_key, Region=amazon_region_id, M

我正在使用访问Amazon产品API。 正如作者所建议的,我正在使用MaxQPS=0.9限制请求

这似乎没有效果。在一些请求之后,我仍然收到503个错误。当更改为
MaxQPS=0.1
时(应该可以确定),根本没有任何更改

我的台词看起来像:

amazon = bottlenose.Amazon(
    amazon_access_key,
    amazon_secret_key,
    amazon_assoc_key,
    Region=amazon_region_id,
    MaxQPS=0.9
)
response = amazon.ItemSearch( .... blah ...)
有人有线索吗