├── .gitignore ├── LICENSE ├── README.md ├── check.py ├── permut8r ├── deleter.py ├── frequency-list.json ├── inserter.py ├── kanji-dictionary.json ├── kanjiking.py ├── permut8.py ├── reconstructor.py └── swapper.py └── requirements.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertsokol/bunpo-check/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertsokol/bunpo-check/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertsokol/bunpo-check/HEAD/README.md -------------------------------------------------------------------------------- /check.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertsokol/bunpo-check/HEAD/check.py -------------------------------------------------------------------------------- /permut8r/deleter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertsokol/bunpo-check/HEAD/permut8r/deleter.py -------------------------------------------------------------------------------- /permut8r/frequency-list.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertsokol/bunpo-check/HEAD/permut8r/frequency-list.json -------------------------------------------------------------------------------- /permut8r/inserter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertsokol/bunpo-check/HEAD/permut8r/inserter.py -------------------------------------------------------------------------------- /permut8r/kanji-dictionary.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertsokol/bunpo-check/HEAD/permut8r/kanji-dictionary.json -------------------------------------------------------------------------------- /permut8r/kanjiking.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertsokol/bunpo-check/HEAD/permut8r/kanjiking.py -------------------------------------------------------------------------------- /permut8r/permut8.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertsokol/bunpo-check/HEAD/permut8r/permut8.py -------------------------------------------------------------------------------- /permut8r/reconstructor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertsokol/bunpo-check/HEAD/permut8r/reconstructor.py -------------------------------------------------------------------------------- /permut8r/swapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertsokol/bunpo-check/HEAD/permut8r/swapper.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albertsokol/bunpo-check/HEAD/requirements.txt --------------------------------------------------------------------------------