This tool exports the Animal Crossing: New Horizons datamine spreadsheet as json files.
You need to a working Rust installation and a Google API key.
See https://rustup.rs.
Go to https://console.developers.google.com, create a new project, add/enable the spreadsheet API for it and then create an API key (not OAUTH).
Create a file called .env
in the project root and enter your API key there:
API_KEY=replace_me_with_your_api_key
Just execute this in the project root:
cargo run
- If you want to include the images in the download, execute:
cargo run -- --dl-images
- If you want to get the Unique Ids from the Items on the spreadsheet ordered by Category, you can exectue:
cargo run -- --only-ids
- You can also add prefixes and suffixes with executing:
cargo run -- --only-ids --id-prefix="your-prefix" --id-suffix="your-suffix"
It will create a folder called export
, containing all the sheets in json format.