excavator

Cargo Test License: GPL v3

Visualize your digital footprint.

Installing Excavator

Compiling from source

You need to have a package manager called cargo in your local.

If you already have got rustc installed in your local, you also have cargo installed locally.

And then you can install with this command.

sh $ cargo install --git https://github.com/ichnion/excavator --branch develop

Install from crates.io

TBD

Install from Homebrew

TBD

How to use Excavator

Excavator read and store your exported digital data. Currently, we support part of Google Takeout and Facebook data.

Once you specify the directory, for instance Google Takeout, excavator recursively find an applicable file and read the data.

sh $ excavator read ~/Downloads/Takeout // Downloaded Google Takeout directory

Or you can specify the single file

sh $ excavator read Location History.json // A single file from downloaded Google Takeout

Note: To enforce Delete Cascade on tables with Foreign Keys in Sqlite, the following has to be set before deletions:

sqlite> PRAGMA foreign_keys = ON;