X-Git-Url: https://osm.etsi.org/gitweb/?a=blobdiff_plain;f=osmclient%2Fsol005%2Fns.py;h=387bcd573bbf89c1f6a74504d7bd2b8d1d3a64a7;hb=5b342f49c7a37323a79b11e51e745c5a1a8f2439;hp=58be4e478abc9b91a75b0cf0efa6e8cb454f7123;hpb=c93a8268481243eefb9eed58c4e36cf89567a06f;p=osm%2Fosmclient.git diff --git a/osmclient/sol005/ns.py b/osmclient/sol005/ns.py index 58be4e4..387bcd5 100644 --- a/osmclient/sol005/ns.py +++ b/osmclient/sol005/ns.py @@ -168,7 +168,7 @@ class Ns(object): if not resp or 'id' not in resp: raise ClientException('unexpected response from server - {} '.format( resp)) - print(resp['id']) + return resp['id'] else: msg = "" if resp: @@ -368,3 +368,12 @@ class Ns(object): exc.message) raise ClientException(message) + def get_field(self, ns_name, field): + nsr = self.get(ns_name) + if nsr is None: + raise NotFound("failed to retrieve ns {}".format(ns_name)) + + if field in nsr: + return nsr[field] + + raise NotFound("failed to find {} in ns {}".format(field, ns_name))