Compare commits

...
Sign in to create a new pull request.

4 commits

8 changed files with 89 additions and 5 deletions

View file

@ -1,5 +1,41 @@
# Changelog
## 0.10.2 and 0.7.11
+ fix incorrect types on `cb32decode()`
## 0.10.1 and 0.7.10
+ `peewee`: fix missing imports
## 0.10.0
+ `peewee`: add `SnowflakeField` class
## 0.9.0
+ Fix to make experimental `Waiter` usable
+ Suspend `glue()` release indefinitely
+ Add `yesno()`
+ Document validators
## 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`
+ Improve (experimental) `Waiter`
## 0.7.7
+ Fix imports in `.sqlalchemy`
## 0.7.5
+ Delay release of `FakeModule` to 0.9.0

View file

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

View file

@ -35,9 +35,11 @@ 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.7.11"
__version__ = "0.7.7"
__all__ = (
'ConfigOptions', 'ConfigParserConfigSource', 'ConfigSource', 'ConfigValue',
@ -45,6 +47,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

@ -179,7 +179,7 @@ def cb32encode(val: bytes) -> str:
'''
return want_str(base64.b32encode(val)).translate(B32_TO_CROCKFORD)
def cb32decode(val: bytes | str) -> str:
def cb32decode(val: bytes | str) -> bytes:
'''
Decode bytes from Crockford Base32.
'''

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')

View file

@ -18,7 +18,7 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
from contextvars import ContextVar
from typing import Iterable
from playhouse.shortcuts import ReconnectMixin
from peewee import CharField, Database, MySQLDatabase, _ConnectionState
from peewee import CharField, Database, Field, MySQLDatabase, _ConnectionState
import re
from suou.iding import Siq

View file

@ -256,6 +256,8 @@ def unbound_fk(target: str | Column | InstrumentedAttribute, typ: _T | None = No
target_name = target
if typ is None:
typ = IdType
else:
raise TypeError('target must be a str, a Column or a InstrumentedAttribute')
return Column(typ, ForeignKey(target_name, ondelete='SET NULL'), nullable=True, **kwargs)
@ -277,6 +279,8 @@ def bound_fk(target: str | Column | InstrumentedAttribute, typ: _T = None, **kwa
target_name = target
if typ is None:
typ = IdType
else:
raise TypeError('target must be a str, a Column or a InstrumentedAttribute')
return Column(typ, ForeignKey(target_name, ondelete='CASCADE'), nullable=False, **kwargs)

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))