Skip to content

Instantly share code, notes, and snippets.

@jmoiron
Created March 28, 2019 01:55
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jmoiron/0f4b7c54db9a72b7e35ed0536265cfdc to your computer and use it in GitHub Desktop.
Save jmoiron/0f4b7c54db9a72b7e35ed0536265cfdc to your computer and use it in GitHub Desktop.
>>> humanize.naturalsize(1<<30)
'1.1 GB'
>>> humanize.naturalsize(1<<30, binary=True)
'1.0 GiB'
humanize.naturalsize(1<<30, gnu=True)
'1.0G'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment