Metadata-Version: 2.3
Name: strptime-cli
Version: 0.3.0
Project-URL: Documentation, https://github.com/treyhunner/strptime-cli#readme
Project-URL: Issues, https://github.com/treyhunner/strptime-cli/issues
Project-URL: Source, https://github.com/treyhunner/strptime-cli
Author: Trey Hunner
License: MIT
Classifier: Development Status :: 1 - Planning
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 :: Implementation :: CPython
Classifier: Programming Language :: Python :: Implementation :: PyPy
Requires-Python: >=3.9
Requires-Dist: darkdetect
Requires-Dist: platformdirs
Requires-Dist: pyperclip
Requires-Dist: textual
Description-Content-Type: text/markdown

# strptime

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

## Installation

```console
pipx install strptime-cli
```

## Usage

Run `strptime` with a date string to see the format string you would need to pass to `datetime.datetime.strptime` to parse the date:

```console
$ strptime "2030-01-24 05:45"
%Y-%m-%d %H:%M
```


## Testing

```console
$ pip install pytest
$ python tests.py
```

## License

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