Tool to export your personal Rescuetime data- install with PIP
pip3 install --user git+https://github.com/karlicoss/rescuexport
- for export functionality: append
[export]
- for optional extras for logging and faster json processing: append
[optional]
- or any combination of the above, e.g.
[export,optional]
- alternatively, use
git clone --recursive
, orgit pull && git submodules update --init
. After that, you can usepip3 install --editable
.
Usage:
Recommended: createsecrets.py
keeping your api parameters, e.g.:
key = "KEY"
After that, use:
python3 -m rescuexport.export --secrets /path/to/secrets.py
That way you type less and have control over where you keep your plaintext secrets.
Alternatively, you can pass parameters directly, e.g.
python3 -m rescuexport.export --key <key>
However, this is verbose and prone to leaking your keys/tokens/passwords in shell history.
Ihighly recommend checking exported files at least once just to make sure they contain everything you expect from your export. If not, please feel free to ask or raise an issue!