This is my server.py:
import Pyro5.api
@Pyro5.api.expose
class GreetingMaker(object):
def __init__(self, name):
self.name = name
def get_fortune(self):
return "Hello, {0}.".format(self.name)
if __name__ == "__main__":
daemon = Pyro5.api.Daemon()
uri = daemon.register(GreetingMaker)
print("Ready. Object uri =", uri)
daemon.requestLoop()
Now my problem is, that I can't call the class using its constructor parameters. Is it possible what I'm trying to achieve?
Note: There is a similar question in stackoverflow but I didn't find a straight forward answer from there about what I am looking for.