Print / show characters.
| Module | ascii |
STATIC ASCI data since unicodedata does not output these values. |
| Module | cli |
Cli Commands Module. |
| Module | parser |
Cli Commands Module. |
| Module | screen |
test. |
From the __init__.py module:
| Class | Groups |
Pre built filter for groups of unicode objects. |
| Variable | LETTERS_NUMBERS |
letters and numbers we want to track for LetterMixer. |
| Class | LetterMixer |
Letter mixer clas. |
| Class | Pairs |
Pre built filter for pairs of unicode objects. |
| Class | PairsGroups |
Pair groups class. |
| Function | iter_unicodes |
yield all Unicode values. |
yield all Unicode values.
returns iterator of dictionaries in the following format:
{
"int": i,
"hex": hval,
"chr": char,
"name": name.lower(),
"pref": pref,
"htmlent": htmlent,
"tokens": list,
}
example for letter "a":
{
"int": 97,
"hex": "61",
"chr": "a",
"name": "latin small letter a",
"pref": "\\u0061",
"htmlent": "a"
"tokens": ["latin", "small", "letter", "a"],
}
| Returns | Undocumented (type: Iterator[Dict]) | |