Metadata-Version: 2.1
Name: datetime-convertion-tools
Version: 0.0.4
Summary: Common datetime operations
Author: Gustav Rasmussen
Requires-Python: >=3.11,<4.0
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Description-Content-Type: text/markdown

# datetime-tools

Common datetime operations

## Installation

```BASH
pip install datetime-convertion-tools
```

## Usage example

Importing

```Python
from datetime_tools.get_year_and_week import get_year_and_week
from datetime_tools.get_duration import get_duration_minutes
```

Usage

```Python
get_year_and_week("2022-10-29")
get_duration_minutes("14:45", "15:10")
```

<!--
## Create a new release

example:

```BASH
git tag 0.0.1
git push origin --tags
```

release a patch:

```BASH
poetry version patch
```

then `git commit`, `git push` and

```BASH
git tag 0.0.2
git push origin --tags
```
-->

