mirror of https://github.com/flaggo/pydu.git
362 B
362 B
Unit
Utils for handling unit.
unit.Bytes
Bytes(bytes)
Supply several methods dealing with bytes.
Bytes.convert(self, unit=None, multiple=1024)
Convert bytes with given unit
.
If unit
is None
, convert bytes with suitable unit.
Convert multiple
is default to be 1024.
>>> Bytes(1024).convert()
(1, 'KB')