Add Time Logical Type
未關閉
- 主要語言
- Python
- 星號
- 155
- 分支
- 24
- PR 合併指標
- 30 天內沒有已合併 PR
描述
- As a user of Woodwork, I wish I had a logical type to capture a list of time values (with no date).
```
from datetime import time
times = [
time(10, 30, 5, tzinfo=timezone("America/Los_Angeles")),
time(12, 30, 5, tzinfo=timezone("America/New_York")),
time(1, 30, 5, tzinfo=timezone("America/Los_Angeles")),
time(4, 30, 5, tzinfo=timezone("America/Los_Angeles"))
]
times = [
time(10, 30, 5),
time(12, 30, 5),
time(1, 30, 5),
time(4, 30, 5)
]
```
貢獻指南
評估
這個 Issue 還沒有評估資料。