Metadata-Version: 2.4
Name: ente-cli
Version: 0.2.23
Summary: CLI for ente — relationship manager and knowledge graph
License-Expression: MIT
Requires-Python: >=3.11
Requires-Dist: httpx>=0.28
Requires-Dist: packaging>=24.0
Requires-Dist: platformdirs>=4.0
Requires-Dist: python-dateutil>=2.9
Requires-Dist: rich>=13.0
Requires-Dist: typer>=0.15
Description-Content-Type: text/markdown

# ente CLI

Command-line interface for [ente](https://github.com/valentindoering/ente) — relationship manager and knowledge graph.

## Installation

```bash
uv tool install ente-cli \
  --extra-index-url https://gitea.i.ivo-zilkenat.de/api/packages/ivo.zilkenat/pypi/simple/
```

## Setup

1. Generate an API key from the ente web app: **Settings > API Keys > Generate API Key**
2. Authenticate:

```bash
ente auth login --url https://your-deployment.convex.site --key <api-key>
```

## Usage

```bash
ente search "Alice"
ente entity list --type person
ente task list --due today
ente activity create --type note --title "Meeting notes" --entity "Alice" --space "Personal"
ente guide
```

Run `ente --help` for all commands.

## Update

```bash
uv tool install --upgrade ente-cli \
  --extra-index-url https://gitea.i.ivo-zilkenat.de/api/packages/ivo.zilkenat/pypi/simple/
```
