This repository has been archived by the owner on May 23, 2019. It is now read-only.
cycli 0.2.0
New Features
Logging
Log each query and its results to a file with the -l
or --logfile
option.
cycli -l output.txt
Execute Files
Execute semicolon-separated Cypher queries from a file with the -f
or --filename
option.
cycli -f queries.txt
This can be combined with logging.
cycli -f queries.txt -l output.txt
Passwords
Passwords can now be passed in with the -p
option.
cycli -u neo4j -p password
The -u
option can still be used by itself, where you will then be prompted for a password.
cycli -u neo4j
Matching Character Insert
Typing a (
, [
, {
, '
, or "
will automatically insert a corresponding closing version of that character to the right of your cursor.
Rainbows
You are now greeted with this:
Breaking Changes
The port is now passed in with the -P
option, where it had been previously passed in with the -p
option. The -p
option has been repurposed for passwords.
Update
If you already have cycli installed:
pip install cycli --upgrade
Otherwise:
pip install cycli