dtparse
dtparse copied to clipboard
Fast datetime parser for Python written in Rust
I am not able to parse timezones other an `Z`/`+00:00` with dtparse 1.3.2. ```python >>> dtparse.parse("2021-05-04 13:37:00+00:00", "%Y-%m-%d %H:%M:%S%:z") datetime.datetime(2021, 5, 4, 13, 37) >>> dtparse.parse("2021-05-04 13:37:00+10:00", "%Y-%m-%d %H:%M:%S%:z") Traceback...
Hi, it would be cool if you could also upload a source dist with the next release. This would make re-packaging (e.g., for Conda or Linux distros) a lot easier....
Is it possible to add compatibility with strings without the time part for fuller compatibility with datetime library and more helpful usage in different applications where datetime format could be...
[python-dateutil](https://github.com/dateutil/dateutil) is a very widely used Python library for heuristic datetime parsing. The same functionality was recently implemented in Rust: https://github.com/bspeice/dtparse Porting the Rust version back to Python would be...
## use pyproject.toml and lock files Modernized version of package. Lock files should be commited to allow for easier reproduction of errors/problems. ## CI for new python versions adopted from...
The last build of the package is quite old. Wheels were only provided for Python 3.9. Current Python 3.12/3.13 is not supported. It would be nice if a new version...