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?
|
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? |
|||||
|
|
Addressing the above "too small a task to require a library" issue by a straightforward implementation:
Example:
by Fred Cirera Update: Slightly tweaked snippet works with very big sizes. Anything bigger than one TB will be displayed in TBs.
Update 2: Another slight tweak to handle negative file sizes (helpful when dealing with file size deltas).
|
||||
|
Here's my version. It does not use a for-loop. It has constant complexity, O(1), and is in theory more efficient than the answers here that use a for-loop.
To make it more clear what is going on, we can omit the code for the string formatting. Here are the lines that actually do the work:
|
|||||||||||||||||
|
|
One such library is hurry.filesize.
|
|||||||
|
|
Riffing on the snippet provided as an alternative to hurry.filesize(), here is a snippet that gives varying precision numbers based on the prefix used. It isn't as terse as some snippets, but I like the results.
|
|||
|
|
|
|||
|
|
|
Drawing from all the previous answers, here is my take on it. It's an object which will store the file size in bytes as an integer. But when you try to print the object, you automatically get a human readable version.
|
|||
|
|
|
A library that has all the functionality that it seems you're looking for is humanize. humanize.naturalsize() seems to do everything you're looking for. |
|||
|
|