Skip to main content

Nice formatting of timedelta instances

Project description

nice_duration

A Python library for formatting durations in a human-readable way. Convert timedelta objects or numeric time values into readable strings like 3h20m or 2w5d. This module features optional micro-second precision, configurable separators and flexible handling of zero-values.

Quick Start

from datetime import timedelta
from nice_duration import duration_string

# From timedelta objects
duration_string(timedelta(hours=3, minutes=20))  # "3h20m"

# From seconds (int or float)
duration_string(seconds=200)    # "3m20s"
duration_string(seconds=200.9)  # "3h20m" (truncated)

# From milliseconds or microseconds
duration_string(milliseconds=1500)  # "1s" (with default precision)
duration_string(microseconds=1500000)  # "1s"

Precision Control

Control the smallest unit displayed. The precision parameter can be one of weeks, days, hours, minutes, seconds, milliseconds or microseconds.

delta = timedelta(weeks=2, days=3, hours=4, minutes=5, seconds=30, microseconds=500000)

duration_string(delta, precision="weeks")        # "2w"
duration_string(delta, precision="minutes")      # "2w3d4h5m"
duration_string(delta, precision="seconds")      # "2w3d4h5m30s"
duration_string(delta, precision="milliseconds") # "2w3d4h5m30s500ms"

Flexible Zero Handling

By default, zero values are omitted, but zeroes can be left alone when leading, trailing or infix.

delta = timedelta(days=3, minutes=12)  # Note: no hours

duration_string(delta)                          # "3d12m"
duration_string(delta, infix_zeroes=True)       # "3d0h12m"
duration_string(delta, leading_zeroes=True)     # "0w3d12m"
duration_string(delta, trailing_zeroes=True)    # "3d12m0s"
duration_string(delta, all_zeroes=True)         # "0w3d0h12m0s"

Custom Separators

Add spacing or custom separators between units:

delta = timedelta(hours=3, minutes=20)

duration_string(delta, separator=" ")     # "3h 20m"

Limitations

  • Maximum unit is weeks (because bigger units have no fixed length)
  • Float values are truncated

License

This project is licensed under the MIT 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

nice_duration-1.0.0.tar.gz (5.8 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

nice_duration-1.0.0-py3-none-any.whl (5.1 kB view details)

Uploaded Python 3

File details

Details for the file nice_duration-1.0.0.tar.gz.

File metadata

  • Download URL: nice_duration-1.0.0.tar.gz
  • Upload date:
  • Size: 5.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.7.15

File hashes

Hashes for nice_duration-1.0.0.tar.gz
Algorithm Hash digest
SHA256 b9a886c2aef2104a9a6c8c92aba735b19450e18bc8e47483dd8a9ce4aee87265
MD5 11250bfa166582a15208cf9678ee6bfb
BLAKE2b-256 c32daad52f5a888b9c524f6125d55917cb00d871751a62f620df1b986013dfa1

See more details on using hashes here.

File details

Details for the file nice_duration-1.0.0-py3-none-any.whl.

File metadata

File hashes

Hashes for nice_duration-1.0.0-py3-none-any.whl
Algorithm Hash digest
SHA256 8ad32797bbabe07a121c9783c9a2964fa8d828c79448f82fce853d42828e2a0b
MD5 ef10214253a607ac88a21d8e319a7fbc
BLAKE2b-256 2b76de4f2e58d31f1fc6e1abfb98b3d600e22d49bd32e15ab051b90e98cd766a

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page