A small framework to test and compare mobile keyboards
Project description
kebbie
A small framework to test and compare mobile keyboards
Description •
Install •
Usage •
Contribute
Documentation
Description
kebbie
is a small framework for testing and benchmarking mobile keyboards.
The primary goal of this package is to establish a cohesive and standardized method for evaluating the various NLP capabilities of a mobile keyboard and comparing them to existing alternatives.
kebbie
achieves this through the following two features :
- An easy-to-use evaluation function that facilitates the testing of multiple NLP functionalities offered by a mobile keyboard : auto-correction, auto-completion, next-word prediction, and swipe gesture recognition.
- A command-line interface for running the evaluation on established keyboards, operated within emulator.
Install
Install kebbie
by running :
pip install kebbie
For development, you can install it locally by first cloning the repository :
git clone https://github.com/FleksySDK/kebbie.git
cd kebbie
pip install -e .
Usage
If you want to test how well your custom code performs, just declare your own instance of Corrector
, and run the evaluate()
function !
For example, here is how to test the auto-correction provided by pyspellchecker
:
import json
from typing import List
from spellchecker import SpellChecker
from kebbie import Corrector, evaluate
class ExampleCorrector(Corrector):
def __init__(self):
self.spellchecker = SpellChecker()
def auto_correct(self, context: str, keystrokes, word: str) -> List[str]:
cands = self.spellchecker.candidates(word)
return list(cands) if cands is not None else []
if __name__ == "__main__":
corrector = ExampleCorrector()
results = evaluate(corrector)
# Save the results in a local file for later inspection
with open("results.json", "w") as f:
json.dump(results, f, ensure_ascii=False, indent=4)
[!TIP] Make sure to check the full documentation for a detailed explanations of how to use the code !
If instead you want to test an existing keyboard, then you just have to start appium
, start your emulator and install the keyboard you want to test, and finally run :
# For GBoard on Android emulator
kebbie evaluate -K gboard --all_tasks
# For iOS keyboard on iOS emulator
kebbie evaluate -K ios --all_tasks
[!TIP] Make sure to check the full documentation for a detailed explanations of how to setup emulators and how to use the command line !
Contribute
To contribute, install the package locally, create your own branch, add your code (and tests, and documentation), and open a PR !
Pre-commit hooks
Pre-commit hooks are set to check the code added whenever you commit something.
[!NOTE] If you never ran the hooks before, install it with :
pip install -e .[hook] pre-commit install
Then you can just try to commit your code. If your code does not meet the quality required by linters, it will not be committed. You can just fix your code and try to commit again !
[!TIP] You can manually run the pre-commit hooks with :
pre-commit run --all-files
Tests
When you contribute, you need to make sure all the unit-tests pass. You should also add tests if necessary !
[!NOTE] Install the dependencies for testing with :
pip install -e .[test]
You can run the tests with :
pytest
Tests are not included in the pre-commit hooks, because running the tests might be slow, and for the sake of developers we want the pre-commit hooks to be fast !
Pre-commit hooks will not run the tests, but it will automatically update the coverage badge !
Documentation
The documentation should be kept up-to-date. You can visualize the documentation locally by running :
mkdocs serve
[!NOTE] Before running this command, you need to install the documentation dependencies :
pip install -e .[docs]
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file kebbie-0.1.1.tar.gz
.
File metadata
- Download URL: kebbie-0.1.1.tar.gz
- Upload date:
- Size: 40.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.0.0 CPython/3.12.2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 41262da6a2d62383fb027f96174deacee11453521ab994f126784e01de24df31 |
|
MD5 | f190f05cffc276cba3cb9f8ec8052cea |
|
BLAKE2b-256 | 4c3532c96985a26501751269e0019d919ce66c0059f11979938a4765abff00db |
File details
Details for the file kebbie-0.1.1-py3-none-any.whl
.
File metadata
- Download URL: kebbie-0.1.1-py3-none-any.whl
- Upload date:
- Size: 58.5 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.0.0 CPython/3.12.2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 40b2b7662a4b032821485df788fc3eae36975b5878057d12b10b642aa46a5675 |
|
MD5 | 917c371e09cd0e5cd78ce958e9ddc662 |
|
BLAKE2b-256 | 1b9ee82e77478e1692461416c40a8bcf40258898f8db9937dcc2272b240a4b73 |