httpie-cli/httpie/utils.py

49 lines
1.1 KiB
Python
Raw Normal View History

2013-03-24 15:23:18 +01:00
from __future__ import division
def humanize_bytes(n, precision=2):
2013-04-10 16:48:18 +02:00
# Author: Doug Latornell
# Licence: MIT
# URL: http://code.activestate.com/recipes/577081/
"""Return a humanized string representation of a number of bytes.
Assumes `from __future__ import division`.
>>> humanize_bytes(1)
2014-04-24 17:08:40 +02:00
'1 B'
>>> humanize_bytes(1024, precision=1)
'1.0 kB'
2014-04-24 17:08:40 +02:00
>>> humanize_bytes(1024 * 123, precision=1)
'123.0 kB'
2014-04-24 17:08:40 +02:00
>>> humanize_bytes(1024 * 12342, precision=1)
'12.1 MB'
2014-04-24 17:08:40 +02:00
>>> humanize_bytes(1024 * 12342, precision=2)
'12.05 MB'
2014-04-24 17:08:40 +02:00
>>> humanize_bytes(1024 * 1234, precision=2)
'1.21 MB'
2014-04-24 17:08:40 +02:00
>>> humanize_bytes(1024 * 1234 * 1111, precision=2)
'1.31 GB'
2014-04-24 17:08:40 +02:00
>>> humanize_bytes(1024 * 1234 * 1111, precision=1)
'1.3 GB'
"""
abbrevs = [
(1 << 50, 'PB'),
(1 << 40, 'TB'),
(1 << 30, 'GB'),
(1 << 20, 'MB'),
(1 << 10, 'kB'),
2013-04-13 02:49:27 +02:00
(1, 'B')
]
if n == 1:
2013-04-15 05:56:47 +02:00
return '1 B'
for factor, suffix in abbrevs:
if n >= factor:
break
# noinspection PyUnboundLocalVariable
return '%.*f %s' % (precision, n / factor, suffix)