实用的Python库(会一直持续更新。。。)

1 Delorean: Time Travel Made Easy

Delorean 是一个非常小的日期库,但是功能比较强大,有非常详细的说明文档,http://delorean.readthedocs.io/en/latest/ 例如:

from datetime import datetime
import pytz

est = pytz.timezone('US/Eastern')
d = datetime.now(pytz.utc)
d = est.normalize(d.astimezone(est))
print(d)
运行该小程序,就会显示该时区的时间





你可能感兴趣的:(其他,python学习笔记)