Spaces:
Sleeping
Sleeping
| """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, | |
| ) | |