Created
March 28, 2019 01:55
-
-
Save jmoiron/0f4b7c54db9a72b7e35ed0536265cfdc to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
>>> 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