A tiny library to make your outputs more beautiful
Project description
prettyfmt
prettyfmt is a tiny library to make your outputs, logs, and __str__()
representations slightly more beautiful.
It offers simple but general functions for formatting and abbreviating objects and dataclasses, dicts, words and phrases, filenames, titles, long strings, timestamps, ages, and sizes. It also has Unicode-friendly multilingual slugify functions.
It won't bloat your project.
It's <500 lines of code with just three dependencies:
humanize,
strif, and
text-unidecode.
Installation
Add the prettyfmt package to your environment
in the usual way with pip install prettyfmt, poetry add prettyfmt, or uv add prettyfmt.
Usage
See pydoc for details on all functions.
from prettyfmt import *
# Simple abbreviations of objects:
abbrev_obj({"a": "very " * 100 + "long", "b": 23})
# -> "{a='very very very very very very very very very very very very ver…', b=23}"
abbrev_obj(["word " * i for i in range(10)], field_max_len=10, list_max_len=4)
# -> "['', 'word ', 'word word ', 'word word…', …]"
# Abbreviate by character length.
abbrev_str("very " * 100 + "long", 32)
# -> 'very very very very very very v…'
# Abbreviate by character length but don't break words.
abbrev_on_words("very " * 100 + "long", 30)
# -> 'very very very very very very…'
# My favorite, abbreviate but don't break words and keep a few words
# on the end since they might be useful.
abbrev_phrase_in_middle("very " * 100 + "long", 40)
# -> 'very very very very … very very very long'
# This makes it very handy for cleaning up document titles.
ugly_title = "A Very\tVery Very Needlessly Long {Strange} Document Title [final edited draft23]"
# -> sanitize_title(ugly_title)
'A Very Very Very Needlessly Long Strange Document Title final edited draft23'
abbrev_phrase_in_middle(sanitize_title(ugly_title))
# -> 'A Very Very Very Needlessly Long Strange … final edited draft23'
# You can convert strings to cleaner titles:
ugly_title = "A Very\tVery Very Needlessly Long {Strange} Document Title [final edited draft23]"
sanitized = sanitize_title(ugly_title)
# -> 'A Very Very Very Needlessly Long Strange Document Title final edited draft23'
# Underscore and dash slugify based on this:
slugify_snake("Crème Brûlée Recipe & Notes")
# -> 'crème_brûlée_recipe_notes'
slugify_snake("Crème Brûlée Recipe & Notes", ascii=True)
# -> 'creme_brulee_recipe_notes'
slugify_kebab("你好世界 Hello World")
# -> '你好世界-hello-world'
slugify_kebab("你好世界 Hello World", ascii=True)
# -> 'ni-hao-shi-jie-hello-world'
# Formatting durations. Good for logging runtimes:
fmt_timedelta(3.33333)
# -> '3s'
fmt_timedelta(.33333)
# -> '333ms'
fmt_timedelta(.033333)
# -> '33.33ms'
fmt_timedelta(.0033333)
# -> '3.33ms'
fmt_timedelta(.00033333)
# -> '333µs'
fmt_timedelta(.000033333)
# -> '33µs'
fmt_timedelta(3333333)
# -> '39d'
# Ages in seconds or deltas.
# Note we use a sensible single numeral to keep things brief, e.g.
# "33 days ago" and not the messier "1 month and 3 days ago".
# This is important in file listings, etc, where we want to optimize
# for space and legibility.
fmt_age(60 * 60 * 24 * 33)
# -> '33 days ago'
fmt_age(60 * 60 * 24 * 33, brief=True)
# -> '33d ago'
# Sizes
fmt_size_human(12000000)
# -> '11.4M'
fmt_size_dual(12000000)
# -> '11.4M (12000000 bytes)'
# Helpful making __str__() methods or printing output:
fmt_words("Hello", None, "", "world!")
# -> 'Hello world!'
fmt_paras(fmt_words("Hello", "world!"), "", "Goodbye.")
# -> 'Hello world!\n\nGoodbye.'
from dataclasses import dataclass
from pathlib import Path
# Example of `abbrev_obj` to customize __str__().
# Allows sorting and truncating based on key and value.
@dataclass
class MyThing:
file_path: Path
title: str
url: str
body: str
def __str__(self) -> str:
return abbrev_obj(
self,
# Put an abbreviated title first, then the file path, then the url.
# The `body` field will be omitted.
key_filter={
"title": 64,
"file_path": 0,
"url": 128,
},
)
str(MyThing(file_path="/tmp/file.txt", title="Something " + "blah " * 50, url="https://www.example.com", body="..."))
# -> "MyThing(title='Something blah blah blah blah blah blah blah blah blah blah blah…', file_path=/tmp/file.txt, url=https://www.example.com)"
For instructions on publishing to PyPI, see publishing.md.
This project was built from simple-modern-uv.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file prettyfmt-0.3.1.tar.gz.
File metadata
- Download URL: prettyfmt-0.3.1.tar.gz
- Upload date:
- Size: 30.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8b6a15cadf444c32f40dc1eb3708efebd85ea303796ca95d451398fac8348060
|
|
| MD5 |
eaf335b0276f98851161f1745800db12
|
|
| BLAKE2b-256 |
76650ebfd438dc6290801027e31c9c79ebd71dac2c303c1fd263ab679f6e4c5f
|
Provenance
The following attestation bundles were made for prettyfmt-0.3.1.tar.gz:
Publisher:
publish.yml on jlevy/prettyfmt
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
prettyfmt-0.3.1.tar.gz -
Subject digest:
8b6a15cadf444c32f40dc1eb3708efebd85ea303796ca95d451398fac8348060 - Sigstore transparency entry: 207092246
- Sigstore integration time:
-
Permalink:
jlevy/prettyfmt@05f82da796f53a95a023cf7345956121d81ac901 -
Branch / Tag:
refs/tags/v0.3.1 - Owner: https://github.com/jlevy
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@05f82da796f53a95a023cf7345956121d81ac901 -
Trigger Event:
release
-
Statement type:
File details
Details for the file prettyfmt-0.3.1-py3-none-any.whl.
File metadata
- Download URL: prettyfmt-0.3.1-py3-none-any.whl
- Upload date:
- Size: 10.6 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b282913753909b08257c2c6f7e684fc0073373e35ca89e4d527419d6b56244de
|
|
| MD5 |
7d2f540108b6c9926413255289bbb439
|
|
| BLAKE2b-256 |
6800bc487add0ee801ed86a3679d8a6d25b4a7a25d3358accab855ee6b7f875e
|
Provenance
The following attestation bundles were made for prettyfmt-0.3.1-py3-none-any.whl:
Publisher:
publish.yml on jlevy/prettyfmt
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
prettyfmt-0.3.1-py3-none-any.whl -
Subject digest:
b282913753909b08257c2c6f7e684fc0073373e35ca89e4d527419d6b56244de - Sigstore transparency entry: 207092248
- Sigstore integration time:
-
Permalink:
jlevy/prettyfmt@05f82da796f53a95a023cf7345956121d81ac901 -
Branch / Tag:
refs/tags/v0.3.1 - Owner: https://github.com/jlevy
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@05f82da796f53a95a023cf7345956121d81ac901 -
Trigger Event:
release
-
Statement type: