Skip to main content

A small framework to test and compare mobile keyboards

Project description

kebbie

A small framework to test and compare mobile keyboards

GitHub release Test status Lint status Coverage status Docs licence

DescriptionInstallUsageContribute
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

kebbie-0.1.2.tar.gz (40.9 kB view details)

Uploaded Source

Built Distribution

kebbie-0.1.2-py3-none-any.whl (58.5 kB view details)

Uploaded Python 3

File details

Details for the file kebbie-0.1.2.tar.gz.

File metadata

  • Download URL: kebbie-0.1.2.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

Hashes for kebbie-0.1.2.tar.gz
Algorithm Hash digest
SHA256 222c78d8f77b3abbee893e48bc318675e6562eade89c6ea9e84b5e76400f447c
MD5 5bb613040b76bcea6e2b66959af04a3d
BLAKE2b-256 05c18fc068a506ab365777f29f7e6bdaba5eb5b8d3ffe7844440fe9961eb559c

See more details on using hashes here.

File details

Details for the file kebbie-0.1.2-py3-none-any.whl.

File metadata

  • Download URL: kebbie-0.1.2-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

Hashes for kebbie-0.1.2-py3-none-any.whl
Algorithm Hash digest
SHA256 13f34e159ab939b5084dbeaa7f3375455a1b69f0acec032421bdab2075b64631
MD5 a63382b8870322bd3cdb0c3bc9db6805
BLAKE2b-256 4f4a6d421258394993b611fb8863b2a2fd13b9f14638380090577d9dc51b8b3d

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page