Metadata-Version: 2.4
Name: getv
Version: 0.2.10
Summary: Universal .env variable manager — read, write, encrypt, delegate across services and devices
Author-email: Tom Sapletta <tom@sapletta.com>
License-Expression: Apache-2.0
Keywords: env,dotenv,config,secrets,encryption,profiles,cli
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: System Administrators
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Topic :: System :: Systems Administration
Requires-Python: >=3.9
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: python-dotenv>=1.0.0
Requires-Dist: click>=8.0
Provides-Extra: crypto
Requires-Dist: cryptography>=41.0; extra == "crypto"
Provides-Extra: pydantic
Requires-Dist: pydantic>=2.0; extra == "pydantic"
Requires-Dist: pydantic-settings>=2.0; extra == "pydantic"
Provides-Extra: all
Requires-Dist: cryptography>=41.0; extra == "all"
Requires-Dist: pydantic>=2.0; extra == "all"
Requires-Dist: pydantic-settings>=2.0; extra == "all"
Provides-Extra: dev
Requires-Dist: pytest>=7.0; extra == "dev"
Requires-Dist: pytest-cov>=4.0; extra == "dev"
Dynamic: license-file

# getv — Universal .env Variable Manager

[![PyPI version](https://badge.fury.io/py/getv.svg)](https://badge.fury.io/py/getv)
[![Python versions](https://img.shields.io/pypi/pyversions/getv)](https://pypi.org/project/getv/)
[![License: Apache-2.0](https://img.shields.io/badge/License-Apache%202.0-blue.svg)](https://opensource.org/licenses/Apache-2.0)
[![Downloads](https://img.shields.io/pypi/dm/getv)](https://pypi.org/project/getv/)
[![Tests](https://github.com/wronai/getv/workflows/Tests/badge.svg)](https://github.com/wronai/getv/actions)


We increasingly work with APIs, especially in the context of LLMs,
constantly needing to provide new keys and then copy them to other tools,
`.env` files. What if when copying to the clipboard, they were automatically saved to `.env` from which various applications
like ollama or libraries like liteLLM could retrieve the specified `API TOKEN`?

- copy an `API KEY` in your browser
- run: `getv grab`
- use multiple keys directly: `getv exec llm groq -- python app.py`

Read, write, encrypt, and delegate environment variables across services and devices.

![img.png](img.png)

Copy to the clipboard and run `getv grab` to detect and save the API key 

```bash
$ getv grab

Detected:  groq (GROQ_API_KEY)
Key:       gsk_Y1xV...TNpA
Source:    Prefix match
Domain:    console.groq.com
Category:  llm
Profile:   ~/.getv/llm/groq.env

Saved to /home/tom/.getv/llm/groq.env

Usage:
  getv get llm groq GROQ_API_KEY
  getv exec llm groq -- python app.py
```
without any plugins, managers, or integrations...

Clipboard → .env Auto-Detection
No other CLI tool has this feature. 
Copy any API key and run getv grab — it auto-detects the provider, saves to the right profile, and shows usage commands. Perfect for rapid RPi + LLM development workflow.

```bash
$ getv grab              # copy API key → auto-detect provider → save
$ getv exec llm groq -- python app.py   # run with profile injected
$ getv ssh rpi3 "uname -a"              # SSH using stored profile
```

![getv.gif](getv.gif)



## Why getv?

- **Clipboard → .env** — `getv grab` auto-detects 19 API key prefixes from clipboard
- **Built-in integrations** — SSH, curl, Docker, LiteLLM, Ollama, Pydantic — no plugins
- **Smart profiles** — organize by category (`llm/`, `devices/`, `tokens/`) with per-app defaults
- **One-liner power** — process substitution, pipes, shell eval

## Install

```bash
pip install getv                   # core
pip install "getv[crypto]"         # + encryption (Fernet)
pip install "getv[all]"            # everything
```

## Quick Start

```bash
# Save a profile
getv set llm groq LLM_MODEL=groq/llama-3.3-70b-versatile GROQ_API_KEY=gsk_xxx

# Read a variable
getv get llm groq LLM_MODEL

# List profiles (secrets masked)
getv list llm

# Run with env injected
getv exec llm groq -- python my_script.py

# Auto-detect API key from clipboard
getv grab

# Export formats
getv export llm groq --format json
getv export llm groq --format shell
getv export llm groq --format docker
```

### Python API

```python
from getv import EnvStore, ProfileManager

# Single .env file
store = EnvStore("~/.myapp/.env")
store.set("DB_HOST", "localhost").set("DB_PORT", "5432").save()

# Named profiles
pm = ProfileManager("~/.getv")
pm.add_category("llm", required_keys=["LLM_MODEL"])
pm.set("llm", "groq", {"LLM_MODEL": "groq/llama-3.3-70b-versatile", "GROQ_API_KEY": "gsk_xxx"})

# Merge profiles
cfg = pm.merge_profiles({"APP_NAME": "myapp"}, llm="groq", devices="rpi3")
```

## Profile Directory

```text
~/.getv/
├── .fernet.key            ← encryption key (chmod 600)
├── defaults/              ← per-app profile selections
│   ├── fixpi.conf         → llm=groq, devices=rpi3
│   └── prellm.conf        → llm=openrouter
├── devices/
│   ├── rpi3.env
│   └── rpi4-prod.env
├── llm/
│   ├── groq.env
│   └── openrouter.env
└── tokens/
    └── github.env
```

## CLI Reference

| Command | Description |
|---------|-------------|
| `getv set CATEGORY PROFILE KEY=VAL...` | Create/update profile |
| `getv get CATEGORY PROFILE KEY` | Get single value |
| `getv list [CATEGORY [PROFILE]]` | List categories/profiles/vars |
| `getv delete CATEGORY PROFILE` | Delete profile |
| `getv export CATEGORY PROFILE --format FMT` | Export (json/shell/docker/env/pydantic) |
| `getv encrypt CATEGORY PROFILE` | Encrypt sensitive values |
| `getv decrypt CATEGORY PROFILE` | Decrypt values |
| `getv exec CATEGORY PROFILE -- CMD...` | Run with profile env |
| `getv use APP CATEGORY PROFILE` | Set app default |
| `getv defaults [APP]` | Show app defaults |
| `getv ssh PROFILE [CMD]` | SSH to device |
| `getv curl PROFILE URL` | Authenticated API call |
| `getv grab [--dry-run]` | Auto-detect API key from clipboard |
| `getv diff CATEGORY A B` | Compare two profiles |
| `getv copy CAT/SRC CAT/DST` | Clone profile |
| `getv import FILE [CAT PROFILE]` | Import from .env / docker-compose |
| `getv init` | Interactive setup wizard |

## Documentation

| Document | Description |
|----------|-------------|
| [docs/INTEGRATIONS.md](docs/INTEGRATIONS.md) | SSH, LiteLLM, Ollama, Docker, curl, Pydantic, nfo, file watcher |
| [docs/GRAB.md](docs/GRAB.md) | Clipboard detection — 19 prefixes, browser history, Python API |
| [docs/SECURITY.md](docs/SECURITY.md) | Masking, Fernet encryption, key rotation, validation, format export |
| [docs/EXAMPLES.md](docs/EXAMPLES.md) | 20+ one-liner examples — pipes, process substitution, cron, Docker |
| [docs/COMPARISON.md](docs/COMPARISON.md) | getv vs direnv vs dotenvx vs envie |

## Environment Variables

| Variable | Default | Description |
|----------|---------|-------------|
| `GETV_HOME` | `~/.getv` | Base directory for profiles |

## Adopted by

- **[fixpi](https://github.com/zlecenia/c2004/tree/main/fixPI)** — SSH + LLM diagnostic agent
- **[prellm](https://github.com/wronai/prellm)** — LLM preprocessing proxy
- **[code2logic](https://github.com/wronai/code2logic)** — Code analysis engine
- **[amen](https://github.com/wronai/amen)** — Intent-iterative AI gateway
- **[marksync](https://github.com/wronai/marksync)** — Markdown sync server
- **[curllm](https://github.com/wronai/curllm)** — LLM-powered web automation

## Development

```bash
git clone https://github.com/wronai/getv.git
cd getv
python -m venv .venv && source .venv/bin/activate
pip install -e ".[dev]"
pytest  # 190 tests
```

## License

Apache License 2.0 - see [LICENSE](LICENSE) for details.

## Author

Created by **Tom Sapletta** - [tom@sapletta.com](mailto:tom@sapletta.com)
