U
su]aa @ s d Z ddddZd
ddZd S )z$Bits and bytes related humanization.)ZkBZMBZGBZTBZPBZEBZZBZYB)ZKiBZMiBZGiBZTiBZPiBZEiBZZiBZYiBZKMGTPEZY)decimalbinarygnuF%.1fc C s$ |rt d }n|rt d }nt d }|s,|r0dnd}t| }t|}|dkrX|sXd| S ||k rl|sld| S ||k r|rd | S t|D ]d\}} ||d
}
||
k r|s|d || |
| f S ||
k r|r|d || |
| f S q|r|d || |
| f S |d || |
| f S )
a Format a number of bytes like a human readable filesize (e.g. 10 kB).
By default, decimal suffixes (kB, MB) are used.
Non-GNU modes are compatible with jinja2's `filesizeformat` filter.
Examples:
```pycon
>>> naturalsize(3000000)
'3.0 MB'
>>> naturalsize(300, False, True)
'300B'
>>> naturalsize(3000, False, True)
'2.9K'
>>> naturalsize(3000, False, True, "%.3f")
'2.930K'
>>> naturalsize(3000, True)
'2.9 KiB'
```
Args:
value (int, float, str): Integer to convert.
binary (bool): If `True`, uses binary suffixes (KiB, MiB) with base
210 instead of 103.
gnu (bool): If `True`, the binary argument is ignored and GNU-style
(`ls -sh` style) prefixes are used (K, M) with the 2**10 definition.
format (str): Custom formatter.
Returns:
str: Human readable representation of a filesize.
r r r i i z%d Bytez%d Bytesz%dB z %sz%s)suffixesfloatabs enumerate)valuer r formatsuffixbasebytesZ abs_bytesisZunit r B/opt/alt/python38/lib/python3.8/site-packages/humanize/filesize.pynaturalsize s.
r N)FFr )__doc__r r r r r r s