def print()

in src/guclimate/core/requests.py [0:0]


    def print(self, before="\n", after="\n"):
        dataset_and_params = [["Dataset", self.product]]
        dataset_and_params.extend(self.params.items())

        if before is not None:
            print(before, end="")

        print(
            tabulate(
                [[pair[0], highlighted_list(pair[1])] for pair in dataset_and_params],
                headers=["Option", "Value"],
                tablefmt="simple_grid",
                maxcolwidths=[50, None],
            ),
            end=after,
        )