home *** CD-ROM | disk | FTP | other *** search
- # Copyright 2001 (C) ActiveState Tool Corp., All Rights Reserved.
- #
- from soaplib import *
- from ppmerrors import *
-
-
- class soaptalk(ServerProxy):
- def __init__(self, uri, namespace='urn:/PyPMServer', transport=None):
- self.nms = namespace
- ServerProxy.__init__(self,uri)
- self.commands = ["fetch_summary",
- "_load_summary",
- "fetch_ppd",
- "packages",
- "search_ppds",
- ]
- for any in self.commands:
- self._defmethod(any , self.nms)
-
-