Skip to content

Instantly share code, notes, and snippets.

@ElectroDrome
Last active April 29, 2024 20:08
Show Gist options
  • Save ElectroDrome/bbae52ee0c753032e2411860b2358108 to your computer and use it in GitHub Desktop.
Save ElectroDrome/bbae52ee0c753032e2411860b2358108 to your computer and use it in GitHub Desktop.
Python: Format a number of bytes into a human readable format
def format_bytes(size, decimal_places=2):
for unit in ['B', 'KiB', 'MiB', 'GiB', 'TiB', 'PiB']:
if size < 1024.0 or unit == 'PiB':
break
size /= 1024.0
return f"{size:.{decimal_places}f} {unit}"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment