nirum / tableprint

Pretty console printing :clipboard: of tabular data in python :snake:
https://tableprint.readthedocs.io/
MIT License
174 stars 16 forks source link

Custom print command #18

Open sumanthratna opened 4 years ago

sumanthratna commented 4 years ago

It'd be useful if tableprint could accept a custom print command. In my use case, I want to progressively (print-as-I-go) print the values of TensorFlow 2 tensors in a table.

In autograph, the only way to print TensorFlow tensors is with tf.print—using print(my_tensor) doesn't print the value.

I can think of two ways to approach this:

nirum commented 4 years ago

You can already pass a custom object for IO using the out keyword argument to table and TableContext. By default, this is sys.stdout, but it can be a file handle or any other object that has a write(str) method and a flush method. (This is exactly like the output_stream argument in tf.print).

I don't really want to add in custom logic for TensorFlow, but if you want the output to go through a tf.print call you can use a shim class like follows:

class TFWriter:
  def write(self, s):
    tf.print(s)
  def flush(self):
    pass

tp.table(data, headers, out=TFWriter())
sumanthratna commented 4 years ago

Thanks—the shim you wrote is pretty clever; I didn't think of that!

To be honest, I don't remember if I knew about the out argument—regardless, I should've mentioned that since I want to progressively print, I can't use out, as I need to use tp.header and tp.row, neither of which accept an out argument.

If you're okay with header and row accepting the out argument, I may be able to write a PR for this within the next two weeks.

nirum commented 4 years ago

Happy to accept a PR for this!

sumanthratna commented 4 years ago

Currently, header and out both return strings, which need to be printed by the user. If we want to add the out argument, it makes sense to return None, like the other methods, and print using out. However, I'd consider this a breaking change.

We can:

What do you think? Honestly, I think tableprint is ready for a 1.x release, so I don't have a problem with causing a breaking change and bumping the major version.