0.8.2 fix chalk behavior

This commit is contained in:
Yusur 2025-11-10 17:18:13 +01:00
parent 9471fc338f
commit 305f193f93
5 changed files with 53 additions and 3 deletions

View file

@ -1,5 +1,13 @@
# Changelog
## 0.8.2 and 0.7.9
+ `.color`: fix `chalk` not behaving as expected
## 0.8.1 and 0.7.8
+ Fix missing type guard in `unbound_fk()` and `bound_fk()`
## 0.8.0
+ Add `username_column()` to `.sqlalchemy`

View file

@ -10,7 +10,7 @@ license = "Apache-2.0"
readme = "README.md"
dependencies = [
"suou==0.8.0",
"suou==0.8.1",
"itsdangerous",
"toml",
"pydantic",

View file

@ -35,9 +35,9 @@ from .strtools import PrefixIdentifier
from .validators import matches
from .redact import redact_url_password
from .http import WantsContentType
from .color import chalk
from .color import chalk, WebColor
__version__ = "0.8.1"
__version__ = "0.8.2"
__all__ = (
'ConfigOptions', 'ConfigParserConfigSource', 'ConfigSource', 'ConfigValue',
@ -45,6 +45,7 @@ __all__ = (
'MissingConfigError', 'MissingConfigWarning', 'PrefixIdentifier',
'Siq', 'SiqCache', 'SiqGen', 'SiqType', 'Snowflake', 'SnowflakeGen',
'StringCase', 'TimedDict', 'TomlI18n', 'UserSigner', 'Wanted', 'WantsContentType',
'WebColor',
'addattr', 'additem', 'age_and_days', 'alru_cache', 'b2048decode', 'b2048encode',
'b32ldecode', 'b32lencode', 'b64encode', 'b64decode', 'cb32encode',
'cb32decode', 'chalk', 'count_ones', 'dei_args', 'deprecated',

View file

@ -55,24 +55,34 @@ class Chalk:
return Chalk(self._flags + (beg,), self._ends + (end,))
def __call__(self, s: str) -> str:
return ''.join(self._flags) + s + ''.join(reversed(self._ends))
@property
def red(self):
return self._wrap(self.RED, self.END_COLOR)
@property
def green(self):
return self._wrap(self.GREEN, self.END_COLOR)
@property
def blue(self):
return self._wrap(self.BLUE, self.END_COLOR)
@property
def yellow(self):
return self._wrap(self.YELLOW, self.END_COLOR)
@property
def cyan(self):
return self._wrap(self.CYAN, self.END_COLOR)
@property
def purple(self):
return self._wrap(self.PURPLE, self.END_COLOR)
@property
def grey(self):
return self._wrap(self.GREY, self.END_COLOR)
gray = grey
marine = blue
magenta = purple
@property
def bold(self):
return self._wrap(self.BOLD, self.END_BOLD)
@property
def faint(self):
return self._wrap(self.FAINT, self.END_BOLD)
@ -130,3 +140,7 @@ class WebColor(namedtuple('_WebColor', 'red green blue')):
def __str__(self):
return f"rgb({self.red}, {self.green}, {self.blue})"
__all__ = ('chalk', 'WebColor')

27
tests/test_color.py Normal file
View file

@ -0,0 +1,27 @@
import unittest
from suou import chalk
class TestColor(unittest.TestCase):
def setUp(self) -> None:
...
def tearDown(self) -> None:
...
def test_chalk_colors(self):
strg = "The quick brown fox jumps over the lazy dog"
self.assertEqual(f'\x1b[31m{strg}\x1b[39m', chalk.red(strg))
self.assertEqual(f'\x1b[32m{strg}\x1b[39m', chalk.green(strg))
self.assertEqual(f'\x1b[34m{strg}\x1b[39m', chalk.blue(strg))
self.assertEqual(f'\x1b[36m{strg}\x1b[39m', chalk.cyan(strg))
self.assertEqual(f'\x1b[33m{strg}\x1b[39m', chalk.yellow(strg))
self.assertEqual(f'\x1b[35m{strg}\x1b[39m', chalk.purple(strg))
def test_chalk_bold(self):
strg = "The quick brown fox jumps over the lazy dog"
self.assertEqual(f'\x1b[1m{strg}\x1b[22m', chalk.bold(strg))
self.assertEqual(f'\x1b[2m{strg}\x1b[22m', chalk.faint(strg))
self.assertEqual(f'\x1b[1m\x1b[33m{strg}\x1b[39m\x1b[22m', chalk.bold.yellow(strg))