Unifying your spelling dictionaries with merge-dictionaries

If you work across multiple IDEs, you’ve probably noticed that each one maintains its own spelling dictionary. Add a word in PyCharm, and PhpStorm still underlines it. Teach Hunspell a word, and your IDE doesn’t know it. That’s where merge-dictionaries comes in. This tool automatically discovers your dictionaries, extracts the words, and merges them into […]

Read more

secretsmith: a Python helper for Vault and OpenBao

After building numerous applications that needed to connect to HashiCorp Vault or OpenBao, I found myself copying the same configuration parsing and client connection code over and over again. The Python hvac library is powerful but verbose for common operations, especially when dealing with KV2 secrets engines. Today, I’m excited to announce secretsmith – a […]

Read more