dtparse:用Rust编写的Python快速日期时间解析器

时间:2024-05-30 23:55:17
【文件属性】:

文件名称:dtparse:用Rust编写的Python快速日期时间解析器

文件大小:9KB

文件格式:ZIP

更新时间:2024-05-30 23:55:17

Python

dtparse 用于用Rust编写的Python的快速日期时间解析器。 比datetime.strptime解析速度快10到15倍。 它不是datetime.strptime替代者,尽管它们在大多数情况下都类似地工作。 而是将其视为自己的库。 可以在找到受支持的说明符的完整列表( %Y , %m , %d等)。 它们与有点不同。 与datetime.strptime显着差异 模板的必需部分 dtparse.parse需要小时,分钟和完整日期才能显示在模板中。 对于datetime.strptime ,模板的所有部分都是可选的。 datetime . strptime ( '2018/01/02 12' , '%Y/%m/%d %H' ) # no minutes in the template # datetime(2018, 1, 2, 12, 0) dtparse . pa


【文件预览】:
dtparse-master
----Cargo.toml(340B)
----.github()
--------workflows()
----dtparse()
--------__init__.py(615B)
----src()
--------lib.rs(2KB)
----LICENSE(1KB)
----setup.cfg(144B)
----setup.py(1KB)
----README.md(3KB)
----tests()
--------test_valid_inputs.py(1KB)
--------test_call_signature.py(578B)
--------test_performance.py(770B)
--------test_invalid_inputs.py(2KB)
----.gitignore(160B)

网友评论