Metadata-Version: 2.4
Name: tsdt
Version: 0.1.0
Summary: A lightweight and fast utility for converting timestamps to datetime and back. Provides a simple CLI and a clean Python API for working with Unix time, ISO8601 strings, and human-readable formats.
License: MIT
Author: Oleg Patsay
Author-email: smmartbiz@gmail.com
Requires-Python: >=3.13
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.13
Classifier: Programming Language :: Python :: 3.14
Description-Content-Type: text/markdown

# tsdt

A minimal command-line tool that converts UNIX timestamps into human-readable dates.

## Installation

```
pip install tsdt
```

Or for local development using Poetry:

```
poetry install
poetry run tsdt <timestamp>
```

## Usage

Convert a UNIX timestamp:

```
tsdt 1763562191
```

Example output:

```
2025-01-19 14:23:11
```

## License

MIT


