Plover Stroke
Helper class for working with steno strokes.
Usage:
from plover_stroke import BaseStroke
class Stroke(BaseStroke):
pass
Stroke.setup(
'''
#
S- T- K- P- W- H- R-
A- O-
*
-E -U
-F -R -P -B -L -G -T -S -D -Z
'''.split(),
'A- O- * -E -U'.split(),
'#', {
'S-': '1-',
'T-': '2-',
'P-': '3-',
'H-': '4-',
'A-': '5-',
'O-': '0-',
'-F': '-6',
'-P': '-7',
'-L': '-8',
'-T': '-9',
})
Stroke(56)
Stroke(('-F', 'S-', '-S', 'A-', '*'))
Stroke('R-')
Stroke('L-')
s = Stroke('STK')
s.keys()
s.is_number()
int(s)
s == 0b00000000000000000001110
sorted(map(Stroke, 'AOE ST-PB *Z # R-R'.split()))
Release history
1.1.0
- add
feral_number_key
support: when set to True
, allow the number key
letter anywhere when parsing steno (e.g. 18#
, #18
, and 1#8
are all
valid and equivalent, as per the RTF/CRE spec).
1.0.1
- fix exception in case of invalid keys mask
1.0.0
- drop
Stroke.xrange
and Stroke.xsuffixes
methods Stroke.keys()
now return a tuple- fix corner case when parsing steno (
RR
-> R-R
) - fix RTFCRE when numbers are involved (align with Plover's behavior)
- fix implicit hyphen handling when numbers are involved
- renamed
Stroke.isnumber
to Stroke.is_number
- speed up implementation through a C extension
0.4.0
0.3.3
- fix
python_requires
package metadata
0.3.2