Going CLI-only

The CsvPath Framework's CLI is a great development and testing tool. It works without code in a local environment, enabling you to get projects started fast and iterate on your csvpath statements rapidly.

The CLI is not comprehensive. It supports references, but not the complete range of flexibility. It does not provide any support for templates; you would have to add those by editing JSON or using the API.

Read more about the CLI here.

From Poetry just type poetry run cli. To start the CLI from Python do:

from csvpath.cli.cli import Cli    
Cli().loop()

Or:

python csvpath.cli.cli.py

Poetry users, just type poetry run cli

Last updated