===================================================================== --- Changes ------------------------------ - updated python scwrypts API to use latest pattern established in the nodejs library - SCWRYPTS_ROOT__scwrypts is now supports loading with each run and detects managed installations vs manual installations; this now means SCWRYPTS_ROOT can no longer be injected to scwrypts (this was a v2 legacy support thing and probably does not apply to you) --- New Features ------------------------- - pypi/scwrypts ) added 'get_generator' API to testing utilities to provide a nice way to include default generator options --- Bug Fixes ---------------------------- - scwrypts groups which use a required environment name regex no longer load specialized static files outside of the required environments.
11 lines
193 B
Python
11 lines
193 B
Python
'''
|
|
automated testing utilties, but primarily a random data generator
|
|
'''
|
|
__all__ = [
|
|
'generate',
|
|
]
|
|
|
|
from .generate import generate, get_generator
|
|
|
|
from .character_set import *
|