10 lines
346 B
Python
10 lines
346 B
Python
VERSION = (0,4)
|
|
|
|
from humanize.time import *
|
|
from humanize.number import *
|
|
from humanize.filesize import *
|
|
from humanize.i18n import activate, deactivate
|
|
|
|
__all__ = ['VERSION', 'naturalday', 'naturaltime', 'ordinal', 'intword',
|
|
'naturaldelta', 'intcomma', 'apnumber', 'fractional', 'naturalsize',
|
|
'activate', 'deactivate', 'naturaldate']
|