Created
March 28, 2019 01:55
-
-
Save jmoiron/0f4b7c54db9a72b7e35ed0536265cfdc to your computer and use it in GitHub Desktop.
Revisions
-
jmoiron created this gist
Mar 28, 2019 .There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,8 @@ >>> humanize.naturalsize(1<<30) '1.1 GB' >>> humanize.naturalsize(1<<30, binary=True) '1.0 GiB' humanize.naturalsize(1<<30, gnu=True) '1.0G'