From 673e8b779f741955a31a4df1644ca81aef07e695 Mon Sep 17 00:00:00 2001 From: DWW Date: Wed, 20 Jul 2022 17:26:55 +0300 Subject: [PATCH] Added usage info and example JSON files --- README | 4 ++++ example_download.json | 7 +++++++ example_login.json | 4 ++++ 3 files changed, 15 insertions(+) create mode 100644 example_download.json create mode 100644 example_login.json diff --git a/README b/README index 524b6bc..e094725 100644 --- a/README +++ b/README @@ -1,3 +1,7 @@ +--- Usage --- +There must be a file named "login.json" in the working directory with your monstercat credentials. +See example_login.json for the template. + --- JSON Library Source --- https://github.com/nlohmann/json Release - 3.10.5 diff --git a/example_download.json b/example_download.json new file mode 100644 index 0000000..7e27848 --- /dev/null +++ b/example_download.json @@ -0,0 +1,7 @@ +{ + "comment": "This file will attempt to download MCLP001, MCLP001-X, MCLP002, ... MCLP010-X", + "prefix": "MCLP", + "suffix_try": "-X", + "start": 1, + "end": 10 +} diff --git a/example_login.json b/example_login.json new file mode 100644 index 0000000..40474d0 --- /dev/null +++ b/example_login.json @@ -0,0 +1,4 @@ +{ + "Email": "USER", + "Password": "PASS" +}