Metadata-Version: 2.4
Name: fguess
Version: 0.0.1
Summary: f-string format spec guesser
Project-URL: Documentation, https://github.com/treyhunner/fguess#readme
Project-URL: Issues, https://github.com/treyhunner/fguess/issues
Project-URL: Source, https://github.com/treyhunner/fguess
Author: Trey Hunner
License-Expression: MIT
License-File: LICENSE.txt
Classifier: Development Status :: 2 - Pre-Alpha
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Classifier: Programming Language :: Python :: 3.14
Classifier: Programming Language :: Python :: Implementation :: CPython
Classifier: Programming Language :: Python :: Implementation :: PyPy
Requires-Python: >=3.9
Requires-Dist: strptime-cli
Description-Content-Type: text/markdown

# fguess

[![PyPI - Version](https://img.shields.io/pypi/v/fguess.svg)](https://pypi.org/project/fguess)
[![PyPI - Python Version](https://img.shields.io/pypi/pyversions/fguess.svg)](https://pypi.org/project/fguess)

-----

Like https://pym.dev/format but in your terminal


## Installation

You install `fguess` with `pip`:

```console
pip install fguess
```

Or if you have [uv](https://docs.astral.sh/uv/) installed:

```console
uvx fguess
```


## Testing

This project uses [hatch](https://hatch.pypa.io).

To run the tests:

```console
hatch test
```

To see code coverage:

```console
hatch test --cover
hatch run cov-html
open htmlcov/index.html
```

To run the auto-formatter:

```console
hatch fmt
```


## License

`fguess` is distributed under the terms of the [MIT](https://spdx.org/licenses/MIT.html) license.
