Metadata-Version: 2.1
Name: datetime-convertion-tools
Version: 0.0.2
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-tools
```

## Usage example

Importing

```Python
from datetime_tools.get_year_and_week import get_year_and_week
```

Usage

`get_year_and_week("2022-10-29")`


<!--
## 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
```
-->

