api-reference-examples/python/te-tag-query/TETagQuery.py [1036:1054]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        postParams = {}
        # Local keystroke-saver for this enum
        names = TE.Net.POST_PARAM_NAMES

        while True:
            if len(args) == 0:
                break
            if args[0][0] != "-":
                break
            option = args[0]
            args = args[1:]

            if option == "-h":
                self.usage(0)
            elif option == "--help":
                self.usage(0)

            elif option == "--dry-run":
                options["dryRun"] = True
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



api-reference-examples/python/te-tag-query/TETagQuery.py [1283:1302]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        postParams = {}

        # Local keystroke-saver for this enum
        names = TE.Net.POST_PARAM_NAMES

        while True:
            if len(args) == 0:
                break
            if args[0][0] != "-":
                break
            option = args[0]
            args = args[1:]

            if option == "-h":
                self.usage(0)
            elif option == "--help":
                self.usage(0)

            elif option == "--dry-run":
                options["dryRun"] = True
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



