Use your local environment variables in Plover
Project description
Plover Local Env Var
This Plover extension plugin contains a meta that can read in and output values stored in local environment variables on your computer.
Use Case
Ever have information that is not quite secret enough to warrant putting in a password manager, but not public enough that you want to have steno dictionary outlines containing it available to the public? Information like your phone number, home address, and date of birth is very handy to have in outline values when filling in online forms etc, but I wouldn't want to share that info in my steno dictionaries.
So, in order to be able to share the outlines I use, but not the values contained in them, I put that kind of semi-secret information in environment variables, and use this plugin to access them in order to write them out.
[!NOTE] If you prefer to manually write out all your semi-secret information and/or you do not share your steno dictionaries publicly, you may not need to use this plugin at all.
[!WARNING] Please do not put secret information like passwords in your steno dictionary outlines! Plover stands between when you write your keystrokes and when they output on screen, fitting the very definition of a "man-in-the-middle" (see your
strokes.log
file for what Plover records by default). Use a password manager. If you use 1Password, you may find the Plover 1Password plugin of use to safely retrieve your passwords from your steno dictionary outlines.
Install
- In the Plover application, open the Plugins Manager (either click the Plugins
Manager icon, or from the
Tools
menu, selectPlugins Manager
). - From the list of plugins, find
plover-local-env-var
- Click "Install/Update"
- When it finishes installing, restart Plover
- After re-opening Plover, open the Configuration screen (either click the
Configuration icon, or from the main Plover application menu, select
Preferences...
) - Open the Plugins tab
- Check the box next to
plover_local_env_var
to activate the plugin
How To Use
After defining and exporting environment variables in your shell
configuration file, you can use them in your outlines with the ENV_VAR
meta. For an environment variable named $PHONE_NUMBER
, the outline would look
like:
macOS or Linux
"{:ENV_VAR:$PHONE_NUMBER}"
Windows
"{:ENV_VAR:$ENV:PHONE_NUMBER}"
Pressing the "Disconnect and reconnect the machine" button on the Plover UI resets the environment variable cache. If you make any changes to the values contained in your environment variables, make sure to press it so they get re-read in again.
All the fetched values also get cached, so subsequent calls to the same env var get returned quicker.
Development
Clone from GitHub with git:
git clone git@github.com:paulfioravanti/plover-local-env-var.git
cd plover-local-env-var
python -m pip install --editable ".[test]"
If you are a Tmuxinator user, you may find my plover_local_env_var project file of reference.
Python Version
Plover's Python environment currently uses version 3.9 (see Plover's
workflow_context.yml
to confirm the current version).
So, in order to avoid unexpected issues, use your runtime version manager to make sure your local development environment also uses Python 3.9.x.
Testing
- Pytest is used for testing in this plugin.
- Coverage.py and pytest-cov are used for test coverage, and to run coverage within Pytest
- Pylint is used for code quality
- Mypy is used for static type checking
Currently, the only parts able to be tested are ones that do not rely directly on Plover.
Run tests, coverage, and linting with the following commands:
pytest --cov --cov-report=term-missing
pylint plover_local_env_var
mypy plover_local_env_var
To get a HTML test coverage report:
coverage run --module pytest
coverage html
open htmlcov/index.html
If you are a just
user, you may find the justfile
useful during
development in running multiple test commands. You can run the following command
from the project root directory:
just --working-directory . --justfile test/justfile
Deploying Changes
After making any code changes, deploy the plugin into Plover with the following command:
plover --script plover_plugins install --editable .
Where
plover
in the command is a reference to your locally installed version of Plover. See the Invoke Plover from the command line page for details on how to create that reference.
When necessary, the plugin can be uninstalled via the command line with the following command:
plover --script plover_plugins uninstall plover-local-env-var
Project details
Release history Release notifications | RSS feed
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 plover_local_env_var-0.3.6.tar.gz
.
File metadata
- Download URL: plover_local_env_var-0.3.6.tar.gz
- Upload date:
- Size: 22.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.1.1 CPython/3.12.6
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | c0250a9e01d8cf10dc8514a92dc3fe6ae9fb240f3584cd161cc5e3fbd5311f45 |
|
MD5 | d178f48bd8fc55726be7fdc5a9e32177 |
|
BLAKE2b-256 | c9cb76c0e3c797c724d5fd5a4eb8b6ba6371014643d1a546e772ecef905aa368 |
File details
Details for the file plover_local_env_var-0.3.6-py3-none-any.whl
.
File metadata
- Download URL: plover_local_env_var-0.3.6-py3-none-any.whl
- Upload date:
- Size: 22.6 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.1.1 CPython/3.12.6
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 104e41918b994b5ba48bd9f6a1159be972b3c51e490177bd9f758d2e46e3b33e |
|
MD5 | 4a9cfd51655c2063eb181207b77e6772 |
|
BLAKE2b-256 | 5eb1abacc6b051fc0e5d8ba9a976c1d9b470f61ed267202d7addccb8b2368a5b |