Tsuyoshi Hombashi

Results 42 comments of Tsuyoshi Hombashi

@WoLpH Thank you for your feedback. Surely, `fping` support would be a nice to have feature. I will consider that feature for the future release.

@usman5251 For a time being, you could check such cases by using `get_timedelta_second` method. for example: ```py if not time_range.is_intersection(x): return False if time_range.intersection(x).get_timedelta_second() == 0: # get_timedelta_second will return...

That might be useful for certain use cases. Pull requests would be always welcome.

@Adamits Hi, You can apply styles to specific cells by writing a style filter function and add it to a table writer instance via [add_style_filter](https://pytablewriter.readthedocs.io/en/latest/pages/reference/writers/base/abstract.html?highlight=add_style_filter#pytablewriter.AbstractTableWriter.add_style_filter) method. An example of style...

@makeworld-the-better-one Thank you for your feedback. >It's also possible this has to do with parsing and formatting of values or something? I assume this would be the cause. If you...

Thank you for your feedback. Unfortunately, Excel writer classes have not supported style settings for now. However I have plan to support that feature.

Thank you for your feedback. In the current implementation, no styles other than colors are applied to headers. In a future version, other styles might also be applicable to headers.

@stezz Unfortunately, borders are not supported as style for now. One way to achieve that is: 1. output an HTML table by `pytablewriter` 2. adding CSS (with borders) manually to...

@pavelicii Are there any update on this?