There are various snippets on the web that would give you a function to return human readable size from bytes size:
>>> human_readable(2048)
'2 bytes'
>>>
But is there a Python library that provides this?
|
1
|
There are various snippets on the web that would give you a function to return human readable size from bytes size:
But is there a Python library that provides this?
|
||||
|
|
|
One such library is hurry.filesize.
|
||
|
|
|
Addressing the above mentioned problem with
Example:
by Fred Cirera |
||
|
|
DiveIntoPython3 also talks about this function. |
||
|
|