ibrahimcesar/velociplot

Add pipe support for CLI

Open

#14 ouverte le 29 nov. 2025

Voir sur GitHub
 (0 commentaires) (0 réactions) (0 assignés)Rust (0 forks)auto 404
good first issuepriority: mediumtype: clitype: feature

Métriques du dépôt

Stars
 (3 stars)
Métriques de merge PR
 (Métriques PR en attente)

Description

Description

Allow piping data directly to vplot from stdin, enabling integration with other command-line tools.

Example Usage

```bash cat data.csv | vplot plot - -t line -o output.png curl https://example.com/data.json | vplot plot - -t scatter -o plot.png ```

Tasks

  • Support reading from stdin when input is "-"
  • Auto-detect format (CSV vs JSON)
  • Handle streaming data appropriately
  • Update documentation

Acceptance Criteria

  • Piping works reliably
  • Format auto-detection works
  • Good error messages for invalid input

Guide contributeur