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
Have to use beatbox._beatbox.Client() to get a client.
beatbox._beatbox.Client()
Reproduced on Windows running Python 2.7.9, Ubuntu running Python 2.7.6, beatbox v32.1 on both, installed via pip.
>>> import beatbox >>> svc = beatbox.Client() Traceback (most recent call last): File "<pyshell#44>", line 1, in <module> svc = beatbox.Client() AttributeError: 'module' object has no attribute 'Client' >>> svc = beatbox._beatbox.Client() #This works >>>
The text was updated successfully, but these errors were encountered:
I assume you did a "pip install beatbox" that's an old unsupported fork.
Sorry, something went wrong.
No branches or pull requests
Have to use
beatbox._beatbox.Client()
to get a client.Reproduced on Windows running Python 2.7.9, Ubuntu running Python 2.7.6, beatbox v32.1 on both, installed via pip.
The text was updated successfully, but these errors were encountered: