Skip to main content

Parse human-readable date/time text.

Project description

parsedatetime

Parse human-readable date/time strings.

Python 2.6 or greater is required for parsedatetime version 1.0 or greater.

While we still test with Python 2.6 we cannot guarantee that future changes will not break under 2.6

Downloads Travis CI Codecov Requirements Status Dependency Status

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 make tox:

$ make 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 the versions you want to test under installed as part of your PyEnv environment:

pyenv install -s 2.6.9
pyenv install -s 2.7.11
pyenv install -s 3.5.2
pyenv install -s pypy-5.3
pyenv global 2.7.11 3.5.2 2.6.9 pypy-5.3

The tests depend on PyICU being installed. PyICU depends on icu4c which on OS X requires homebrew:

brew install icu4c

and then will require that you pass in the LDFLAGS and CPPFLAGS that homebrew will display after the install:

LDFLAGS:  -L/usr/local/opt/icu4c/lib
CPPFLAGS: -I/usr/local/opt/icu4c/include

The Makefile contains the OS X default values for them so you may need to tweak them.

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

time_struct, parse_status = cal.parse("tomorrow")
datetime(*time_struct[:6])

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 its current state with the help of the Chandler folks, most especially Darshana.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

parsedatetime-2.2.tar.gz (58.6 kB view details)

Uploaded Source

Built Distribution

parsedatetime-2.2-py2-none-any.whl (40.7 kB view details)

Uploaded Python 2

File details

Details for the file parsedatetime-2.2.tar.gz.

File metadata

  • Download URL: parsedatetime-2.2.tar.gz
  • Upload date:
  • Size: 58.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No

File hashes

Hashes for parsedatetime-2.2.tar.gz
Algorithm Hash digest
SHA256 1b1b647812e336f85be84206e4fb1f2df3852e036ac35b18dec809e7ebff1309
MD5 40306b57fd817af0a75d8d4ef9b453a6
BLAKE2b-256 62a30c546deec0c1ea5e20320daf7719df9419c2bee97f1a11b9feaf0143b0fc

See more details on using hashes here.

File details

Details for the file parsedatetime-2.2-py2-none-any.whl.

File metadata

File hashes

Hashes for parsedatetime-2.2-py2-none-any.whl
Algorithm Hash digest
SHA256 1612d12dfd7f3e933e4b84461aa4a12c5fbbc856651f0b88588c33955be390db
MD5 dc243aba618bfe8ca79c18a2dc4c38a7
BLAKE2b-256 9a1f1f875b7de7ba37c2b78106b4ec4293ea569ee0d9fdeca1cf00f0078ea37e

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page