usenetbinary-newsreaderquickboxtraktkodistabletvshowsqnaptautullifanartsickbeardtvseriesplexswizzinembyseedboxtvdbnzbgetsubtitlewebui
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
33 lines
657 B
33 lines
657 B
"""Main package for humanize."""
|
|
from humanize.filesize import naturalsize
|
|
from humanize.i18n import activate, deactivate
|
|
from humanize.number import apnumber, fractional, intcomma, intword, ordinal, scientific
|
|
from humanize.time import (
|
|
naturaldate,
|
|
naturalday,
|
|
naturaldelta,
|
|
naturaltime,
|
|
precisedelta,
|
|
)
|
|
|
|
__version__ = VERSION = '3.1.0'
|
|
|
|
|
|
__all__ = [
|
|
"__version__",
|
|
"activate",
|
|
"apnumber",
|
|
"deactivate",
|
|
"fractional",
|
|
"intcomma",
|
|
"intword",
|
|
"naturaldate",
|
|
"naturalday",
|
|
"naturaldelta",
|
|
"naturalsize",
|
|
"naturaltime",
|
|
"ordinal",
|
|
"precisedelta",
|
|
"scientific",
|
|
"VERSION",
|
|
]
|
|
|