vote up 1 vote down star
1

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?

flag

59% accept rate
I think this falls under the heading of "too small a task to require a library". If you look at the source for hurry.filesize, there's only a single function, with a dozen lines of code. And even that could be compacted. – Ben Blank Jul 7 at 21:09
The advantage of using a library is that it is usually tested (contains tests that can be run in case if one's edit introduces a bug). If you add the tests, then it is not anymore 'dozen lines of code' :-) – Sridhar Ratnakumar Jul 7 at 21:49

3 Answers

vote up 2 vote down check

One such library is hurry.filesize.

>>> from hurry.filesize import alternative
>>> size(1, system=alternative)
'1 byte'
>>> size(10, system=alternative)
'10 bytes'
>>> size(1024, system=alternative)
'1 KB'
link|flag
However, this library is not very customizable. >>> from hurry.filesize import size >>> size(1031053) >>> size(3033053) '2M' I expect it show, for example, '2.4M' or '2423K' .. instead of the blatantly approximated '2M'. – Sridhar Ratnakumar Jul 7 at 21:06
vote up 1 vote down

Addressing the above mentioned problem with hurry.filesize:

def sizeof_fmt(num):
    for x in ['bytes','KB','MB','GB','TB']:
        if num < 1024.0:
            return "%3.1f%s" % (num, x)
        num /= 1024.0

Example:

>>> sizeof_fmt(168963795964)
'157.4GB'

by Fred Cirera

link|flag
1  
that snippet returns None with sizes greater than 1024 TB, right? – fortran Oct 16 at 8:42
Yep - print sizeof_fmt(999**99) shows None – dbr Nov 3 at 22:36
vote up 1 vote down

DiveIntoPython3 also talks about this function.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.