A downloadable tool for Windows

Download NowName your own price

 KeyWallet

  Tired of hunting through old projects for that one API key?  KeyWallet keeps all your keys in one place with instant access from anywhere.

  Features

  - Global hotkey — Press Ctrl+Shift+K from any app to quick-search  and copy by name
  - One-click copy — Click to copy, keys stay masked
  - Optional encryption — Set a master password to lock your vault
  - Manual lock — Step away without closing the app
  - System tray — Runs quietly in the background
  - Simple storage — Keys saved to ~/.keywallet.json for easy access in scripts

  Quick access in your code

  Python:  
import json
from pathlib import Path
wallet = json.loads((Path.home() / ".keywallet.json").read_text())
key = wallet.get("anthropic")

  JavaScript/Node:
const wallet = JSON.parse(require('fs').readFileSync(require('os').homedir() + '/.keywallet.json'))
const key = wallet.anthropic

  PowerShell:
$wallet = Get-Content "$env:USERPROFILE\.keywallet.json" | ConvertFrom-Json 
$key = $wallet.anthropic

  Bash:
key=$(jq -r '.anthropic' ~/.keywallet.json)


  No cloud. No account. Just your keys, on your machine.

Download

Download NowName your own price

Click download now to get access to the following files:

KeyWallet.exe 32 MB

Leave a comment

Log in with itch.io to leave a comment.