File: client.py

package info (click to toggle)
pyro5 5.16-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 2,124 kB
  • sloc: python: 14,328; makefile: 161; sh: 66; javascript: 62
file content (20 lines) | stat: -rw-r--r-- 599 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
from Pyro5.api import Proxy


class CustomHandshakeProxy(Proxy):
    def _pyroValidateHandshake(self, response):
        # this will get called if the connection is okay by the server
        print("Proxy received handshake response data: ", response)


uri = input("Enter the URI of the server object: ")
secret = input("Enter the secret code of the server (or make a mistake on purpose to see what happens): ")

with CustomHandshakeProxy(uri) as proxy:
    proxy._pyroHandshake = secret
    print("connecting...")
    proxy._pyroBind()
    proxy.ping()
    print("Connection ok!")

print("done.")