zeroday0619 / splatnet2statink

Takes battle data from the SplatNet 2 app and uploads it to stat.ink

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

splatnet2statink

splatnet2statink is a script that uploads battle data from the SplatNet 2 app ("Nintendo Switch Online") to stat.ink, a site for recording, visualizing, and aggregating statistics from Splatoon and Splatoon 2.

(ja) 日本語版セットアップ手順はこちら

(zh) 中文版的安装说明在这里

Looking to track your Splatoon 3 gameplay? See s3s.

Usage

$ python splatnet2statink.py [-M [N]] [-r] [-s] [-t] [--salmon]

The -M flag runs the script in monitoring mode, uploading new battle results as you play matches. The script checks for new battles every N seconds; if no N is provided, the script defaults to 300 (5 minutes).

The -r flag uploads any recent battle records present on SplatNet 2 that haven't been uploaded to stat.ink.

The -s flag blacks out other players' names on the scoreboard result image and doesn't send them to stat.ink.

The -t flag sends battle data to stat.ink as a dry run, without uploading, for testing/validation purposes.

The --salmon flag updates your Salmon Run profile and allows you to upload jobs (shifts) worked.

Note: You can also execute the script via ./splatnet2statink.py on macOS and Linux. On Windows, use a backslash.

Example usage

Running python splatnet2statink.py -M 900 from the command line launches the script in monitoring mode, checking for and uploading battles every 15 minutes.

Running python splatnet2statink.py --salmon -r uploads all recent Salmon Run jobs not already present on stat.ink.

Features

  • Full automation of SplatNet cookie generation/acquisition via user log-in
  • Complete battle stats
    • Gamemode, stage, weapon
    • Result, final count/percent, turf inked
    • Kills, deaths, assists, specials
    • Rank, level & star emblems (★), X Rank & Power, weapon freshness
    • Battle start & end times
    • Ranked power level & League Power
    • Splatfest support: Title, EXP, Power, Clout, Synergy Bonus, team nickname, win streak
    • Species (Inkling or Octoling)
  • Gear/ability recognition, gear & user profile image upload
  • Monitoring for new battle results in real-time
  • Scoreboard stats, player ranking & battle result image upload
  • Salmon Run support – job details/stats & Grizzco Point Card
  • Full support for all available game languages

Setup instructions

These instructions are meant to be accesssible and easy-to-follow for all users, and this is the recommended way to run the script. If you run into trouble, please reach out! However, an alternative simple version is also available.

  1. Download and install Python. On Windows, download the installer from the official website and check the option during setup to add it to your PATH. On macOS, install Homebrew and then run brew install python.

  2. If you're on Windows, install Git (pre-installed on macOS).

  3. Download the script from the command line (macOS: Terminal; Windows: Command Prompt/PowerShell) by running git clone https://github.com/frozenpandaman/splatnet2statink.git.

  4. Navigate to the newly-created directory (cd splatnet2statink/) and install the required Python libraries by running pip install -r requirements.txt. On Windows, you may have to use python -m pip instead.

  5. Running the script for the first time will prompt you to enter your stat.ink API key/token, which can be found in your profile settings. If you're using the app in a language other than English, you may enter your language code (locale) as well.

NOTE: Read the "Cookie generation" section below before proceeding.

  1. You will then be asked to navigate to a specific URL on Nintendo.com, log in, and follow simple instructions to obtain your session_token; this will be used to generate an iksm_session cookie. If you are opting against automatic cookie generation, enter "skip" for this step, at which point you will be asked to manually input your iksm_session cookie instead (see the mitmproxy instructions).

    This cookie (used to access your SplatNet battle results) along with your stat.ink API key and language will automatically be saved into config.txt for you. You're now ready to upload battles!

Have any questions, issues, or suggestions? Feel free to message me on Twitter or create an issue here.

質問があれば、ツイッター(@frozenpandaman)で連絡してください。日本語OK。

Accessing SplatNet 2 from your browser

If you wish to access SplatNet 2 from your computer rather than via the phone app, navigate to https://app.splatoon2.nintendo.net/home (it should show a forbidden error). Use a cookie editor – such as EditThisCookie for Chrome – to change iksm_session to the value you obtained previously (automatically or via mitmproxy, stored as cookie in config.txt), and refresh the page. If you only want to access SplatNet and don't have a stat.ink API key, simply enter "skip" for this step during setup.

Splatoon 2 stage rotation information (including Salmon Run) and current SplatNet gear are viewable at splatoon2.ink.


Cookie generation

For splatnet2statink to work, a cookie known as iksm_session is required to access SplatNet. This cookie may be obtained automatically, using the script, or manually via the app. Please read the following sections carefully to decide whether or not you want to use automatic cookie generation.

Automatic

Automatic cookie generation involves making a secure request to a non-Nintendo server with minimal, non-identifying information. We aim to be 100% transparent about this and provide in-depth information on security and privacy below. Users who feel uncomfortable with this may opt to manually acquire their cookie instead.

The v1.1.0 update to the Nintendo Switch Online app, released in September 2017, introduced the requirement of a message authentication code (known as f), thereby complicating the ability to generate cookies within the script. After figuring out the key previously used to generate f tokens, the calculation method was changed in September 2018's v1.4.1 update, heavily obfuscating the new process. As a workaround, an Android server was set up to emulate the app and to generate f tokens, which can then be sent to Nintendo to generate iksm_session cookies.

Privacy statement: No identifying information is ever sent to the API server. Usernames and passwords are far removed from where the API comes into play and are never readable by anyone but you. Returned hash values are never logged or stored and do not contain meaningful information. It is not possible to use either sent or stored data to identify which account/user performed a request, to view any identifying information about a user, or to gain access to an account.

See the API documentation wiki page for more information.

Manual

Users who decide against automatic cookie generation via their computer may instead generate/retrieve iksm_session cookies from the SplatNet app.

In this case, users must obtain their cookie from their phone by intercepting their device's web traffic and inputting it into splatnet2statink when prompted (or manually adding it to config.txt). Follow the mitmproxy instructions to obtain and configure your cookie manually. To opt to manually acquire your cookie, enter "skip" when prompted to enter the "Select this account" URL.

License

GPLv3

About

Takes battle data from the SplatNet 2 app and uploads it to stat.ink


Languages

Language:Python 100.0%