Metadata-Version: 2.1
Name: ymd
Version: 0.1.2
Summary: The ymd module supplies functions for manipulating dates
Home-page: https://github.com/andmeln/ymd/
Author: Andrey Melnikov
Author-email: andmeln@hotmail.com
License: Apache License, Version 2.0
Requires-Python: >=3.7
Description-Content-Type: text/markdown
License-File: LICENSE
License-File: NOTICE

# YMD

The `ymd` module supplies functions for manipulating dates.

Here is a simple example:

```python
>>> import ymd
>>> for date in ymd.date_range('2024-12-25', '2025-01-01'):
...     print(date)
... 
2024-12-25
2024-12-26
2024-12-27
2024-12-28
2024-12-29
2024-12-30
2024-12-31
```


# Installation

Install default version from the [Python Package Index](https://pypi.org/project/ymd/):

```
pip install ymd
```
