Functions for decomposing nonnegative integers according to various unit scales.
Presupplied scales:
BINARY_BYTES_SCALE: Units of (B)ytes, KiB, MiB, GiB etc.DECIMAL_BYTES_SCALE: Units of (B)ytes, KB, MB, GB etc.DECIMAL_SCALE: Unit prefixes K, M, G etc.TIME_SCALE: Units of (s)econds, (m)inutes, (h)ours, (d)ays and (w)eeks.
Function combine(components, scale)
Combine a sequence of value components as from human() into an integer.
Function geek_bytes(n)
Decompose a nonnegative integer n into counts by unit
from BINARY_BYTES_SCALE.
Function human(n, scale)
Decompose a nonnegative integer n into counts by unit from scale.
Parameters:
n: a nonnegative integer.scale: a sequence of(factor,unit)where factor is the size factor to the follow scale andunitis the designator of the unit.
Function human_bytes(n)
Decompose a nonnegative integer n into counts by unit
from DECIMAL_BYTES_SCALE.
Function human_time(n, scale=None)
Decompose a nonnegative integer n into counts by unit
from TIME_SCALE.
Function multiparse(s, scales, offset=0)
Parse an integer followed by an optional scale and return computed value. Returns the parsed value and the new offset.
Parameters:
s: the string to parse.scales: an iterable of scale arrays of (factor, unit_name).offset: starting position for parse.
Function parse(s, scale, offset=0)
Parse an integer followed by an optional scale and return computed value. Returns the parsed value and the new offset.
Parameters:
s: the string to parse.scale: a scale array of (factor, unit_name).offset: starting position for parse.
Function transcribe(n, scale, max_parts=None, skip_zero=False, sep='')
Transcribe a nonnegative integer n against scale.
Parameters:
n: a nonnegative integer.scale: a sequence of (factor, unit) where factor is the size factor to the follow scale andunitis the designator of the unit.max_parts: the maximum number of components to transcribe.skip_zero: omit components of value 0.sep: separator between words, default:''.
Function transcribe_bytes_geek(n, max_parts=1, **kw)
Transcribe a nonnegative integer n against BINARY_BYTES_SCALE.
Function transcribe_bytes_human(n, max_parts=1, **kw)
Transcribe a nonnegative integer n against DECIMAL_BYTES_SCALE.
Function transcribe_time(n, max_parts=3, **kw)
Transcribe a nonnegative integer n against TIME_SCALE.
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 cs.units-20181228.tar.gz.
File metadata
- Download URL: cs.units-20181228.tar.gz
- Upload date:
- Size: 3.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.18.4 setuptools/40.0.0 requests-toolbelt/0.8.0 tqdm/4.23.0 CPython/3.6.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4e2c4cf63356e4d2ae6faa65d46afe4ed23564b925afed068aee988d114e3490
|
|
| MD5 |
77887fb59b2bab9b669baca3e0973dfd
|
|
| BLAKE2b-256 |
812a8ab5be6b4745386144920122901908d9a6404a9561c166460c97475850a3
|