The public interface of the bytesize package.
Contents:
UNITS: _constants.UNITS()
All parts of the public interface of bytesize must be imported directly from the top-level bytesize module, as:
from bytesize import Size
from bytesize import KiB
from bytesize import SizeError
s = Size(24, KiB)
try:
s + 32
except SizeError as e:
raise e