Parse human-readable date/time text.
Project description
parsedatetime
Parse human-readable date/time strings.
Python 2.7 or greater is required for parsedatetime version 1.0 or greater.
Installing
You can install parsedatetime using:
pip install parsedatetime
Running Tests
From the source directory:
make test
To run tests on several python versions, type tox:
$ tox [... tox creates a virtualenv for every python version and runs tests inside of each] py27: commands succeeded py35: commands succeeded
This assumes that you have python2.7, python3.5, etc in PATH.
Using parsedatetime
An example of how to use parsedatetime:
import parsedatetime cal = parsedatetime.Calendar() cal.parse("tomorrow")
To get it to a Python datetime object:
from datetime import datetime from time import mktime time_struct, parse_status = cal.parse("tomorrow") datetime.fromtimestamp(mktime(time_struct))
Parse datetime with timezone support (using pytz package):
import parsedatetime import pytz from pytz import timezone cal = parsedatetime.Calendar() datetime_obj, _ = cal.parseDT(datetimeString="tomorrow", tzinfo=timezone("US/Pacific"))
More detailed examples can be found in the examples directory.
Documentation
The generated documentation is included by default in the docs directory and can also be viewed online at https://bear.im/code/parsedatetime/docs/index.html
The docs can be generated by running:
make docs
Notes
The Calendar class has a member property named ptc which is created during the class init method to be an instance of parsedatetime_consts.CalendarConstants().
History
The code in parsedatetime has been implemented over the years in many different languages (C, Clipper, Delphi) as part of different custom/proprietary systems I’ve worked on. Sadly the previous code is not “open” in any sense of that word.
When I went to work for Open Source Applications Foundation and realized that the Chandler project could benefit from my experience with parsing of date/time text I decided to start from scratch and implement the code using Python and make it truly open.
After working on the initial concept and creating something that could be shown to the Chandler folks the code has now evolved to it’s current state with the help the Chandler folks, most especially Darshana.
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
Built Distribution
File details
Details for the file parsedatetime-2.0.tar.gz
.
File metadata
- Download URL: parsedatetime-2.0.tar.gz
- Upload date:
- Size: 56.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 74aaed8e8639842ff48c05c1e3708a26ffa138eb00d557be6681b5df771f7c8c |
|
MD5 | 28dcdda2ca462f08e68aafba3bd7ff95 |
|
BLAKE2b-256 | 09a8855e2f53d815a8215123a7ec37e3dae675e20d74af40f9c550e29748ee6a |
File details
Details for the file parsedatetime-2.0-py2-none-any.whl
.
File metadata
- Download URL: parsedatetime-2.0-py2-none-any.whl
- Upload date:
- Size: 37.8 kB
- Tags: Python 2
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 9be60b878b50eb9cf65a0d32e7652f593ca76c0d8cf361ab0f2bff0771a33933 |
|
MD5 | dbb4348c42b6c02fd463552d6f9ea38f |
|
BLAKE2b-256 | 410fa44a1baf6bae2a7a64fe256c016abd7a42e3ac2878b12febb05a0902a2dd |