Metadata-Version: 2.4
Name: quas-utils
Version: 0.0.2
Summary: A collection of utilities for the QUAS ecosystem
Author-email: Emmanuel Olowu <zeddyemy@gmail.com>
License: MIT
Keywords: QUAS,Utils,date_time,timezones
Requires-Python: >=3.12
Description-Content-Type: text/markdown

# quas-utils

Date/time helpers for the QUAS ecosystem. Install from TestPyPI or PyPI and use:

```
python -m pip install quas-utils
```

```python
from quas_utils.date_time import QuasDateTime, to_gmt1_or_none

now_utc = QuasDateTime.aware_utcnow()
readable = QuasDateTime.format_date_readable(now_utc)
gmt1 = to_gmt1_or_none(now_utc)
```
