Skip to main content

Hjson dictionary support for Plover

Project description

Hjson dictionary support for Plover.

Installation

Download the latest version of Plover for your operating system from the releases page. Only versions 4.0.0.dev1 and higher are supported.

  1. Open Plover

  2. Navigate to the Plugin Manager tool

  3. Select the “plover-hjson-dictionary” plugin entry in the list

  4. Click install

  5. Restart Plover

The same method can be used for updating and uninstalling the plugin.

Dictionary Format

The Hjson dictionary format used by this plugin maps translations to strokes rather than strokes to translations which differs from the default JSON dictionary format used by Plover. For a basic comparison,

JSON:

{
"PHRO*EFR": "Plover",
"PHRO*FR": "plover",
"PHROFR": "Plover",
}

Hjson:

{
  Plover: # A cool open source project
  [
    PHRO*EFR
    PHROFR
  ]
  plover: # A bird
  [
    PHRO*FR
  ]
}

Comments added within the Hjson dictionary file are currently not preserved on dictionary modification due to round-trip limitations of the Hjson package for Python.

Converting JSON dictionaries to Hjson

You can use the following script to take an input JSON dictionary file path and output Hjson dictionary file path to convert existing Plover JSON dictionaries to the Hjson format used by this plugin.

import json

import hjson


JSON_FILENAME = r''
HJSON_FILENAME = r''

# Load JSON dictionary
with open(JSON_FILENAME, 'r', encoding='utf-8') as in_file:
    in_data = json.load(in_file)

# Group dictionary by value, sorted alphabetically
out_data = {}

for key, value in sorted(in_data.items(), key=lambda x: x[1].casefold()):
    out_data.setdefault(value, []).append(key)
    out_data[value] = sorted(out_data[value])

# Write dictionary to Hjson
with open(HJSON_FILENAME, 'w', encoding='utf-8') as out_file:
    hjson.dump(out_data, out_file,
               sort_keys=True, ensure_ascii=False, encoding='utf-8')

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

plover_hjson_dictionary-0.0.2.tar.gz (16.2 kB view details)

Uploaded Source

Built Distribution

plover_hjson_dictionary-0.0.2-py3-none-any.whl (5.9 kB view details)

Uploaded Python 3

File details

Details for the file plover_hjson_dictionary-0.0.2.tar.gz.

File metadata

  • Download URL: plover_hjson_dictionary-0.0.2.tar.gz
  • Upload date:
  • Size: 16.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.9.1 pkginfo/1.4.1 requests/2.18.4 setuptools/38.5.1 requests-toolbelt/0.8.0 tqdm/4.19.5 CPython/3.6.3

File hashes

Hashes for plover_hjson_dictionary-0.0.2.tar.gz
Algorithm Hash digest
SHA256 08c23ebf960ed73519471e98d6acd2658ff9cfd4f985a99ac2ee460e62169bd5
MD5 478f3b114584ab8695698bb8000a08db
BLAKE2b-256 e43e4ebd8a173fc9d48cfdfe06d5b92f4c417456738fadeb6a77c301bfdf3267

See more details on using hashes here.

File details

Details for the file plover_hjson_dictionary-0.0.2-py3-none-any.whl.

File metadata

  • Download URL: plover_hjson_dictionary-0.0.2-py3-none-any.whl
  • Upload date:
  • Size: 5.9 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.9.1 pkginfo/1.4.1 requests/2.18.4 setuptools/38.5.1 requests-toolbelt/0.8.0 tqdm/4.19.5 CPython/3.6.3

File hashes

Hashes for plover_hjson_dictionary-0.0.2-py3-none-any.whl
Algorithm Hash digest
SHA256 a19fe5989cda79c402ce42a0c5dc3ab26327c5357f6f88f547a34ba20693419e
MD5 8b4658e13ea263fdb37d72d9566070e1
BLAKE2b-256 23094b5e91e909e1b8f8b9ef452ac8aa5ccc3109ca763fe5009081f035aaaada

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