App Engine Python SDK  v1.6.9 rev.445
The Python runtime is available as an experimental Preview feature.
Classes | Functions | Variables
google.appengine._internal.django.utils.dateformat Namespace Reference

Classes

class  DateFormat
 
class  Formatter
 
class  TimeFormat
 

Functions

def format
 
def time_format
 

Variables

tuple re_formatchars = re.compile(r'(?<!\\)([aAbBcdDfFgGhHiIjlLmMnNOPrsStTUuwWyYzZ])')
 
tuple re_escaped = re.compile(r'\\(.)')
 

Detailed Description

PHP date() style date formatting
See http://www.php.net/date for format strings

Usage:
>>> import datetime
>>> d = datetime.datetime.now()
>>> df = DateFormat(d)
>>> print df.format('jS F Y H:i')
7th October 2003 11:39
>>>