To create text-based columnized (ls-like) content suitable for console output from a list of strings
Project description
columnify
Inspired by columnify.
columnify
creates text-based columnized (ls-like) content suitable for console output from list of strings.
Columns are automatically resized to fit the content of the largest cell. Each cell will be padded with spaces to fill the available space and ensure column contents are aligned.
Table of Contents
Examples
items: list[str] = [
"Canidae", "Felidae", "Cat", "Cattle", "Dog",
"Donkey", "Goat", "Guinea pig", "Horse", "Pig",
"Rabbit", "Fancy rat varieties", "laboratory rat strains",
]
Default
Canidae Cat Dog Goat Horse Rabbit laboratory rat strains
Felidae Cattle Donkey Guinea pig Pig Fancy rat varieties
Horizon first
Canidae Felidae Cat Cattle Dog Donkey Goat
Guinea pig Horse Pig Rabbit Fancy rat varieties laboratory rat strains
center()
Canidae Cat Dog Goat Horse Rabbit laboratory rat strains
Felidae Cattle Donkey Guinea pig Pig Fancy rat varieties
rjust()
Canidae Cat Dog Goat Horse Rabbit laboratory rat strains
Felidae Cattle Donkey Guinea pig Pig Fancy rat varieties
Custom delimiter ( | )
Canidae | Cattle | Goat | Pig | laboratory rat strains
Felidae | Dog | Guinea pig | Rabbit
Cat | Donkey | Horse | Fancy rat varieties
Indent (4 spaces):
Canidae Cattle Goat Pig laboratory rat strains
Felidae Dog Guinea pig Rabbit
Cat Donkey Horse Fancy rat varieties
See examples/example.py
for more information.
Installation
pip install columnify
API
Methods
def columnify(
items: list[str],
line_width: int,
indent: int = 0,
delimiter: str = ' ',
align_func_name: str = 'ljust',
horizon_first: bool = False) -> str:
...
License
columnify
is distributed under the terms of the MPL-2.0 license.
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
columnify-1.0.1.tar.gz
(10.8 kB
view details)
File details
Details for the file columnify-1.0.1.tar.gz
.
File metadata
- Download URL: columnify-1.0.1.tar.gz
- Upload date:
- Size: 10.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: python-httpx/0.23.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 1980efbe3c2b47e1b2a0f6f77ab346e57ea0182bc1a23a492d33f00483317004 |
|
MD5 | 62cbba864297fedcf4cbd8fa22b37512 |
|
BLAKE2b-256 | b48b6b496b5cdddd92172d0a4d2718f8d8e487f927d25c316deea19d6c17eb2f |