Add Date Logical Type
Open
- Dominant language
- Python
- Stars
- 155
- Forks
- 24
- PR merge metrics
- No merged PRs in 30d
Description
- As a user of Woodwork, I wish I had a logical type to capture a list of date values (with no time).
- For example, to track when a user signed up for a gym membership
```
from datetime import date
dates = [
date(2010, 1, 1),
date(2010, 1, 15),
date(2010, 5, 1),
date(2010, 12, 12),
]
```
Contributor guide
Assessment
This issue has not been assessed yet.