Metadata-Version: 2.1
Name: print_columns
Version: 1.0.0
Summary: A simple package for printing text to the terminal in columns
Author-Email: Matt Zhang <set.stun@gmail.com>
License: MIT
Project-URL: Homepage, https://github.com/MattUnderscoreZhang/print_columns
Requires-Python: >=3.8
Requires-Dist: termcolor>=2.3.0
Requires-Dist: build>=1.0.3
Description-Content-Type: text/markdown

A simple package for printing text to the terminal in columns

# Example

```
from print_columns import print_columns


if __name__ == "__main__":
    lorem_ipsum = "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua."
    value = 3
    notes = "This is Lorem Ipsum. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout."

    print_columns(
        string=[lorem_ipsum, str(value), notes],
        column_widths=[50, 2, 50],
        colors=["red", "green", "blue"],
    )
```

See the examples/ folder for more.
