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