scidatetime is python module for DateTime handle.
Project description
What?
scidatetime is python module for DateTime handle.
Install
pip install scidatetime
Usage
from scidatetime import DateTime
# 当前时间
print(DateTime()) # 2023-09-19 14:50:43.570560+08:00
# 指定日期
print(DateTime('2023-09-19')) # 2023-09-19 00:00:00+08:00
# 指定时间
print(DateTime('2023-09-19 14:50:43')) # 2023-09-19 14:50:43+08:00
# 指定时间戳
print(DateTime(1695106243000)) # 2023-09-19 14:50:43+08:00
# 指定时间及时区
print(DateTime('2023-09-19T14:50:43+07:00')) # 2023-09-19 14:50:43+07:00
# 计算时间差
print((DateTime('2023-09-20') - '2023-09-19').total_seconds()) # 86400.0
print((DateTime('2023-09-20') - 60 * 1000)) # 2023-09-19 23:59:00+08:00
# 获取相对时间
print(DateTime('2023-09-20').toRelativeTime('2023-09-20 14:23')) # 14小时前
print(DateTime('2023-09-20 10:00:00').toRelativeTime('2023-09-20 10:01:00')) # 1分钟后
print(DateTime('2023-01-20 10:00:00').toRelativeTime()) # xxx年前
Status
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
scidatetime-1.17.15.tar.gz
(74.4 kB
view hashes)
Built Distribution
Close
Hashes for scidatetime-1.17.15-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 98befd8dbfbedd7ca55b3cb4f5df50401a4157c29796f91a1ffdbb08c14839d0 |
|
MD5 | 55235866e66332d8cf5baf1237274fae |
|
BLAKE2b-256 | aa86d50a6e15490bcd458a2d9796ff460f6166303d163a84a4e9ef20164bfce6 |