A small python cli utility to help manage rotki data/accounts during development
python -m venv .venv
. .venv/bin/activate
pip install --upgrade pip
pip install -r requirements.txtTo see what the utility can do run the following.
./tool.py --helpIn order to build a single binary out of the tool you can do the following:
pyinstaller tool.specThis will create a account-sync executable file in the dist directory that you can then use directly.