Metadata-Version: 2.1
Name: time-tools
Version: 1.0.58241
Summary: Tools to organise consistent and fail proof time-based logic
Author: Mike Orlov
Author-email: m.orlov@technokert.ru
Requires-Python: >=3.11,<4.0
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.11
Description-Content-Type: text/markdown

### Time tools
Tools to organise consistent and fail proof time-based logic

### Minimal usage example
```python
from time_tools import TimestampSec

some_client_timestamp_sec = 1234567890
other_client_timestamp_ms = 1234567890000
assert TimestampSec(some_client_timestamp_sec) == TimestampSec(other_client_timestamp_ms)
```
