{"id":46869085,"url":"https://github.com/jd-35656/lbx","last_synced_at":"2026-03-10T19:32:40.058Z","repository":{"id":331318883,"uuid":"1111525008","full_name":"jd-35656/lbx","owner":"jd-35656","description":"A lightweight secret storage vault with CLI and Python API. Stores secrets in encrypted files with master password secured via OS keychain (keyring).","archived":false,"fork":false,"pushed_at":"2026-01-01T09:16:02.000Z","size":1295,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-01-06T05:41:35.262Z","etag":null,"topics":["cli","credentials","keychain","keyring","password-manager","secret-management","secrets","security","storage","vault"],"latest_commit_sha":null,"homepage":"https://jd-35656.github.io/lbx/","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/jd-35656.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"docs/contributing/development.md","funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":".github/CODEOWNERS","security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2025-12-07T05:32:24.000Z","updated_at":"2026-01-01T09:15:04.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/jd-35656/lbx","commit_stats":null,"previous_names":["jd-35656/lbx"],"tags_count":3,"template":false,"template_full_name":null,"purl":"pkg:github/jd-35656/lbx","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jd-35656%2Flbx","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jd-35656%2Flbx/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jd-35656%2Flbx/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jd-35656%2Flbx/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/jd-35656","download_url":"https://codeload.github.com/jd-35656/lbx/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jd-35656%2Flbx/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":30350093,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-03-10T15:55:29.454Z","status":"ssl_error","status_checked_at":"2026-03-10T15:54:58.440Z","response_time":106,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["cli","credentials","keychain","keyring","password-manager","secret-management","secrets","security","storage","vault"],"created_at":"2026-03-10T19:32:39.484Z","updated_at":"2026-03-10T19:32:40.044Z","avatar_url":"https://github.com/jd-35656.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# lbx - Lock Box\n\nA lightweight secret storage vault with CLI and Python API. Stores secrets in encrypted files with master password secured via OS keychain.\n\n## Features\n\n- **Secure Encryption**: AES-256 encryption with master password protection\n- **Cross-Platform**: Works on Windows, macOS, and Linux\n- **Dual Interface**: Both CLI and Python API available\n- **Keychain Integration**: Master password stored securely in OS keychain\n- **Simple Workflow**: Intuitive commands for daily use\n- **Minimal Dependencies**: Lightweight and secure\n\n## Installation\n\n```bash\npipx install lbx\n```\n\nFor additional installation methods, see the [Installation Guide](https://jd-35656.github.io/lbx/latest/getting-started/installation/).\n\n## Quick Start\n\n### CLI Usage\n\n```bash\n# Create a new vault\nlbx vault init\n\n# Add a secret\nlbx secret add github token --value ghp_xxxxxx\n\n# Retrieve a secret\nlbx secret get github token\n\n# Update a secret\nprintf \"new-value\" | lbx secret update github token\n\n# List services and secrets\nlbx service list\nlbx secret list\nlbx secret list --service github\n\n# Rename or move secrets\nlbx secret rename github token api_key\nlbx secret move github api_key gitlab\n\n# Lock or delete the vault\nlbx vault lock\nlbx vault delete\n```\n\n### Python API\n\n```python\nfrom lbx import Lbx\n\nvault = Lbx()\n\nvault.add_secret(\"github\", \"token\", \"value\")\nentry = vault.get_secret(\"github\", \"token\")\nprint(entry.value)\n\nvault.list_services()\nvault.list_secrets()\n```\n\nFor complete examples and tutorials, see the [Quick Start Guide](https://jd-35656.github.io/lbx/latest/getting-started/quickstart/).\n\n## Use Cases\n\n- **Development Teams**: Store API keys, database credentials, and service tokens securely\n- **DevOps \u0026 CI/CD**: Manage secrets in deployment pipelines and infrastructure automation\n- **Personal Projects**: Keep sensitive configuration data encrypted and organized\n- **Security-Conscious Users**: Replace plain-text config files with encrypted secret storage\n\n## Documentation\n\nComplete documentation is available at: **[https://jd-35656.github.io/lbx/latest/](https://jd-35656.github.io/lbx/latest/)**\n\n- [Installation Guide](https://jd-35656.github.io/lbx/latest/getting-started/installation/) - Detailed installation instructions\n- [Quick Start](https://jd-35656.github.io/lbx/latest/getting-started/quickstart/) - Get started in minutes\n- [CLI Reference](https://jd-35656.github.io/lbx/latest/user-guide/cli/) - Complete command documentation\n- [API Reference](https://jd-35656.github.io/lbx/latest/api/) - Python API documentation\n- [Contributing](https://jd-35656.github.io/lbx/latest/contributing/) - How to contribute\n\n## Requirements\n\n- Python 3.10 or higher\n- Windows, macOS, or Linux\n- OS keychain support (automatic)\n\n## Contributing\n\nContributions are welcome! Please read the [Contributing Guide](https://jd-35656.github.io/lbx/latest/contributing/) for details on our development process, coding standards, and how to submit pull requests.\n\n## License\n\nMIT License - see [LICENSE](LICENSE) file for details.\n\n## Support\n\n- **Documentation**: [https://jd-35656.github.io/lbx/latest/](https://jd-35656.github.io/lbx/latest/)\n- **PyPI Package**: [pypi.org/project/lbx](https://pypi.org/project/lbx/)\n- **Bug Reports**: [GitHub Issues](https://github.com/jd-35656/lbx/issues)\n- **Discussions**: [GitHub Discussions](https://github.com/jd-35656/lbx/discussions)\n\n---\n\n© 2025 Jitesh Sahani (JD)  \n📧 \u003cjitesh.sahani@outlook.com\u003e\n\n*\"Your secrets are safe, your mind at peace.\"*  \n🐺 Crafted by a dreamer, for dreamers 🐺\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjd-35656%2Flbx","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fjd-35656%2Flbx","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjd-35656%2Flbx/lists"}