Skip to content

A virtual-keyboard generator for eScriptorium 🥬

License

Notifications You must be signed in to change notification settings

alix-tz/virtual-kabbage

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

15 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Virtual Kabbage 🥬 - A virtual-keyboard generator for eScriptorium

Usage

Install dependencies in a virtual environment with pip (pip install -r requirements.txt) and run cook.py providing up to three arguments:

  • -i : (required) path to CSV file used to generate the virtual keyboard (sep must be ,!).
  • -auth : (opt) allows you to add a value to the "author" field in the final JSON file.
  • -k : (opt) allows you to specify a value for the "name" field in the final JSON file.

Examples

$ python cook.py -i test/test.csv
>>> ...
    "version": "0.1",
    "name": "test",
    "author": "Virtual Kabbage",
    "characters": [
    ...
$ python cook.py -i test/test.csv -auth "Jane Doe <[email protected]>"

>>> ...
    "version": "0.1",
    "name": "test",
    "author": "Virtual Kabbage & Jane Doe <[email protected]>",
    "characters": [
    ...
$ python cook.py -i test/test.csv -auth "Jane Doe <[email protected]>" -k "my nice keyboard"

>>> ...
    "version": "0.1",
    "name": "my nice keyboard",
    "author": "Virtual Kabbage & Jane Doe <[email protected]>",
    "characters": [
    ...

Expected mapping

Input: my_kbd.csv

a,b,c
d,,

Output: my_kbd.json

{
    "version": "0.1",
    "name": "my_kbd",
    "author": "Virtual Kabbage",
    "characters": [
        {
            "row": 0,
            "column": 0,
            "character": "a",
            "keyboard_code": null
        },
        {
            "row": 0,
            "column": 1,
            "character": "b",
            "keyboard_code": null
        },
        {
            "row": 0,
            "column": 3,
            "character": "c",
            "keyboard_code": null
        },
        {
            "row": 1,
            "column": 0,
            "character": "d",
            "keyboard_code": null
        }
    ]
}

About

A virtual-keyboard generator for eScriptorium 🥬

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages