Metadata-Version: 2.4
Name: xpute
Version: 0.0.2
Summary: xpute
Project-URL: Repository, https://github.com/xpute/xpute
Project-URL: Issues, https://github.com/xpute/xpute/issues
Author: xpute
License: Apache-2.0
License-File: LICENSE
License-File: NOTICE
Requires-Python: >=3.9
Description-Content-Type: text/markdown

# xpute

`printf/sprintf`-like formatter.

## Install

```bash
pip install xpute
```

## Usage

```py
from xpute import printf, sprintf

printf("hello %s %d\n", "xpute", 123)
s = sprintf("0x%08x\n", 0x1234)
```

## Notes

Portable subset, not a full C `printf`.
