Welcome, guest | Sign In | My Account | Store | Cart

Notice! PyPM is being replaced with the ActiveState Platform, which enhances PyPM’s build and deploy capabilities. Create your free Platform account to download ActivePython or customize Python with the packages you require and get automatic updates.

Download
ActivePython
INSTALL>
pypm install bda.intellidatetime

How to install bda.intellidatetime

  1. Download and install ActivePython
  2. Open Command Prompt
  3. Type pypm install bda.intellidatetime
 Python 2.7Python 3.2Python 3.3
Windows (32-bit)
1.1
1.2Never BuiltWhy not?
1.1 Available View build log
1.0 Available View build log
Windows (64-bit)
1.1
1.2Never BuiltWhy not?
1.1 Available View build log
1.0 Available View build log
Mac OS X (10.5+)
1.1
1.2Never BuiltWhy not?
1.1 Available View build log
1.0 Available View build log
Linux (32-bit)
1.1
1.2Never BuiltWhy not?
1.1 Available View build log
1.0 Available View build log
Linux (64-bit)
1.2 Available View build log
1.1 Available View build log
1.0 Available View build log
 
License
GNU General Public Licence
Dependencies
Lastest release
version 1.2 on Jan 9th, 2014

bda.intellidatetime

Overview

bda.intellidatetime provides a converter for date and time input to python datetime.datetime objects.

the input format is definded by a locale2pattern mapping and is provided by a seperate interface.

Currently provided locales are:

  • en
  • de
  • fr
  • es
  • uk
  • it
  • cs
  • and the special locale iso, which is used as default.
Example

Use the convert function:

>>> from bda.intellidatetime import convert
>>> convert('1.1.08', locale='de')
datetime.datetime(2008, 1, 1, 0, 0)
API doc
convert(date, time=None, tzinfo=None, locale='iso')

Convert the input to a datetime object.

The convert function accepts unicode or non-unicode strings and tries to parse out Date and Time information as follows:

  • First try to get the localized datetime pattern information
  • If no one is found, a default pattern is used.
  • Parse the input by the definitions of the localized datetime pattern
  • Create a datetime object and return it

The intelligence is defined by following behaviour:

Date:

  • If only one value is found f.e. 1, this value is handled as the day value, for month and for year the current ones are used.
  • Respective, if two values are given, they are handled as day and month, year is autocompleted with the current year.
  • 3 values are a complete date information, if year is a 2-character string, it is handled as year in the current century
  • as limiters are all non-numeric values accepted
  • date input can be done without limiters, therefor all characters must be numbers, and the string length must be either 2, 4, 6 or 8 characters. 2 characters define the day, 4 characters the day and the month, 6 characters day, month and the year of the current century and 8 characters define a complete date.

Time:

  • If time is None, time is set to 00:00
  • if time is a 2-character string, it is handled as the hour, minutes are defined as 00
  • time input can be done without a limiter, therefor time must be an all numeric 4-character string, the first 2 chars are handled as hour, the second 2 chars as minute.
  • as limiter are all non-numeric values accepted
  • seconds are never computed and are therefor ALWAYS handled as '00'

Limiters can be any 1 or more character non numeric values. An input can look like `` %_2008 1 abcde 5 ---`` and is still valid and with default locale converted to datetime.datetime(2008, 1, 5, 0, 0).

If parsing of the input values is not possible or converting the parsed values to numeric values is not possible or the valid date and time range falls out of scope, a DateTimeConversionError is raised.

  • @param date - a date as string
  • @param time - a time as string
  • @param tzinfo - a tzinfo object to be considered, defaults to None. If given the date and time taken as in the given timezone. If the timezone is DST-aware time will be normalized for DST/non-DST.
  • @param locale - a locale name, which is used to determine the date and time patterns. There exists a special locale named 'iso', define the input in ISO format which further is used as default.
  • @return datetime - datetime.datetime object
  • @raise DateTimeConversionError - if conversion failes
Licence
  • GNU General Public Licence Version 2 or later

Contributors

Changes

1.2
  • Use zope.interface.implementer instead of zope.interface.implements. [rnix, 2012-05-18]
1.1
  • Provide convenience convert function. [rnix, 2010-05-08]
  • Change package structure. [rnix, 2010-05-08]
  • Move tests into seperate file. [rnix, 2010-05-08]
  • Change signature of converter. could now be registered as utility as well if desired. [rnix, 2010-05-08]
  • Adapter pattern deprecated. [rnix, 2010-05-08]
1.0
  • Make it work [rnix, jensens]

System Message: WARNING/2 (<string>, line 163)

Bullet list ends without a blank line; unexpected unindent.

License

Copyright (c) 2010, BlueDynamics Alliance, Austria All rights reserved.

Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:

  • Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.
  • Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.
  • Neither the name of the BlueDynamics Alliance nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission.

THIS SOFTWARE IS PROVIDED BY BlueDynamics Alliance AS IS AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL BlueDynamics Alliance BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.

Subscribe to package updates

Last updated Jan 9th, 2014

Download Stats

Last month:1

What does the lock icon mean?

Builds marked with a lock icon are only available via PyPM to users with a current ActivePython Business Edition subscription.

Need custom builds or support?

ActivePython Enterprise Edition guarantees priority access to technical support, indemnification, expert consulting and quality-assured language builds.

Plan on re-distributing ActivePython?

Get re-distribution rights and eliminate legal risks with ActivePython OEM Edition.