├── .gitignore ├── MANIFEST.in ├── README.md ├── plover_python_dictionary.py ├── pyproject.toml ├── setup.cfg ├── setup.py ├── test ├── conftest.py ├── dict_callable_checks.py ├── dict_reverse_lookup.py ├── dict_show_stroke.py ├── dict_utf8.py └── test_python_dict.py └── tox.ini /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensteno/plover_python_dictionary/HEAD/.gitignore -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensteno/plover_python_dictionary/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensteno/plover_python_dictionary/HEAD/README.md -------------------------------------------------------------------------------- /plover_python_dictionary.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensteno/plover_python_dictionary/HEAD/plover_python_dictionary.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensteno/plover_python_dictionary/HEAD/pyproject.toml -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensteno/plover_python_dictionary/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensteno/plover_python_dictionary/HEAD/setup.py -------------------------------------------------------------------------------- /test/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensteno/plover_python_dictionary/HEAD/test/conftest.py -------------------------------------------------------------------------------- /test/dict_callable_checks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensteno/plover_python_dictionary/HEAD/test/dict_callable_checks.py -------------------------------------------------------------------------------- /test/dict_reverse_lookup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensteno/plover_python_dictionary/HEAD/test/dict_reverse_lookup.py -------------------------------------------------------------------------------- /test/dict_show_stroke.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensteno/plover_python_dictionary/HEAD/test/dict_show_stroke.py -------------------------------------------------------------------------------- /test/dict_utf8.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensteno/plover_python_dictionary/HEAD/test/dict_utf8.py -------------------------------------------------------------------------------- /test/test_python_dict.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensteno/plover_python_dictionary/HEAD/test/test_python_dict.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensteno/plover_python_dictionary/HEAD/tox.ini --------------------------------------------------------------------------------