Metadata-Version: 2.4
Name: python_time_functions
Version: 2.5.0
Summary: Common Python functions for time handling
Author-email: Corne Bester <corne.bester@gmail.com>
Project-URL: Homepage, https://example.com
Project-URL: Documentation, https://readthedocs.org
Project-URL: Repository, https://github.com/cornebester/python_time_functions
Project-URL: Issues, https://github.com/cornebester/python_time_functions/issues
Project-URL: Changelog, https://github.com/cornebester/python_time_functions/blob/master/CHANGELOG.md
Requires-Python: >=3.10
Description-Content-Type: text/markdown
License-File: LICENSE
Dynamic: license-file

# Readme

Common Python functions for time handling

```shell
pip install --upgrade python_time_functions
```

```python
from datetime import datetime, timezone
from python_time_functions import time_functions as tf

timestamp = datetime.now(timezone.utc)
unix_millis = tf.get_timestamp_unix_millis(timestamp)  # create unix timestamp from obj above

```

## local dev

```shell
pip install -r requirements.txt
```

## test

```shell
pytest
```

### other

```shell
pip3 freeze > requirements.txt
```

