Skip to main content

replacement for string.Formatter supporting empy keys (recursively)

Project description

This package is a backport of string.Formatter and its tests to Python 2.7 and 3.3 (and 3.4.0 as shipping with Ubuntu 14.04 LTS/Linux Mint 17)

It allows empty keys in format strings as introduced in Python 3.4.1, and fixes a bug ( "{:<{}} {}" ) when using nested empty keys, that is available in all versions of string.Formatter() allowing empty keys (up to at least 3.5.0rc3).

Usage

The package can be used as a replacement for string:

import string_formatter as string

TrailingFormatter

Additionally this package includes TrailingFormatter allow a type specification t with a single character parameter, that will be added to the (stringified) value before applying (left-aligned) formatting:

import string_formatter as string

fmt = string.TrailingFormatter()
d = dict(a=1, bc=2, xyz=18)
for key in sorted(d):
    print(fmt.format("{:t{}<{}} {:>3}", key, ':', 15, d[key]))

giving:

a:                1
bc:               2
xyz:             18

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

string_formatter-1.0.1.tar.gz (8.4 kB view hashes)

Uploaded Source

Built Distribution

string_formatter-1.0.1-py2.py3-none-any.whl (6.1 kB view hashes)

Uploaded Python 2 Python 3

Supported by

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