Skip to content

Nicconike/Steam-Stats

Use this GitHub action with your project
Add this Action to an existing workflow or create a new one
View on Marketplace

Steam Stats📶

Steam Stats Release CodeQL & Pylint Bandit Pylint codecov Docker Image Size Docker Pulls GitHub Release Python Version from PEP 621 TOML GitHub License Visitor Badge

From one Passionate Gamer and Developer to Another 🍻


Prerequisites

  1. Steam Web API Key: API key is important to fetch your account details and for that you will require a key which you can create for your account here
  2. Markdown Comments: Update the markdown file by adding the comments where the Steam Stats will be embedded to. Refer here to learn more.
  3. Steam ID: You can get your 64-bit Steam id (SteamID64 - 17 digit number) by clicking on your profile name in the top right corner in steam desktop client, select "Account Details" and your Steam ID will be displayed directly under your account name
  4. Steam Custom ID: Open the Steam desktop application, click on your profile name in the top right corner. Select View Profile and your custom URL will be displayed in the URL bar. From this url you will know your Steam Custom ID

The Github Actions is set to run on every Monday 12 AM IST (UTC+5:30) which you can modify to your own time as per your liking by updating it in the workflow file

schedule:
        - cron: "30 18 * * 0"

Important

Please don't forget any of the steps mentioned in the prerequisites else the Github Action will not work. Also, make sure that you have set the country correctly in your Steam Account.

You can refer the Steam Stats Wiki if you have any questions related to any of the steps mentioned in Prerequisites.


Samples (From my Steam Account)

Example for Steam User Stats

Steam Summary Recently Played Games

Example for Steam Workshop Stats

Steam Workshop Stats


Update README

  1. Add below comment in your markdown file for Steam User Stats
    <!-- Steam-Stats start -->
    <!-- Steam-Stats end -->
  2. Add below comment for Steam Workshop Stats (Optional)
    <!-- Steam-Workshop start -->
    <!-- Steam-Workshop end -->
  3. Don't forget to add these comments in your readme file or wherever you want to display your steam stats, because without the comments the readme will not get updated

Caution

The Steam-Stats marker should be placed before the Steam-Workshop markers if you are using both.


Features

  1. Steam Player Summary1
  2. Recently Played Games from Steam in the Last 2 Weeks
  3. Steam Workshop Stats (If Applicable)

Feature Flags

  1. Steam User Stats (Required | Default)
    1. Steam Player Summary
    2. Steam's Recently Played Games in the last 2 weeks
      1. The Graph plot for recently played games is by default implemented in a fixed linear scale but if you want you can update it to be in a logarithmic scale by using this flag in your workflow: LOG_SCALE: True

      2. When LOG_SCALE is False

        Recently Played Games

      3. When LOG_SCALE is True

        Recently Played Games

  2. Steam Workshop Stats (Optional)
    1. Workshop Stats Module can be used by adding this flag in your workflow file in the environment variables: WORKSHOP_STATS: True
    2. This module displays the total number of Unique Visitors, Subscribers and Favorites for your Steam Workshop Items

Setup with Example

After completing the steps mentioned in the Prerequisites, you have to save all the mentioned keys(except markdown comments) like Steam API Key, Steam-ID, Custom-ID as Secrets in your Github repo's settings.

Repo Settings -> Security -> Secrets and Variables -> Actions -> Add in Repository Secrets

If you are new to Github Secrets then you can checkout this official doc here.

Sample Workflow File

steam-stats.yml

name: Steam Stats

on:
 push:
	branches: master
    schedule:
        # Runs every Monday at 12AM IST (UTC+5:30)
        - cron: "30 18 * * 0"
    workflow_dispatch:

jobs:
    steam-stats:
        name: Steam Stats
        runs-on: ubuntu-latest
        steps:
          - uses: nicconike/steam-stats@master
            with:
                STEAM_API_KEY: ${{ secrets.STEAM_API_KEY }} # Replace with your created key saved in actions secrets
                STEAM_ID: ${{ vars.STEAM_ID }} # Replace with your Steam ID env var
                STEAM_CUSTOM_ID: ${{ vars.STEAM_CUSTOM_ID }} # Replace with your custom ID env var
			 	WORKSHOP_STATS: True # Optional
                LOG_SCALE: True # Optional

Checkout this real time usage example in a github repo from here and also the github actions workflow file.


Contributions

Star⭐ and Fork🍴 the Repo to start with your feature request(or bug) and experiment with the project to implement whatever Idea you might have and sent the Pull Request through 🤙

Please refer Contributing.md to get to know how to contribute to this project. And thank you for considering to contribute.


Credits


Support💙

If you are using this project and are really happy with it, then there are few ways to support me so that I can keep doing what I like doing:

  • Credit in your readme where you use this action
  • Drop a follow!😁
  • Starring and Sharing the project
  • Donations through GitHub Sponsers or whichever platform you like. So, that I can create more projects like these and play more games🎮🎧

Thanks!🫡

Other Major Platforms Coming Soon ™️ 😉


Created with 🐍 & ❤️ by Nicco

Footnotes

  1. Unfortunately, Steam Web API doesn't support Web Sockets so the profile status cannot be updated in real time as it gets updated in steam profile 🥲

  2. Modified design code according to project requirements