Human Readable File Sizes
Project description
Parses & Formats integer file sizes to human readable file sizes.
Example Usage
Parsing
>>> from hfilesize import Format, FileSize >>> FileSize('1k') ... 1000 >>> FileSize('1K') ... 1024 >>> FileSize('1kib') ... 1024 >>> FileSize('1K', default_binary=False, case_sensitive=False) ... 1000 >>> FileSize('1 kibibyte') ... 1024
Formatting
>>> '{:d}'.format(FileSize(1024)) ... '1024' >>> '{:.02fH}'.format(FileSize(1024)) ... '1 KB' >>> '{:.02fHcv}'.format(FileSize(1024)) ... '1 kilobyte' >>> '{:.02fhs}'.format(FileSize(1000)) ... '1 KB' >>> '{:.02fhs^0}'.format(FileSize(1000)) ... '1000 B' >>> '{: >10.02fH}'.format(FileSize(1024)) ... ' 1 KB'
Documentation
Parsing Options
case_sensitive: Use 1024 for upper case and 1000 for lower case if casing exists, as is common in unix utilities, e.g. dd
default_binary: Default base if it is not clear what the unit is (i.e. if it is not ‘mib’ or ‘mebibytes’)
Formatting Options
format type: [hH][size_format][^exponent]
h: Base 1000
H: Base 1024
size_format: c | cs | cv | e | ev | s | sv
c: Commonly used case-sensitive suffixes
cs: Commonly used abbreviated case-sensitive suffixes
cv: Commonly used verbose case-sensitive suffixes
e: IEC suffixes
ev: IEC verbose suffixes
s: SI suffixes
sv: SI verbose suffixes
exponent: integer
References
Inspired by:
License
Licensed under GPLv3.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
File details
Details for the file hfilesize-0.1.0.zip
.
File metadata
- Download URL: hfilesize-0.1.0.zip
- Upload date:
- Size: 7.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 560578c395a3b9b0fd25f93c6fb75008e0797cff48b462656c2bc7373179fa30 |
|
MD5 | 598f5440be97223d529c41f5be6879a7 |
|
BLAKE2b-256 | 6f2923423e1022626fe2251fbbf3e0854c6f1e954d740537718938ba5072c8a4 |