File size: 444 Bytes
7952f32
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
"""Humanize — convert numbers, file sizes, and times to human-readable strings."""
from graphforge.sample_repos.humanize.filesize import naturalsize
from graphforge.sample_repos.humanize.number import (
    apnumber,
    clamp,
    fractional,
    intcomma,
    intword,
    ordinal,
    scientific,
)
from graphforge.sample_repos.humanize.time import (
    naturaldate,
    naturalday,
    naturaldelta,
    naturaltime,
    precisedelta,
)