From af7bdf009e9ed0244b3d2debcc6d97480f333f0b Mon Sep 17 00:00:00 2001 From: Rim Date: Mon, 10 Mar 2025 09:36:25 -0400 Subject: [PATCH] chore(README.md): update readme --- README.md | 18 ++++++++++-------- 1 file changed, 10 insertions(+), 8 deletions(-) diff --git a/README.md b/README.md index 7f614bf..f8210f2 100644 --- a/README.md +++ b/README.md @@ -56,12 +56,12 @@ venv/Scripts/activate ``` python cod_api_tool.py [arguments] ``` - + ## Authentication Setup ### Obtaining your ACT_SSO_COOKIE -1. Log in to [Call of Duty](https://www.callofduty.com) +1. Log in to [Call of Duty](https://profile.callofduty.com) 2. Open developer tools (F12) 3. Navigate to: Application → Storage → Cookies → https://www.callofduty.com/ 4. Copy the value of `ACT_SSO_COOKIE` @@ -83,7 +83,7 @@ Due to recent API changes, additional steps are required for certain features: ``` usage: cod_api_tool.py [-h] [-tz {GMT,EST,CST,PST}] [-p PLAYER_NAME] [-a] [-sl] [-id] [-m] [-i] [-f] [-e] [-cp] [-ca] [-s] [-c] - [-sm] [-csd] [-cmd] [-cff] [-cef] + [-sm] [-csd] [-cmd] [-cff] [-cef] [-y] [-d] ``` ### Default Options @@ -116,22 +116,24 @@ usage: cod_api_tool.py [-h] [-tz {GMT,EST,CST,PST}] [-p PLAYER_NAME] [-a] | `-cmd`, `--clean_match_data` | Beautify match_info.json data | | `-cff`, `--clean_friend_feed` | Clean friend feed data | | `-cef`, `--clean_event_feed` | Clean event feed data | +| `-y`, `--yaml` | Convert JSON files to YAML | +| `-d`, `--delete_json` | Delete JSON files after YAML conversion | ## Examples -**Basic Usage: Retrieve Player Statistics** +**Fetch Player Statistics** ``` python cod_api_tool.py -p YourUsername#1234567 ``` -**Full Data Collection with Cleaning** +**Clean Fetched Data** ``` -python cod_api_tool.py -p YourUsername#1234567 -a -c -sm +python cod_api_tool.py -p YourUsername#1234567 -c ``` -**Process Existing Data** +**Split Matches Into Individual Files** ``` -python cod_api_tool.py -c -sm +python cod_api_tool.py -sm ``` > All data is saved to the `/stats/` directory