Metadata-Version: 2.4
Name: python_time_functions
Version: 2.3.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

```python
from datetime import datetime, timezone

import time_functions.time_functions as time_functions
# OR 
from time_functions.time_functions import get_timestamp_unix_millis

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

```

## local dev

    pip install -r requirements.txt


## test

    pytest


### other

    pip3 freeze > requirements.txt


