Skip to content

Instantly share code, notes, and snippets.

@nickleeh
Created August 26, 2015 09:32
Show Gist options
  • Select an option

  • Save nickleeh/5a816291362cc2033206 to your computer and use it in GitHub Desktop.

Select an option

Save nickleeh/5a816291362cc2033206 to your computer and use it in GitHub Desktop.
def sizeof_fmt(num, suffix='B'):
for unit in ['','Ki','Mi','Gi','Ti','Pi','Ei','Zi']:
if abs(num) < 1024.0:
return "%3.1f%s%s" % (num, unit, suffix)
num /= 1024.0
return "%.1f%s%s" % (num, 'Yi', suffix)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment