We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The MusicBrainz server requires clients to send not more than one request per second: http://musicbrainz.org/doc/Development/XML_Web_Service/Version_2#Limiting_Connections_to_the_MusicBrainz_Web_Service
This can be done easily by the user with sleep(), but it would be even better if this library could do it transparently as done in python-musicbrainzngs: http://python-musicbrainzngs.readthedocs.org/en/latest/api/#musicbrainzngs.set_rate_limit
sleep()
The text was updated successfully, but these errors were encountered:
@JonnyJD That's a good idea. I just pushed v0.2.2 with the sleep(1) in it. I'll look at making this more transparent in the next release.
sleep(1)
Sorry, something went wrong.
No branches or pull requests
The MusicBrainz server requires clients to send not more than one request per second:
http://musicbrainz.org/doc/Development/XML_Web_Service/Version_2#Limiting_Connections_to_the_MusicBrainz_Web_Service
This can be done easily by the user with
sleep()
, but it would be even better if this library could do it transparently as done in python-musicbrainzngs:http://python-musicbrainzngs.readthedocs.org/en/latest/api/#musicbrainzngs.set_rate_limit
The text was updated successfully, but these errors were encountered: