#!/usr/bin/env python3importasabimportasab.zookeeper# Specify a default configurationasab.Config.add_defaults({"my:zk":{# specify "servers": "..." here to provide addresses of Zookeeper servers"path":"asab"},})classMyApplication(asab.Application):def__init__(self):super().__init__()# Loading the ASAB Zookeeper moduleself.add_module(asab.zookeeper.Module)# Locate the Zookeeper servicezksvc=self.get_service("asab.ZooKeeperService")# Create the Zookeeper containerself.ZkContainer=asab.zookeeper.ZooKeeperContainer(zksvc,'my:zk')# Subscribe to the event that indicated the successful connection to the Zookeeper server(s)self.PubSub.subscribe("ZooKeeperContainer.started!",self._on_zk_ready)asyncdef_on_zk_ready(self,event_name,zkcontainer):# If there is more than one ZooKeeper Container being initialized, this method is called at every Container initialization.# Then you need to check whether the specific ZK Container has been initialized.ifzkcontainer==self.ZkContainer:path=self.ZkContainer.ZooKeeperPath+"/hello"awaitself.ZkContainer.ZooKeeper.ensure_path(path)print("The path in Zookeeper has been created.")if__name__=='__main__':app=MyApplication()app.run()