Crates.io | excavator |
lib.rs | excavator |
version | 0.4.0 |
source | src |
created_at | 2021-03-23 04:52:54.846225 |
updated_at | 2021-09-17 10:00:35.655555 |
description | Visualize your digital footprint |
homepage | https://ichnion.github.io/website/ |
repository | |
max_upload_size | |
id | 372443 |
size | 113,280 |
Visualize your digital footprint.
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.
$ cargo install --git https://github.com/ichnion/excavator --branch develop
You can also install from package registry.
$ cargo install excavator
$ brew tap ichnion/tap
$ brew install excavator
$ brew upgrade ichnion/tap/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.
$ excavator read ~/Downloads/Takeout // Downloaded Google Takeout directory
Or you can specify the single file cargo install
$ 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;