Metadata-Version: 2.4
Name: datefmt
Version: 0.0.1
Summary: Converting between Unix timestamps and standard date string formats.
License: MIT
License-File: LICENSE
Keywords: datetime,format
Author: ChenyangGao
Author-email: wosiwujm@gmail.com
Requires-Python: >=3.10,<4.0
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
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 :: 3 :: Only
Classifier: Topic :: Software Development
Classifier: Topic :: Software Development :: Libraries
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Project-URL: Homepage, https://github.com/ChenyangGao/python-modules/tree/main/datefmt
Project-URL: Repository, https://github.com/ChenyangGao/python-modules/tree/main/datefmt
Description-Content-Type: text/markdown

# Converting between Unix timestamps and standard date string formats.

## Installation

You can install via [pypi](https://pypi.org/project/datefmt/)

```console
pip install -U datefmt
```

## Usage

```python
from datefmt import timestamp2isoformat, isoformat2timestamp, timestamp2gmtformat, gmtformat2timestamp
```

