Interactive shell for sqlite-utils using litecli.
Install this plugin in the same environment as sqlite-utils.
sqlite-utils install sqlite-utils-litecliStart running the shell like this:
sqlite-utils litecli data.dbThis will start a litecli interactive shell session.
Custom SQL functions provided by other plugins will be available in the shell.
To set up this plugin locally, first checkout the code. Then create a new virtual environment:
cd sqlite-utils-litecli
python3 -m venv venv
source venv/bin/activateNow install the dependencies and test dependencies:
pip install -e '.[test]'To run the tests:
pytest