I’m using py.image.get() to get image bytes and I noticed that it works for the first 100 graphs or so and after that it stops working by returning a following error:
raise exceptions.PlotlyError(return_data[‘error’])
KeyError: ‘error’
Since this method is calling an API I assume the error is related to some kind of API limit. However, it is not the defined (50 per day or 30 per hour) API limit because the method works beyond this limit.
Is there any limit using py.image.get() method? If yes, what is the limit?
Thanks!