FazBrowse GitHub Viewer | Trending |
URL:
| Home
Tools: [Download Repo ZIP]   [Original HTTPS Page]

0dminnimda/pyformatting: Pyformatting is a collection of useful formatting features. · GitHub

Repository files navigation

pyformatting

Pyformatting is a collection of useful formatting features.

>>> from pyformatting import optional_format, defaultformatter
>>> optional_format('{:.3f}{other:.5f}{}', .12345)
'0.123{other:.5f}{}'
>>> optional_format('{0[0]}{1!a}{2}{0[1]!r}', 'cool')
"c{1!a}{2}'o'"
>>> default_format = defaultformatter(str)
>>> default_format('{nothing}{data}{quotes!r}', data={1: 2})
"{1: 2}''"

Installing Pyformatting

Pyformatting is available on PyPI:

python -m pip install -U pyformatting

Supported Versions

Pyformatting supports Python 3.1+.

Development Status

Alpha

Releases

Packages

Contributors

Languages


Back | FazBrowse Home | New Git URL