bazarr/libs/pysubs2/common.py

31 lines
673 B
Python
Raw Normal View History

2018-10-31 16:08:29 +00:00
from collections import namedtuple
import sys
_Color = namedtuple("Color", "r g b a")
class Color(_Color):
"""
(r, g, b, a) namedtuple for 8-bit RGB color with alpha channel.
All values are ints from 0 to 255.
"""
def __new__(cls, r, g, b, a=0):
for value in r, g, b, a:
if value not in range(256):
raise ValueError("Color channels must have values 0-255")
return _Color.__new__(cls, r, g, b, a)
#: Version of the pysubs2 library.
2019-09-20 21:56:33 +00:00
VERSION = "0.2.4"
2018-10-31 16:08:29 +00:00
PY3 = sys.version_info.major == 3
if PY3:
text_type = str
binary_string_type = bytes
2018-10-31 16:08:29 +00:00
else:
text_type = unicode
binary_string_type = str