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
According to http://rpyc.sourceforge.net/docs/secure-connection.html
And then, establishing a connection over SSH is a one-liner: conn = rpyc.ssh_connect(sshctx, 12345)
but rpyc.ssh_connect() does not exist. One must do from rpyc.utils.factory import ssh_connect to access ssh_connnect.
from rpyc.utils.factory import ssh_connect
The fix is simple, I'm working on a pull request right now. EDIT: the pull request is #53
[tangent] Thanks for all of your hard work. I love the new ssh integration. This is so much cleaner than what I used to do. Keep it up! [/tangent]
The text was updated successfully, but these errors were encountered:
3f53c2f
2a65f59
thanks very much robert (especially for your kind words :)
Sorry, something went wrong.
No branches or pull requests
According to http://rpyc.sourceforge.net/docs/secure-connection.html
but rpyc.ssh_connect() does not exist. One must do
from rpyc.utils.factory import ssh_connect
to access ssh_connnect.
The fix is simple, I'm working on a pull request right now.
EDIT: the pull request is #53
[tangent]
Thanks for all of your hard work. I love the new ssh integration. This is so much cleaner than what I used to do. Keep it up!
[/tangent]
The text was updated successfully, but these errors were encountered: